/* FoodTruckFound — landing page stylesheet
   Design system: road-sign marigold / asphalt / paper (see css/site.css tokens,
   duplicated here so the landing page is self-contained). */
:root {
  --marigold: #F5B301;
  --marigold-deep: #C98F00;
  --asphalt: #1E1B16;
  --asphalt-soft: #35312A;
  --paper: #F6F5F1;
  --lane: #FFFFFF;
  --live: #1D9E75;
  --live-tint: #E1F5EE;
  --live-ink: #085041;
  --muted: #6E6A61;
  --hairline: #E3E1DA;
  --radius: 10px;
  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--asphalt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Painted lane divider */
.lane-divider {
  border: 0;
  height: 4px;
  background-image: linear-gradient(90deg, var(--asphalt) 0 40px, transparent 40px 64px);
  background-size: 64px 4px;
  background-repeat: repeat-x;
  margin: 0;
}
.lane-divider.on-dark { background-image: linear-gradient(90deg, var(--marigold) 0 40px, transparent 40px 64px); }
@media (prefers-reduced-motion: no-preference) {
  .lane-divider.moving { animation: lane-move 1.6s linear infinite; }
  @keyframes lane-move { to { background-position-x: 64px; } }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--asphalt);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 3px solid var(--marigold-deep); outline-offset: 2px; }
.btn-primary { background: var(--marigold); color: var(--asphalt); }
.btn-primary:hover { background: #FFC21A; }
.btn-ghost { background: transparent; color: var(--asphalt); }
.btn-ghost:hover { background: rgba(30, 27, 22, 0.06); }
.btn-dark { background: var(--asphalt); color: var(--paper); border-color: var(--asphalt); }
.btn-dark:hover { background: var(--asphalt-soft); }

/* Status pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}
.pill-live { background: var(--live-tint); color: var(--live-ink); }
.pill-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--live); }
@media (prefers-reduced-motion: no-preference) {
  .pill-live::before { animation: pulse 1.8s ease-in-out infinite; }
  @keyframes pulse { 50% { opacity: 0.4; } }
}
.pill-off { background: #ECEAE3; color: var(--muted); }

/* ============ Confetti ============ */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 4000;
}

/* ============ Header ============ */
.site-header-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header-bar.scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 4px 20px rgba(30, 27, 22, 0.06);
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--marigold);
  font-size: 18px;
}
.nav { display: flex; align-items: center; gap: 22px; font-weight: 500; font-size: 15px; }
.nav a { text-decoration: none; opacity: 0.85; }
.nav a:hover { opacity: 1; }
.nav .btn { padding: 9px 18px; font-size: 14px; opacity: 1; }
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--asphalt);
  border-radius: 8px;
  font-size: 18px;
  padding: 4px 10px;
  cursor: pointer;
}

/* ============ Hero ============ */
.hero { padding: 64px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--live-ink);
  background: var(--live-tint);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero h1 .found {
  background: linear-gradient(180deg, transparent 55%, var(--marigold) 55% 92%, transparent 92%);
  padding: 0 4px;
}
.lede { font-size: 19px; color: var(--asphalt-soft); max-width: 46ch; margin: 0 0 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}
.avatars { display: inline-flex; }
.avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--paper);
  box-shadow: 0 1px 4px rgba(30, 27, 22, 0.15);
  font-size: 15px;
  margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }
.geo-badge {
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
  color: var(--asphalt);
  transition: border-color 0.15s ease;
}
.geo-badge:hover { border-color: var(--marigold-deep); }

/* Hero map card */
.hero-map-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--asphalt);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(30, 27, 22, 0.08);
}
.map-container { height: 340px; background: #E9E7E0; }
#hero-map { z-index: 1; }
.map-ticker {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 27, 22, 0.92);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  padding: 9px 14px;
  box-shadow: 0 8px 24px rgba(30, 27, 22, 0.25);
}
.map-ticker .tick-ico { flex-shrink: 0; }
.map-ticker.swap #ticker-text { animation: tick-swap 0.5s ease; }
@keyframes tick-swap {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 13px;
  border-top: 1px solid var(--hairline);
  background: #fff;
  position: relative;
  z-index: 2;
}

