

    /* ─── Design Tokens ─────────────────────────────────────────── */
    :root {
      --navy:        #0B2545;
      --blue:        #1B6CA8;
      --sky:         #2E9CCA;
      --accent:      #F5A623;
      --accent-dark: #D4891A;
      --light-bg:    #F4F8FB;
      --lighter-bg:  #EAF2FA;
      --white:       #FFFFFF;
      --text-dark:   #0D1F35;
      --text-mid:    #3D5166;
      --text-soft:   #6B839A;
      --border:      #D6E4EF;
      --radius:      12px;
      --radius-lg:   20px;
      --shadow-sm:   0 2px 12px rgba(11,37,69,.07);
      --shadow-md:   0 8px 32px rgba(11,37,69,.12);
      --shadow-lg:   0 20px 60px rgba(11,37,69,.18);
    }

    /* ─── Base ───────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      color: var(--text-dark);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'DM Serif Display', Georgia, serif;
      line-height: 1.18;
    }

    p { line-height: 1.7; }

    /* ─── Navbar ──────────────────────────────────────────────────── */
    .site-nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .site-nav .logo img {
      width: 175px;
        height: auto;
    }

    .nav-cta {
      font-size: .875rem;
      font-weight: 600;
      color: var(--blue);
      text-decoration: none;
      border: 1.5px solid var(--blue);
      border-radius: 100px;
      padding: 6px 20px;
      transition: background .2s, color .2s;
    }
    .nav-cta:hover { background: var(--blue); color: var(--white); }

    /* ─── Hero ────────────────────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #133A68 55%, #1a5491 100%);
      position: relative;
      overflow: hidden;
      padding: 80px 0 90px;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(46,156,202,.22) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(245,166,35,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(245,166,35,.12);
      border: 1px solid rgba(245,166,35,.3);
      border-radius: 100px;
      padding: 5px 14px;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.25rem);
      color: var(--white);
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: italic;
      color: #6DD4F5;
    }
    .hero-sub {
      font-size: clamp(.95rem, 2vw, 1.1rem);
      color: rgba(255,255,255,.78);
      max-width: 480px;
      margin-bottom: 0;
    }

    /* ─── Hero Form Card ──────────────────────────────────────────── */
    .hero-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      box-shadow: var(--shadow-lg);
      position: relative;
      z-index: 2;
    }
    .hero-card h3 {
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .hero-card .card-sub {
      font-size: .875rem;
      color: var(--text-soft);
      margin-bottom: 24px;
    }

    .form-label {
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 6px;
    }
    .form-control {
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 12px 16px;
      font-size: .95rem;
      color: var(--text-dark);
      transition: border-color .2s, box-shadow .2s;
      background: #fafcfe;
    }
    .form-control:focus {
      border-color: var(--sky);
      box-shadow: 0 0 0 3px rgba(46,156,202,.15);
      background: var(--white);
      outline: none;
    }
    .form-control::placeholder { color: #9BB0C4; }

    .btn-primary-cta {
      display: block;
      width: 100%;
      background: var(--accent);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .02em;
      border: none;
      border-radius: var(--radius);
      padding: 16px 24px;
      min-height: 54px;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(245,166,35,.35);
    }
    .btn-primary-cta:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(245,166,35,.45);
    }
    .btn-primary-cta:active { transform: translateY(0); }

    .privacy-note {
      font-size: .78rem;
      color: var(--text-soft);
      text-align: center;
      margin-top: 12px;
    }
    .privacy-note i { color: var(--sky); }

    .trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }
    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .78rem;
      font-weight: 600;
      color: rgba(255,255,255,.85);
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 100px;
      padding: 5px 12px;
    }
    .trust-pill i { color: #6DD4F5; font-size: .8rem; }

    /* ─── Section Shared ──────────────────────────────────────────── */
    section { padding: 80px 0; }
    .section-eyebrow {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      color: var(--navy);
      margin-bottom: 16px;
    }
    .section-lead {
      font-size: 1.05rem;
      color: var(--text-mid);
      max-width: 580px;
      margin: 0 auto 48px;
    }

    /* ─── Audit Items Grid ────────────────────────────────────────── */
    .audit-section { background: var(--light-bg); }

    .audit-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      height: 100%;
      transition: box-shadow .2s, transform .2s;
    }
    .audit-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .audit-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--lighter-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .audit-icon i {
      font-size: 1.4rem;
      color: var(--blue);
    }
    .audit-card h5 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .audit-card p {
      font-size: .875rem;
      color: var(--text-mid);
      margin: 0;
      line-height: 1.6;
    }

    /* ─── Stats Section ───────────────────────────────────────────── */
    .stats-section {
      background: linear-gradient(135deg, #0B2545 0%, #133A68 100%);
      padding: 72px 0;
    }
    .stat-block {
      text-align: center;
      padding: 20px 16px;
    }
    .stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(3rem, 7vw, 4.5rem);
      color: var(--white);
      line-height: 1;
      margin-bottom: 12px;
    }
    .stat-number span { color: var(--accent); }
    .stat-label {
      font-size: .9rem;
      color: rgba(255,255,255,.7);
      line-height: 1.5;
      max-width: 180px;
      margin: 0 auto;
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,.12);
      align-self: stretch;
      margin: 0;
    }

    /* ─── How It Works ────────────────────────────────────────────── */
    .how-section { background: var(--white); }

    .step-connector {
      position: relative;
    }
    .step-connector::after {
      content: '';
      position: absolute;
      top: 26px;
      left: calc(50% + 30px);
      width: calc(100% - 60px);
      height: 2px;
      background: linear-gradient(90deg, var(--sky), transparent);
      opacity: .35;
    }
    .step-connector:last-child::after { display: none; }

    .step-number {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--blue);
      color: var(--white);
      font-family: 'DM Serif Display', serif;
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 4px 16px rgba(27,108,168,.35);
    }
    .step-title {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .step-desc {
      font-size: .875rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ─── Trust Badge Strip ───────────────────────────────────────── */
    .trust-section { background: var(--lighter-bg); padding: 56px 0; }

    .trust-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
    }
    .trust-badge i {
      font-size: 1.4rem;
      color: var(--sky);
    }
    .trust-badge-label {
      font-size: .875rem;
      font-weight: 600;
      color: var(--navy);
    }
    .trust-divider {
      width: 1px;
      height: 36px;
      background: var(--border);
    }

    /* ─── Bottom CTA ──────────────────────────────────────────────── */
    .bottom-cta {
      background: var(--white);
      padding: 88px 0 80px;
    }
    .bottom-cta-card {
      background: linear-gradient(135deg, var(--navy) 0%, #1B4F8A 100%);
      border-radius: 24px;
      padding: 60px 48px;
      position: relative;
      overflow: hidden;
    }
    .bottom-cta-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(46,156,202,.2) 0%, transparent 70%);
    }
    .bottom-cta-card h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--white);
      margin-bottom: 14px;
    }
    .bottom-cta-card .lead-text {
      color: rgba(255,255,255,.75);
      font-size: 1.05rem;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .bottom-form { max-width: 480px; }
    .bottom-form .form-control {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.2);
      color: var(--white);
    }
    .bottom-form .form-control::placeholder { color: rgba(255,255,255,.45); }
    .bottom-form .form-control:focus {
      background: rgba(255,255,255,.15);
      border-color: var(--sky);
      color: var(--white);
    }
    .bottom-form .form-label { color: rgba(255,255,255,.7); }

    /* ─── Footer ──────────────────────────────────────────────────── */
    .site-footer {
      background: var(--navy);
      padding: 32px 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-text {
      font-size: .82rem;
      color: rgba(255,255,255,.45);
    }
    .footer-links a {
      font-size: .82rem;
      color: rgba(255,255,255,.45);
      text-decoration: none;
      margin-left: 20px;
      transition: color .2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,.75); }

    /* ─── Divider ─────────────────────────────────────────────────── */
    .stat-row-dividers .col:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(255,255,255,.12);
    }
    .stat-row-dividers .col { position: relative; }

    /* ─── Animations ──────────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up {
      opacity: 0;
      animation: fadeUp .6s ease forwards;
    }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .22s; }
    .delay-3 { animation-delay: .34s; }
    .delay-4 { animation-delay: .46s; }

    /* ─── Responsive ──────────────────────────────────────────────── */
    @media (max-width: 991px) {
      .hero { padding: 60px 0 72px; }
      .hero-card { margin-top: 40px; padding: 28px 24px; }
      .bottom-cta-card { padding: 40px 28px; }
      section { padding: 60px 0; }
    }

    @media (max-width: 575px) {
      .stat-row-dividers .col::after { display: none; }
      .trust-divider { display: none; }
      .step-connector::after { display: none; }
      .hero-sub { max-width: 100%; }
      body { font-size: 15px; }
    }
