<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>Account Suspended</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <style>
    body {
      background: #f8fafc;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      margin: 0;
      color: #1f2937;
    }
    .container {
      text-align: center;
      padding: 2rem;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      max-width: 480px;
    }
    .icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    h1 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      color: #ef4444;
    }
    p {
      font-size: 1rem;
      color: #4b5563;
    }
    .btn {
      margin-top: 1.5rem;
      background-color: #2563eb;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
      font-weight: 600;
      font-size: 1rem;
    }
    a.support {
      display: block;
      margin-top: 1rem;
      color: #2563eb;
      text-decoration: none;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="icon">⚠️</div>
    <h1>Account Suspended</h1>
    <p>Your subscription is past due.</p>
    <p>Please check your email or pay your invoice below.</p>
    <a class="btn" href="https://invoice.stripe.com/i/acct_1N8ExTBa61F0mGcy/live_YWNjdF8xTjhFeFRCYTYxRjBtR2N5LF9VelFJSVQwRnd2SnY5bjZXQ1o3VkczNHR1N2Nmc250LDE3NjA5MjI1Ng0200YaZq8Sq6?s=ap" target="_blank">Pay Now</a>
    <a class="support" href="mailto:support@vizionerp.com">Contact Support</a>
  </div>
</body>
</html>