/* ============================================================
   Requestow — Florida vehicle transport landing
   ============================================================ */

:root {
  --navy-900: #0b1a2c;          /* charcoal navy — no pure black */
  --navy-800: #10263e;
  --navy-700: #173453;
  --navy-600: #22547f;
  --blue-500: #2f6fb5;
  --orange-500: #ea6d3e;        /* desaturated to ~75% (was #ff6b35 / 100%) */
  --orange-400: #ef8561;
  --green-500: #20b97a;
  --ink: #111a28;
  --text: #2a3647;
  --muted: #6b7a90;
  --line: #e4e9f1;
  --bg: #ffffff;
  --bg-alt: #f5f8fd;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 10px rgba(10,37,64,.06);
  --shadow: 0 14px 40px rgba(10,37,64,.10);
  --shadow-lg: 0 28px 60px rgba(10,37,64,.18);
  --max: 1200px;
  --font-body: 'Geist', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Outfit', 'Geist', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;     /* evita scroll horizontal causado por el marquee 100vw */
  max-width: 100%;
}

/* ============================================================
   ICONS — Phosphor-style, stroke-based, sized via currentColor
   ============================================================ */
.icon, .sprite symbol, svg[class*="icon"] {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.18em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg { width: 1.4rem; height: 1.4rem; }
.icon-xl { width: 2.2rem; height: 2.2rem; }
.icon-star { width: .85em; height: .85em; margin-left: 4px; color: var(--orange-500); fill: currentColor; stroke-width: 0; }
/* Containers around icons */
.hb-ico, .fl-icon, .safety-ico, .fbadge-ico, .service-icon,
.saved-icon, .notify-check, .sos-icon, .radar-pin {
  display: inline-flex; align-items: center; justify-content: center;
}
.hb-ico svg, .fl-icon svg, .safety-ico svg, .fbadge-ico svg, .service-icon svg,
.saved-icon svg, .notify-check svg, .sos-icon svg, .radar-pin svg {
  stroke: currentColor; fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
/* per-container SVG sizes so icons are proportional to their holders */
.hb-ico svg       { width: 24px; height: 24px; }
.service-icon svg { width: 28px; height: 28px; }
.fl-icon svg      { width: 32px; height: 32px; }
.safety-ico svg   { width: 22px; height: 22px; }
.fbadge-ico svg   { width: 22px; height: 22px; }
.saved-icon svg   { width: 36px; height: 36px; }
.notify-check svg { width: 18px; height: 18px; stroke-width: 2.2; }
.sos-icon svg     { width: 18px; height: 18px; }
.radar-pin svg    { width: 32px; height: 32px; color: var(--orange-500); }
/* Custom designer-provided <img> icons get the same sizing as the inline SVGs.
   They already include their own colors, so no CSS overrides needed. */
.hb-ico img       { width: 28px; height: 28px; object-fit: contain; }
.service-icon img { width: 36px; height: 36px; object-fit: contain; }
.fl-icon img      { width: 40px; height: 40px; object-fit: contain; }
.channel-icons { display: inline-flex; gap: .4rem; align-items: center; }
.channel-icons svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 .4em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1em; }
.container { width: min(100% - 2.4rem, var(--max)); margin: 0 auto; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.center { text-align: center; }
.accent { color: var(--orange-500); }
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange-500);
  margin-bottom: .6em;
}
.kicker.light { color: var(--orange-400); }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  /* cubic-bezier(.16,1,.3,1) — skill's preferred easing for fluid CSS motion */
  transition:
    transform .2s cubic-bezier(.16,1,.3,1),
    background .2s cubic-bezier(.16,1,.3,1),
    box-shadow .2s cubic-bezier(.16,1,.3,1),
    color .2s cubic-bezier(.16,1,.3,1),
    border-color .2s cubic-bezier(.16,1,.3,1);
  font-family: inherit;
  white-space: nowrap;
  will-change: transform;
}
.btn-lg { padding: .95rem 1.55rem; font-size: 1rem; }
.btn-primary {
  background: var(--orange-500);
  color: #fff;
  /* shadow tinted to accent hue per skill rule */
  box-shadow: 0 8px 20px rgba(234,109,62,.32), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary:hover {
  background: var(--orange-400);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(234,109,62,.38), inset 0 1px 0 rgba(255,255,255,.15);
}
/* tactile :active feedback (skill rule 5) */
.btn-primary:active { transform: translateY(1px) scale(.98); box-shadow: 0 4px 12px rgba(234,109,62,.24); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--muted); }
.btn-ghost:active { transform: scale(.98); }
.section-dark .btn-ghost,
.cta-final .btn-ghost { color: #fff; border-color: rgba(255,255,255,.2); }
.section-dark .btn-ghost:hover { background: rgba(255,255,255,.06); }

/* ================= NAV ================= */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0;
  gap: 2rem;
}
.logo { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); font-weight: 800; }
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  /* fallback aspect ratio so layout doesn't shift before SVG loads */
  aspect-ratio: 545 / 96;
}
.logo-img-footer {
  height: 28px;
  /* invert dark navy of "Reques" to white on dark footer; "tow" stays orange */
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer .logo {
  /* footer's gradient is dark — keep orange "tow" via mix-blend if needed */
  display: inline-flex;
}
/* Legacy classes kept in case old markup remains */
.logo-mark { display: none; }
.logo-text { display: none; }

.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { font-size: .95rem; color: var(--text); font-weight: 500; }
.nav-links a:hover { color: var(--navy-800); }

.nav-cta { display: flex; gap: .6rem; align-items: center; }
.nav-cta .btn-ghost { padding: .55rem .9rem; font-size: .85rem; color: var(--navy-800); }

.nav-burger { display: none; border: 0; background: transparent; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  padding: 5rem 0 6rem;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(234,109,62,.18), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(47,111,181,.22), transparent 60%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: center;
}
.hero-copy { min-width: 0; }
.hero-form { min-width: 0; position: relative; z-index: 1; scroll-margin-top: 80px; }
.hero h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 3.1rem); }
.hero .lead { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 36rem; margin-bottom: 1.6rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 0 rgba(234,109,62,.6);
  animation: pulse 1.6s infinite;
}
.pulse-dot.green { background: var(--green-500); box-shadow: 0 0 0 0 rgba(31,191,117,.6); animation-name: pulseG; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(234,109,62,.6);} 70% { box-shadow: 0 0 0 14px rgba(234,109,62,0);} 100% { box-shadow: 0 0 0 0 rgba(234,109,62,0);} }
@keyframes pulseG { 0% { box-shadow: 0 0 0 0 rgba(31,191,117,.6);} 70% { box-shadow: 0 0 0 14px rgba(31,191,117,0);} 100% { box-shadow: 0 0 0 0 rgba(31,191,117,0);} }

