*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --slate:      #39414A;
  --navy:       #0E2B52;
  --blue:       #0B448C;
  --blue-hover: #0A3A7A;
  --black:      #060606;
  --white:      #ffffff;
  --text-muted: rgba(255,255,255,0.65);
  --text-dim:   rgba(255,255,255,0.35);
  --light-bg:      #ffffff;
  --light-surface: #F4F6F9;
  --light-border:  #DDE2EA;
  --light-text:    #1A2535;
  --light-muted:   #4A5568;
  --light-dim:     #94A3B8;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--light-text); background: var(--light-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ---- NAV ---- */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 48px; height: 87px;
  background: var(--white); border-bottom: 1px solid var(--light-border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 78px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--light-muted); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { background: var(--blue); color: var(--white); border: none; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-body); text-decoration: none; display: inline-block; transition: background 0.15s; white-space: nowrap; }
.nav-cta:hover { background: var(--blue-hover); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; border-radius: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--light-text); border-radius: 2px; transition: all 0.2s; transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-bottom: 1px solid var(--light-border);
  padding: 8px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--light-muted); text-decoration: none; font-weight: 500; padding: 12px 24px; border-bottom: 1px solid var(--light-border); transition: background 0.1s, color 0.1s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--light-surface); color: var(--navy); }
.mobile-menu .mob-cta { background: var(--blue); color: var(--white); margin: 12px 20px; border-radius: 6px; text-align: center; font-weight: 600; border-bottom: none; }
.mobile-menu .mob-cta:hover { background: var(--blue-hover); color: var(--white); }

/* ---- BUTTONS ---- */
.btn-primary { background: var(--blue); color: var(--white); border: none; padding: 15px 36px; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: var(--font-body); text-decoration: none; display: inline-block; transition: background 0.15s; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-ghost { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.22); padding: 15px 28px; border-radius: 6px; font-size: 16px; cursor: pointer; font-family: var(--font-body); text-decoration: none; display: inline-block; transition: all 0.15s; }
.btn-ghost:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 12px 28px; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font-body); text-decoration: none; display: inline-block; transition: all 0.15s; }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ---- SECTIONS ---- */
section { padding: 80px 48px; }
.section-label { font-size: 11px; color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; font-weight: 700; }
h1 { font-family: var(--font-display); font-size: 58px; font-weight: 700; line-height: 1.05; letter-spacing: 0.3px; }
h2 { font-family: var(--font-display); font-size: 40px; font-weight: 700; margin-bottom: 12px; line-height: 1.1; color: var(--light-text); }
h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--light-text); }
.section-sub { font-size: 17px; color: var(--light-muted); margin-bottom: 48px; max-width: 600px; line-height: 1.7; }
.bg-surface { background: var(--light-surface); }
.bg-navy { background: var(--navy); }
.bg-black { background: var(--black); }
hr { border: none; border-top: 1px solid var(--light-border); }

/* ---- TRADES BAR ---- */
.trades-bar { background: var(--slate); padding: 14px 48px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trade-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }
.trade-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: #5BA3E0; }

/* ---- STATS ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--light-bg); border-bottom: 1px solid var(--light-border); }
.stat { padding: 32px 24px; text-align: center; border-right: 1px solid var(--light-border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--blue); line-height: 1; }
.stat-label { font-size: 13px; color: var(--light-muted); margin-top: 6px; line-height: 1.45; }

/* ---- CARD GRIDS ---- */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---- CHECK LIST ---- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--light-muted); line-height: 1.55; }
.check-list li::before { content: ''; width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--blue); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l3.5 3.5L15 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: cover; margin-top: 1px; }

