/* =========================================================================
   CASH CAR CALGARY — sistema de diseno
   Paleta: rojo + blanco | Tipografia: Archivo (display) + Inter (texto)
   ========================================================================= */
:root {
  --red: #D72631;
  --red-deep: #A00E1C;
  --red-soft: #fdecec;
  --ink: #16110F;
  --ink-soft: #3a3330;
  --steel: #6c7178;
  --paper: #FAF7F5;
  --white: #ffffff;
  --line: #ece5e1;
  --shadow: 0 18px 50px -22px rgba(22, 17, 15, .35);
  --shadow-sm: 0 6px 22px -12px rgba(22, 17, 15, .3);
  --r: 16px;
  --r-lg: 26px;
  --maxw: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: .76rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.muted { color: var(--steel); }

/* ---- Botones ----------------------------------------------------------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: 100px; border: 0; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  box-shadow: 0 10px 26px -10px rgba(215, 38, 49, .65);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--red-deep); box-shadow: 0 16px 34px -12px rgba(215, 38, 49, .8); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; }
.btn--ghost { --bg: #fff; --fg: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { background: #fff; border-color: var(--ink); }
.btn--wa { --bg: #1fab54; box-shadow: 0 10px 26px -10px rgba(31, 171, 84, .6); }
.btn--wa:hover { --bg: #178f44; box-shadow: 0 16px 34px -12px rgba(31, 171, 84, .75); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* CTA primario con latido sutil */
.btn--pulse { position: relative; }
.btn--pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(215, 38, 49, .5); animation: pulse 2.4s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(215, 38, 49, 0); } 100% { box-shadow: 0 0 0 0 rgba(215, 38, 49, 0); } }

/* ---- Header ------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { display: block; height: 48px; width: auto; }
/* compatibilidad con clases antiguas */
.logo-wordmark, .logo-line1, .logo-line2, .logo-text { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { font-family: 'Archivo', sans-serif; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.header-phone span { color: var(--red); }
@media (max-width: 720px) { .header-phone .label { display: none; } }

/* ---- Hero -------------------------------------------------------------- */
.hero { position: relative; padding: clamp(34px, 6vw, 78px) 0 clamp(40px, 7vw, 90px); overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; right: -12%; top: -22%; width: 60vw; height: 100%;
  background: radial-gradient(circle at 60% 40%, var(--red-soft), transparent 62%);
  z-index: 0; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); margin: 16px 0 14px; }
.hero h1 em { font-style: normal; color: var(--red); position: relative; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px;
  background: var(--red-soft); z-index: -1; border-radius: 4px;
}
.hero p.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.trust-row li { list-style: none; display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; }
.trust-row svg { width: 20px; height: 20px; color: var(--red); flex: 0 0 auto; }

/* lienzo 3D */
.hero-3d { position: relative; aspect-ratio: 1 / .82; min-height: 320px; }
#car-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-3d-badge {
  position: absolute; left: 4%; bottom: 6%; z-index: 2;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center;
}
.hero-3d-badge .num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--red); line-height: 1; }
.hero-3d-badge .lbl { font-size: .8rem; color: var(--steel); line-height: 1.2; }
.hero-3d-hint { position: absolute; right: 6%; top: 6%; z-index: 2; font-size: .76rem; color: var(--steel); display: flex; align-items: center; gap: 6px; }
.hero-3d-hint::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .25; } }