.hero-quick {
  display: flex; gap: .6rem; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: .5rem; border-radius: 999px;
  max-width: 560px; margin: 1.8rem 0 1.4rem;
  backdrop-filter: blur(8px);
}
.quick-field {
  flex: 1; display: flex; align-items: center; gap: .5rem;
  padding: 0 .9rem; color: rgba(255,255,255,.65);
}
.quick-field input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: #fff; font-size: .98rem; font-family: inherit;
}
.quick-field input::placeholder { color: rgba(255,255,255,.55); }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 2rem 2.4rem;
  color: rgba(255,255,255,.8); font-size: .9rem;
}
.trust-row strong { color: #fff; display: block; font-size: 1.25rem; font-family: var(--font-display); }

/* Hero phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-card {
  width: 320px;
  aspect-ratio: 9/18;
  border-radius: 40px;
  background: #0a1a2c;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg), inset 0 0 0 6px #000;
  padding: 18px 12px;
  position: relative;
  overflow: hidden;
  transform: rotate(-3deg);
}
.phone-notch {
  width: 90px; height: 22px; background: #000; border-radius: 0 0 12px 12px;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 30px;
  background: linear-gradient(180deg, #13253d, #0c1a2d);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.mini-map {
  flex: 1; position: relative;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0/30px 30px,
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0/30px 30px,
    radial-gradient(ellipse at center, #1c3960, #0b1c33);
}
.mini-road { position: absolute; background: rgba(120,160,200,.18); }
.mini-road.r1 { top: 35%; left: 0; width: 100%; height: 6px; transform: rotate(-2deg); }
.mini-road.r2 { top: 0; left: 35%; width: 5px; height: 100%; transform: rotate(4deg); }
.mini-road.r3 { top: 60%; left: 0; width: 100%; height: 5px; transform: rotate(3deg); }
.mini-pin { position: absolute; width: 16px; height: 16px; border-radius: 50%; border: 3px solid #fff; }
.mini-pin.user { bottom: 15%; left: 18%; background: var(--orange-500); }
.mini-pin.user span { position: absolute; inset: -8px; border-radius: 50%; background: var(--orange-500); opacity: .25; animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(2.4); opacity: 0; } }
.mini-pin.driver { top: 20%; right: 22%; background: var(--green-500); animation: drive 5s ease-in-out infinite alternate; }
@keyframes drive { 0% { transform: translate(0,0);} 100% { transform: translate(-10px, 18px);} }
.mini-path { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .7; }

.phone-sheet {
  background: #fff;
  color: var(--ink);
  border-radius: 18px 18px 0 0;
  padding: 12px 16px 18px;
  margin: -22px 0 0;
  position: relative;
}
.sheet-handle { width: 40px; height: 4px; border-radius: 4px; background: #ccd3de; margin: 0 auto 10px; }
.sheet-row { display: flex; align-items: center; gap: .7rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: #fff; font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.avatar.lg { width: 54px; height: 54px; font-size: 1.05rem; }
.sheet-info { flex: 1; font-size: .78rem; line-height: 1.3; }
.sheet-info strong { display: block; font-size: .95rem; }
.sheet-info span { color: var(--muted); }
.sheet-eta { text-align: right; line-height: 1.1; }
.sheet-eta small { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.sheet-eta b { font-size: 1.05rem; display: block; color: var(--green-500); }
.sheet-bar { height: 6px; background: #eef2f7; border-radius: 6px; margin: 12px 0 6px; overflow: hidden; }
.sheet-bar-fill { height: 100%; width: 62%; background: linear-gradient(90deg, var(--orange-500), var(--green-500)); border-radius: 6px; animation: fill 4s ease-in-out infinite alternate; }
@keyframes fill { 0% { width: 20%; } 100% { width: 85%; } }
.sheet-meta { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); }

@media (max-width: 980px) {
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  /* on mobile the form is the FIRST thing visible */
  .hero-form { order: -1; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero .lead { font-size: 1rem; }
  .trust-row { gap: 1rem 1.6rem; font-size: .85rem; }
}

/* ================= LOGOS STRIP ================= */
.logos { padding: 2rem 0; border-bottom: 1px solid var(--line); }
.logos p { text-align: center; color: var(--muted); font-size: .82rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .14em; }
.logos-row {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem 2rem; opacity: .55;
}
.logos-row span { font-family: var(--font-display); font-weight: 600; color: var(--navy-800); }

/* ================= SECTIONS ================= */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: radial-gradient(1200px 600px at 10% 0%, #0f2a48, transparent 60%), var(--navy-900);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .muted { color: rgba(255,255,255,.65); }

.section-head { max-width: 640px; margin: 0 auto 2.8rem; }
.section-head:not(.center) { margin-left: 0; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head.center { text-align: center; }
.section-dark .section-head p { color: rgba(255,255,255,.7); }

/* ================= HOW IT WORKS — vertical timeline, no cards ================= */
.how-timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 780px;
  counter-reset: step;
}
.how-timeline li {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background .25s cubic-bezier(.16,1,.3,1);
}
/* vertical connector line under the step number — visible on every step,
   gradient fades to transparent so it terminates naturally on the last one */
.how-timeline li::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 70px;
  bottom: -1.6rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--line) 0%, var(--line) 70%, transparent 100%);
}
.how-timeline li:last-child::before {
  bottom: 35%;
  background: linear-gradient(to bottom, var(--line) 0%, transparent 100%);
}
.ht-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--orange-500);
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ht-body h3 { margin-bottom: .35rem; font-size: 1.12rem; letter-spacing: -.005em; }
.ht-body p { color: var(--muted); margin: 0; font-size: .96rem; line-height: 1.55; max-width: 52ch; }
.ht-meta {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: .02em;
  padding-top: .6rem;
  white-space: nowrap;
}
.ht-time {
  padding: .22rem .55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-alt);
}
@media (max-width: 680px) {
  .how-timeline li { grid-template-columns: 56px 1fr; gap: 1rem; }
  .how-timeline li::before { left: 27px; }
  .ht-num { font-size: 1.8rem; }
  .ht-meta { grid-column: 2; padding-top: .4rem; }
}

/* ================= SERVICES ================= */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.service {
  background: #fff; border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(234,107,60,.14), rgba(234,107,60,.05));
  color: var(--orange-500);
  margin-bottom: .9rem;
}
.service h3 { margin-bottom: .25rem; }
.service p { font-size: .9rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }

