/* ── Brand tokens ──────────────────────────────────────────────────── */
    :root {
      --product-name: "Lex";
      --aqua:    #00778B;
      --aqua-dk: #005a6b;
      --aqua-lt: #e6f4f6;
      --gold:    #FDB913;
      --gold-dk: #d49a0a;
      --black:   #111827;
      --gray-dk: #374151;
      --gray:    #6B7280;
      --gray-lt: #F9FAFB;
      --border:  #E5E7EB;
      --white:   #ffffff;
      --radius:  12px;
      --radius-lg: 20px;
      --shadow:  0 4px 24px rgba(0,0,0,0.08);
      --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    }

    /* ── Reset ─────────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--black);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── Utilities ─────────────────────────────────────────────────────── */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .container-narrow {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .text-aqua   { color: var(--aqua); }
    .text-gold   { color: var(--gold-dk); }
    .text-gray   { color: var(--gray); }
    .bg-aqua     { background: var(--aqua); }
    .bg-gold     { background: var(--gold); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      letter-spacing: 0.01em;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--black);
    }
    .btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(253,185,19,0.35); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.4);
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
    .btn-outline-dark {
      background: transparent;
      color: var(--aqua);
      border: 2px solid var(--aqua);
    }
    .btn-outline-dark:hover { background: var(--aqua-lt); }
    .btn-lg { padding: 18px 36px; font-size: 15px; border-radius: 10px; }
    .btn-sm { padding: 10px 20px; font-size: 13px; }

    .tag {
      display: inline-block;
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .tag-gold { background: rgba(253,185,19,0.15); color: #9a6d00; }
    .tag-aqua { background: var(--aqua-lt); color: var(--aqua-dk); }
    .tag-white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--black);
    }
    .section-sub {
      font-size: 17px;
      color: var(--gray);
      line-height: 1.7;
      margin-top: 16px;
    }
    .section-header {
      margin-bottom: 56px;
    }
    section { padding: 96px 0; }
    section.tight { padding: 64px 0; }

    /* ── NAV ───────────────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.2s;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo-mark {
      width: 36px;
      height: 36px;
    }
    .nav-logo-text {
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--black);
    }
    .nav-logo-text span { color: var(--aqua); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-dk);
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--aqua); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-login {
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-dk);
      padding: 8px 16px;
      border-radius: 6px;
      transition: background 0.15s;
    }
    .nav-login:hover { background: var(--gray-lt); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--black);
      border-radius: 2px;
      transition: all 0.2s;
    }

    /* ── HERO ──────────────────────────────────────────────────────────── */
    .hero {
      padding: 160px 0 100px;
      background: linear-gradient(160deg, #001a20 0%, #00778B 60%, #009aad 100%);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(253,185,19,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,119,139,0.3) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(253,185,19,0.15);
      border: 1px solid rgba(253,185,19,0.3);
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .hero-eyebrow span {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      display: inline-block;
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      margin-bottom: 40px;
      font-weight: 400;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .hero-trust {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
      flex-wrap: wrap;
    }
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      font-weight: 500;
    }
    .hero-trust-item svg { color: var(--gold); }
    .hero-visual {
      position: relative;
    }
    .hero-screen {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-lg);
      padding: 24px;
      backdrop-filter: blur(8px);
      box-shadow: 0 32px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .screen-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 20px;
    }
    .screen-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
    }
    .screen-dot:nth-child(1) { background: #ff5f57; }
    .screen-dot:nth-child(2) { background: #ffbd2e; }
    .screen-dot:nth-child(3) { background: #28c940; }
    .screen-url {
      flex: 1;
      background: rgba(255,255,255,0.08);
      border-radius: 6px;
      padding: 4px 12px;
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      font-family: monospace;
    }
    /* Dashboard mockup inside hero */
    .dash-mock {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .dash-kpi {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 16px;
    }
    .dash-kpi-label { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
    .dash-kpi-value { font-size: 24px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; }
    .dash-kpi-sub { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 4px; }
    .dash-kpi.gold .dash-kpi-value { color: var(--gold); }
    .dash-kpi.green .dash-kpi-value { color: #4ade80; }
    .dash-bar {
      grid-column: 1 / -1;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 16px;
    }
    .dash-bar-label { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 12px; }
    .dash-bars {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      height: 48px;
    }
    .dash-bar-col { flex: 1; border-radius: 4px 4px 0 0; background: var(--aqua); opacity: 0.5; }
    .dash-bar-col.active { opacity: 1; background: var(--gold); }
    .dash-case {
      grid-column: 1 / -1;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      overflow: hidden;
    }
    .dash-case-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .dash-case-row:last-child { border-bottom: none; }
    .dash-case-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .dash-case-name { font-size: 11px; color: rgba(255,255,255,0.7); flex: 1; font-weight: 500; }
    .dash-case-tag { font-size: 9px; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.07); padding: 2px 8px; border-radius: 100px; }

    /* ── LOGOS / SOCIAL PROOF ──────────────────────────────────────────── */
    .proof-strip {
      background: var(--gray-lt);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 32px 0;
    }
    .proof-inner {
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .proof-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray);
      white-space: nowrap;
    }
    .proof-badges {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .proof-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--gray-dk);
    }
    .proof-badge-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── FEATURES ──────────────────────────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .feature-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: all 0.2s;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--aqua), var(--gold));
      opacity: 0;
      transition: opacity 0.2s;
    }
    .feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--aqua-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--aqua);
    }
    .feature-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 10px;
    }
    .feature-desc {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.65;
    }

    /* ── HOW IT WORKS ──────────────────────────────────────────────────── */
    .hiw-bg {
      background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
    }
    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      position: relative;
    }
    .hiw-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(12.5% + 16px);
      right: calc(12.5% + 16px);
      height: 1px;
      background: linear-gradient(90deg, var(--aqua), var(--gold));
    }
    .hiw-step { text-align: center; }
    .hiw-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--aqua);
      color: var(--white);
      font-size: 20px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      box-shadow: 0 0 0 6px var(--aqua-lt);
    }
    .hiw-step:nth-child(4) .hiw-num { background: var(--gold); color: var(--black); box-shadow: 0 0 0 6px rgba(253,185,19,0.15); }
    .hiw-step-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
    .hiw-step-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

    /* ── BENEFIT SPLIT ─────────────────────────────────────────────────── */
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .split-section.reverse .split-visual { order: -1; }
    .split-check-list {
      list-style: none;
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .split-check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--gray-dk);
      line-height: 1.5;
    }
    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--aqua-lt);
      color: var(--aqua);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .split-visual {
      background: linear-gradient(135deg, var(--aqua-lt) 0%, rgba(253,185,19,0.08) 100%);
      border-radius: var(--radius-lg);
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    .split-visual::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(0,119,139,0.12) 0%, transparent 70%);
    }
    .mini-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px 20px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .mini-card:last-child { margin-bottom: 0; }
    .mini-card-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .mini-card-body { flex: 1; min-width: 0; }
    .mini-card-title { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
    .mini-card-sub { font-size: 11px; color: var(--gray); }
    .mini-card-badge { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
    .badge-green { background: #dcfce7; color: #15803d; }
    .badge-blue  { background: #dbeafe; color: #1d4ed8; }
    .badge-gold  { background: rgba(253,185,19,0.15); color: #9a6d00; }
    .badge-red   { background: #fee2e2; color: #b91c1c; }

    /* ── TESTIMONIALS ──────────────────────────────────────────────────── */
    .testimonials-bg { background: var(--aqua); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: 32px 28px;
    }
    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 16px;
      color: var(--gold);
    }
    .testimonial-quote {
      font-size: 15px;
      color: rgba(255,255,255,0.85);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
      font-weight: 400;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      object-fit: cover;
      background: rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 800;
      color: var(--white);
      flex-shrink: 0;
    }
    .testimonial-name { font-size: 14px; font-weight: 700; color: var(--white); }
    .testimonial-role { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 1px; }

    /* ── PRICING ───────────────────────────────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: stretch;
    }
    .pricing-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 24px;
      transition: all 0.2s;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .pricing-card.featured {
      background: var(--black);
      border-color: var(--black);
      box-shadow: var(--shadow-lg);
      z-index: 2;
    }
    .pricing-popular {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--black);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 16px;
      border-radius: 100px;
      white-space: nowrap;
    }
    .pricing-tier { font-size: 13px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
    .pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
    .pricing-price { font-size: 42px; font-weight: 900; color: var(--black); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
    .pricing-card.featured .pricing-price { color: var(--white); }
    .pricing-price sup { font-size: 18px; font-weight: 700; vertical-align: super; letter-spacing: 0; }
    .pricing-cadence { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
    .pricing-card.featured .pricing-cadence { color: rgba(255,255,255,0.45); }
    .pricing-desc { font-size: 13px; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }
    .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.55); }
    .pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
    .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
    .pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-dk); }
    .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }
    .pricing-features li.dimmed { opacity: 0.4; }
    .pricing-check { width: 16px; height: 16px; color: var(--aqua); flex-shrink: 0; }
    .pricing-card.featured .pricing-check { color: var(--gold); }
    .pricing-x { width: 16px; height: 16px; color: var(--border); flex-shrink: 0; }
    .pricing-cta-btn {
      display: block;
      width: 100%;
      padding: 13px;
      text-align: center;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
    }
    .pricing-cta-btn.light {
      background: var(--aqua-lt);
      color: var(--aqua);
    }
    .pricing-cta-btn.light:hover { background: var(--aqua); color: var(--white); }
    .pricing-cta-btn.dark {
      background: var(--gold);
      color: var(--black);
    }
    .pricing-cta-btn.dark:hover { background: var(--gold-dk); }
    .pricing-note { text-align: center; font-size: 13px; color: var(--gray); margin-top: 32px; }

    /* ── SECURITY ──────────────────────────────────────────────────────── */
    .security-bg {
      background: linear-gradient(160deg, #0c1a1f 0%, #001a20 50%, #0a0f12 100%);
    }
    .security-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .security-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: background 0.2s;
    }
    .security-card:hover { background: rgba(255,255,255,0.07); }
    .security-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(0,119,139,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5dd8ed;
      margin-bottom: 16px;
    }
    .security-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .security-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }
    .security-badge-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 48px;
      justify-content: center;
    }
    .security-compliance-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 12px 20px;
    }
    .security-compliance-badge-icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,119,139,0.25);
      color: #5dd8ed;
    }
    .security-compliance-badge-text { }
    .security-compliance-badge-name { font-size: 13px; font-weight: 700; color: var(--white); }
    .security-compliance-badge-sub  { font-size: 11px; color: rgba(255,255,255,0.4); }

    /* ── CTA STRIP ─────────────────────────────────────────────────────── */
    .cta-strip {
      background: var(--gold);
      padding: 80px 0;
    }
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .cta-heading {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 900;
      color: var(--black);
      letter-spacing: -0.025em;
      line-height: 1.1;
    }
    .cta-sub {
      font-size: 16px;
      color: rgba(0,0,0,0.55);
      margin-top: 8px;
    }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-cta-dark {
      background: var(--black);
      color: var(--white);
    }
    .btn-cta-dark:hover { background: var(--gray-dk); }
    .btn-cta-outline {
      background: transparent;
      color: var(--black);
      border: 2px solid rgba(0,0,0,0.25);
    }
    .btn-cta-outline:hover { border-color: var(--black); }

    /* ── DEMO MODAL ────────────────────────────────────────────────────── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      max-width: 480px;
      width: 100%;
      transform: translateY(12px);
      transition: transform 0.2s;
      position: relative;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    .modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--gray-lt);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--gray);
      transition: background 0.15s;
    }
    .modal-close:hover { background: var(--border); }
    .modal-tag { margin-bottom: 16px; }
    .modal-title { font-size: 24px; font-weight: 800; color: var(--black); letter-spacing: -0.02em; margin-bottom: 8px; }
    .modal-sub { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 28px; }
    .form-group { margin-bottom: 16px; }
    .form-label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-dk); margin-bottom: 6px; letter-spacing: 0.02em; }
    .form-input {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
      color: var(--black);
      background: var(--white);
      transition: border-color 0.15s;
      outline: none;
    }
    .form-input:focus { border-color: var(--aqua); box-shadow: 0 0 0 3px var(--aqua-lt); }
    .form-input::placeholder { color: #9ca3af; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-submit {
      width: 100%;
      padding: 15px;
      background: var(--aqua);
      color: var(--white);
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 8px;
    }
    .form-submit:hover { background: var(--aqua-dk); transform: translateY(-1px); }
    .form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }
    .form-success {
      text-align: center;
      padding: 20px 0;
      display: none;
    }
    .form-success-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: #dcfce7;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 28px;
    }
    .form-success-title { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
    .form-success-sub { font-size: 14px; color: var(--gray); line-height: 1.6; }

    /* ── FOOTER ────────────────────────────────────────────────────────── */
    footer {
      background: var(--black);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 32px;
    }
    .footer-brand-name {
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--white);
      margin-bottom: 12px;
    }
    .footer-brand-name span { color: var(--aqua); }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 24px; max-width: 260px; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social-link {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      transition: all 0.15s;
    }
    .footer-social-link:hover { background: rgba(255,255,255,0.1); color: var(--white); }
    .footer-col-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.15s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }
    .bahamas-bar {
      height: 4px;
      background: linear-gradient(90deg, #00778B 0%, #00778B 33%, #FDB913 33%, #FDB913 67%, #1a1a1a 67%);
    }

    /* ── RESPONSIVE ────────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .hiw-steps { grid-template-columns: repeat(2, 1fr); }
      .hiw-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .security-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      section { padding: 64px 0; }
      .hero { padding: 120px 0 72px; }
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { display: none; }
      .hero h1 { font-size: 38px; }
      .features-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .split-section { grid-template-columns: 1fr; gap: 40px; }
      .split-section.reverse .split-visual { order: 0; }
      .hiw-steps { grid-template-columns: 1fr; }
      .security-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .cta-inner { flex-direction: column; text-align: center; }
      .form-grid { grid-template-columns: 1fr; }
    }

    /* ── SCROLL ANIMATIONS ─────────────────────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }

/* Mobile nav open state */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: #fff;
  padding: 16px 24px 24px;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 99;
  gap: 16px;
}
.nav-current { color: var(--aqua) !important; }
.req { color: #ef4444; }
.optional { font-weight: 400; color: var(--gray); }
.alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }
.alert-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
/* Inner page hero (for non-home pages) */
.page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(160deg, #001a20 0%, #00778B 60%, #009aad 100%);
}
.page-hero h1 { font-size: clamp(32px,5vw,52px); font-weight:900; letter-spacing:-0.03em; color:#fff; line-height:1.1; margin-bottom:16px; }
.page-hero p  { font-size:17px; color:rgba(255,255,255,0.7); line-height:1.7; max-width:600px; }
/* Prose pages (legal) */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size:22px; font-weight:800; color:var(--black); margin:40px 0 12px; }
.prose h3 { font-size:16px; font-weight:700; color:var(--black); margin:28px 0 8px; }
.prose p, .prose li { font-size:15px; color:var(--gray-dk); line-height:1.75; margin-bottom:12px; }
.prose ul, .prose ol { padding-left:24px; margin-bottom:16px; }
.prose a { color:var(--aqua); }
.prose a:hover { text-decoration:underline; }
.prose .last-updated { font-size:13px; color:var(--gray); margin-bottom:32px; }
.prose table { width:100%; border-collapse:collapse; margin-bottom:24px; font-size:14px; }
.prose th { background:var(--gray-lt); padding:10px 14px; text-align:left; font-weight:700; border:1px solid var(--border); }
.prose td { padding:10px 14px; border:1px solid var(--border); color:var(--gray-dk); }
