    :root {
      --bg: #071124;
      --surface: #0d1c35;
      --surface-strong: #122748;
      --text: #f4f8ff;
      --muted: #adbedf;
      --primary: #26d5c9;
      --accent: #ffbc5d;
      --line: rgba(255, 255, 255, 0.1);
      --shadow: 0 18px 55px rgba(2, 9, 25, 0.35);
      --radius: 18px;
      --radius-sm: 12px;
      --container: min(1120px, calc(100% - 2rem));
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 14% -4%, rgba(38, 213, 201, 0.25), transparent 42%),
        radial-gradient(circle at 88% 7%, rgba(255, 188, 93, 0.2), transparent 38%),
        linear-gradient(180deg, #061024 0%, #050c1c 100%);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(10px);
      background: rgba(5, 11, 24, 0.85);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      width: var(--container);
      margin: 0 auto;
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      position: relative;
    }

    .brand {
      font-family: "Syne", sans-serif;
      letter-spacing: 0.2px;
      font-size: clamp(1.2rem, 3vw, 1.45rem);
      font-weight: 700;
    }

    .brand span {
      color: var(--primary);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .menu-toggle:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .menu-icon {
      width: 18px;
      display: inline-grid;
      gap: 4px;
    }

    .menu-icon span {
      height: 2px;
      border-radius: 999px;
      background: var(--text);
      transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .menu-toggle.open .menu-icon span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.open .menu-icon span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open .menu-icon span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.1rem;
    }

    .nav-links a {
      font-size: 0.97rem;
      color: var(--muted);
      transition: color 0.25s ease;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.75rem 1.25rem;
      border: 1px solid transparent;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
      white-space: nowrap;
    }

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

    .btn-primary {
      background: linear-gradient(140deg, var(--primary), #63ffe4);
      color: #04201e;
      box-shadow: 0 12px 25px rgba(38, 213, 201, 0.28);
    }

    .btn-outline {
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
    }

    .header-cta {
      font-size: 0.9rem;
    }

    .hero {
      padding: clamp(3.2rem, 6vw, 5.2rem) 0 2rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1.7rem;
      align-items: stretch;
    }

    .hero-panel,
    .hero-highlight,
    .section-card,
    .cta,
    .contact-card {
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .hero-panel {
      padding: clamp(1.5rem, 3vw, 2.6rem);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: auto -50px -90px auto;
      width: 220px;
      aspect-ratio: 1;
      background: radial-gradient(circle, rgba(38, 213, 201, 0.35), transparent 70%);
      z-index: -1;
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.4rem 0.8rem;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
      border-radius: 999px;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .hero h1 {
      font-family: "Syne", sans-serif;
      font-size: clamp(1.9rem, 4.5vw, 3.45rem);
      line-height: 1.08;
      letter-spacing: 0.2px;
      margin-bottom: 0.95rem;
      max-width: 16ch;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      color: var(--muted);
      max-width: 60ch;
    }

    .hero-actions {
      margin-top: 1.35rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .hero-stats {
      margin-top: 1.5rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .stat {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.025);
      padding: 0.9rem 0.75rem;
    }

    .stat strong {
      display: block;
      color: var(--primary);
      font-size: 1.1rem;
      line-height: 1.1;
      margin-bottom: 0.2rem;
    }

    .stat span {
      color: var(--muted);
      font-size: 0.82rem;
    }

    .hero-highlight {
      padding: clamp(1.2rem, 3vw, 1.8rem);
      display: grid;
      gap: 0.75rem;
    }

    .highlight-item {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.03);
      padding: 0.85rem 0.95rem;
    }

    .highlight-item h3 {
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .highlight-item p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    section {
      padding: clamp(2.4rem, 5vw, 4rem) 0;
    }

    .section-head {
      max-width: 68ch;
      margin-bottom: 1.3rem;
    }

    .section-head h2 {
      font-family: "Syne", sans-serif;
      font-size: clamp(1.5rem, 3.2vw, 2.2rem);
      margin-bottom: 0.45rem;
    }

    .section-head p {
      color: var(--muted);
    }

    .services-grid,
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.95rem;
    }

    .section-card {
      padding: 1.15rem;
    }

    .section-card h3 {
      font-size: 1.03rem;
      margin-bottom: 0.35rem;
      color: #fff;
    }

    .section-card p {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .section-card .tag {
      display: inline-block;
      margin-bottom: 0.65rem;
      font-size: 0.74rem;
      font-weight: 700;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.8rem;
    }

    .step {
      position: relative;
      padding: 1.1rem 1rem 1rem;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.03);
    }

    .step strong {
      color: var(--primary);
      font-size: 0.86rem;
      display: block;
      margin-bottom: 0.4rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .step h3 {
      font-size: 1rem;
      margin-bottom: 0.35rem;
    }

    .step p {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .cta {
      padding: clamp(1.2rem, 3vw, 1.8rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cta h2 {
      font-family: "Syne", sans-serif;
      font-size: clamp(1.35rem, 3vw, 1.85rem);
      margin-bottom: 0.25rem;
    }

    .cta p {
      color: var(--muted);
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.95rem;
    }

    .contact-card {
      padding: 1.15rem;
    }

    .contact-card h3 {
      margin-bottom: 0.3rem;
      font-size: 1rem;
    }

    .contact-card p,
    .contact-card a {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .contact-card a:hover {
      color: var(--primary);
    }

    .reveal {
      opacity: 0;
      transform: translateY(16px);
      animation: revealUp 0.7s ease forwards;
    }

    .reveal.d1 { animation-delay: 0.12s; }
    .reveal.d2 { animation-delay: 0.22s; }
    .reveal.d3 { animation-delay: 0.32s; }
    .reveal.d4 { animation-delay: 0.42s; }

    @keyframes revealUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    footer {
      border-top: 1px solid var(--line);
      margin-top: 2.2rem;
      padding: 1.5rem 0 2.2rem;
      color: var(--muted);
      text-align: center;
      font-size: 0.9rem;
    }

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

      .services-grid,
      .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .menu-toggle {
        display: inline-flex;
      }

      .header-cta {
        display: none;
      }

      .nav-links {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: 78px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: rgba(8, 18, 36, 0.97);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 0.85rem;
        box-shadow: 0 18px 30px rgba(4, 9, 20, 0.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.985);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      }

      .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
      }

      .nav-links a {
        padding: 0.62rem 0.3rem;
      }

      .hero-stats,
      .services-grid,
      .benefits-grid,
      .process {
        grid-template-columns: 1fr;
      }
    }

.policy-meta {
  margin-top: 0.75rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero .hero-panel h1 {
  max-width: 20ch;
}

.page-hero .hero-panel p {
  max-width: 62ch;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.legal-card {
  padding: 1.2rem;
}

.legal-card h3 {
  margin-bottom: 0.5rem;
}

.legal-card p {
  color: var(--muted);
}

.legal-list {
  list-style: none;
  display: grid;
  gap: 0.42rem;
  margin-top: 0.45rem;
}

.legal-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.legal-note {
  margin-top: 0.7rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--primary);
}

.nav-links a[aria-current="page"] {
  color: var(--primary);
}

footer a {
  color: var(--text);
}

footer a:hover {
  color: var(--primary);
}

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