/* ============================================================
   End of File Softwares — site
   Sistema de marca teal (#00A2A1). Mobilidade · Geotracking · Delivery
   ============================================================ */

:root {
  /* paleta */
  --teal:        #00a2a1;   /* marca */
  --teal-bright: #39d6c6;
  --mint:        #78e9de;   /* acento claro */
  --teal-deep:   #0b6e70;
  --teal-800:    #084d4f;
  --teal-900:    #062b2d;   /* fundo escuro */
  --teal-950:    #041e1f;

  --ink:    #0d2b2c;        /* texto sobre claro */
  --muted:  #4e6566;        /* texto secundário */
  --line:   #d7ebeb;        /* bordas */
  --bg:     #ffffff;
  --bg-soft:#f1faf9;        /* seção alternada */
  --white:  #ffffff;

  --radius:   16px;
  --radius-sm:12px;
  --radius-lg:24px;
  --shadow:    0 18px 50px -20px rgba(6, 43, 45, .35);
  --shadow-sm: 0 8px 24px -12px rgba(6, 43, 45, .30);
  --maxw: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 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;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.01em; }
ul { list-style: none; padding: 0; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--teal-900); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

/* ---------- tipografia utilitária ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: .28em; font-size: .72rem; font-weight: 600;
  color: var(--teal-deep); margin-bottom: 14px;
}
.eyebrow--light { color: var(--mint); }
.hl {
  background: linear-gradient(120deg, var(--teal-bright), var(--mint));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}

/* ---------- botões ---------- */
.btn {
  --btn-bg: var(--teal-deep);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn--lg { padding: 16px 28px; font-size: 1.04rem; }
.btn--primary { background: var(--btn-bg); color: #fff; box-shadow: 0 12px 26px -12px rgba(0,162,161,.8); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(0,162,161,.9); background: var(--teal); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.section .btn--ghost { color: var(--teal-deep); border-color: var(--teal); }
.section .btn--ghost:hover { background: rgba(0,162,161,.08); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s, backdrop-filter .3s;
  padding: 18px 0;
}
.nav__inner { display: flex; align-items: center; gap: 20px; }
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 42px; width: auto; transition: height .3s; }
.nav__logo--dark { display: none; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-weight: 500; font-size: .96rem; color: rgba(255,255,255,.9);
  position: relative; padding: 6px 2px; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--mint); transition: width .25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }

/* estado "scrolled": fundo branco, logo teal, links escuros */
.nav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.6) blur(10px);
  box-shadow: 0 6px 24px -16px rgba(6,43,45,.5);
  padding: 11px 0;
}
.nav.is-scrolled .nav__logo { height: 36px; }
.nav.is-scrolled .nav__logo--light { display: none; }
.nav.is-scrolled .nav__logo--dark { display: block; }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav.is-scrolled .nav__links a:hover { color: var(--teal-deep); }
.nav.is-scrolled .btn--primary { background: var(--teal-deep); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 8px; cursor: pointer; margin-left: auto;
}
.nav__toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, #0d5e60 0%, transparent 60%),
    linear-gradient(160deg, var(--teal-900) 0%, var(--teal-800) 55%, var(--teal-deep) 100%);
  color: #fff;
  padding: clamp(120px, 16vh, 180px) 0 90px;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__circuit { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.hero__glow--1 { width: 420px; height: 420px; background: #0e8f8f; top: -120px; right: -80px; }
.hero__glow--2 { width: 360px; height: 360px; background: #14b3a6; bottom: -140px; left: -100px; opacity: .35; }

.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__title {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 700; margin-bottom: 20px;
}
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: rgba(235,255,253,.86); max-width: 33ch; }
.hero__lead strong { color: #fff; font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero__pills li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: rgba(235,255,253,.8); }
.hero__pills .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(120,233,222,.18); }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.45); border-radius: 14px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--mint); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0);} 30%{opacity:1;} 100%{opacity:0; transform:translate(-50%,14px);} }