/* ---- DASHBOARD MOCKUP ---- */
.dash-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-title { font-size: 12px; color: rgba(255,255,255,0.4); margin-left: 8px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.dash-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 14px 16px; display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.dash-card:last-child { margin-bottom: 0; }
.dash-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.d-approved  { background: rgba(34,197,94,0.18); color: #4ade80; }
.d-denied    { background: rgba(239,68,68,0.18); color: #f87171; }
.d-pending   { background: rgba(11,68,140,0.35); color: #7EC2FF; }
.d-suspended { background: rgba(251,191,36,0.18); color: #fbbf24; }
.dash-body { flex: 1; min-width: 0; }
.dash-permit { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-addr   { font-size: 12px; color: rgba(255,255,255,0.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-badge  { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.badge-approved  { background: rgba(34,197,94,0.15); color: #4ade80; }
.badge-denied    { background: rgba(239,68,68,0.15); color: #f87171; }
.badge-pending   { background: rgba(11,68,140,0.3); color: #7EC2FF; }
.badge-suspended { background: rgba(251,191,36,0.15); color: #fbbf24; }

/* ---- IMAGE CARDS ---- */
.img-card { border-radius: 12px; overflow: hidden; position: relative; }
.img-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.img-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,43,82,0.92) 0%, rgba(14,43,82,0.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.img-card-label { font-size: 11px; color: #5BA3E0; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.img-card-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.img-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.img-card-tag { font-size: 11px; color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 2px 8px; border-radius: 4px; }

/* ---- FEATURE ROWS ---- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 80px 48px; border-bottom: 1px solid var(--light-border); }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row h2 { font-size: 34px; margin-bottom: 16px; }
.feature-row p { font-size: 16px; color: var(--light-muted); line-height: 1.7; margin-bottom: 20px; }
.feature-img { border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(14,43,82,0.15); }
.feature-img img { width: 100%; height: 320px; object-fit: cover; display: block; }
.feature-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(14,43,82,0.9) 0%, transparent 60%); padding: 24px; }
.feature-img-stat { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white); }
.feature-img-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); }
.step-tag { display: inline-block; background: rgba(11,68,140,0.08); color: var(--blue); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 4px; border: 1px solid rgba(11,68,140,0.2); }

/* ---- BEFORE/AFTER ---- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.compare-col { padding: 40px; }
.compare-col.before { background: #FEF2F2; }
.compare-col.after  { background: rgba(11,68,140,0.06); }
.compare-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.compare-col.before .compare-label { color: #DC2626; }
.compare-col.after  .compare-label { color: var(--blue); }
.compare-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; margin-bottom: 16px; line-height: 1.55; }
.compare-item:last-child { margin-bottom: 0; }
.compare-col.before .compare-item { color: #7F1D1D; }
.compare-col.after  .compare-item { color: #1A2535; }
.x-icon { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: #DC2626; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; font-weight: 700; margin-top: 2px; flex-shrink: 0; }
.c-icon { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; font-weight: 700; margin-top: 2px; flex-shrink: 0; }

/* ---- COUNTY GRID ---- */
.county-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.county-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 20px; text-align: center; transition: all 0.2s; }
.county-card:hover { background: rgba(11,68,140,0.3); border-color: rgba(11,68,140,0.5); }
.county-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.county-card p { font-size: 12px; color: rgba(255,255,255,0.45); }
.county-tag { font-size: 10px; color: #5BA3E0; background: rgba(11,68,140,0.25); border: 1px solid rgba(11,68,140,0.4); padding: 2px 8px; border-radius: 4px; display: inline-block; margin-top: 8px; font-weight: 600; }

/* ---- TESTIMONIALS ---- */
.testi-card { background: var(--white); border: 1px solid var(--light-border); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; }
.testi-stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; color: var(--light-muted); line-height: 1.7; flex: 1; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #5BA3E0; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--light-text); }
.testi-title { font-size: 12px; color: var(--light-dim); }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--light-border); }
.faq-q { padding: 20px 0; font-size: 17px; font-weight: 600; color: var(--light-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; }
.faq-icon { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: var(--light-surface); border: 1px solid var(--light-border); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--blue); font-weight: 700; transition: all 0.2s; }
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--light-muted); line-height: 1.7; padding-bottom: 20px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ---- SOCIAL PROOF STRIP ---- */
.proof-strip { background: var(--light-surface); padding: 18px 48px; border-bottom: 1px solid var(--light-border); display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--light-muted); font-weight: 500; }
.proof-icon { color: var(--blue); font-size: 16px; }

/* ---- PILOT FORM ---- */
.pilot-wrap { background: var(--black); padding: 80px 48px; text-align: center; }
.pilot-wrap h2 { color: var(--white); font-size: 42px; margin-bottom: 10px; }
.pilot-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.pilot-badge-row { display: flex; justify-content: center; margin-bottom: 28px; }
.pilot-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(11,68,140,0.25); border: 1px solid rgba(11,68,140,0.5); border-radius: 4px; padding: 7px 18px; font-size: 13px; color: #7EC2FF; font-weight: 600; }
.pilot-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.form-wrap { max-width: 460px; margin: 0 auto; }
.step-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 32px; }
.sdot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: all 0.2s; }
.sdot.on { background: var(--blue); transform: scale(1.2); }
.sdot.done { background: rgba(11,68,140,0.5); }
.fstep { display: none; flex-direction: column; gap: 14px; animation: fadeUp 0.2s ease; }
.fstep.show { display: flex; }
@keyframes fadeUp { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.fstep-meta { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.fstep h3 { color: var(--white); font-size: 24px; margin: 0; }
.fstep p { font-size: 15px; color: rgba(255,255,255,0.45); margin: 0; }
.f-input { width: 100%; padding: 16px 20px; border-radius: 6px; border: 1.5px solid rgba(11,68,140,0.4); background: rgba(255,255,255,0.06); color: var(--white); font-size: 16px; font-family: var(--font-body); outline: none; transition: border-color 0.15s, background 0.15s; -webkit-appearance: none; }
.f-input::placeholder { color: rgba(255,255,255,0.22); }
.f-input:focus { border-color: var(--blue); background: rgba(255,255,255,0.09); }
.f-input.error { border-color: #f87171; animation: shake 0.3s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-5px)} 40%{transform:translateX(5px)} 60%{transform:translateX(-3px)} 80%{transform:translateX(3px)} }
.f-next { width: 100%; background: var(--blue); color: var(--white); border: none; padding: 16px; border-radius: 6px; font-size: 17px; font-weight: 600; cursor: pointer; font-family: var(--font-body); display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.15s; touch-action: manipulation; }
.f-next:hover { background: var(--blue-hover); }
.f-next:disabled { opacity: 0.6; cursor: not-allowed; }
.f-back { background: none; border: none; color: rgba(255,255,255,0.35); font-size: 14px; cursor: pointer; font-family: var(--font-body); padding: 8px 0; transition: color 0.15s; touch-action: manipulation; }
.f-back:hover { color: rgba(255,255,255,0.65); }
.success-box { display: none; flex-direction: column; align-items: center; gap: 16px; }
.success-box.show { display: flex; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(34,197,94,0.12); border: 2px solid rgba(34,197,94,0.3); display: flex; align-items: center; justify-content: center; font-size: 28px; color: #4ade80; }
.success-box h3 { color: var(--white); font-size: 24px; }
.success-box p { color: rgba(255,255,255,0.5); font-size: 16px; max-width: 360px; text-align: center; line-height: 1.65; }
.pilot-note { font-size: 13px; color: rgba(255,255,255,0.22); margin-top: 18px; }

/* ---- FOOTER ---- */
footer { padding: 56px 48px 40px; border-top: 1px solid rgba(255,255,255,0.07); background: var(--black); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
/* Logo sits on white pill so it's visible on black footer */
.footer-logo-wrap { display: inline-flex; align-items: center; text-decoration: none; background: var(--white); border-radius: 8px; padding: 8px 14px; margin-bottom: 16px; }
.footer-logo-wrap img { height: 32px; width: auto; display: block; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.65; max-width: 260px; }
.footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.28); margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.42); text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.22); }

/* ---- TAGS ---- */
.tag { font-size: 11px; color: var(--light-muted); background: var(--light-surface); padding: 3px 10px; border-radius: 4px; border: 1px solid var(--light-border); font-weight: 500; display: inline-block; }
.tag-blue { color: var(--blue); background: rgba(11,68,140,0.08); border-color: rgba(11,68,140,0.2); }

/* ============================================
   MOBILE RESPONSIVE — comprehensive
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 64px 32px; }
  .feature-row { gap: 48px; padding: 64px 32px; }
  .county-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet/Mobile breakpoint */
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .feature-row.reverse { direction: ltr; }
  .feature-img img { height: 260px; }
  .compare-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .compare-col { padding: 28px; }
  .county-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-cta-desk { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 66px; }
  nav { height: 78px; }

  /* General */
  section { padding: 48px 20px; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 18px; }
  .section-sub { font-size: 16px; margin-bottom: 32px; }

  /* Launch bar */
  .launch-bar { padding: 10px 16px; gap: 10px; flex-direction: column; }
  .launch-text { font-size: 13px; text-align: center; }

  /* Trades bar */
  .trades-bar { padding: 12px 16px; gap: 14px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .trades-bar::-webkit-scrollbar { display: none; }

  /* Proof strip */
  .proof-strip { padding: 14px 16px; gap: 16px; }
  .proof-item { font-size: 13px; }

  /* Stats */
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--light-border); padding: 24px 20px; }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 36px; }

  /* Card grids */
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; gap: 16px; }

  /* Hero */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost, .btn-outline { text-align: center; padding: 14px 24px; }

  /* Trades image grid */
  .trades-img-grid { grid-template-columns: 1fr !important; }
  .img-card img { height: 200px; }

  /* Compare */
  .compare-col { padding: 24px 20px; }
  .compare-item { font-size: 14px; }

  /* County */
  .county-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .county-card { padding: 14px; }
  .county-card h3 { font-size: 15px; }

  /* Feature rows */
  .feature-row { padding: 40px 20px; gap: 32px; }
  .feature-img img { height: 220px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .faq-q { font-size: 15px; padding: 16px 0; }

  /* Map section */
  .map-section { padding: 48px 20px !important; }

  /* Pilot form */
  .pilot-wrap { padding: 48px 20px; }
  .pilot-wrap h2 { font-size: 30px; }
  .pilot-sub { font-size: 16px; }
  .f-input { font-size: 16px; } /* Prevents iOS zoom */
  .fstep h3 { font-size: 20px; }

  /* Footer */
  footer { padding: 40px 20px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .county-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .launch-bar { gap: 8px; }
  .cd-num { font-size: 16px; }
  .cd-block { min-width: 38px; padding: 3px 6px; }
  .ba-section { padding: 40px 16px !important; }
}