/* ================= COVERAGE ================= */
.coverage-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.coverage-list { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1rem; }
.coverage-list li { font-size: .95rem; padding-left: 1.4rem; position: relative; color: var(--muted); }
.coverage-list li b { color: var(--ink); }
.coverage-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500); position: absolute; left: 0; top: .55em;
}
.coverage-list li a {
  color: var(--muted);
  text-decoration: none;
  display: inline;
  border-bottom: 1px dashed transparent;
  transition: color .15s, border-color .15s;
}
.coverage-list li a:hover {
  color: var(--orange-500);
  border-bottom-color: var(--orange-500);
}
.coverage-list li a:hover b { color: var(--orange-500); }
.coverage-map { position: relative; }
.map-wrap {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(10,37,64,.18));
}
.map-img {
  width: 100%;
  height: auto;
  display: block;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -.005em;
  display: flex;
  align-items: center;
  gap: 5px;
  /* small white halo for legibility on any background tint */
  text-shadow:
    0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff,
    0 0 6px rgba(255,255,255,.85);
}
.map-pin::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(234,109,62,.18), 0 2px 4px rgba(11,26,44,.25);
  flex-shrink: 0;
  animation: pinPulse 2.6s ease-in-out infinite;
}
/* "right" pins: dot first, then label to the right (default) */
.map-pin-right { /* same as default */ }
/* default left pins: label first, dot to the right */
.map-pin:not(.map-pin-right) {
  flex-direction: row-reverse;
}
.map-pin:not(.map-pin-right)::before {
  margin-left: 5px;
}
/* Stagger pin pulses */
.map-pin:nth-child(2)::before { animation-delay: .3s; }
.map-pin:nth-child(3)::before { animation-delay: .6s; }
.map-pin:nth-child(4)::before { animation-delay: .9s; }
.map-pin:nth-child(5)::before { animation-delay: 1.2s; }
.map-pin:nth-child(6)::before { animation-delay: 1.5s; }
.map-pin:nth-child(7)::before { animation-delay: 1.8s; }
.map-pin:nth-child(8)::before { animation-delay: 2.1s; }
.map-pin:nth-child(9)::before { animation-delay: 2.4s; }
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(234,109,62,.18), 0 2px 4px rgba(11,26,44,.25); }
  50%      { box-shadow: 0 0 0 7px rgba(234,109,62,.05), 0 2px 4px rgba(11,26,44,.25); }
}
@media (max-width: 600px) {
  .map-pin { font-size: 10px; gap: 3px; }
  .map-pin::before { width: 7px; height: 7px; }
}

@media (max-width: 900px) {
  .coverage-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .coverage-list { grid-template-columns: 1fr; }
}

/* ================= REQUEST FORM ================= */
.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
  width: 100%;
}
.form-emergency-notice {
  background: rgba(220,38,38,.06);
  border: 1px solid rgba(220,38,38,.2);
  border-left: 3px solid #dc2626;
  color: #991b1b;
  font-size: .82rem;
  line-height: 1.45;
  padding: .65rem .85rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.form-header {
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.form-header .kicker { margin-bottom: .25rem; color: var(--orange-500); }
.form-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -.01em;
}

.form-progress {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.fp-step {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
  border-bottom: 3px solid var(--line);
  padding-bottom: .7rem;
  transition: color .2s ease, border-color .2s ease;
}
.fp-step > span:first-child {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--line); color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem;
  transition: all .2s ease;
  flex-shrink: 0;
}
.fp-step.active, .fp-step.done { color: var(--ink); border-color: var(--orange-500); }
.fp-step.active > span:first-child { background: var(--orange-500); color: #fff; }
.fp-step.done > span:first-child { background: var(--green-500); color: #fff; }

.form-step { display: none; animation: stepIn .3s ease; }
.form-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: .85rem; }
.form-row.single { grid-template-columns: 1fr; }
.form-row label, .form-step label.full { display: block; }
.form-step label > span {
  display: block; font-size: .78rem; font-weight: 600; color: var(--text);
  margin-bottom: .3rem;
}

/* ================ UNIFIED INPUT STYLES ================
   Every text-ish input, select and textarea — inside form-card
   AND provider-form — shares the same base look.
========================================================= */
.form-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.form-card select,
.form-card textarea,
.provider-form input {
  width: 100%;
  box-sizing: border-box;
  padding: .78rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: .95rem;
  line-height: 1.35;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
  -webkit-appearance: none;
  min-height: 46px;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.provider-form input:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(234,109,62,.12);
}
.form-card input::placeholder,
.form-card textarea::placeholder,
.provider-form input::placeholder {
  color: #9aa6b9;
  opacity: 1;
}
/* Native select arrow (since we appearance:none'd it) */
.form-card select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%236b7a90' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}
.form-card select:disabled { opacity: .55; }
/* Date/time pickers — same treatment */
.form-card input[type="date"],
.form-card input[type="time"] {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  cursor: pointer;
}
/* Input with leading icon (pickup / dropoff) */
.input-with-icon { position: relative; color: var(--muted); }
.input-with-icon > svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  fill: currentColor;
  stroke: none;
}
.form-card .input-with-icon input,
.input-with-icon input { padding-left: 2.6rem !important; }

.form-card textarea { resize: vertical; min-height: 90px; }
.form-label-block {
  display: block; font-size: .78rem; font-weight: 600; margin: .4rem 0 .55rem; color: var(--text);
}
.uppercase { text-transform: uppercase; letter-spacing: .04em; }
.chip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
  margin-bottom: 1rem;
}
.chip-grid.two { grid-template-columns: 1fr 1fr; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip > span {
  display: flex; align-items: center; justify-content: center;
  gap: .45rem;
  padding: .7rem .8rem;
  border: 1.5px solid var(--line); border-radius: 12px;
  font-size: .88rem; text-align: center;
  transition: all .15s cubic-bezier(.16,1,.3,1);
  user-select: none;
  background: #fff;
  color: var(--text);
}
.chip > span > svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chip:active > span { transform: scale(.98); }
.chip input:checked + span {
  border-color: var(--orange-500);
  background: rgba(234,109,62,.08);
  color: var(--ink);
  font-weight: 600;
}
.check { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text); }
.check input { width: 18px; height: 18px; accent-color: var(--orange-500); }

.form-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.4rem; gap: 1rem;
}