/* Leaflet pins (shared with the app pages) */
.ftf-pin .pinbody {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  background: #fff;
  border: 2px solid var(--asphalt);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(30, 27, 22, 0.3);
}
.ftf-pin .pinbody span { transform: rotate(45deg); font-size: 16px; }
.ftf-pin.live .pinbody { background: var(--marigold); }

/* ============ Stats band ============ */
.stats-band {
  background: var(--asphalt);
  color: var(--paper);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--marigold);
  font-variant-numeric: tabular-nums;
}
.stat .lbl { font-size: 13px; opacity: 0.75; }

/* ============ Blocks ============ */
.block { padding: 80px 0 70px; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--marigold-deep);
  margin: 0 0 10px;
}
.block-title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.block-sub { font-size: 17px; color: var(--muted); max-width: 60ch; margin: 0 0 40px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px 24px 24px;
}
.step-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--marigold-deep);
  opacity: 0.8;
}
.step .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  font-size: 22px;
  margin-bottom: 14px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { margin: 0; font-size: 15px; color: var(--asphalt-soft); }

/* ============ Trucks grid ============ */
.trucks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trucks-loading, .trucks-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}
.spinner {
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  border: 3px solid var(--hairline);
  border-top-color: var(--marigold-deep);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.t-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(30, 27, 22, 0.1); }
.t-card .t-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  font-size: 40px;
  background: linear-gradient(135deg, #FFF3D0, #FFE49A);
  border-bottom: 1px solid var(--hairline);
}
.t-card .t-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.t-card .t-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.t-card h3 { font-size: 18px; }
.t-card .t-meta { font-size: 13px; color: var(--muted); margin: 0; }
.t-card .t-loc { font-size: 13px; color: var(--asphalt-soft); margin: 0; }
.t-card .t-cta {
  margin-top: auto;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--marigold-deep);
}
.demo-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
}

