    :root {
      --bg: #081224;
      --bg-soft: #0e1c34;
      --surface: rgba(255, 255, 255, 0.06);
      --surface-strong: rgba(255, 255, 255, 0.1);
      --text: #f6f8fc;
      --muted: #c3cde0;
      --accent: #f5b640;
      --accent-2: #ff8d3c;
      --line: rgba(255, 255, 255, 0.15);
      --ok: #59d19a;
      --font-main: "Jost", "Manrope", "PT Sans", sans-serif;
      --font-head: "Russo One", "Exo 2", "Trebuchet MS", sans-serif;
      --radius: 18px;
      --shadow: 0 16px 42px rgba(4, 11, 25, 0.45);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      color: var(--text);
      background: radial-gradient(circle at 10% 10%, #19325f 0%, var(--bg) 44%),
                  linear-gradient(145deg, #091528 0%, #0d1b32 100%);
      font-family: var(--font-main);
      line-height: 1.55;
      scroll-behavior: smooth;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      z-index: -1;
      border-radius: 999px;
      filter: blur(50px);
      opacity: 0.55;
      pointer-events: none;
    }

    body::before {
      top: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      background: #f5b640;
    }

    body::after {
      bottom: -90px;
      left: -90px;
      width: 340px;
      height: 340px;
      background: #3459e6;
    }

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(10px);
      background: rgba(8, 18, 36, 0.78);
      border-bottom: 1px solid var(--line);
      transition: background-color 0.25s ease, box-shadow 0.25s ease;
    }

    .topbar.topbar-scrolled {
      background: rgba(8, 18, 36, 0.92);
      box-shadow: 0 10px 24px rgba(3, 10, 25, 0.45);
    }

    .topbar-wrap {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
      font-family: var(--font-head);
      letter-spacing: 0.04em;
      font-size: 1.05rem;
    }

    .brand-logo {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      object-fit: cover;
      box-shadow: 0 8px 20px rgba(255, 163, 51, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .nav {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .nav a {
      color: var(--muted);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }

    .nav a:hover {
      color: var(--text);
    }

    .hero {
      padding: 84px 0 58px;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 28px;
      align-items: start;
    }

    .hero-mini-brand {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.06);
      color: #f7dfb4;
      font-size: 0.86rem;
      font-weight: 600;
    }

    .hero-mini-brand img {
      width: 24px;
      height: 24px;
      border-radius: 7px;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    h1 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4.4vw, 3.25rem);
      line-height: 1.15;
      margin: 0 0 16px;
      letter-spacing: 0.01em;
      text-wrap: balance;
    }

    .lead {
      color: var(--muted);
      font-size: 1.06rem;
      margin: 0 0 26px;
      max-width: 62ch;
    }

    .cta-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      min-height: 48px;
      padding: 0 18px;
      border: 1px solid transparent;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn.btn-pulse {
      animation: btn-pulse 0.38s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #1a1200;
      box-shadow: 0 12px 28px rgba(247, 161, 51, 0.32);
    }

    .btn-secondary {
      background: var(--surface);
      color: var(--text);
      border-color: var(--line);
    }

    .warning {
      font-size: 0.92rem;
      color: #f2dcae;
      margin: 0;
    }

    .hero-card {
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow);
      animation: fade-up 0.6s ease both;
    }

    .hero-banner {
      margin: 0 0 14px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #071126;
    }

    .hero-banner img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 230px;
      object-fit: cover;
    }

    .hero-banner figcaption {
      margin: 0;
      padding: 9px 12px 11px;
      color: #e7d7b8;
      font-size: 0.88rem;
      background: rgba(4, 10, 20, 0.72);
      border-top: 1px solid var(--line);
    }

    .hero-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .hero-list li {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 11px 12px;
      color: #eaf0ff;
      font-weight: 500;
    }

    .hero-list li strong {
      color: var(--accent);
    }

    section {
      padding: 38px 0;
      animation: fade-up 0.75s ease both;
      animation-timeline: view();
      animation-range: entry 18% cover 30%;
    }

    h2 {
      font-family: var(--font-head);
      letter-spacing: 0.02em;
      margin: 0 0 12px;
      font-size: clamp(1.48rem, 2.8vw, 2rem);
    }

    .section-intro {
      margin: 0 0 18px;
      color: var(--muted);
      max-width: 72ch;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 16px;
      box-shadow: var(--shadow);
    }

    .card h3 {
      margin: 0 0 8px;
      font-size: 1.08rem;
      color: #ffe8be;
    }

    .card p {
      margin: 0;
      color: #d9e2f3;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .table-wrap {
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.03);
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    th,
    td {
      text-align: left;
      padding: 12px 14px;
      border-bottom: 1px solid var(--line);
      font-size: 0.94rem;
    }

    th {
      color: #f5d8a3;
      background: rgba(255, 255, 255, 0.04);
      font-weight: 700;
    }

    tr:last-child td {
      border-bottom: 0;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .step {
      position: relative;
      padding: 18px 16px 16px;
      border: 1px solid var(--line);
      background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      border-radius: 15px;
    }

    .step-number {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, #ffd274, #e99f1f);
      color: #221700;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .quote {
      font-style: italic;
      color: #e5ecfa;
      margin: 0;
    }

    .faq {
      display: grid;
      gap: 12px;
    }

    details {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 12px 14px;
      background: rgba(255, 255, 255, 0.04);
    }

    summary {
      cursor: pointer;
      font-weight: 700;
      color: #ffe0a8;
    }

    details p {
      margin: 8px 0 0;
      color: #dde7fa;
    }

    .final-cta {
      margin-top: 8px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(160deg, rgba(255, 198, 104, 0.19), rgba(255, 132, 54, 0.12));
      padding: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .final-cta p {
      margin: 0;
      max-width: 64ch;
      color: #fef8ec;
      font-weight: 500;
    }

    footer {
      padding: 32px 0 40px;
      color: #b7c4de;
      border-top: 1px solid var(--line);
      margin-top: 22px;
      font-size: 0.92rem;
    }

    .seo-copy {
      color: #ccdaef;
      margin-top: 14px;
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes btn-pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(0.97);
      }
      100% {
        transform: scale(1);
      }
    }

    @media (max-width: 980px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .cards,
      .steps,
      .content-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      .topbar-wrap {
        min-height: 66px;
      }

      .brand {
        font-size: 0.92rem;
      }

      .nav {
        display: none;
      }

      .hero {
        padding-top: 54px;
      }

      .btn {
        width: 100%;
      }
    }