/* ---------- cena de mapa / geotracking ---------- */
.map {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #0c4f51, #0a3d3f);
  border: 1px solid rgba(120,233,222,.18);
  box-shadow: var(--shadow); overflow: hidden; aspect-ratio: 56 / 47;
}
.map__svg { width: 100%; height: 100%; }
.map__route-bg { stroke: rgba(255,255,255,.12); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }
.map__route {
  stroke: url(#route); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 100; stroke-dashoffset: 100; filter: drop-shadow(0 0 6px rgba(57,214,198,.55));
  animation: draw 7s linear infinite;
}
@keyframes draw { 0%{stroke-dashoffset:100;} 70%{stroke-dashoffset:0;} 100%{stroke-dashoffset:0;} }
.map__accuracy { fill: rgba(57,214,198,.18); stroke: rgba(57,214,198,.5); animation: pulse 2.4s var(--ease) infinite; transform-origin: center; transform-box: fill-box; }
@keyframes pulse { 0%{transform:scale(.7); opacity:1;} 100%{transform:scale(1.8); opacity:0;} }
.map__rider-halo { fill: rgba(57,214,198,.28); animation: halo 1.8s var(--ease) infinite; transform-origin: center; transform-box: fill-box; }
@keyframes halo { 0%{transform:scale(.8); opacity:.9;} 100%{transform:scale(2.2); opacity:0;} }
.map__dest { animation: bob 2.6s var(--ease) infinite; transform-box: fill-box; transform-origin: bottom; }
@keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-5px);} }

.map__chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.96); color: var(--ink); padding: 10px 14px; border-radius: 12px;
  box-shadow: 0 10px 26px -12px rgba(0,0,0,.5); font-size: .82rem;
}
.map__chip strong { display: block; font-family: var(--font-head); font-size: .9rem; line-height: 1.1; }
.map__chip small { color: var(--muted); }
.map__chip--eta { top: 16px; left: 16px; animation: floaty 5s var(--ease) infinite; }
.map__chip--speed { right: 16px; bottom: 16px; flex-direction: column; gap: 0; text-align: center; animation: floaty 5s var(--ease) .8s infinite; }
.map__chip--speed strong { color: var(--teal-deep); font-size: 1.3rem; }
.map__pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(0,162,161,.6); animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(0,162,161,.55);} 100%{box-shadow:0 0 0 12px rgba(0,162,161,0);} }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }

/* =========================================================
   DISPOSITIVOS
   ========================================================= */