.mini-map-preview {
  position: relative;
  height: 180px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px) 0 0/30px 30px,
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px) 0 0/30px 30px,
    linear-gradient(135deg, #e4eef8, #f5f9fd);
  border: 1px solid var(--line);
  overflow: hidden;
}
.mmp-road { position: absolute; background: #d3deea; height: 10px; width: 160%; top: 55%; left: -30%; transform: rotate(-4deg); }
.mmp-road-2 { top: 30%; transform: rotate(3deg); width: 140%; height: 7px; }
.mmp-pin { position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; border-radius: 50%; border: 3px solid #fff; background: var(--orange-500); transform: translate(-50%,-50%); box-shadow: 0 4px 12px rgba(234,109,62,.4); }
.mmp-pin span { position: absolute; inset: -10px; border-radius: 50%; background: var(--orange-500); opacity: .25; animation: ping 1.8s ease-out infinite; }
.mmp-label { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: rgba(6,24,43,.85); color: #fff; font-size: .72rem; padding: .3rem .7rem; border-radius: 999px; }

@media (max-width: 620px) {
  .form-card { padding: 1.4rem 1.1rem; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-step { font-size: 0; gap: 0; }
  .fp-step span { margin: 0 auto; }
}

/* ================= PROVIDERS ================= */
.providers-inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center;
}
.provider-perks { list-style: none; padding: 0; margin: 1rem 0 1.6rem; }
.provider-perks li { position: relative; padding: .4rem 0 .4rem 1.8rem; color: var(--muted); }
.provider-perks li::before {
  content: '✓'; position: absolute; left: 0; top: .4rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(31,191,117,.15); color: var(--green-500);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
}
.provider-perks li b { color: var(--ink); }

.provider-form { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .7rem; margin-top: 1rem; }
.provider-form .btn { grid-column: 1 / -1; justify-self: start; }

.providers-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: left;
}
.stat b { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--orange-400); }
.stat span { font-size: .85rem; color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
  .providers-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .provider-form { grid-template-columns: 1fr; }
}

/* ================= TESTIMONIALS ================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-grid figure {
  margin: 0; background: #fff; border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.testi-grid blockquote { margin: 0 0 1rem; font-size: 1.02rem; color: var(--ink); line-height: 1.55; }
.testi-grid figcaption { font-size: .9rem; color: var(--muted); }
.testi-grid figcaption b { color: var(--ink); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ================= CTA FINAL ================= */
.cta-final {
  background: linear-gradient(135deg, var(--orange-500), #e0562a);
  color: #fff; padding: 4.5rem 0;
}
.cta-final h2 { color: #fff; }
.cta-inner { text-align: center; }
.cta-inner p { color: rgba(255,255,255,.92); margin-bottom: 1.6rem; font-size: 1.1rem; }
.cta-inner .btn-primary {
  background: #fff; color: var(--orange-500);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.cta-inner .btn-primary:hover { background: #fff7f2; }

/* ================= FOOTER ================= */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 3.5rem 0 1.2rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h4 { color: #fff; font-family: var(--font-display); font-size: .95rem; margin-bottom: .9rem; }
.footer a { display: block; font-size: .9rem; padding: .2rem 0; color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--orange-400); }
.footer .logo { color: #fff; margin-bottom: .8rem; }
.footer-bottom {
  padding-top: 1.2rem;
  display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.55);
}
.fb-links { display: flex; gap: 1.2rem; }
.fb-links a { display: inline; }
@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .6rem; text-align: center; }
}

/* ============================================================
   DISPATCH MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 1.2rem;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6,24,43,.7);
  backdrop-filter: blur(6px);
  animation: fadeIn .25s ease;
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: min(100%, 580px);
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-lg);
  animation: popIn .35s cubic-bezier(.2,.9,.3,1.2);
}
.modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: #f0f3f8; color: var(--muted);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { background: #e2e8ef; color: var(--ink); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }

.stage-dots {
  display: flex; justify-content: center; gap: .5rem; margin-bottom: 1.4rem;
}
.stage-dots .dot {
  width: 28px; height: 5px; border-radius: 4px; background: var(--line);
  transition: background .25s ease, width .25s ease;
}
.stage-dots .dot.active { background: var(--orange-500); width: 42px; }
.stage-dots .dot.done { background: var(--green-500); }

.stage { display: none; }
.stage.active { display: block; animation: stepIn .35s ease; }
.stage h3 { text-align: center; margin-bottom: .4rem; font-size: 1.35rem; }
.stage > p.muted { text-align: center; }

/* stage 1: radar */
.search-radar {
  position: relative; width: 200px; height: 200px;
  margin: 1rem auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.radar-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(234,109,62,.4);
  animation: radar 2.4s ease-out infinite;
}
.radar-ring.r1 { width: 60px; height: 60px; animation-delay: 0s; }
.radar-ring.r2 { width: 60px; height: 60px; animation-delay: .8s; }
.radar-ring.r3 { width: 60px; height: 60px; animation-delay: 1.6s; }
@keyframes radar { 0% { width: 60px; height: 60px; opacity: 1; } 100% { width: 220px; height: 220px; opacity: 0; } }
.radar-pin {
  width: 48px; height: 48px;
  z-index: 2;
  color: var(--orange-500);
  filter: drop-shadow(0 4px 10px rgba(234,109,62,.5));
}
.search-log {
  list-style: none; padding: 0; margin: 1rem 0 0;
  background: var(--bg-alt); border-radius: 12px;
  max-height: 140px; overflow: hidden;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .82rem;
}
.search-log li {
  padding: .5rem .9rem; display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  animation: logIn .3s ease;
}
.search-log li:last-child { border-bottom: 0; }
.search-log li b { color: var(--ink); }
.search-log li.hit b { color: var(--green-500); }
@keyframes logIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* stage 2: quote */
.quote-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.quote-head h3 { text-align: left; margin: 0; }
.quote-head p { margin: 0; font-size: .85rem; }
.quote-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.6rem;
  padding: 1rem 1.2rem; background: var(--bg-alt); border-radius: 12px;
  margin-bottom: 1rem;
}
.quote-grid > div small { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.quote-grid > div b { font-size: .95rem; color: var(--ink); }

.price-box {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  margin-bottom: 1.4rem;
}
.price-box small { color: rgba(255,255,255,.7); font-size: .72rem; display: block; }
.price { display: flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-weight: 700; }
.price span { font-size: 1.3rem; color: var(--orange-400); }
.price b { font-size: 3rem; color: var(--orange-400); line-height: 1; }
.price-breakdown { border-left: 1px solid rgba(255,255,255,.12); padding-left: 1.4rem; }
.price-breakdown div { display: flex; justify-content: space-between; font-size: .88rem; padding: .2rem 0; color: rgba(255,255,255,.85); }
.quote-actions { display: flex; gap: .8rem; }
.quote-actions .btn { flex: 1; justify-content: center; }

@media (max-width: 520px) {
  .price-box { grid-template-columns: 1fr; gap: 1rem; }
  .price-breakdown { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding: 1rem 0 0; }
}

/* stage 3: tracking */
.track-status {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(31,191,117,.1);
  border: 1px solid rgba(31,191,117,.3);
  color: var(--green-500);
  padding: .6rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
  justify-content: space-between;
}
.track-status strong { color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; }
.track-map {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
  margin-bottom: 1rem;
  background: #0f243c;
}
.track-svg { width: 100%; height: 100%; }
#driverMarker { transition: transform .6s linear; }

.track-card {
  display: flex; align-items: center; gap: .8rem;
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}
.track-info { flex: 1; font-size: .8rem; }
.track-info b { display: block; font-size: .95rem; color: var(--ink); }
.track-info span { color: var(--muted); font-size: .82rem; }
.track-progress { height: 5px; border-radius: 4px; background: #dbe2ec; margin-top: .5rem; overflow: hidden; }
.track-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--orange-500), var(--green-500)); border-radius: 4px; transition: width .6s ease; }
.track-actions { display: flex; gap: .4rem; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.icon-btn:hover { background: var(--bg-alt); }

/* stage 4 */
.arrived-hero { text-align: center; margin: 1rem 0 1.4rem; }
.check-burst {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(31,191,117,.15);
  color: var(--green-500);
  font-size: 2.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  animation: burst .5s cubic-bezier(.2,.9,.3,1.4);
}
@keyframes burst { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* menu open (mobile placeholder) */
body.menu-open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  padding: 1rem 1.5rem; gap: .8rem;
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   LEGAL PAGES — Terms of Use, Privacy Policy
   Quiet typography, generous spacing, optimized for reading
   ============================================================ */
.legal-page {
  background: #fff;
  padding: 3rem 0 5rem;
  min-height: 60vh;
}
.legal-inner {
  max-width: 780px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: .8rem 0 .35rem;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.legal-page section { margin-bottom: 1.8rem; }
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
  margin: 1.6rem 0 .7rem;
}
.legal-page p {
  font-size: .96rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 .9rem;
}
.legal-page ul {
  list-style: none;
  padding: 0;
  margin: .4rem 0 1rem;
}
.legal-page ul li {
  position: relative;
  padding: .25rem 0 .25rem 1.4rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text);
}
.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  opacity: .65;
}
.legal-page a {
  color: var(--orange-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(234,109,62,.4);
  transition: text-decoration-color .15s ease;
}
.legal-page a:hover { text-decoration-color: var(--orange-500); }
.legal-page strong { color: var(--ink); font-weight: 600; }

.legal-back {
  margin: 0 0 2rem;
  font-size: .88rem;
}
.legal-back a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--muted) !important;
  text-decoration: none;
  font-weight: 500;
  padding: .35rem .7rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: all .15s cubic-bezier(.16,1,.3,1);
}
.legal-back a:hover {
  color: var(--orange-500) !important;
  border-color: var(--orange-500);
  background: rgba(234,109,62,.04);
}
.legal-back a svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   HERO — "For tow operators" callout below trust row
   ============================================================ */
