/* =====================================================
   LOCAL HIGHLIGHTER — Design System & Stylesheet
   Color Palette:
     Navy   : #0F1F3D
     Amber  : #F59E0B
     Gold   : #D97706
     Cream  : #FAF7F2
     White  : #FFFFFF
     Gray50 : #F9FAFB
     Gray100: #F3F4F6
     Gray400: #9CA3AF
     Gray600: #4B5563
     Gray800: #1F2937
   ===================================================== */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1F2937;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
textarea, input { font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION ---- */
.section { padding: 96px 0; }
.section--dark { background: #0F1F3D; color: #fff; }
.section--cream { background: #FAF7F2; }
.text-center { text-align: center; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header--light { color: #fff; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-eyebrow--light {
  color: #FCD34D;
  background: rgba(252, 211, 77, 0.15);
  border-color: rgba(252, 211, 77, 0.3);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: #4B5563;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  position: relative;
}
.btn:focus-visible { outline: 2px solid #F59E0B; outline-offset: 3px; }

.btn--primary {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0F1F3D;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
  color: #0F1F3D;
}
.btn--primary:active { transform: translateY(0); }

.btn--amber {
  background: #F59E0B;
  color: #0F1F3D;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
  font-size: 1.05rem;
}
.btn--amber:hover { background: #FBBF24; transform: translateY(-2px); color: #0F1F3D; }

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #0F1F3D;
  border: 2px solid #0F1F3D;
}
.btn--outline:hover {
  background: #0F1F3D;
  color: #fff;
}

.btn--lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 10px; }
.btn--full { width: 100%; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 400;
  color: #0F1F3D;
  letter-spacing: -0.01em;
}
.logo-text strong { font-weight: 800; }
.nav.scrolled .logo-text { color: #0F1F3D; }
.nav:not(.scrolled) .logo-text { color: #fff; }
.nav:not(.scrolled) .logo-text strong { color: #F59E0B; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) .nav__links a:hover { color: #F59E0B; }
.nav.scrolled .nav__links a { color: #4B5563; }
.nav.scrolled .nav__links a:hover { color: #0F1F3D; }

.nav__cta { margin-left: auto; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.25s;
}
.nav.scrolled .nav__hamburger span { background: #0F1F3D; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #071324 0%, #0F1F3D 40%, #1A3060 70%, #0D2244 100%);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.1) 0%, transparent 50%);
}
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #FCD34D;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.highlight-text {
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  padding: 24px 40px;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; padding: 0 32px; }
.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #F59E0B;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.hero__divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: bounce 2.5s infinite;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #0F1F3D;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-bar__cities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-bar__cities span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E5E7EB;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,31,61,0.12);
}
.step__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 60%, #D97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
  display: block;
  animation: stepNumPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.step:nth-child(1) .step__number { animation-delay: 0.05s; }
.step:nth-child(3) .step__number { animation-delay: 0.15s; }
.step:nth-child(5) .step__number { animation-delay: 0.25s; }
@keyframes stepNumPop {
  from { opacity: 0; transform: scale(0.6) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}


.step__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: #0F1F3D; }
.step__desc { font-size: 0.9rem; color: #4B5563; line-height: 1.7; }

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, #F59E0B, #FCD34D);
  margin-top: 90px;
  position: relative;
}
.step-connector::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: #F59E0B;
  font-size: 1.2rem;
  font-weight: 700;
}


/* ============================================================
   WHY IT WORKS (features grid)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
}
.feature-card__icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: #F3F4F6; }
.feature-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }


/* ============================================================
   COVERAGE — Real Mapbox Map
   ============================================================ */
.coverage__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.coverage__title { text-align: left; }
.coverage__content .section-eyebrow { text-align: left; display: block; }
.coverage__content > p { color: #4B5563; margin-bottom: 28px; font-size: 1.05rem; line-height: 1.75; }
.coverage__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.coverage__stat { text-align: center; }
.cov-number { display: block; font-size: 1.6rem; font-weight: 800; color: #0F1F3D; }
.cov-label { font-size: 0.75rem; color: #9CA3AF; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* --- Map Container --- */
.coverage__map-col {
  position: relative;
}
.coverage__map-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2.5px solid #0D9B6E;        /* teal green border — matches zone outlines */
  box-shadow:
    0 20px 60px rgba(13, 155, 110, 0.12),
    0 4px 16px rgba(15, 31, 61, 0.06);
  background: #F5F5F0;
}
.coverage__map-canvas {
  width: 100%;
  height: 480px;
}

/* --- Demographic Stat Overlays (glassmorphic) --- */
.map-demo-stats {
  position: absolute;
  bottom: 56px;
  left: 16px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.map-demo-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.map-demo-stat__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.map-demo-stat__value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F1F3D;
  line-height: 1.1;
}
.map-demo-stat__label {
  font-size: 0.68rem;
  color: #6B7280;
  font-weight: 500;
  line-height: 1.2;
}

/* --- Homes Badge --- */
.map-homes-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: #4B5563;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.map-homes-badge strong {
  color: #0F1F3D;
  font-weight: 800;
}
.map-homes-badge__dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

/* --- Zip Code Selector Pills --- */
.coverage__zip-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.zip-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #4B5563;
  background: #F3F4F6;
  border: 2px solid #E5E7EB;
  cursor: pointer;
  transition: all 0.25s ease;
}
.zip-pill:hover {
  background: #FEF3C7;
  border-color: #F59E0B;
  color: #92400E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}
.zip-pill--active {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  border-color: #D97706;
  color: #fff;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}
.zip-pill--active:hover {
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
}
.zip-pill__icon {
  font-size: 0.85rem;
  line-height: 1;
}

/* Mapbox overrides */
.coverage__map-container .mapboxgl-ctrl-top-right {
  top: 12px;
  right: 12px;
}
.coverage__map-container .mapboxgl-ctrl-group {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}
.coverage__map-container .mapboxgl-ctrl-group button {
  width: 36px;
  height: 36px;
}


/* ============================================================
   PRICING / POSTCARD
   ============================================================ */
.postcard-wrapper {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,31,61,0.08);
  margin-bottom: 48px;
}
.postcard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}
.postcard-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F1F3D;
}
.postcard-size {
  font-size: 0.75rem;
  color: #9CA3AF;
  font-weight: 500;
}

.postcard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: #D1D5DB;
  padding: 3px;
}

.card-slot {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-slot--banner { min-height: 80px; }
.card-slot--large { min-height: 280px; }

.card-slot--sold {
  background: #F3F4F6;
  cursor: default;
}
.slot-sold-content {
  text-align: center;
  padding: 16px;
}
.slot-business-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 8px;
}
.slot-tag {
  display: inline-block;
  background: #FEE2E2;
  color: #DC2626;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
}

.card-slot--available {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border: 2px dashed #F59E0B;
  cursor: pointer;
}
.card-slot--available:hover {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
  z-index: 2;
  border-style: solid;
}
.slot-available-content {
  text-align: center;
  padding: 16px;
}
.slot-size-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.slot-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F1F3D;
  margin-bottom: 6px;
}
.slot-cta {
  font-size: 0.7rem;
  color: #D97706;
  font-weight: 600;
}
.slot-pulse {
  position: absolute;
  top: 8px; right: 8px;
  width: 8px; height: 8px;
  background: #F59E0B;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.postcard-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  border-top: 1px solid #E5E7EB;
  background: #F9FAFB;
}
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: #6B7280; font-weight: 500; }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; }
.legend-dot--sold { background: #D1D5DB; }
.legend-dot--available { background: #F59E0B; }

/* Price Cards */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.price-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,31,61,0.12);
}
.price-card--featured {
  border-color: #F59E0B;
  box-shadow: 0 8px 32px rgba(245,158,11,0.2);
  background: linear-gradient(180deg, #FFFBEB 0%, #fff 60%);
}
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #0F1F3D;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.1rem; font-weight: 700; color: #0F1F3D; margin-bottom: 4px; }
.price-card__dims {
  font-size: 0.8rem;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.price-card__amount { font-size: 2.5rem; font-weight: 800; color: #0F1F3D; margin-bottom: 24px; }
.price-card__features { margin-bottom: 28px; }
.price-card__features li {
  font-size: 0.88rem;
  color: #4B5563;
  padding: 6px 0;
  border-bottom: 1px solid #F3F4F6;
  text-align: left;
}
.price-card__features li:last-child { border-bottom: none; }
.price-card__best {
  font-size: 0.82rem;
  font-style: italic;
  color: #9CA3AF;
  margin-bottom: 16px;
  margin-top: -4px;
}

/* "What's Included" callout above pricing cards */
.included-callout {
  background: #0F1F3D;
  border-radius: 16px;
  padding: 28px 36px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.included-callout__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #F59E0B;
  letter-spacing: 0.01em;
}
.included-callout__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.included-callout__list li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  padding: 4px 0;
}
.included-callout__footer {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  letter-spacing: 0.02em;
}

/* Guarantee note (below pricing CTA) */
.guarantee-note {
  font-size: 0.88rem;
  color: #6B7280;
  font-style: italic;
  margin-top: 8px;
}

/* FAQ group labels */
.faq-group-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F59E0B;
  padding: 28px 0 8px;
  border-bottom: 2px solid rgba(245,158,11,0.2);
  margin-bottom: 4px;
}

.guarantee-banner {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1px solid #6EE7B7;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.guarantee-banner__icon { font-size: 2rem; flex-shrink: 0; }
.guarantee-banner strong { display: block; font-size: 1rem; color: #065F46; margin-bottom: 4px; }
.guarantee-banner p { font-size: 0.88rem; color: #047857; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,31,61,0.1);
}
.testimonial-card--featured {
  background: #0F1F3D;
  border-color: #0F1F3D;
  color: #fff;
  grid-row: span 1;
}
.testimonial-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
blockquote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: inherit;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card--featured blockquote { color: rgba(255,255,255,0.85); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0F1F3D;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: #0F1F3D; }
.testimonial-card--featured .testimonial-author strong { color: #fff; }
.testimonial-author span { font-size: 0.78rem; color: #9CA3AF; }
.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,0.5); }


/* ============================================================
   FAQ
   ============================================================ */
.faq__container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: #F59E0B; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #0F1F3D;
  text-align: left;
  gap: 16px;
  background: #fff;
  transition: background 0.2s;
}
.faq-question:hover { background: #FFFBEB; }
.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: #F59E0B;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.92rem; color: #4B5563; line-height: 1.75; }


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(145deg, #071324 0%, #0F1F3D 50%, #1A3060 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.12) 0%, transparent 70%);
}
.final-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-cta__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.final-cta__note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #071324; color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-top: 16px; }
.footer__brand .nav__logo { margin-bottom: 0; }
.footer__brand .logo-text { color: #fff; }
.footer__brand .logo-text strong { color: #F59E0B; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col h4 { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__col a:hover { color: #F59E0B; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,0.3); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }


/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,19,36,0.8);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 40px 16px;
  align-items: flex-start;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  animation: modal-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1rem;
  color: #9CA3AF;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: #F3F4F6; color: #1F2937; }
.modal__icon { font-size: 2.5rem; margin-bottom: 16px; }
.modal__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; font-weight: 800; color: #0F1F3D; margin-bottom: 8px; }
.modal__sub { font-size: 0.9rem; color: #6B7280; margin-bottom: 32px; }

.modal__form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.92rem;
  color: #1F2937;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.form-selected-spot {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border: 1px solid #FCD34D;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 20px;
  display: none;
}
.form-note { font-size: 0.75rem; color: #9CA3AF; text-align: center; margin-top: 12px; }

.modal__success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal__success h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 800; color: #0F1F3D; margin-bottom: 12px; }
.modal__success p { font-size: 0.92rem; color: #4B5563; line-height: 1.7; margin-bottom: 28px; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage__inner { grid-template-columns: 1fr; gap: 48px; }
  .coverage__title { text-align: center; }
  .coverage__content .section-eyebrow { text-align: center; }
  .coverage__content { text-align: center; }
  .coverage__content > p { text-align: center; }
  .coverage__zip-pills { justify-content: center; }
  .coverage__stats { justify-content: center; }
  .coverage__map-canvas { height: 400px; }
  .map-demo-stats { bottom: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(7,19,36,0.97);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav__links.open a { font-size: 1.2rem; color: #fff; }
  .hero__stats { padding: 20px 24px; }
  .hero__stat { padding: 0 16px; }
  .hero__divider { display: none; }
  .steps {
    flex-direction: column;
    gap: 24px;
  }
  .step-connector { width: 2px; height: 30px; background: linear-gradient(#F59E0B, #FCD34D); margin: 0 auto; }
  .step-connector::after { content: '↓'; right: 50%; top: 100%; transform: translateX(50%); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 32px 24px; }
  .modal__form .form-row { grid-template-columns: 1fr; }
  .postcard { grid-template-columns: repeat(2, 1fr); }
  .card-slot--large { grid-row: span 1; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { flex-direction: column; gap: 20px; align-items: center; }
  .coverage__stats { flex-direction: column; gap: 16px; align-items: center; }
  .coverage__map-canvas { height: 320px; }
  .map-demo-stats { flex-direction: column; gap: 6px; bottom: 40px; left: 10px; }
  .map-demo-stat { padding: 8px 12px; }
  .map-homes-badge { font-size: 0.72rem; padding: 6px 12px; }
  .zip-pill { padding: 8px 14px; font-size: 0.8rem; }
  .footer__links { grid-template-columns: 1fr; }
  .guarantee-banner { flex-direction: column; text-align: center; }
  .trust-bar .container { justify-content: center; }
}


/* ============================================================
   ROUTES / CAMPAIGNS SECTION
   ============================================================ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.route-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,31,61,0.12);
}
.route-card--active {
  border-color: #D1FAE5;
  background: linear-gradient(180deg, #F0FDF9 0%, #fff 50%);
}
.route-card--active:hover { border-color: #10B981; }
.route-card--soon {
  background: linear-gradient(180deg, #FFFBEB 0%, #fff 50%);
  border-color: #FDE68A;
}
.route-card--cta {
  background: linear-gradient(135deg, #0F1F3D, #1A3060);
  border-color: #0F1F3D;
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.route-card--cta .route-card__city { color: #fff; }
.route-card--cta .route-card__desc { color: rgba(255,255,255,0.7); }

.route-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.route-card__zip {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F1F3D;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.route-card--cta .route-card__zip { color: #F59E0B; }

.route-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.route-card__badge--active {
  background: #D1FAE5;
  color: #065F46;
}
.route-card__badge--soon {
  background: #FEF3C7;
  color: #92400E;
}

.route-card__city {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F1F3D;
  margin: 0;
}
.route-card__desc {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.6;
  flex: 1;
}

.route-card__stats {
  display: flex;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}
.route-stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid #E5E7EB;
}
.route-stat:last-child { border-right: none; }
.route-stat__num {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F1F3D;
}
.route-stat__label {
  font-size: 0.65rem;
  color: #9CA3AF;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .routes-grid { grid-template-columns: 1fr; }
}