.devices { background: var(--bg); padding: 34px 0; border-bottom: 1px solid var(--line); }
.devices__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 40px; }
.devices__lead { color: var(--muted); font-size: 1rem; }
.devices__lead strong { color: var(--ink); }
.devices__list { display: flex; flex-wrap: wrap; gap: 14px 34px; }
.devices__list li { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.devices__list small { font-family: var(--font-body); font-weight: 400; color: var(--muted); }
.devices__list svg { width: 26px; height: 26px; fill: none; stroke: var(--teal); stroke-width: 1.8; stroke-linecap: round; }

/* =========================================================
   SECTION genérica
   ========================================================= */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark {
  background:
    radial-gradient(900px 500px at 90% 0%, #0e6062 0%, transparent 55%),
    linear-gradient(165deg, var(--teal-900), var(--teal-800));
  color: #fff;
}
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 700; }
.section__sub { color: var(--muted); margin-top: 16px; font-size: 1.08rem; }
.section__sub--light { color: rgba(235,255,253,.8); }

/* ---------- cards de solução ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--mint)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card--featured { border-color: rgba(0,162,161,.4); box-shadow: 0 22px 50px -24px rgba(0,162,161,.55); }
.card--featured::before { transform: scaleX(1); }
.card__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, rgba(0,162,161,.14), rgba(120,233,222,.18)); color: var(--teal-deep);
}
.card__icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); }
.card__list { margin-top: 18px; display: grid; gap: 9px; }
.card__list li { position: relative; padding-left: 24px; font-size: .95rem; color: var(--ink); }
.card__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(0,162,161,.14); }

/* ---------- fluxo (plataforma) ---------- */
.flow {
  display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: clamp(44px, 6vw, 64px);
}
.flow__node {
  flex: 1 1 0; min-width: 130px; text-align: center; padding: 20px 14px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(120,233,222,.2);
}
.flow__node .flow__ico { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.flow__node strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.flow__node small { color: rgba(235,255,253,.6); font-size: .8rem; }
.flow__arrow { align-self: center; width: 26px; height: 2px; background: linear-gradient(90deg, var(--mint), transparent); position: relative; flex: 0 0 auto; }
.flow__arrow::after { content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border-top: 2px solid var(--mint); border-right: 2px solid var(--mint); transform: translateY(-50%) rotate(45deg); }

/* ---------- features grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  padding: 26px 24px; border-radius: var(--radius); background: rgba(255,255,255,.05);
  border: 1px solid rgba(120,233,222,.16); transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.feature:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); border-color: rgba(120,233,222,.4); }
.feature h4 { font-size: 1.12rem; margin-bottom: 6px; }
.feature h4::before { content: ""; display: inline-block; width: 9px; height: 9px; border-radius: 2px; background: var(--mint); margin-right: 9px; vertical-align: middle; }
.feature p { color: rgba(235,255,253,.74); font-size: .96rem; }

/* ---------- tecnologia ---------- */
.tech { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.tech__values { margin-top: 24px; display: grid; gap: 13px; }
.tech__values li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.04rem; color: var(--ink); }
.check { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: rgba(0,162,161,.14); color: var(--teal-deep); display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.tech__stack { background: linear-gradient(160deg, var(--teal-900), var(--teal-800)); color: #fff; border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow); }
.tech__stack-title { font-family: var(--font-head); font-weight: 600; margin-bottom: 18px; color: var(--mint); letter-spacing: .02em; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem; padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(120,233,222,.22); color: #eafffd;
  transition: transform .2s var(--ease), background .2s, border-color .2s;
}
.chips li:hover { transform: translateY(-3px); background: rgba(120,233,222,.16); border-color: var(--mint); }

/* ---------- caso ---------- */
.case {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.case__media .map--mini { aspect-ratio: 360/280; }
.case__tag { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 8px; }
.case h3 { font-size: 2rem; margin-bottom: 12px; }
.case p { color: var(--muted); }
.case p strong { color: var(--ink); }
.case__highlights { display: flex; flex-wrap: wrap; gap: 14px 32px; margin-top: 24px; }
.case__highlights li { display: flex; flex-direction: column; }
.case__highlights strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--teal-deep); line-height: 1; }
.case__highlights small { color: var(--muted); font-size: .85rem; margin-top: 4px; }

/* =========================================================
   CTA / CONTATO
   ========================================================= */
.cta {
  background:
    radial-gradient(800px 400px at 15% 120%, #0e7c7c 0%, transparent 60%),
    linear-gradient(160deg, var(--teal-deep), var(--teal-900));
  color: #fff; padding: clamp(72px, 10vw, 110px) 0;
}
.cta__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.cta__head h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.cta__head p { color: rgba(235,255,253,.82); margin-top: 14px; font-size: 1.1rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 920px; margin-inline: auto; }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(120,233,222,.22); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 4px;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.contact-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.11); border-color: var(--mint); }
.contact-card__ico { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--mint); font-weight: 600; }
.contact-card strong { font-family: var(--font-head); font-size: 1.12rem; word-break: break-word; }
.contact-card small { color: rgba(235,255,253,.6); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--teal-950); color: rgba(235,255,253,.7); padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; }
.footer__brand img { height: 50px; width: auto; margin-bottom: 16px; }
.footer__brand p { max-width: 32ch; font-size: .95rem; }
.footer__col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--mint); margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; color: rgba(235,255,253,.72); font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: #fff; padding-left: 5px; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(120,233,222,.14);
  font-size: .85rem; color: rgba(235,255,253,.5);
}

/* =========================================================
   REVEAL (scroll)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.cards .reveal:nth-child(2), .features .reveal:nth-child(2) { transition-delay: .08s; }
.cards .reveal:nth-child(3), .features .reveal:nth-child(3) { transition-delay: .16s; }
.features .reveal:nth-child(4) { transition-delay: .06s; }
.features .reveal:nth-child(5) { transition-delay: .14s; }
.features .reveal:nth-child(6) { transition-delay: .22s; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; }
  .hero__lead { max-width: 46ch; }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .features { grid-template-columns: 1fr 1fr; }
  .tech { grid-template-columns: 1fr; gap: 36px; }
  .case { grid-template-columns: 1fr; }
  .case__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav.is-open {
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -16px rgba(6,43,45,.5);
  }
  .nav.is-open .nav__logo--light { display: none; }
  .nav.is-open .nav__logo--dark { display: block; }
  .nav.is-open .nav__toggle span { background: var(--ink); }
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 8px 22px 22px; box-shadow: 0 16px 30px -18px rgba(6,43,45,.5);
  }
  .nav__links.is-open a { color: var(--ink); padding: 14px 2px; border-bottom: 1px solid var(--line); }
  .nav__links.is-open a::after { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .hero { padding-top: 120px; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .flow__arrow { transform: rotate(90deg); }
  .case__highlights { gap: 14px 24px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .map__route { stroke-dashoffset: 0; }
}