.hero-operators-cta {
  margin: 1.6rem 0 0;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}
.link-btn {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--orange-400);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(239,133,97,.4);
  transition: color .15s ease, text-decoration-color .15s ease;
}
.link-btn:hover {
  color: var(--orange-500);
  text-decoration-color: var(--orange-500);
}

/* ============================================================
   OPERATORS MODAL — tow-operator contact dialog
   ============================================================ */
.op-card {
  text-align: center;
  max-width: 480px;
  padding: 2.4rem 2rem 2rem;
}
.op-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(234,109,62,.18), rgba(234,109,62,.05));
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.op-icon svg {
  width: 36px; height: 36px;
  stroke: currentColor; fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.op-card h3 {
  font-size: 1.4rem;
  margin: 0 0 .8rem;
  color: var(--ink);
}
.op-card > p {
  color: var(--muted);
  font-size: .96rem;
  margin: 0 0 1.6rem;
  line-height: 1.55;
}
.op-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}
.op-meta {
  margin: 1rem 0 0;
  font-size: .8rem;
  color: var(--muted);
}
.quote-actions-single {
  justify-content: center;
}
.quote-actions-single .btn {
  flex: 0 1 auto;
  min-width: 200px;
}

/* ============================================================
   BETA BANNER — top-of-page market-research disclosure
   (visible above the nav, satisfies FDUTPA / Florida deceptive
   trade practices guidance for prototypes)
   ============================================================ */
.beta-banner {
  background: linear-gradient(90deg, #1a3656, #20406b);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  line-height: 1.4;
  padding: .5rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bb-pill {
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .12em;
  padding: .15rem .55rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.bb-text { max-width: 68rem; }
@media (max-width: 600px) {
  .beta-banner { font-size: .75rem; padding: .55rem .9rem; gap: .55rem; }
}

/* Form fine-print directly below submit (legal disclosure) */
.form-finepr {
  font-size: .76rem;
  line-height: 1.45;
  color: var(--muted);
  margin: .9rem 0 0;
  text-align: center;
  padding: .7rem .9rem;
  background: var(--bg-alt);
  border: 1px dashed var(--line);
  border-radius: 10px;
}

/* ============================================================
   HERO — TRUST BADGES (3 pills below the lead)
   ============================================================ */
.hero-badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem;
  margin: 0 0 1.2rem;
}
.hb {
  display: flex; align-items: center; gap: .65rem;
  padding: .7rem .85rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.hb-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(234,109,62,.12);
  color: var(--orange-400);
  flex-shrink: 0;
}
.hb b {
  display: block;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.25;
}
.hb small {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  line-height: 1.3;
  margin-top: 2px;
}
@media (max-width: 560px) {
  .hero-badges { grid-template-columns: 1fr; gap: .5rem; }
}

/* ============================================================
   HERO — LIVE SOCIAL FEED (rotating last booking)
   ============================================================ */
.live-feed {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(31,191,117,.12);
  border: 1px solid rgba(31,191,117,.3);
  color: rgba(255,255,255,.9);
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.lf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(31,191,117,.6);
  animation: pulseG 1.6s infinite;
  flex-shrink: 0;
}
.lf-label { color: rgba(255,255,255,.55); font-weight: 500; }
.lf-text {
  color: #fff; font-weight: 600;
  animation: lfFade .4s ease;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@keyframes lfFade { from { opacity: 0; transform: translateY(-2px); } to { opacity: 1; transform: none; } }

/* ============================================================
   BUILT FOR FLORIDA — 4-card grid on dark bg
   ============================================================ */
.fl-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
}
.fl-card {
  background: linear-gradient(150deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  transition: transform .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.fl-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(234,109,62,.12), transparent 60%);
  pointer-events: none;
}
.fl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234,109,62,.35);
}
.fl-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(234,109,62,.18), rgba(234,109,62,.04));
  border: 1px solid rgba(234,109,62,.2);
  color: var(--orange-400);
  margin-bottom: 1rem;
}
.fl-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.fl-card p {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  margin-bottom: 1rem;
}
.fl-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.fl-tags li {
  font-size: .76rem;
  color: var(--orange-400);
  background: rgba(234,109,62,.08);
  border: 1px solid rgba(234,109,62,.2);
  padding: .25rem .6rem;
  border-radius: 999px;
  font-weight: 500;
}
@media (max-width: 820px) {
  .fl-grid { grid-template-columns: 1fr; }
}