/* ---- Secciones --------------------------------------------------------- */
section { padding: clamp(48px, 7vw, 92px) 0; }
.section-head { max-width: 620px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin: 14px 0 10px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.bg-paper { background: var(--paper); }

/* ---- Formulario -------------------------------------------------------- */
.lead-section .wrap { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: start; }
.lead-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin: 14px 0 14px; }
.lead-copy ul { margin: 22px 0 0; }
.lead-copy li { list-style: none; display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.lead-copy li svg { width: 22px; height: 22px; color: var(--red); flex: 0 0 auto; margin-top: 2px; }
.lead-copy li b { display: block; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); position: relative;
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.form-card .sub { color: var(--steel); font-size: .95rem; margin-bottom: 20px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 1rem; background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft);
}
.field textarea { resize: vertical; min-height: 84px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { font-size: .78rem; color: var(--steel); margin-top: 14px; text-align: center; }
.form-msg { padding: 13px 16px; border-radius: 12px; font-weight: 600; margin-bottom: 14px; display: none; }
.form-msg.ok { display: block; background: #e8f7ee; color: #157a3b; }
.form-msg.err { display: block; background: var(--red-soft); color: var(--red-deep); }

/* ---- Pasos (3D tilt) --------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.step:hover { box-shadow: var(--shadow); }
.step .n {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--red-soft);
  -webkit-text-stroke: 2px var(--red); line-height: 1;
}
.step h3 { font-size: 1.3rem; margin: 14px 0 8px; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.step .step-icon { position: absolute; top: 26px; right: 26px; width: 30px; height: 30px; color: var(--red); }

/* ---- Por que elegirnos ------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  transform-style: preserve-3d; will-change: transform;
}
.feature:hover { border-color: var(--red); box-shadow: var(--shadow); }
.feature .ic {
  width: 50px; height: 50px; border-radius: 14px; background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; margin-bottom: 16px;
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 7px; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ---- Zona de servicio -------------------------------------------------- */
.area-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.area-list span {
  background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px;
  font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 8px;
}
.area-list span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.area-card {
  background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 34px;
  box-shadow: var(--shadow);
}
.area-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.area-card p { color: #cfc9c6; margin-bottom: 22px; }
.area-card .btn { width: 100%; margin-bottom: 12px; }

/* ---- Banda CTA final --------------------------------------------------- */
.cta-band { background: linear-gradient(120deg, var(--red), var(--red-deep)); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band p { font-size: 1.15rem; opacity: .92; margin: 12px 0 26px; }
.cta-band .btn--ghost { --fg: var(--red); }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--ink); color: #b9b3af; padding: 54px 0 30px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; margin-bottom: 34px; }
.site-footer h4 { color: #fff; font-family: 'Archivo', sans-serif; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-bottom { border-top: 1px solid #2c2724; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* ---- Barra movil fija -------------------------------------------------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none;
  grid-template-columns: 1fr 1fr 1.3fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
}
.mobile-bar .btn { padding: 13px 10px; font-size: .92rem; }

/* ---- Animaciones de aparicion ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-3d { order: -1; min-height: 300px; aspect-ratio: 16 / 11; }
  .lead-section .wrap { grid-template-columns: 1fr; gap: 30px; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .header-actions .btn .label { display: none; }
  .mobile-bar { display: grid; }
  .site-footer .cols { grid-template-columns: 1fr; }
  main { padding-bottom: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Foco accesible */
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

/* ---- Paginas legales / simples ---------------------------------------- */
.legal-hero {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: #fff; padding: 64px 0 54px;
}
.legal-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; }
.legal-hero p { color: #ffe0e3; margin-top: 10px; }
.legal-body { padding: 54px 0 72px; max-width: 820px; }
.legal-body h2 {
  font-size: 1.35rem; margin: 34px 0 12px; color: var(--ink);
  padding-top: 8px; border-top: 1px solid var(--line);
}
.legal-body h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--red); font-weight: 600; }
.legal-body strong { color: var(--ink); }
.legal-updated {
  display: inline-block; background: var(--red-soft); color: var(--red-deep);
  font-weight: 700; font-size: .85rem; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 28px;
}

/* ---- Pagina 404 -------------------------------------------------------- */
.error-wrap {
  min-height: 72vh; display: grid; place-items: center; text-align: center;
  padding: 80px 22px;
}
.error-code {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(5rem, 18vw, 11rem); line-height: .9;
  color: var(--red); letter-spacing: -.04em;
}
.error-wrap h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 8px 0 12px; }
.error-wrap p { color: var(--steel); max-width: 46ch; margin: 0 auto 28px; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   v2 — Hero ilustrado, marquesina, contadores, toasts, más movimiento
   ========================================================================= */

/* ---- Entradas del hero (fade-up escalonado) ---------------------------- */
.up { opacity: 0; transform: translateY(22px); animation: up .8s var(--ease) forwards; }
.up.d1 { animation-delay: .08s; } .up.d2 { animation-delay: .18s; }
.up.d3 { animation-delay: .28s; } .up.d4 { animation-delay: .38s; }
@keyframes up { to { opacity: 1; transform: none; } }

/* ---- Fondo aurora con blobs en movimiento ------------------------------ */
.hero-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-aurora .blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .5; }
.blob.b1 { width: 380px; height: 380px; background: #fbd0d3; top: -90px; right: -60px; animation: drift1 14s ease-in-out infinite; }
.blob.b2 { width: 320px; height: 320px; background: #ffe6b8; bottom: -120px; left: -40px; animation: drift2 17s ease-in-out infinite; }
.blob.b3 { width: 240px; height: 240px; background: #ffd9dc; top: 40%; left: 45%; animation: drift1 12s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-26px,24px) scale(1.08); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.1); } }

/* ---- Ilustración del hero --------------------------------------------- */
.hero-art { position: relative; aspect-ratio: unset; min-height: unset;
  transform: translate(var(--mx,0), var(--my,0)); transition: transform .25s var(--ease); }
.hero-art .hero-img-main { display: block; }
.hero-badge { position: absolute; left: 0; bottom: 12%; z-index: 3; background: #fff; border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.hero-badge .num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--red); line-height: 1; }
.hero-badge .lbl { font-size: .78rem; color: var(--steel); line-height: 1.2; margin-top: 3px; }
.floaty { animation: floaty 3.4s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---- Marquesina ------------------------------------------------------- */
.marquee { position: relative; z-index: 2; overflow: hidden;
  border-top: 2px solid #2a2020; background: #16110F !important; }
.marquee-track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap;
  padding: 14px 0; animation: marq 26s linear infinite; }
.marquee-track span { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1rem;
  letter-spacing: .16em; color: #fff; text-transform: uppercase; }
.marquee-track span.dot { color: #D72631; font-size: 1.1rem; }
@keyframes marq { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---- Tira de contadores ------------------------------------------------ */
.stats-strip { position: relative; z-index: 2; background: #D72631 !important; color: #fff !important; padding: clamp(26px,4vw,40px) 0; display: block; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; text-align: center; }
.stat-item { padding: clamp(16px,3vw,28px) 16px; border-right: 1px solid rgba(255,255,255,.18); }
.stat-item:last-child { border-right: 0; }
.stat-item .big { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(2.6rem,5.5vw,4rem);
  line-height: 1; letter-spacing: -.03em; text-shadow: 0 2px 12px rgba(0,0,0,.2); }
.stat-item .suffix { font-size: .5em; margin-left: 3px; font-weight: 800; vertical-align: super; }
.stat-item .cap { margin-top: 8px; font-size: clamp(.82rem,1.6vw,.95rem); opacity: .88;
  letter-spacing: .04em; font-weight: 600; text-transform: uppercase; }

/* ---- Pasos con imagen -------------------------------------------------- */
.step-img { width: 100%; max-width: 230px; height: auto; margin: 4px auto 12px; display: block; }
.step:hover .step-img { transform: translateY(-4px) scale(1.02); transition: transform .4s var(--ease); }
.skyline { width: 100%; max-width: 460px; margin-top: 22px; opacity: .95; }

/* ---- Pop-in (tarjetas) ------------------------------------------------- */
.pop-in { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.pop-in { transform: translateY(26px) scale(.97); }
.reveal.pop-in.in { transform: none; }

/* ---- Header al hacer scroll ------------------------------------------- */
.site-header { transition: box-shadow .3s var(--ease), background .3s var(--ease); }
.site-header.scrolled { box-shadow: 0 8px 30px -16px rgba(22,17,15,.3); background: rgba(255,255,255,.92); backdrop-filter: blur(8px); }

/* ---- Botón con brillo al pasar ----------------------------------------- */
.btn { position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-18deg); }
.btn:hover::after { animation: shine .8s ease; }
@keyframes shine { to { left: 130%; } }

/* ---- Toasts ------------------------------------------------------------ */
.toast-wrap { position: fixed; top: 18px; right: 18px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { display: flex; align-items: flex-start; gap: 11px; background: #fff; border: 1px solid var(--line);
  border-left: 5px solid var(--red); border-radius: 13px; padding: 13px 16px; min-width: 250px; max-width: 340px;
  box-shadow: var(--shadow); transform: translateX(120%); opacity: 0; transition: transform .35s var(--ease), opacity .35s; }
.toast.show { transform: none; opacity: 1; }
.toast.ok { border-left-color: #157a3b; }
.toast .ti { flex: 0 0 auto; width: 22px; height: 22px; color: var(--red); }
.toast.ok .ti { color: #157a3b; }
.toast .ti svg { width: 22px; height: 22px; }
.toast .tc { font-size: .9rem; line-height: 1.3; } .toast .tc b { display: block; margin-bottom: 1px; }
@media (max-width: 520px) { .toast-wrap { left: 12px; right: 12px; } .toast { max-width: none; } }

/* ---- Confeti ----------------------------------------------------------- */
.confetti { position: fixed; top: -12px; width: 9px; height: 14px; border-radius: 2px; z-index: 9998;
  animation: fall 2s cubic-bezier(.4,.2,.6,1) forwards; pointer-events: none; }
@keyframes fall { to { top: 105vh; transform: rotate(540deg); } }

/* ---- Responsive del hero ilustrado ------------------------------------ */
@media (max-width: 900px) {
  .hero-art { order: -1; min-height: 260px; aspect-ratio: 16/11; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .up { opacity: 1; transform: none; animation: none; }
  .blob, .car-illu .wheel, .car-illu .speed, .car-illu .coin, .floaty, .marquee-track { animation: none !important; }
  .btn::after { display: none; }
}
