
    :root{
      --bg: #0b1220;
      --bg-soft: #101a30;
      --card: rgba(255,255,255,.06);
      --card-border: rgba(255,255,255,.12);
      --text: #ecf2ff;
      --muted: #b8c4e0;
      --primary: #4f8cff;
      --primary-dark: #2f6ff0;
      --accent: #00d4a6;
      --warning: #ffcc66;
      --shadow: 0 18px 50px rgba(0,0,0,.25);
      --radius: 20px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
      background:
        radial-gradient(circle at top right, rgba(79,140,255,.20), transparent 30%),
        radial-gradient(circle at top left, rgba(0,212,166,.14), transparent 26%),
        linear-gradient(180deg, #0b1220 0%, #09101c 100%);
      color: var(--text);
      line-height: 1.8;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }

    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .skip-link {
      position: absolute;
      top: -50px;
      right: 16px;
      background: #fff;
      color: #000;
      padding: 10px 14px;
      border-radius: 10px;
      z-index: 1000;
    }

    .skip-link:focus { top: 16px; }

    header {
      position: sticky;
      top: 0;
      z-index: 999;
      backdrop-filter: blur(16px);
      background: rgba(8, 13, 24, .72);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 74px;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -.2px;
      white-space: nowrap;
    }

    .brand-badge {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 10px 24px rgba(79,140,255,.35);
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 22px;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
    }

    nav a {
      color: var(--muted);
      font-weight: 500;
      transition: .2s ease;
    }

    nav a:hover, nav a:focus {
      color: var(--text);
    }

    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: 14px;
      padding: 12px 18px;
      font-weight: 700;
      cursor: pointer;
      transition: .2s ease;
      box-shadow: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 12px 30px rgba(79,140,255,.25);
    }

    .btn-primary:hover { transform: translateY(-1px); }

    .btn-outline {
      background: rgba(255,255,255,.04);
      color: var(--text);
      border: 1px solid rgba(255,255,255,.12);
    }

    .hero {
      padding: 72px 0 42px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,212,166,.12);
      color: #8df0d8;
      border: 1px solid rgba(0,212,166,.2);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(30px, 5vw, 56px);
      line-height: 1.25;
      margin: 0 0 16px;
      letter-spacing: -.7px;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 58ch;
      margin: 0 0 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
    }

    .hero-card {
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
      border: 1px solid var(--card-border);
      border-radius: 26px;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .dashboard {
      display: grid;
      gap: 16px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .stat {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      padding: 16px;
      text-align: center;
    }

    .stat strong {
      display: block;
      font-size: 1.2rem;
      margin-bottom: 4px;
      color: #fff;
    }

    .stat span {
      color: var(--muted);
      font-size: 13px;
    }

    .preview {
      background:
        linear-gradient(180deg, rgba(79,140,255,.18), rgba(0,212,166,.10)),
        rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 20px;
      padding: 18px;
    }

    .preview-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #8df0d8;
      font-size: 14px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(0,212,166,.12);
    }

    .chart {
      display: grid;
      gap: 10px;
    }

    .bar {
      height: 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      overflow: hidden;
    }

    .bar > span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    section {
      padding: 24px 0;
    }

    .section-title {
      margin-bottom: 18px;
    }

    .section-title h2 {
      margin: 0 0 10px;
      font-size: clamp(24px, 3vw, 38px);
      line-height: 1.3;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      max-width: 72ch;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: 0 10px 30px rgba(0,0,0,.14);
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.15rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      background: linear-gradient(135deg, rgba(79,140,255,.25), rgba(0,212,166,.18));
      border: 1px solid rgba(255,255,255,.08);
      font-size: 20px;
    }

    .steps {
      counter-reset: step;
    }

    .step {
      position: relative;
      padding-top: 20px;
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      top: -2px;
      right: 0;
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
    }

    .step h3 {
      margin-top: 34px;
    }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 18px;
      align-items: center;
    }

    .list {
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
    }

    .check {
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(0,212,166,.15);
      color: #8df0d8;
      display: grid;
      place-items: center;
      font-size: 14px;
      margin-top: 2px;
    }

    .faq details {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 16px;
      padding: 16px 18px;
    }

    .faq details + details {
      margin-top: 12px;
    }

    .faq summary {
      cursor: pointer;
      font-weight: 700;
    }

    .faq p {
      color: var(--muted);
      margin: 12px 0 0;
    }

    .cta {
      background: linear-gradient(135deg, rgba(79,140,255,.16), rgba(0,212,166,.10));
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 28px;
      padding: 28px;
      text-align: center;
    }

    .cta h2 {
      margin: 0 0 10px;
      font-size: clamp(24px, 3vw, 38px);
    }

    .cta p {
      margin: 0 auto 18px;
      max-width: 68ch;
      color: var(--muted);
    }

    footer {
      padding: 30px 0 40px;
      color: var(--muted);
      border-top: 1px solid rgba(255,255,255,.08);
      margin-top: 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 18px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a:hover {
      color: var(--text);
    }

    .small {
      font-size: 14px;
      color: var(--muted);
    }

    .divider {
      height: 1px;
      background: rgba(255,255,255,.08);
      margin: 22px 0;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .split,
      .footer-grid,
      .grid-4,
      .grid-3 {
        grid-template-columns: 1fr;
      }

      nav ul {
        display: none;
      }

      .navbar {
        flex-wrap: wrap;
      }

      .nav-actions {
        margin-inline-start: auto;
      }

      .hero {
        padding-top: 42px;
      }
    }

    @media (max-width: 560px) {
      .nav-actions {
        width: 100%;
      }

      .nav-actions .btn {
        flex: 1;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .stat-grid {
        grid-template-columns: 1fr;
      }

      .card, .hero-card, .cta {
        padding: 18px;
      }
    }
    .legal-content {
  line-height: 2;
}

.legal-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  padding-right: 24px;
}

.legal-content a {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