/* (former footer credentials badges removed) */

/* ============================================================
   LANG TOGGLE + AUDIENCE SWITCH + FLOATING SOS + NEW SECTIONS
   ============================================================ */

/* Lang toggle button */
.lang-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: all .15s ease;
}
.lang-toggle:hover { background: var(--bg-alt); border-color: var(--orange-500); color: var(--orange-500); }

/* (audience switch removed — single-audience hero) */

/* ============= PRICING ============= */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  margin-bottom: 1.6rem;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.popular {
  border-color: var(--orange-500);
  box-shadow: 0 18px 40px rgba(234,109,62,.18);
  transform: translateY(-6px);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange-500); color: #fff;
  padding: .3rem .9rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.pricing-icon { font-size: 2rem; margin-bottom: .4rem; }
.pricing-card h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.pricing-from {
  display: flex; align-items: baseline; gap: .35rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.pricing-from small { color: var(--muted); font-size: .85rem; }
.pricing-from b { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.pricing-card ul { list-style: none; padding: 0; margin: 0; }
.pricing-card ul li {
  padding: .4rem 0 .4rem 1.6rem;
  position: relative;
  font-size: .92rem;
  color: var(--muted);
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute; left: 0; top: .4rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(31,191,117,.15);
  color: var(--green-500); font-weight: 700; font-size: .72rem;
  display: flex; align-items: center; justify-content: center;
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: .86rem;
  max-width: 640px;
  margin: 1rem auto 0;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
}

/* ============= SAFETY ============= */
.safety-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center;
}
.safety-copy { position: sticky; top: 100px; }
.safety-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.safety-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.safety-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.safety-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(234,109,62,.15), rgba(234,109,62,.06));
  color: var(--orange-500);
  margin-bottom: .7rem;
}
.safety-card h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.safety-card p { font-size: .9rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) {
  .safety-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .safety-copy { position: static; }
}
@media (max-width: 560px) {
  .safety-grid { grid-template-columns: 1fr; }
}

/* ============= FAQ ============= */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: .6rem;
}
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq[open] {
  border-color: var(--orange-500);
  box-shadow: 0 10px 24px rgba(10,37,64,.08);
}
.faq summary {
  list-style: none;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .2s ease, border-color .15s ease;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: var(--orange-500);
}
.faq p {
  margin: 0;
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
}
.faq p a { color: var(--orange-500); font-weight: 600; }

/* ============= PHOTO UPLOAD ============= */
.photo-upload { margin-bottom: 1rem; }
.photo-upload .upload-zone {
  display: block;
  border: 2px dashed var(--line);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  background: var(--bg-alt);
  transition: border-color .15s ease, background .15s ease;
  position: relative;
  overflow: hidden;
}
.photo-upload .upload-zone:hover {
  border-color: var(--orange-500);
  background: rgba(234,109,62,.04);
}
.photo-upload input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0;
  cursor: pointer;
}
.upload-inner { position: relative; z-index: 1; pointer-events: none; }
.upload-ico { font-size: 1.8rem; display: block; margin-bottom: .3rem; }
.upload-inner b { display: block; font-weight: 600; color: var(--ink); }
.upload-inner small { color: var(--muted); font-size: .82rem; }
.upload-zone.has-file {
  border-style: solid;
  border-color: var(--green-500);
  background: rgba(31,191,117,.05);
  padding: 0;
}
.upload-zone.has-file .upload-inner {
  padding: 1rem;
  display: flex; align-items: center; gap: .9rem;
  text-align: left;
}
.upload-zone.has-file .upload-thumb {
  width: 56px; height: 56px; border-radius: 10px;
  background: #fff center/cover no-repeat;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.upload-zone.has-file .upload-ico { display: none; }

/* ============= FLOATING SOS ============= */
.floating-sos {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  display: none;
  align-items: center; gap: .5rem;
  background: var(--orange-500);
  color: #fff;
  padding: .85rem 1.3rem .85rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 14px 32px rgba(234,109,62,.45);
  animation: sosPulse 2.4s ease-in-out infinite;
  text-decoration: none;
}
.floating-sos:hover { background: var(--orange-400); transform: scale(1.04); }
.sos-icon { width: 20px; height: 20px; color: #fff; }
@keyframes sosPulse {
  0%, 100% { box-shadow: 0 14px 32px rgba(234,109,62,.45), 0 0 0 0 rgba(234,109,62,.6); }
  50% { box-shadow: 0 14px 32px rgba(234,109,62,.45), 0 0 0 12px rgba(234,109,62,0); }
}

@media (max-width: 820px) {
  .floating-sos { display: inline-flex; }
}

/* ============================================================
   MOTION SYSTEM — reveal, spotlight, magnetic, parallax, marquee
   All transforms only. Respect prefers-reduced-motion.
   ============================================================ */

/* Reveal-on-scroll: hidden until IntersectionObserver adds .in-view */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* Stagger child reveals via CSS variable index */
.reveal-stagger > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .7s cubic-bezier(.16, 1, .3, 1),
    transform .7s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Counter — tabular numbers so the digit shift doesn't jiggle the layout */
.count {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" on, "lnum" on;
}

/* Hero parallax targets — subtle depth */
.hero-bg, .hero-form, .hero-copy {
  will-change: transform;
}

/* Hero gradient — slow lava-lamp animation */
.hero-bg::after {
  content: '';
  position: absolute; inset: -20%;
  background:
    radial-gradient(420px 320px at var(--mx, 30%) var(--my, 40%), rgba(234,109,62,.18), transparent 65%),
    radial-gradient(380px 300px at calc(100% - var(--mx, 30%)) calc(100% - var(--my, 40%)), rgba(47,111,181,.18), transparent 65%);
  filter: blur(20px);
  animation: heroDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1); }
}