/* ============ Operator band ============ */
.operator-band {
  background: var(--asphalt);
  color: var(--paper);
  margin-top: 10px;
}
.operator-band .eyebrow { color: var(--marigold); }
.operator-band .block-sub { color: rgba(246, 245, 241, 0.75); }
.operator-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.op-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.op-list li { position: relative; padding-left: 30px; font-size: 16px; }
.op-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--marigold);
  font-weight: 700;
}
.fee-panel {
  background: var(--asphalt-soft);
  border: 1px solid rgba(246, 245, 241, 0.14);
  border-radius: 16px;
  padding: 26px 26px 20px;
}
.fee-panel h3 { font-size: 17px; margin-bottom: 20px; }
.fee-row { margin-bottom: 18px; }
.fee-head { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 7px; }
.fee-head .pct { font-family: var(--font-display); font-weight: 700; }
.fee-row.them .pct { color: #F08A7E; }
.fee-row.us .pct { color: var(--marigold); }
.fee-bar { height: 12px; border-radius: 999px; background: rgba(246, 245, 241, 0.12); overflow: hidden; }
.fee-bar .fill { height: 100%; width: 0; border-radius: 999px; transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.fee-row.them .fill { background: #F08A7E; }
.fee-row.us .fill { background: var(--marigold); }
.fee-note { font-size: 14px; color: rgba(246, 245, 241, 0.8); margin: 18px 0 0; }

/* ============ Quotes carousel ============ */
.quotes-section { padding-bottom: 40px; }
.quotes-carousel { position: relative; overflow: hidden; border-radius: 16px; }
.quotes-track { display: flex; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.quote-slide { min-width: 100%; padding: 4px; }
.quote {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  margin: 0;
  padding: 34px 38px 30px;
  max-width: 720px;
  margin: 0 auto;
}
.quote .stars { color: var(--marigold-deep); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { font-size: 18px; line-height: 1.55; margin: 0 0 20px; }
.quote .who { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.quote .face {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--hairline);
  font-size: 20px;
}
.quote .name { font-weight: 700; }
.quote .role { color: var(--muted); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--asphalt);
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.carousel-arrow:hover { background: var(--marigold); }
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--hairline);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.carousel-dots button.active { background: var(--marigold-deep); transform: scale(1.25); }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 12px; max-width: 760px; }
.faq-item { background: #fff; border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--asphalt);
}
.faq-q .chev { font-size: 11px; transition: transform 0.25s ease; color: var(--muted); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { margin: 0; padding: 0 20px 18px; font-size: 15px; color: var(--asphalt-soft); }

/* ============ CTA band ============ */
.cta-band { background: var(--marigold); }
.cta-inner { text-align: center; padding: 72px 0 80px; }
.cta-inner h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-inner p { font-size: 17px; max-width: 52ch; margin: 0 auto 30px; color: rgba(30, 27, 22, 0.8); }
.notify-form { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.notify-form input {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 2px solid var(--asphalt);
  min-width: 280px;
  background: #fff;
}
.notify-form input:focus-visible { outline: 3px solid var(--asphalt); outline-offset: 2px; }
.notify-msg { min-height: 24px; margin: 14px 0 0; font-weight: 600; font-size: 14px; }
.notify-msg.err { color: #8C2B22; }

/* ============ Footer ============ */
footer { background: var(--asphalt); color: var(--paper); padding: 56px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(246, 245, 241, 0.14);
}
footer .brand { color: var(--paper); }
.footer-grid > div > p { font-size: 14px; color: rgba(246, 245, 241, 0.7); max-width: 30ch; }
footer h4 { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--marigold); margin-bottom: 14px; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; }
footer ul a { text-decoration: none; opacity: 0.8; }
footer ul a:hover { opacity: 1; text-decoration: underline; }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(246, 245, 241, 0.55);
}

/* ============ Back to top ============ */
#back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--asphalt);
  color: var(--paper);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(30, 27, 22, 0.3);
}
#back-to-top.show { opacity: 1; pointer-events: auto; transform: none; }
#back-to-top svg { position: absolute; inset: 0; transform: rotate(-90deg); }
#back-to-top circle {
  fill: none;
  stroke: var(--marigold);
  stroke-width: 3;
  stroke-dasharray: 138.2;
  stroke-dashoffset: 138.2;
}

/* ============ Modal ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30, 27, 22, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--paper);
  border: 2px solid var(--asphalt);
  border-radius: 18px;
  padding: 30px 30px 26px;
  transform: translateY(14px);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-card { transform: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ECEAE3;
  font-size: 14px;
  cursor: pointer;
}
.modal-close:hover { background: var(--hairline); }
.modal-header { text-align: center; margin-bottom: 22px; }
.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--marigold);
  font-size: 26px;
  margin-bottom: 12px;
}
.modal-header h2 { font-size: 24px; margin-bottom: 6px; }
.modal-header p { margin: 0; font-size: 14px; color: var(--muted); }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 13px;
  border: 2px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  color: var(--asphalt);
}
.form-group textarea { min-height: 84px; resize: vertical; }
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible { outline: none; border-color: var(--marigold-deep); }
.form-group.invalid input,
.form-group.invalid select { border-color: #C0392B; }
.field-error { display: none; font-size: 12px; color: #C0392B; margin-top: 4px; }
.form-group.invalid .field-error { display: block; }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-group input { width: auto; margin-top: 4px; }
.checkbox-group label { font-weight: 400; font-size: 13px; color: var(--asphalt-soft); }
.modal-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px;
  border-radius: var(--radius);
  border: 2px solid var(--asphalt);
  background: var(--marigold);
  color: var(--asphalt);
  cursor: pointer;
  transition: background 0.12s ease;
}
.modal-submit:hover { background: #FFC21A; }
.modal-submit:disabled { opacity: 0.6; cursor: default; }
.spinner-sm {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(30, 27, 22, 0.25);
  border-top-color: var(--asphalt);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.modal-submit.loading .spinner-sm { display: inline-block; }
.modal-success { display: none; text-align: center; padding: 26px 8px 10px; }
.modal-card.success .modal-header,
.modal-card.success .modal-body { display: none; }
.modal-card.success .modal-success { display: block; }
.success-icon { font-size: 46px; display: block; margin-bottom: 12px; }
.modal-success h3 { font-size: 24px; margin-bottom: 10px; }
.modal-success p { font-size: 15px; color: var(--asphalt-soft); max-width: 38ch; margin: 0 auto 22px; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid, .operator-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps, .trucks-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 24px 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--hairline); }
  .nav a:last-child { border-bottom: none; margin-top: 10px; }
  .site-header { position: relative; }
  .site-header-bar { position: sticky; }
}
