/* =========================================================
   Gervasi Auto Transport — styles
   Palette: navy + steel-blue, bold high-contrast minimalism
   ========================================================= */

:root {
  --navy-950: #070C18;
  --navy-900: #0B1220;
  --navy-800: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --bg: #F7F9FC;
  --surface: #FFFFFF;
  --border: #E6EBF2;
  --ink: #0A0F1C;
  --accent: #0369A1;
  --accent-strong: #075985;
  --sky: #38BDF8;
  --grad: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);

  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 10px 16px;
  border-radius: 8px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography helpers ---------- */
.eyebrow, .kicker {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.kicker { display: inline-block; margin-bottom: 14px; }
.kicker--light { color: var(--sky); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 1rem + 2.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}
.section__sub {
  margin-top: 16px;
  font-size: 1.06rem;
  color: var(--slate-600);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  --bh: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: var(--bh); padding: 0 22px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .2s var(--ease); }
.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 22px -8px rgba(37, 99, 235, .6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(37, 99, 235, .7); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost {
  background: rgba(255, 255, 255, .06); color: #fff;
  border-color: rgba(255, 255, 255, .22);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
.btn--sm { --bh: 40px; padding: 0 16px; font-size: .88rem; }
.btn--lg { --bh: 54px; padding: 0 28px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 249, 252, 0);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav.is-stuck {
  background: rgba(247, 249, 252, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 8px 24px -18px rgba(15, 23, 42, .4);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 6px 14px rgba(37,99,235,.32)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong {
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  letter-spacing: .02em; color: var(--navy-900);
}
.brand__text em {
  font-style: normal; font-family: var(--font-mono); font-weight: 500;
  font-size: .58rem; letter-spacing: .22em; color: var(--slate-500); margin-top: 3px;
}

.nav__links { display: flex; gap: 6px; margin-left: auto; }
.nav__links a {
  padding: 9px 14px; border-radius: 9px; font-weight: 500; font-size: .94rem;
  color: var(--slate-700); transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--navy-900); background: rgba(15, 23, 42, .05); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600;
  font-size: .9rem; color: var(--navy-800); transition: color .2s var(--ease);
}
.phone-link svg { color: var(--accent); }
.phone-link:hover { color: var(--accent); }

.nav__toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  background: transparent; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span {
  width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 24px 24px;
  background: rgba(247, 249, 252, .96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:not(.btn):not(.phone-link) {
  padding: 13px 8px; font-weight: 500; color: var(--slate-700);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 14px; }
.phone-link--block { justify-content: center; margin-top: 10px; padding: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: radial-gradient(120% 120% at 50% -10%, #16233f 0%, var(--navy-900) 42%, var(--navy-950) 100%);
  color: #fff; margin-top: -74px; padding: 150px 0 0;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(110% 80% at 50% 0%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(110% 80% at 50% 0%, #000 35%, transparent 78%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.orb--1 { width: 520px; height: 520px; top: -160px; left: -120px; background: #1d4ed8; animation: drift 22s ease-in-out infinite; }
.orb--2 { width: 440px; height: 440px; top: -60px; right: -120px; background: #0284c7; opacity: .42; animation: drift 26s ease-in-out infinite reverse; }
.orb--3 { width: 460px; height: 460px; bottom: -180px; left: -80px; background: #2563eb; opacity: .4; }
.orb--4 { width: 380px; height: 380px; top: -120px; right: -100px; background: #0ea5e9; opacity: .32; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}

.hero__route { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.route-line {
  fill: none; stroke: url(#dash); stroke: rgba(56, 189, 248, .55);
  stroke-width: 2; stroke-dasharray: 8 10; stroke-linecap: round;
  animation: dash 14s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -360; } }
.route-dot {
  fill: #7dd3fc; filter: drop-shadow(0 0 8px #38bdf8);
  offset-path: path("M-50 470 C 250 470, 330 180, 600 180 S 980 470, 1260 200");
  animation: along 9s var(--ease) infinite;
}
@keyframes along { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; } }

.hero__inner { position: relative; padding-bottom: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #93c5fd; }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .18); animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,.18);} 50% { box-shadow: 0 0 0 7px rgba(74,222,128,.05);} }

.hero__title {
  margin-top: 22px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 1.2rem + 6vw, 5.2rem);
  line-height: 1.02; letter-spacing: -0.035em; max-width: 16ch;
}
.grad {
  background: linear-gradient(100deg, #7dd3fc, #60a5fa 55%, #a78bfa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede {
  margin-top: 24px; max-width: 60ch; font-size: clamp(1.02rem, .95rem + .4vw, 1.22rem);
  color: #c4d0e4;
}
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__trust {
  margin-top: 44px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--slate-400);
}
.hero__trust strong { color: #e2e8f0; font-weight: 600; }
.hero__trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-600); }

/* marquee */
.marquee {
  position: relative; margin-top: 8px; padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 26px; white-space: nowrap;
  font-family: var(--font-mono); font-size: .9rem; letter-spacing: .04em;
  color: #cbd5e1; will-change: transform; animation: scroll-x 34s linear infinite;
}
.marquee__track b { color: var(--sky); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { background: var(--navy-900); color: #fff; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.06);
}
.stat { padding: 38px 18px; text-align: center; border-right: 1px solid rgba(255, 255, 255, .07); }
.stat:last-child { border-right: none; }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 1rem + 2.6vw, 2.9rem); line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #93c5fd);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__sub { font-size: .5em; opacity: .7; margin: 0 .12em; }
.stat__label { display: block; margin-top: 12px; font-size: .82rem; color: var(--slate-400); letter-spacing: .02em; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section__head--left { text-align: left; margin-left: 0; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -26px rgba(15, 23, 42, .35); border-color: #d4def0; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe); color: var(--accent);
  margin-bottom: 20px; border: 1px solid #dbeafe;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--navy-900); letter-spacing: -0.01em; }
.card p { margin-top: 10px; color: var(--slate-600); font-size: .96rem; }

/* ---------- Coverage ---------- */
.coverage { background: linear-gradient(180deg, var(--bg), #eef3f9); }
.coverage__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.ticks { list-style: none; margin: 26px 0 30px; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 34px; color: var(--slate-700); font-weight: 500; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* globe visual */
.coverage__visual { display: grid; place-items: center; }
.globe { position: relative; width: min(360px, 78vw); aspect-ratio: 1; }
.globe__sphere {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #1e3a8a, #0b1220 78%);
  box-shadow: inset 0 0 60px rgba(0,0,0,.5), 0 30px 60px -30px rgba(37,99,235,.5);
  border: 1px solid rgba(56, 189, 248, .25); overflow: hidden;
  animation: spin 36s linear infinite;
}
.meridian, .parallel { position: absolute; border: 1px solid rgba(96, 165, 250, .28); border-radius: 50%; }
.meridian { inset: 0; }
.meridian { width: 34%; left: 33%; }
.meridian.m2 { width: 66%; left: 17%; }
.meridian.m3 { width: 92%; left: 4%; }
.parallel { left: 6%; right: 6%; width: auto; height: 34%; top: 33%; }
.parallel.p2 { height: 66%; top: 17%; }
@keyframes spin { to { transform: rotate(360deg); } }
.globe__arc { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.globe__arc path { fill: none; stroke: rgba(125, 211, 252, .8); stroke-width: 1.6; stroke-dasharray: 4 7; animation: dash 10s linear infinite; }
.ping { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #7dd3fc; box-shadow: 0 0 0 0 rgba(125,211,252,.6); animation: ping 2.6s ease-out infinite; }
.ping--1 { top: 30%; left: 24%; } .ping--2 { top: 62%; left: 38%; animation-delay: .8s; }
.ping--3 { top: 40%; left: 70%; animation-delay: 1.4s; } .ping--4 { top: 72%; left: 64%; animation-delay: 2s; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(125,211,252,.55);} 70%,100% { box-shadow: 0 0 0 18px rgba(125,211,252,0);} }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
.step {
  position: relative; padding: 32px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.step__no {
  font-family: var(--font-display); font-weight: 700; font-size: 2.4rem;
  letter-spacing: -0.03em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin-top: 14px; color: var(--navy-900); }
.step p { margin-top: 9px; color: var(--slate-600); font-size: .96rem; }

/* ---------- Why ---------- */
.why { background: var(--navy-900); color: #fff; position: relative; }
.why .section__title { color: #fff; }
.why .section__sub { color: #b8c4da; }
.why__inner { display: grid; grid-template-columns: 1fr; gap: 48px; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  padding: 26px 22px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .07); border-color: rgba(56, 189, 248, .35); }
.feature__icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(56, 189, 248, .12); color: var(--sky); margin-bottom: 16px;
}
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.feature p { margin-top: 8px; color: #9fb0cb; font-size: .9rem; }

/* ---------- CTA / Contact ---------- */
.cta {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  background: radial-gradient(120% 130% at 80% 0%, #16233f, var(--navy-950) 60%);
  padding: clamp(64px, 8vw, 110px) 0;
}
.cta__bg { position: absolute; inset: 0; z-index: -1; }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cta__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 1rem + 3.6vw, 3.4rem); letter-spacing: -0.03em; line-height: 1.05; }
.cta__sub { margin-top: 16px; color: #c4d0e4; font-size: 1.06rem; max-width: 46ch; }
.cta__contacts { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.contact-pill {
  display: inline-flex; align-items: center; gap: 13px; padding: 14px 20px;
  border-radius: 14px; background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12); color: #fff;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.contact-pill svg { color: var(--sky); flex-shrink: 0; }
.contact-pill span { display: flex; flex-direction: column; font-weight: 600; font-size: .96rem; }
.contact-pill small { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400); font-weight: 500; }
.contact-pill:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .1); border-color: rgba(56, 189, 248, .4); }

/* form */
.quote-form {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px; padding: 30px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 7px; }
.field label { font-size: .82rem; font-weight: 600; color: #cbd5e1; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px;
  background: rgba(7, 12, 24, .55); border: 1px solid rgba(255, 255, 255, .14);
  color: #fff; font-family: var(--font-body); font-size: .96rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { background: var(--navy-900); color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #64748b; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(56, 189, 248, .2); }
.quote-form .btn { margin-top: 4px; }
.quote-form__note { font-size: .8rem; color: var(--slate-400); text-align: center; }
.quote-form__note.is-ok { color: #4ade80; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #fff; padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text em { color: var(--slate-400); }
.footer__tag { margin-top: 18px; color: #94a3b8; font-size: .92rem; max-width: 42ch; }
.footer__col h4 { font-family: var(--font-display); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; padding: 6px 0; color: #cbd5e1; font-size: .94rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--sky); }
.footer__bar {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .84rem; color: var(--slate-500);
}
.footer__locale { font-family: var(--font-mono); letter-spacing: .06em; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .coverage__inner, .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .coverage__visual { order: -1; }
  .section__head--left { text-align: center; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .hero { padding-top: 124px; }
}
@media (max-width: 540px) {
  .cards, .steps, .why__grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .hero__actions .btn { flex: 1; }
  .quote-form { padding: 22px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .orb, .route-line, .route-dot, .globe__sphere, .ping, .marquee__track, .globe__arc path { animation: none !important; }
}