/* Hero badges — gentle perpetual float (different phase per badge) */
.hb {
  animation: floatHb 7s ease-in-out infinite;
}
.hb:nth-child(2) { animation-delay: -2.3s; }
.hb:nth-child(3) { animation-delay: -4.6s; }
@keyframes floatHb {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -3px, 0); }
}

/* Spotlight hover (Florida cards, service cards, how-timeline rows)
   — tracks cursor position via CSS variable set by JS */
.fl-card, .service {
  position: relative;
  isolation: isolate;
}
.fl-card::after, .service::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(234,109,62,.16), transparent 55%
  );
  opacity: 0;
  transition: opacity .3s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  z-index: -1;
}
.fl-card:hover::after, .service:hover::after { opacity: 1; }

/* Magnetic primary CTA — JS sets --mxoff/--myoff in pixels */
.btn-primary {
  transform: translate3d(var(--mxoff, 0px), var(--myoff, 0px), 0);
}

/* Routes marquee — full-viewport-width band, infinite horizontal scroll
   bullet-proof full-bleed: position relative + left:50% + width:100vw + ml:-50vw */
.routes-marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 1.2rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.routes-marquee .routes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: .6rem;
  animation: marquee 60s linear infinite;
}
.routes-marquee .routes-list li {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: .9rem;
  font-weight: 500;
  padding: .55rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: -.01em;
  transition: border-color .2s cubic-bezier(.16,1,.3,1), color .2s, background .2s;
}
.routes-marquee .routes-list li:hover {
  border-color: var(--orange-500);
  color: var(--orange-500);
  background: rgba(234,109,62,.06);
}
.routes-marquee:hover .routes-list { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 720px) {
  .routes-marquee .routes-list { animation-duration: 45s; gap: .4rem; }
  .routes-marquee .routes-list li { font-size: .82rem; padding: .45rem .9rem; }
}

/* Subtle shimmer on primary CTA — premium polish */
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.btn-primary { position: relative; overflow: hidden; }
.btn-primary:hover::before { transform: translateX(100%); }

/* Pulsing ring around the live-feed dot — atmosphere */
.lf-dot {
  position: relative;
}
.lf-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--green-500);
  opacity: .6;
  animation: lfRing 1.8s cubic-bezier(.16, 1, .3, 1) infinite;
}
@keyframes lfRing {
  0%   { transform: scale(.6); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hb, .hero-bg::after, .lf-dot::after, .routes-marquee .routes-list,
  .pulse-dot, .btn-primary::before {
    animation: none !important;
  }
  .btn-primary { transform: none !important; }
}

/* ============================================================
   FLORIDA SERVICE AREAS — local SEO city grid
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 3rem;
}
.area-col h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .8rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.005em;
}
.area-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .25rem .8rem;
}
.area-col li {
  font-size: .88rem;
  color: var(--muted);
  padding: .15rem 0;
  position: relative;
  padding-left: .9rem;
}
.area-col li::before {
  content: '';
  position: absolute; left: 0; top: .65em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange-500);
  opacity: .5;
}
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .areas-grid { grid-template-columns: 1fr; }
  .area-col ul { grid-template-columns: 1fr 1fr; }
}

/* Most-booked routes — borderless band with infinite marquee */
.areas-routes {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.areas-routes h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 1.4rem;
  color: var(--ink);
  letter-spacing: -.005em;
}

/* ============================================================
   DISCLAIMER — dark legal block, full-width, before footer
   ============================================================ */
.disclaimer {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 3.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
  line-height: 1.65;
}
.disclaimer .container { max-width: 900px; }
.disclaimer-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 1.4rem;
}
.disclaimer-intro {
  margin: 0 0 1.6rem;
  color: rgba(255,255,255,.78);
}
.disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
.disclaimer-list li {
  color: rgba(255,255,255,.78);
}
.disclaimer-list b {
  color: #fff;
  font-weight: 600;
}

/* ============================================================
   CUSTOM ADDRESS AUTOCOMPLETE DROPDOWN
   Renders our own list using the new AutocompleteSuggestion API.
   Anchored to the .input-with-icon wrapper so it follows the input.
   ============================================================ */
/* Hide any leftover Google legacy dropdown if it ever loads */
.pac-container { display: none !important; }

.tl-suggest {
  list-style: none;
  margin: 0;
  padding: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(11,26,44,.14), 0 4px 10px rgba(11,26,44,.06);
  z-index: 300;
  margin-top: 6px;
  max-height: 320px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity .18s cubic-bezier(.16,1,.3,1),
    transform .18s cubic-bezier(.16,1,.3,1);
}
.tl-suggest.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.tl-suggest-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: auto auto;
  column-gap: .6rem;
  padding: .65rem .8rem;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  transition: background .15s cubic-bezier(.16,1,.3,1);
}
.tl-suggest-item:hover,
.tl-suggest-item.active {
  background: rgba(234,109,62,.08);
}
.tl-suggest-pin {
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  stroke: var(--orange-500);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  align-self: center;
}
.tl-suggest-main {
  grid-column: 2;
  grid-row: 1;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.tl-suggest-secondary {
  grid-column: 2;
  grid-row: 2;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 1px;
}

/* Loading state — shown immediately while waiting for Places API response */
.tl-suggest-loading {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .9rem;
  font-size: .88rem;
  color: var(--muted);
  list-style: none;
}
.tl-suggest-loading-text { font-style: italic; }
.tl-suggest-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(234,109,62,.18);
  border-top-color: var(--orange-500);
  border-radius: 50%;
  animation: tl-spin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes tl-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   MODAL — "REQUEST SAVED" STAGE
   ============================================================ */
.saved-hero { text-align: center; margin: .5rem 0 1.4rem; }
.saved-icon {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(47,111,181,.18), rgba(47,111,181,.05));
  color: var(--blue-500);
  margin: 0 auto .9rem;
  animation: burst .5s cubic-bezier(.2,.9,.3,1.4);
}
.saved-hero h3 { margin-bottom: .3rem; }
.saved-hero .center { max-width: 28rem; margin: 0 auto; }

.saved-summary {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}
.ss-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 1rem;
  padding: .45rem 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.ss-row:last-child { border-bottom: 0; }
