/* ==========================================================================
   Autonoleggio GM Bus Turistici — Foglio di stile
   Struttura: Reset → Variabili → Base → Layout → Componenti → Sezioni →
              Responsive
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Variabili ---------- */
:root {
  --navy-900: #12141d;
  --navy-800: #171a24;
  --navy-700: #1f2333;
  --navy-600: #2a2f43;
  --cream:    #f7f4ee;
  --cream-2:  #efe9dd;
  --gold:     #d4a544;
  --gold-2:   #e6bd60;
  --gold-deep:#b78630;
  --ink:      #1b1e2b;
  --muted:    #6b7180;
  --muted-light: #a7adbd;
  --line:     rgba(20, 22, 30, .10);
  --line-light: rgba(255, 255, 255, .12);
  --whatsapp: #25d366;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 6px 18px rgba(18, 20, 29, .08);
  --shadow-md: 0 16px 40px rgba(18, 20, 29, .14);
  --shadow-lg: 0 30px 70px rgba(18, 20, 29, .22);
  --header-h: 76px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, .brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .5px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.text-accent { color: var(--gold); }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: .6rem;
}
.eyebrow--light { color: var(--gold-2); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--navy-900); padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: 1rem;
  padding: .8rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.08rem; }
.btn--accent { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: var(--navy-900); box-shadow: 0 8px 22px rgba(183, 134, 48, .35); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(183, 134, 48, .45); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--navy-900); transform: translateY(-2px); }
.btn--whatsapp { background: var(--whatsapp); color: #05391b; box-shadow: 0 8px 22px rgba(37, 211, 102, .3); }
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, .4); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: var(--muted-light); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__tag { color: var(--gold-2); font-weight: 500; letter-spacing: .04em; }
.topbar__contacts { display: flex; gap: 1.4rem; }
.topbar__contacts a { display: inline-flex; align-items: center; gap: .4rem; transition: color .2s; }
.topbar__contacts a:hover { color: #fff; }
.topbar__contacts svg { color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(23, 26, 36, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: #fff; }
.brand__mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--navy-900); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; font-size: 1.35rem; line-height: 1; text-transform: uppercase; letter-spacing: 1px; }
.brand__text strong { color: var(--gold); font-weight: 700; }
.brand__text small { font-family: var(--font-body); font-size: .62rem; letter-spacing: .34em; color: var(--muted-light); margin-top: 3px; font-weight: 400; }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav > a:not(.btn) {
  color: rgba(255,255,255,.85); font-weight: 500; font-size: .96rem; position: relative; padding: .3rem 0;
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold);
  transition: width .25s ease;
}
.nav > a:not(.btn):hover { color: #fff; }
.nav > a:not(.btn):hover::after { width: 100%; }
.nav__cta { margin-left: .4rem; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2.5px; width: 26px; background: #fff; border-radius: 3px; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: calc(100svh - var(--header-h)); display: flex; align-items: center; color: #fff; overflow: hidden; padding: 4rem 0 5rem; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(18,20,29,.94) 0%, rgba(18,20,29,.72) 45%, rgba(18,20,29,.35) 100%),
    linear-gradient(to top, rgba(18,20,29,.85), transparent 40%);
}
.hero__content { position: relative; max-width: 760px; }
.hero__content > * { opacity: 0; transform: translateY(20px); animation: rise .7s ease forwards; }
.hero__content > *:nth-child(1) { animation-delay: .05s; }
.hero__content > *:nth-child(2) { animation-delay: .15s; }
.hero__content > *:nth-child(3) { animation-delay: .25s; }
.hero__content > *:nth-child(4) { animation-delay: .35s; }
.hero__content > *:nth-child(5) { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero__lead { font-size: 1.2rem; max-width: 60ch; color: rgba(255,255,255,.88); margin: 1.3rem 0 2rem; font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.16);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-2); line-height: 1; }
.hero__stats span { font-size: .82rem; letter-spacing: .06em; color: rgba(255,255,255,.75); text-transform: uppercase; margin-top: .3rem; }

