/* ==========================================================================
   Moove — site de marketing
   Mobile-first: todo estilo base é pra celular; breakpoints (min-width)
   ampliam o layout pra telas maiores. Testado visualmente a partir de
   ~360px de largura.
   ========================================================================== */

:root {
  --navy: #1e293b;
  --navy-light: #334155;
  --navy-dark: #0f172a;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fed7aa;
  --orange-soft: #ffedd5;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;

  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --container-w: 1160px;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

::selection { background: var(--orange); color: var(--white); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { line-height: 1.6; margin: 0 0 1em; color: var(--gray-700); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.container-narrow { max-width: 760px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--gray-50); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-lg { padding: 15px 26px; font-size: 1rem; }

.icon-inline { width: 16px; height: 16px; transition: transform 0.2s ease; }
.btn:hover .icon-inline { transform: translateX(3px); }

.btn-pulse { position: relative; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.55);
  animation: pulse-ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-pulse::after { animation: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 30px; width: auto; transition: transform 0.25s ease; }
.brand:hover .brand-logo { transform: scale(1.06) rotate(-2deg); }

.main-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn-primary { padding: 10px 16px; font-size: 0.88rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0 auto;
  width: 20px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s 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-nav-panel {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 20px 18px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-nav-panel.is-open { display: flex; }
.mobile-nav-panel a {
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--orange-soft) 0%, #ffffff 65%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
}
.hero-blob-1 { width: 260px; height: 260px; background: var(--orange-light); top: -80px; right: -60px; }
.hero-blob-2 { width: 220px; height: 220px; background: #bae6fd; bottom: -60px; left: -70px; opacity: 0.4; }

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-copy-solo { max-width: 640px; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow.center { display: block; text-align: center; width: fit-content; margin-left: auto; margin-right: auto; }

.hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  color: var(--navy);
}
.text-accent { color: var(--orange); }

.hero-sub {
  font-size: 1.05rem;
  max-width: 52ch;
}

/* Mobile-first: os dois botões ficam lado a lado desde telas estreitas
   (flex:1 divide a linha igualmente); a partir de 640px voltam ao tamanho
   "pill" confortável original, já com largura de sobra. */
.hero-cta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.hero-cta-row .btn {
  flex: 1 1 0;
  padding: 13px 10px;
  font-size: 0.82rem;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust .icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

/* Iconzinhos flutuando no fundo do hero — só entram em telas maiores,
   onde já tem espaço de sobra e a van vira marca d'água (não competem
   com a lista de confiança nem com a van em fluxo do celular). */
.hero-float { display: none; }
@media (min-width: 860px) {
  .hero-float {
    display: block;
    position: absolute;
    z-index: 0;
    width: 40px;
    height: 40px;
    opacity: 0.5;
    pointer-events: none;
    animation: float-drift 5s ease-in-out infinite;
  }
  .hero-float-1 { top: 20%; left: 4%; }
  .hero-float-2 { top: 66%; right: 8%; animation-delay: 1.4s; }
}
@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float { animation: none; }
}

/* ---------- Van animada ---------- */
/* Duas versões da mesma ilustração: no celular ela entra no fluxo normal,
   abaixo da lista de confiança (`.hero-van-mobile`); do tablet pra cima
   vira marca d'água grande e translúcida atrás de todo o conteúdo
   (`.hero-van-bg`). Mobile-first: começa mostrando só a versão mobile. */
.hero-van-bg { display: none; }

.hero-van-mobile {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 28px auto 0;
  opacity: 0.32;
  pointer-events: none;
  animation: van-bounce 2.6s ease-in-out infinite;
  transform-origin: 50% 100%;
}

@keyframes van-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-0.3deg); }
}
.van-wheel {
  /* Origem do giro vem inline no SVG (transform-origin em px, coordenada
     local do próprio centro de cada roda) — "center" aqui girava em volta
     do centro do viewBox inteiro (bug: rodas "voando" pra fora do lugar). */
  animation: wheel-spin 1.4s linear infinite;
}
@keyframes wheel-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-van-bg, .hero-van-mobile, .van-wheel { animation: none; }
}

/* Tira de "pista" tracejada correndo no rodapé do hero — mesma ideia da
   rota em movimento, agora ocupando a largura toda da seção. */
.hero-road-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  z-index: 0;
  background-image: repeating-linear-gradient(90deg, var(--navy) 0 22px, transparent 22px 40px);
  background-size: 40px 3px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.25;
  animation: road-move 1.2s linear infinite;
}
@keyframes road-move {
  from { background-position: 0 center; }
  to { background-position: -40px center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-road-strip { animation: none; }
}

/* ---------- Divisores em onda entre seções ---------- */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 40px; }
.wave-divider-1 { background: var(--white); }
.wave-divider-1 svg path { fill: var(--navy-dark); }
.wave-divider-2 { background: var(--navy-dark); }
.wave-divider-2 svg path { fill: var(--orange); }