.ss-row small {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.ss-row b {
  color: var(--ink);
  font-size: .9rem;
  word-break: break-word;
}

.notify-box {
  display: flex; gap: .9rem; align-items: flex-start;
  background: rgba(31,191,117,.08);
  border: 1px solid rgba(31,191,117,.25);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}
.notify-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  flex-shrink: 0;
}
.notify-box b {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  margin-bottom: .15rem;
}
.notify-box small {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.saved-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1rem;
}
.saved-meta > div {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: 12px;
  padding: .9rem 1rem;
}
.saved-meta small {
  color: rgba(255,255,255,.7);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
  margin-bottom: 4px;
}
.saved-meta b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--orange-400);
}

@media (max-width: 480px) {
  .ss-row { grid-template-columns: 1fr; gap: 2px; padding: .55rem 0; }
  .saved-meta { grid-template-columns: 1fr; }
}

/* ============================================================
   CITY LANDING PAGES (Miami / Orlando / Tampa / Jacksonville)
============================================================ */
.city-page { padding-top: 0; padding-bottom: 0; }

/* ----- Hero ----- */
.city-hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  color: #fff;
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(234,109,62,.18), transparent 45%),
    radial-gradient(circle at 88% 78%, rgba(47,111,181,.20), transparent 50%);
  pointer-events: none;
}
.city-hero > .container { position: relative; z-index: 1; }

.city-breadcrumbs {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.4rem;
}
.city-breadcrumbs a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s, color .15s;
}
.city-breadcrumbs a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.5); }
.city-breadcrumbs .current { color: #fff; font-weight: 500; }
.city-breadcrumbs span:not(.current) { color: rgba(255,255,255,.4); }

.city-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--orange-400);
  background: rgba(234,109,62,.12);
  border: 1px solid rgba(234,109,62,.32);
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.city-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 1.1rem;
  color: #fff;
  letter-spacing: -.02em;
  max-width: 18ch;
}

.city-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 62ch;
  margin: 0 0 2rem;
}

.city-hero-cta {
  display: flex;
  gap: .8rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}
.city-hero-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.city-hero-cta .btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.4);
}

.city-hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.city-hero-trust li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.city-hero-trust .icon {
  color: var(--orange-400);
  width: 1rem;
  height: 1rem;
}

/* ----- Content sections ----- */
.city-section {
  padding: 4rem 0;
  background: #fff;
}
.city-section-alt { background: var(--bg-alt); }
.city-narrow { max-width: 880px !important; }

.city-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--navy-900);
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.city-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1.1rem;
}

.city-section-lead {
  font-size: 1.05rem !important;
  color: var(--muted) !important;
  margin-bottom: 2rem !important;
  max-width: 70ch;
}

/* ----- Routes table ----- */
.city-routes-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}
.city-route-header,
.city-route-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 1.1fr 1.4fr;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.2rem;
  font-size: .92rem;
}
.city-route-header {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  font-family: var(--font-display);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.city-route-row {
  border-top: 1px solid var(--line);
  transition: background .15s;
}
.city-route-row:hover { background: var(--bg-alt); }
.city-route-row span:first-child {
  font-weight: 600;
  color: var(--navy-900);
}
.city-route-row span:nth-child(2) { color: var(--text); }
.city-route-row span:nth-child(3),
.city-route-row span:nth-child(4) {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--muted);
}
.city-route-row span:last-child {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--orange-500);
  font-size: .9rem;
}
.city-note {
  font-size: .85rem !important;
  color: var(--muted) !important;
  font-style: italic;
  margin-top: .8rem !important;
}

/* ----- Services grid ----- */
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-top: 1.4rem;
}
.city-service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.city-section-alt .city-service { background: #fff; }
.city-service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(234,109,62,.3);
}
.city-service h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 .55rem;
  line-height: 1.25;
}
.city-service p {
  font-size: .92rem !important;
  line-height: 1.55 !important;
  color: var(--text);
  margin: 0 !important;
}

/* ----- FAQ ----- */
.city-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: .7rem;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.city-faq-item[open] {
  border-color: rgba(234,109,62,.4);
  box-shadow: var(--shadow-sm);
}
.city-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  position: relative;
  padding-right: 3rem;
  line-height: 1.4;
}
.city-faq-item summary::-webkit-details-marker { display: none; }
.city-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange-500);
  line-height: 1;
  transition: transform .2s;
}
.city-faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.city-faq-item p {
  padding: 0 1.4rem 1.2rem;
  margin: 0 !important;
  font-size: .96rem !important;
  line-height: 1.65 !important;
  color: var(--text);
}

/* ----- CTA section ----- */
.city-cta {
  background: linear-gradient(135deg, var(--orange-500), #c4582a);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.city-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin: 0 0 .8rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.city-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.92);
  margin: 0 auto 1.8rem;
  max-width: 56ch;
}
.city-cta .btn-primary {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}
.city-cta .btn-primary:hover {
  background: var(--navy-900);
  color: #fff;
}

/* ----- Related cities grid ----- */
.city-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.city-related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.city-related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--orange-500);
}
.city-related-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 .4rem;
}
.city-related-card p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ----- Responsive ----- */
@media (max-width: 780px) {
  .city-hero { padding: 3rem 0 3.5rem; }
  .city-section { padding: 3rem 0; }
  .city-route-header { display: none; }
  .city-route-row {
    grid-template-columns: 1fr 1fr;
    gap: .4rem .8rem;
    padding: 1rem 1.1rem;
    font-size: .88rem;
  }
  .city-route-row span:first-child::before {
    content: "From: ";
    color: var(--muted);
    font-weight: 400;
    font-size: .75rem;
    display: block;
  }
  .city-route-row span:nth-child(2)::before {
    content: "To: ";
    color: var(--muted);
    font-weight: 400;
    font-size: .75rem;
    display: block;
  }
  .city-route-row span:nth-child(3)::before {
    content: "Distance: ";
    color: var(--muted);
    font-size: .75rem;
    display: block;
  }
  .city-route-row span:nth-child(4)::before {
    content: "Transit: ";
    color: var(--muted);
    font-size: .75rem;
    display: block;
  }
  .city-route-row span:last-child::before {
    content: "Price: ";
    color: var(--muted);
    font-weight: 400;
    font-size: .75rem;
    display: block;
  }
  .city-route-row span:last-child {
    grid-column: 1 / -1;
    padding-top: .3rem;
    border-top: 1px dashed var(--line);
    margin-top: .3rem;
  }
}

@media (max-width: 480px) {
  .city-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .city-hero-cta { flex-direction: column; align-items: stretch; }
  .city-hero-cta .btn { width: 100%; }
  .city-hero-trust { gap: .8rem 1.2rem; }
}
