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

    :root {
      --cream: #FAF6F1;
      --navy: #1E2B3C;
      --red: #E8201A;
      --red-hover: #c91812;
      --white: #ffffff;
      --muted: #6B7A8D;
    }

    html, body {
      height: 100%;
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--navy);
      overflow: hidden;
    }

    /* ─── HERO ─────────────────────────────────────────────── */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* Background image */
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('bg.png') right center / cover no-repeat;
      z-index: 0;
    }

    /* ─── NAV ───────────────────────────────────────────────── */
    .nav {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 32px 56px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--navy);
      text-decoration: none;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .nav-link:hover { opacity: 1; }

    .nav-cta {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--white);
      background: var(--red);
      padding: 11px 26px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover {
      background: var(--red-hover);
      transform: translateY(-1px);
    }

    /* ─── HERO CONTENT ──────────────────────────────────────── */
    .hero-content {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 56px 0 72px;
      max-width: 780px;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s ease forwards 0.2s;
    }
    .eyebrow-line {
      width: 28px;
      height: 1.5px;
      background: var(--red);
    }

    .hero-headline {
      border-left: 3.5px solid var(--red);
      padding-left: 24px;
      margin-bottom: 32px;
    }

    .headline-top {
      display: block;
      font-size: clamp(38px, 5.5vw, 72px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--navy);
      letter-spacing: -0.01em;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 0.7s ease forwards 0.35s;
    }

    .headline-bottom {
      display: block;
      font-size: clamp(44px, 6.5vw, 88px);
      font-weight: 900;
      line-height: 1.0;
      color: var(--navy);
      letter-spacing: -0.03em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 0.7s ease forwards 0.5s;
    }

    .hero-sub {
      font-size: clamp(14px, 1.4vw, 17px);
      font-weight: 400;
      line-height: 1.7;
      color: var(--muted);
      max-width: 460px;
      margin-left: 28px;
      margin-bottom: 44px;
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s ease forwards 0.65s;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: 28px;
      opacity: 0;
      transform: translateY(10px);
      animation: fadeUp 0.6s ease forwards 0.8s;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--white);
      background: var(--red);
      padding: 15px 32px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: var(--red-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 32, 26, 0.28);
    }
    .btn-primary svg { transition: transform 0.2s; }
    .btn-primary:hover svg { transform: translateX(4px); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--navy);
      text-decoration: none;
      opacity: 0.65;
      transition: opacity 0.2s;
    }
    .btn-ghost:hover { opacity: 1; }

    /* ─── BOTTOM STAT BAR ───────────────────────────────────── */
    .hero-stats {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 0;
      padding: 0 56px 40px 100px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 1s;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-right: 48px;
      border-right: 1px solid rgba(30, 43, 60, 0.12);
      margin-right: 48px;
    }
    .stat-item:last-child {
      border-right: none;
      padding-right: 0;
      margin-right: 0;
    }

    .stat-number {
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .stat-number span { color: var(--red); }

    .stat-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ─── MOBILE MENU OVERLAY ───────────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--cream);
      z-index: 100;
      flex-direction: column;
      padding: 32px 32px 48px;
      opacity: 0;
      transform: translateX(100%);
      transition: all 0.3s ease;
    }
    .mobile-menu.open {
      display: flex;
      opacity: 1;
      transform: translateX(0);
    }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 56px;
    }

    .mobile-close {
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .mobile-nav-links {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mobile-nav-link {
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      padding: 18px 0;
      border-bottom: 1px solid rgba(30,43,60,0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      letter-spacing: -0.01em;
      transition: color 0.2s;
    }
    .mobile-nav-link:hover { color: var(--red); }

    .mobile-cta {
      margin-top: 40px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--white);
      background: var(--red);
      padding: 16px 32px;
      border-radius: 4px;
      text-decoration: none;
      text-align: center;
    }

    /* ─── ANIMATIONS ────────────────────────────────────────── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── RESPONSIVE ────────────────────────────────────────── */
    @media (max-width: 768px) {
      html, body { overflow: auto; }

      .hero { height: auto; min-height: 100svh; overflow: visible; }

      .hero-bg {
        background-position: right bottom;
        background-size: 120%;
        opacity: 0.5;
      }

      .nav { padding: 24px 24px; }
      .nav-right { display: none; }
      .nav-hamburger { display: flex; }

      .hero-content {
        padding: 40px 24px 32px;
        max-width: 100%;
      }

      .hero-eyebrow { margin-bottom: 20px; }

      .hero-headline { padding-left: 16px; }

      .hero-sub {
        margin-left: 20px;
        font-size: 15px;
        margin-bottom: 32px;
      }

      .hero-actions {
        margin-left: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }

      .btn-primary { padding: 14px 28px; font-size: 14px; }

      .hero-stats {
        padding: 24px 24px 48px 44px;
        flex-wrap: wrap;
        gap: 24px;
        animation: none;
        opacity: 1;
      }

      .stat-item {
        padding-right: 0;
        border-right: none;
        margin-right: 0;
        width: calc(50% - 12px);
      }
    }

    @media (max-width: 480px) {
      .hero-stats { padding: 24px 24px 48px 24px; }
    }