/* ---------- Seções genéricas ---------- */
.section { padding: 64px 0; }
.section-title {
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  color: var(--navy);
}
.center { text-align: center; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* ---------- Dores ---------- */
.pains { background: var(--gray-50); }

.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pain-card:hover { box-shadow: var(--shadow-md); }
.pain-card:nth-child(odd):hover { transform: translateY(-4px) rotate(-1.2deg); }
.pain-card:nth-child(even):hover { transform: translateY(-4px) rotate(1.2deg); }
.pain-icon { display: inline-block; font-size: 1.8rem; margin-bottom: 10px; transition: transform 0.3s ease; }
.pain-card:hover .pain-icon { transform: scale(1.2) rotate(-8deg); }
.pain-card p { margin: 0; color: var(--navy); }

.pains-punchline {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--orange-dark);
  margin: 36px 0 0;
}

/* ---------- Recursos ---------- */
.feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 22px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.feature-card:hover .feature-icon-wrap {
  transform: rotate(-6deg) scale(1.08);
  background: var(--orange);
  color: var(--white);
}
.feature-icon { width: 24px; height: 24px; }

.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { margin: 0; font-size: 0.92rem; }

/* ---------- Como funciona ---------- */
.como-funciona { background: var(--navy-dark); color: var(--white); }
.como-funciona .section-title, .como-funciona .eyebrow { color: var(--white); }
.como-funciona .eyebrow { background: rgba(255,255,255,0.1); color: var(--orange-light); }

.steps {
  position: relative;
  display: grid;
  gap: 28px;
  margin: 48px 0 40px;
}
.steps-line { display: none; }

.step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover .step-number { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.22); }
.step h3 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.step p { color: #cbd5e1; font-size: 0.9rem; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.09) 0 2px, transparent 2px 22px);
  animation: route-drift 6s linear infinite;
}
@keyframes route-drift {
  from { background-position: 0 0; }
  to { background-position: 120px 120px; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-banner::before { animation: none; }
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  padding: 56px 20px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 5vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin-top: 10px; }

/* ---------- FAQ / Accordion ---------- */
.accordion { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.accordion-item:hover { border-color: var(--orange-light); box-shadow: var(--shadow-sm); }
.accordion-trigger { transition: color 0.2s ease; }
.accordion-trigger:hover { color: var(--orange-dark); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 16px 18px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
}
.accordion-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.2s ease; color: var(--orange-dark); }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 18px;
}
.accordion-panel p { padding-bottom: 16px; margin: 0; font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #cbd5e1; padding-top: 48px; }
.footer-inner {
  display: grid;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Sem fundo/chip atrás do logo — mantém a ilustração colorida original
   (a van em branco/amarelo/azul + texto "Moove" navy). O texto navy some
   num fundo navy escuro sozinho, então em vez de caixa branca usamos um
   contorno fino claro ao redor de cada forma (várias drop-shadow com
   offsets pequenos em direções diferentes = efeito de "stroke"), que dá
   contraste sem nenhum retângulo de fundo. */
.footer-logo {
  height: 30px;
  margin-bottom: 12px;
  filter:
    drop-shadow(1px 0 0 rgba(255, 255, 255, 0.85))
    drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.85))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.85))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.85))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.footer-brand p { color: #94a3b8; font-size: 0.88rem; max-width: 32ch; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--orange-light); }

.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-contact p { margin: 0; font-weight: 600; color: var(--white); font-size: 0.85rem; }
.footer-contact a { font-size: 0.9rem; color: #cbd5e1; }
.footer-contact a:hover { color: var(--orange-light); }

.whatsapp-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #25d366;
  color: var(--navy-dark) !important;
  font-weight: 600;
  font-size: 0.85rem !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse-ring-green 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
  color: var(--navy-dark) !important;
}
.whatsapp-link .icon-inline { width: 16px; height: 16px; }
@media (prefers-reduced-motion: reduce) {
  .whatsapp-link::after { animation: none; }
}

.footer-bottom { padding: 20px 20px 26px; font-size: 0.8rem; color: #64748b; text-align: center; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0) scale(1); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Breakpoints — telas maiores
   ========================================================================== */

@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps-line {
    display: block;
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--orange) 0 10px, transparent 10px 20px);
  }
  /* Pontinho viajando pela linha — reforça a ideia de rota/trajeto que já
     aparece em outros pontos do site (van, pista tracejada do hero). */
  .steps-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.25);
    animation: dot-travel 4s ease-in-out infinite;
  }
  @keyframes dot-travel {
    0% { left: 0%; }
    50% { left: 100%; }
    100% { left: 0%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .steps-line::after { animation: none; }
  }
}

@media (min-width: 860px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 500;
    font-size: 0.95rem;
  }
  .main-nav a { position: relative; padding-bottom: 3px; }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--orange);
    transition: right 0.25s ease;
  }
  .main-nav a:hover { color: var(--orange-dark); }
  .main-nav a:hover::after { right: 0; }

  .nav-toggle { display: none; }
  .header-actions .btn-primary { padding: 12px 22px; font-size: 0.95rem; }

  .hero { padding: 76px 0 90px; }

  .hero-cta-row .btn { flex: 0 0 auto; padding: 16px 32px; font-size: 1rem; }

  /* A partir daqui volta a versão "marca d'água" grande atrás do
     conteúdo; a versão em fluxo normal (mobile) some. */
  .hero-van-mobile { display: none; }
  .hero-van-bg {
    display: block;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    width: min(900px, 130vw);
    height: auto;
    right: -8%;
    bottom: -6%;
    opacity: 0.16;
    animation: van-bounce 2.6s ease-in-out infinite;
    transform-origin: 50% 100%;
  }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.4rem; }
}