.hero__scroll { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .3rem; color: rgba(255,255,255,.8); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .25em; font-size: .72rem; }
.hero__scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Sezioni generiche ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--light { background: var(--cream); }
.section--dark { background: var(--navy-800); color: #fff; }
.section__head { max-width: 720px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section__head h2 { margin-bottom: .8rem; }
.section__sub { color: var(--muted); font-size: 1.05rem; }
.section--dark .section__sub, .section__head--light .section__sub { color: var(--muted-light); }

/* ---------- Perché noi ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(212,165,68,.18), rgba(212,165,68,.08)); margin-bottom: 1.1rem; }
.feature__icon svg { width: 30px; height: 30px; color: var(--gold-deep); }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ---------- Servizi ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,20,29,.35), transparent 55%); }
.service-card__body { padding: 1.3rem 1.4rem 1.6rem; }
.service-card__body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card__body p { color: var(--muted); font-size: .93rem; }

/* ---------- Flotta ---------- */
.fleet__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2.4rem; }
.fleet-filter {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .92rem;
  color: rgba(255,255,255,.82); padding: .55rem 1.15rem; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.22); transition: all .2s;
}
.fleet-filter:hover { border-color: var(--gold); color: #fff; }
.fleet-filter.is-active { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }

.fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vehicle-card {
  background: var(--navy-700); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(212,165,68,.4); }
.vehicle-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--navy-600); }
.vehicle-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.vehicle-card:hover .vehicle-card__media img { transform: scale(1.06); }
.vehicle-card__badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: rgba(18,20,29,.82); color: var(--gold-2); font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .05em; font-size: .74rem; padding: .3rem .7rem; border-radius: 6px;
  backdrop-filter: blur(4px);
}
.vehicle-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.vehicle-card__brand { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; color: #fff; }
.vehicle-card__seats { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-2); font-weight: 500; font-size: .95rem; }
.vehicle-card__gallery { margin-top: 1rem; display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.85); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; align-self: flex-start; }
.vehicle-card__gallery svg { width: 18px; height: 18px; color: var(--gold); }
.vehicle-card__gallery:hover { color: var(--gold-2); }

