
    /* ===== RESET & BASE ===== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    :root {
      --navy: #0D1B2A;
      --navy-mid: #1B2838;
      --navy-deep: #0A1628;
      --gold: #C8963E;
      --gold-light: #D4A84E;
      --gold-dark: #B8862E;
      --white: #FFFFFF;
      --light-gray: #F5F5F5;
      --dark-text: #1A1A2E;
      --text-muted: #6B7280;
      --font-headline: 'DM Serif Display', Georgia, serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: #FFFFFF;
      color: #1A1A2E;
      min-height: 100vh;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'DM Serif Display', serif;
      line-height: 1.2;
    }

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

    img {
      max-width: 100%;
      height: auto;
    }

    ul, ol {
      list-style: none;
    }

    button {
      font-family: 'Plus Jakarta Sans', sans-serif;
      cursor: pointer;
      border: none;
      outline: none;
    }

    /* ===== UTILITY ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-pad {
      padding: 100px 0;
    }

    .section-pad-sm {
      padding: 80px 0;
    }

    .text-gold {
      color: #C8963E;
    }

    .text-muted {
      color: #8A9BB5;
    }

    .text-center {
      text-align: center;
    }

    /* ===== NAVIGATION ===== */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(13, 27, 42, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(200, 150, 62, 0.15);
      transition: box-shadow 0.3s ease;
    }

    .navbar.scrolled {
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 72px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .brand-accent-bar {
      width: 3px;
      height: 36px;
      background: linear-gradient(180deg, #C8963E, #A67A2E);
      border-radius: 2px;
    }

    .brand-text {
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      color: #E0E7EE;
      letter-spacing: 2px;
      line-height: 1.1;
    }

    .brand-text span {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      color: #C8963E;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 600;
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links a {
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      color: #8A9BB5;
      border-radius: 8px;
      transition: color 0.2s ease, background 0.2s ease;
      letter-spacing: 0.2px;
    }

    .nav-links a:hover {
      color: #E0E7EE;
      background: rgba(255, 255, 255, 0.04);
    }

    .nav-links a.active {
      color: #C8963E;
      background: rgba(200, 150, 62, 0.08);
    }

    .nav-cta {
      margin-left: 12px;
      padding: 10px 22px !important;
      background: #C8963E !important;
      color: #fff !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      font-size: 13px !important;
      letter-spacing: 0.3px;
      transition: background 0.2s ease, transform 0.2s ease !important;
    }

    .nav-cta:hover {
      background: #B8862E !important;
      transform: translateY(-1px);
    }

    .login-dropdown {
      position: relative;
      margin-left: 12px;
    }
    .login-dropdown-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      background: #C8963E;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .login-dropdown-btn:hover { background: #B8862E; transform: translateY(-1px); }
    .login-dropdown-btn svg { width: 14px; height: 14px; }
    .login-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 180px;
      background: #0F1E30;
      border: 1px solid rgba(200,150,62,0.2);
      border-radius: 10px;
      padding: 6px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.4);
      z-index: 200;
    }
    .login-dropdown-menu a {
      display: block;
      padding: 10px 14px;
      color: #E0E7EE;
      font-size: 13px;
      font-weight: 500;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.15s;
    }
    .login-dropdown-menu a:hover { background: rgba(200,150,62,0.12); color: #C8963E; }
    .login-dropdown.open .login-dropdown-menu { display: block; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      padding: 8px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #E0E7EE;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(13, 27, 42, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 999;
      padding: 32px 24px;
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 500;
      color: #8A9BB5;
      border-radius: 10px;
      transition: all 0.2s ease;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
      color: #C8963E;
      background: rgba(200, 150, 62, 0.08);
    }

    .mobile-menu .mobile-cta {
      margin-top: 16px;
      padding: 16px 24px;
      background: #C8963E;
      color: #fff;
      border-radius: 10px;
      font-weight: 600;
      text-align: center;
      font-size: 15px;
    }

    .mobile-menu .mobile-cta:hover {
      background: #B8862E;
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 80px 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 150, 62, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 70%, rgba(200, 150, 62, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #0D1B2A 0%, #0F2035 50%, #0D1B2A 100%);
    }

    /* Abstract road/route lines */
    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 200px;
      background:
        repeating-linear-gradient(
          90deg,
          transparent,
          transparent 60px,
          rgba(200, 150, 62, 0.03) 60px,
          rgba(200, 150, 62, 0.03) 62px
        );
      mask-image: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 100%);
      -webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    }

    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200, 150, 62, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 150, 62, 0.02) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 70%);
    }

    /* Decorative truck silhouette via CSS */
    .hero-truck-silhouette {
      position: absolute;
      bottom: 40px;
      right: 8%;
      width: 280px;
      height: 120px;
      opacity: 0.04;
      z-index: 0;
    }

    .hero-truck-silhouette::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 200px;
      height: 80px;
      background: #C8963E;
      border-radius: 4px 4px 0 0;
    }

    .hero-truck-silhouette::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 200px;
      width: 80px;
      height: 60px;
      background: #C8963E;
      border-radius: 8px 0 0 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(200, 150, 62, 0.1);
      border: 1px solid rgba(200, 150, 62, 0.2);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: #C8963E;
      margin-bottom: 28px;
      letter-spacing: 0.5px;
    }

    .hero-badge svg {
      width: 16px;
      height: 16px;
      fill: #C8963E;
    }

    .hero h1 {
      font-size: 56px;
      color: #FFFFFF;
      margin-bottom: 24px;
      letter-spacing: -0.5px;
      line-height: 1.1;
    }

    .hero h1 em {
      font-style: normal;
      color: #C8963E;
    }

    .hero-sub {
      font-size: 19px;
      color: #8A9BB5;
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 560px;
      font-weight: 400;
    }

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

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      background: #C8963E;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      transition: all 0.25s ease;
      letter-spacing: 0.3px;
    }

    .btn-primary:hover {
      background: #B8862E;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(200, 150, 62, 0.25);
    }

    .btn-primary:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 3px;
    }

    .btn-primary svg {
      width: 18px;
      height: 18px;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #E0E7EE;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      transition: all 0.25s ease;
      letter-spacing: 0.3px;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(200, 150, 62, 0.3);
      transform: translateY(-2px);
    }

    .btn-secondary:focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 3px;
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hero-stat-item {
      text-align: left;
    }

    .hero-stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: 36px;
      color: #C8963E;
      line-height: 1;
      margin-bottom: 6px;
    }

    .hero-stat-label {
      font-size: 13px;
      color: #8A9BB5;
      font-weight: 500;
    }

    /* ===== WHY CARRIERS SECTION ===== */
    .why-carriers {
      background: var(--white);
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-label {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: 42px;
      color: var(--dark-text);
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .benefit-card {
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 12px;
      padding: 0;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      border-color: transparent;
    }

    .benefit-img {
      width: 100%;
      height: 180px;
      overflow: hidden;
    }

    .benefit-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .benefit-card:hover .benefit-img img {
      transform: scale(1.05);
    }

    .benefit-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 8px;
      padding: 24px 28px 0;
    }

    .benefit-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      padding: 0 28px 28px;
    }

    /* ===== CARAVAN CARRIER PROGRAM ===== */
    .caravan {
      position: relative;
      background: #0D1B2A;
    }

    .caravan-inner {
      position: relative;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(200, 150, 62, 0.15);
      border-radius: 24px;
      padding: 60px;
      overflow: hidden;
    }

    .caravan-inner::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 60px;
      right: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #C8963E, transparent);
    }

    .caravan-glow {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .caravan-header {
      text-align: center;
      margin-bottom: 48px;
      position: relative;
      z-index: 1;
    }

    .caravan-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(200, 150, 62, 0.12);
      border: 1px solid rgba(200, 150, 62, 0.25);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      color: #C8963E;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .caravan-header h2 {
      font-size: 40px;
      color: #FFFFFF;
      margin-bottom: 16px;
    }

    .caravan-header p {
      font-size: 17px;
      color: #8A9BB5;
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Tier Cards */
    .tiers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
    }

    .tier-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .tier-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    }

    .tier-card.bronze { border-top: 3px solid #CD7F32; }
    .tier-card.silver { border-top: 3px solid #C0C0C0; }
    .tier-card.gold { border-top: 3px solid #C8963E; }
    .tier-card.platinum { border-top: 3px solid #E5E4E2; }

    .tier-card.bronze:hover { border-color: rgba(205, 127, 50, 0.4); }
    .tier-card.silver:hover { border-color: rgba(192, 192, 192, 0.4); }
    .tier-card.gold:hover { border-color: rgba(200, 150, 62, 0.4); box-shadow: 0 8px 40px rgba(200, 150, 62, 0.1); }
    .tier-card.platinum:hover { border-color: rgba(229, 228, 226, 0.4); }

    .tier-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 22px;
    }

    .tier-card.bronze .tier-icon { background: rgba(205, 127, 50, 0.15); color: #CD7F32; }
    .tier-card.silver .tier-icon { background: rgba(192, 192, 192, 0.15); color: #C0C0C0; }
    .tier-card.gold .tier-icon { background: rgba(200, 150, 62, 0.15); color: #C8963E; }
    .tier-card.platinum .tier-icon { background: rgba(229, 228, 226, 0.15); color: #E5E4E2; }

    .tier-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 8px;
    }

    .tier-req {
      font-size: 12px;
      color: #8A9BB5;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      line-height: 1.6;
    }

    .tier-benefits {
      text-align: left;
    }

    .tier-benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 13px;
      color: #B0BFCF;
      line-height: 1.5;
    }

    .tier-benefit-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .tier-card.bronze .tier-benefit-item svg { stroke: #CD7F32; }
    .tier-card.silver .tier-benefit-item svg { stroke: #C0C0C0; }
    .tier-card.gold .tier-benefit-item svg { stroke: #C8963E; }
    .tier-card.platinum .tier-benefit-item svg { stroke: #E5E4E2; }

    .tier-popular {
      position: absolute;
      top: 16px;
      right: -30px;
      background: #C8963E;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 36px;
      transform: rotate(45deg);
    }

    /* ===== COVERAGE MAP SECTION ===== */
    .coverage {
      background: var(--light-gray);
    }

    .coverage-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .coverage-text h2 {
      font-size: 40px;
      color: var(--dark-text);
      margin-bottom: 16px;
    }

    .coverage-text > p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .coverage-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }

    .coverage-stat {
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .coverage-stat:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .coverage-stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 32px;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }

    .coverage-stat-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .lanes-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .lane-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .lane-item:hover {
      transform: translateX(4px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .lane-route {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }

    .lane-city {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark-text);
    }

    .lane-arrow {
      color: var(--gold);
      font-size: 14px;
    }

    .lane-arrow svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
    }

    .lane-miles {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
      white-space: nowrap;
    }

    .lane-tag {
      font-size: 10px;
      font-weight: 700;
      color: var(--gold-dark);
      background: rgba(200, 150, 62, 0.12);
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* ===== REQUIREMENTS SECTION ===== */
    .requirements {
      background: var(--white);
    }

    .requirements-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .requirements-text h2 {
      font-size: 40px;
      color: var(--dark-text);
      margin-bottom: 16px;
    }

    .requirements-text > p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .req-note {
      display: flex;
      gap: 12px;
      padding: 20px;
      background: rgba(200, 150, 62, 0.06);
      border: 1px solid rgba(200, 150, 62, 0.15);
      border-radius: 12px;
      margin-top: 28px;
    }

    .req-note svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .req-note p {
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
    }

    .requirements-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .req-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 24px;
      background: var(--light-gray);
      border: 1px solid #E5E7EB;
      border-radius: 14px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .req-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .req-check {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: rgba(200, 150, 62, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .req-check svg {
      width: 18px;
      height: 18px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2.5;
    }

    .req-item-text h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark-text);
      margin-bottom: 4px;
    }

    .req-item-text p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ===== CTA BANNER SECTION ===== */
    .cta-banner {
      background: linear-gradient(135deg, var(--navy) 0%, #162233 50%, var(--navy) 100%);
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(200,150,62,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-banner-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta-banner h2 {
      font-size: clamp(2rem, 5vw, 3.25rem);
      color: var(--white);
      margin-bottom: 12px;
    }

    .cta-banner .cta-sub {
      color: rgba(255,255,255,0.65);
      font-size: 1.05rem;
      margin-bottom: 36px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-banner-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-large {
      padding: 18px 40px;
      font-size: 16px;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--navy);
      border-top: 1px solid rgba(200, 150, 62, 0.15);
      padding: 64px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand {
      max-width: 280px;
    }

    .footer-brand .brand-text-footer {
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      color: #E0E7EE;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 14px;
      color: #6B7F99;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .footer-social a:hover {
      background: rgba(200, 150, 62, 0.1);
      border-color: rgba(200, 150, 62, 0.25);
    }

    .footer-social a svg {
      width: 18px;
      height: 18px;
      stroke: #8A9BB5;
      fill: none;
      stroke-width: 1.5;
    }

    .footer-social a:hover svg {
      stroke: var(--gold);
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #E0E7EE;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col li,
    .footer-col li a {
      font-size: 14px;
      color: #6B7F99;
      transition: color 0.2s ease;
    }

    .footer-col li a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copy {
      font-size: 13px;
      color: #4A5C73;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      font-size: 13px;
      color: #4A5C73;
      transition: color 0.2s ease;
    }

    .footer-legal a:hover {
      color: #C8963E;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .hero h1 {
        font-size: 46px;
      }

      .section-title,
      .caravan-header h2,
      .coverage-text h2,
      .requirements-text h2,
      .cta-banner h2 {
        font-size: 34px;
      }
    }

    @media (max-width: 900px) {
      .coverage-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .requirements-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }

      .hero-stats {
        gap: 32px;
      }

      .caravan-inner {
        padding: 40px 28px;
      }
    }

    @media (max-width: 640px) {
      .section-pad {
        padding: 64px 0;
      }

      .section-pad-sm {
        padding: 56px 0;
      }

      .hero {
        min-height: auto;
        padding: 56px 0;
      }

      .hero h1 {
        font-size: 34px;
      }

      .hero-sub {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions a {
        text-align: center;
        justify-content: center;
      }

      .hero-stats {
        flex-direction: column;
        gap: 20px;
      }

      .hero-stat-item {
        text-align: center;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .tiers-grid {
        grid-template-columns: 1fr;
      }

      .coverage-highlights {
        grid-template-columns: 1fr 1fr;
      }

      .section-title,
      .caravan-header h2,
      .coverage-text h2,
      .requirements-text h2,
      .cta-banner h2 {
        font-size: 28px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .cta-banner-btns {
        flex-direction: column;
      }

      .cta-banner-btns a {
        text-align: center;
        justify-content: center;
      }
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
    .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
    .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
    .animate-on-scroll.delay-4 { transition-delay: 0.4s; }

    /* ===== FOCUS / ACCESSIBILITY ===== */
    :focus-visible {
      outline: 2px solid #C8963E;
      outline-offset: 2px;
    }

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

    /* Skip link */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      background: #C8963E;
      color: #fff;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      z-index: 10000;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 16px;
    }
  