/* ---------- Preventivo ---------- */
.quote { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.quote__intro { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.quote__intro h2 { text-align: left; margin-bottom: .8rem; }
.quote__perks { margin: 1.6rem 0; display: grid; gap: .7rem; }
.quote__perks li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.quote__perks li::before {
  content: ""; position: absolute; left: 0; top: .35rem; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23171a24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.quote__contactcard { margin-top: 2rem; padding: 1.4rem 1.5rem; background: var(--navy-800); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.quote__contactcard p { color: var(--muted-light); font-size: .9rem; margin-bottom: .3rem; }
.quote__phone { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-2); letter-spacing: 1px; }
.quote__contactcard a:last-child { color: rgba(255,255,255,.8); font-size: .95rem; }

.quote__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label, .field__label { font-size: .85rem; font-weight: 500; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfaf7; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,165,68,.18); background: #fff;
}
.field input:invalid:not(:placeholder-shown), .field.has-error input, .field.has-error select { border-color: #d9534f; }
.field textarea { resize: vertical; min-height: 84px; }

.radio-row { display: flex; gap: 1.5rem; flex-wrap: wrap; padding-top: .2rem; }
.radio, .checkbox { display: flex; align-items: flex-start; gap: .55rem; cursor: pointer; font-weight: 400; font-size: .93rem; color: var(--ink); }
.radio input, .checkbox input { width: 18px; height: 18px; accent-color: var(--gold-deep); margin-top: 2px; flex-shrink: 0; }
.field--consent { margin-top: .3rem; }

/* ---------- Autocomplete località (Google Places) ---------- */
.ac-field { position: relative; }
.ac-menu {
  position: absolute; z-index: 40; top: calc(100% + 4px); left: 0; right: 0;
  margin: 0; padding: .3rem; list-style: none; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); max-height: 280px; overflow-y: auto;
}
.ac-menu[hidden] { display: none; }
.ac-item {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .5rem .6rem; border-radius: 8px; cursor: pointer;
}
.ac-item:hover, .ac-item.is-active { background: rgba(212,165,68,.14); }
.ac-main { font-size: .92rem; font-weight: 500; color: var(--ink); }
.ac-sub { font-size: .78rem; color: var(--muted); }

.quote-estimate { background: linear-gradient(135deg, rgba(212,165,68,.12), rgba(212,165,68,.05)); border: 1px dashed var(--gold); border-radius: var(--radius-sm); padding: 1rem 1.2rem; color: var(--ink); }

.quote__submit { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.quote__submit .btn { flex: 1; min-width: 210px; }
.quote__status { margin-top: 1rem; font-size: .92rem; min-height: 1.2em; }
.quote__status.is-error { color: #c0392b; }
.quote__status.is-success { color: #1e7e46; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.8); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer { margin-bottom: 1rem; }
.footer__brandcol p { font-size: .95rem; margin-bottom: 1.2rem; max-width: 34ch; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: all .2s; }
.footer__social a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-3px); }
.footer__col h3 { color: #fff; margin-bottom: 1.1rem; font-size: 1.25rem; }
.footer__list { display: grid; gap: .9rem; }
.footer__list li { display: flex; flex-direction: column; }
.footer__list span { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-2); }
.footer__list a { color: #fff; transition: color .2s; }
.footer__list a:hover { color: var(--gold-2); }
.footer__address { color: #fff; margin-bottom: .8rem; }
.footer__area { font-size: .9rem; }
.footer__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-light); box-shadow: var(--shadow-md); }
.footer__map iframe { width: 100%; height: 200px; border: 0; filter: grayscale(.2); }
.footer__bottom { border-top: 1px solid var(--line-light); padding: 1.3rem 0; font-size: .82rem; color: var(--muted-light); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,11,16,.94); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.lightbox[hidden] { display: none; }
.lightbox__stage { max-width: 92vw; max-height: 86vh; text-align: center; }
.lightbox__stage img { max-width: 92vw; max-height: 78vh; border-radius: 10px; box-shadow: var(--shadow-lg); object-fit: contain; margin-inline: auto; }
.lightbox__stage figcaption { color: rgba(255,255,255,.85); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .15em; margin-top: 1rem; font-size: .9rem; }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.6rem; color: #fff; font-size: 2.6rem; line-height: 1; width: 48px; height: 48px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 1.8rem; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.1); transition: background .2s; }
.lightbox__nav:hover { background: var(--gold); color: var(--navy-900); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { to { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }

/* ---------- Reveal on scroll ----------
   Lo stato nascosto si applica solo con JS attivo (classe .js su <html>):
   se lo script non parte, i contenuti restano comunque visibili. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .services, .fleet { grid-template-columns: repeat(2, 1fr); }
  .quote { grid-template-columns: 1fr; gap: 2rem; }
  .quote__intro { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__mapcol { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-800); border-bottom: 1px solid var(--line-light);
    padding: .5rem 1.25rem 1.25rem; box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .3s ease; visibility: hidden;
  }
  .nav.is-open { transform: none; visibility: visible; }
  .nav > a:not(.btn) { padding: .9rem .2rem; border-bottom: 1px solid var(--line-light); }
  .nav__cta { margin: 1rem 0 0; text-align: center; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(2.3rem, 10vw, 3rem); }
  .features, .services, .fleet { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.4rem 2rem; }
  .hero__stats strong { font-size: 2.1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .quote__submit .btn { min-width: 100%; }
  .brand__text small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
