/* ============================================================
   AvantPOS v2 · "Soft Structuralism"
   Plata y blanco, Geist en negrita, sombras difusas tintadas, doble bisel,
   píldoras con icono anidado. Un solo acento: el azul de marca.
   ============================================================ */

@font-face { font-family: "Geist"; font-weight: 400; font-display: swap; src: url("fonts/Geist-Regular.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-weight: 500; font-display: swap; src: url("fonts/Geist-Medium.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-weight: 600; font-display: swap; src: url("fonts/Geist-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-weight: 700; font-display: swap; src: url("fonts/Geist-Bold.woff2") format("woff2"); }
@font-face { font-family: "Geist Mono"; font-weight: 400; font-display: swap; src: url("fonts/GeistMono-Regular.woff2") format("woff2"); }
@font-face { font-family: "Geist Mono"; font-weight: 500; font-display: swap; src: url("fonts/GeistMono-Medium.woff2") format("woff2"); }

:root {
  color-scheme: light;
  --silver: #F3F4F6;
  --silver-2: #E9EBEF;
  --white: #FFFFFF;
  --ink: #0B0C10;
  --ink-2: #3A3D46;
  --ink-3: #6B6F7B;
  --line: rgba(11, 12, 16, 0.08);
  --line-strong: rgba(11, 12, 16, 0.14);
  --accent: #2563EB;
  --accent-deep: #1D4ED8;
  --accent-ink: #0F2A6B;
  --accent-tint: rgba(37, 99, 235, 0.08);
  --ok: #0F9D6E;
  --bad: #D4443C;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --r-xl: 2rem;
  --r-l: 1.5rem;
  --r-m: 1rem;
  --r-s: 0.625rem;
  --shadow-float: 0 1px 2px rgba(11, 12, 16, 0.04), 0 12px 40px -12px rgba(15, 42, 107, 0.18);
  --shadow-deep: 0 2px 4px rgba(11, 12, 16, 0.05), 0 40px 90px -30px rgba(15, 42, 107, 0.35);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-move: cubic-bezier(0.77, 0, 0.175, 1);
  --nav-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font); font-size: 16px; line-height: 1.55; color: var(--ink);
  background: var(--silver); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
/* Grano fijo y muy leve: rompe la planitud digital sin tocar el scroll. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select { font: inherit; color: inherit; }
.num, .mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
::selection { background: var(--accent-tint); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: 12px; top: -48px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 999px; z-index: 100; }
.skip:focus { top: 12px; }

.wrap { max-width: 1280px; margin: 0 auto; padding-inline: 28px; }
.icon { width: 1.05em; height: 1.05em; fill: currentColor; flex-shrink: 0; }

/* ---------- Tipografía ---------- */
.display {
  font-size: clamp(2.5rem, 4.9vw, 3.9rem); font-weight: 700; letter-spacing: -0.035em;
  line-height: 1.02; text-wrap: balance;
}
.headline { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance; }
.title { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 46ch; text-wrap: pretty; }
.body { color: var(--ink-2); max-width: 62ch; text-wrap: pretty; }
.small { font-size: 0.9rem; color: var(--ink-3); }

/* ---------- Píldoras (botones) ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 12px; height: 52px; padding: 0 8px 0 22px;
  border-radius: 999px; font-weight: 600; font-size: 15.5px; white-space: nowrap;
  background: var(--ink); color: #fff;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, box-shadow 200ms ease;
}
.pill__icon {
  width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 220ms var(--ease-out), background-color 200ms ease;
}
.pill__icon .icon { width: 18px; height: 18px; }
.pill:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .pill:hover { background: #1A1C24; box-shadow: var(--shadow-float); }
  .pill:hover .pill__icon { transform: translate(2px, -2px) scale(1.06); background: rgba(255, 255, 255, 0.22); }
}
.pill--accent { background: var(--accent); }
@media (hover: hover) and (pointer: fine) { .pill--accent:hover { background: var(--accent-deep); } }
.pill--ghost { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-strong); }
.pill--ghost .pill__icon { background: var(--silver); }
@media (hover: hover) and (pointer: fine) { .pill--ghost:hover { background: var(--white); box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-float); } }
.pill--plain { padding: 0 22px; }
.pill--sm { height: 42px; padding: 0 6px 0 16px; font-size: 14px; }
.pill--sm .pill__icon { width: 30px; height: 30px; }
.pill--sm .pill__icon .icon { width: 15px; height: 15px; }
.pill--block { width: 100%; justify-content: space-between; }
.pill[disabled], .pill[aria-disabled="true"] { opacity: 0.55; cursor: default; transform: none; }
.link { font-weight: 600; color: var(--accent-ink); display: inline-flex; align-items: center; gap: 6px; }
@media (hover: hover) and (pointer: fine) { .link:hover { color: var(--accent); } }

/* ---------- Doble bisel ---------- */
.bezel {
  background: rgba(11, 12, 16, 0.045); padding: 6px; border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px rgba(11, 12, 16, 0.05);
}
.bezel__core {
  background: var(--white); border-radius: calc(var(--r-xl) - 6px); overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(11, 12, 16, 0.05);
}
.bezel--deep { box-shadow: inset 0 0 0 1px rgba(11, 12, 16, 0.05), var(--shadow-deep); }
.bezel--m { padding: 5px; border-radius: var(--r-l); }
.bezel--m .bezel__core { border-radius: calc(var(--r-l) - 5px); }
.shot { display: block; width: 100%; height: auto; }

/* ---------- Nav isla ---------- */
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 50; display: flex; justify-content: center; pointer-events: none;
}
.nav__pill {
  pointer-events: auto; display: flex; align-items: center; gap: 4px; height: var(--nav-h);
  padding: 0 8px 0 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.78); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(11, 12, 16, 0.04), 0 16px 48px -16px rgba(15, 42, 107, 0.28);
}
.nav__logo { display: flex; align-items: center; margin-right: 14px; }
.nav__logo img { height: 26px; width: auto; }
.nav__links { display: flex; gap: 2px; }
.nav__links a {
  padding: 10px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: background-color 180ms ease, color 180ms ease;
}
@media (hover: hover) and (pointer: fine) { .nav__links a:hover { background: rgba(11, 12, 16, 0.05); color: var(--ink); } }
.nav__links a.is-here { color: var(--ink); background: rgba(11, 12, 16, 0.06); }
.nav__cta { margin-left: 8px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 999px; place-items: center; }
.nav__burger .icon { width: 22px; height: 22px; }
.menu {
  position: fixed; inset: 0; z-index: 49; background: rgba(243, 244, 246, 0.86);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  display: grid; place-items: center; opacity: 0; pointer-events: none;
  transition: opacity 260ms var(--ease-out);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__links { display: grid; gap: 6px; text-align: center; }
.menu__links a {
  font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; padding: 10px 24px; border-radius: 999px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 320ms var(--ease-out), transform 420ms var(--ease-out);
}
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 40ms; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 80ms; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 120ms; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 160ms; }

/* ---------- Secciones ---------- */
main { padding-top: 112px; }
.section { padding: 112px 0; }
.section--tight { padding: 72px 0; }
.section__head { max-width: 56ch; margin-bottom: 56px; }
.section__head .lead { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 40px; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: center; }
.hero__copy .lead { margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__stage { position: relative; }
.hero__main { position: relative; z-index: 1; }
.hero__float {
  position: absolute; right: -6%; bottom: -12%; width: 46%; z-index: 2;
  transform: rotate(2.5deg);
}
.hero__float .bezel { background: rgba(11, 12, 16, 0.07); }

/* ---------- Vídeo ---------- */
.video__frame { max-width: 1040px; margin: 0 auto; }
.video__frame video { width: 100%; height: auto; background: var(--ink); }

/* ---------- Bento ---------- */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(150px, auto); gap: 14px;
}
.cell {
  position: relative; overflow: hidden; border-radius: var(--r-l); background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line), 0 1px 2px rgba(11, 12, 16, 0.03);
  padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; min-height: 240px;
}
.cell .title { max-width: 22ch; }
.cell .body { font-size: 15px; max-width: 34ch; }
.cell__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--silver); display: grid; place-items: center; margin-bottom: auto; }
.cell__icon .icon { width: 22px; height: 22px; }
.cell--shot { padding: 0; justify-content: flex-start; }
.cell--shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.cell--shot .cell__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 26px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 55%, rgba(255, 255, 255, 0));
}
.cell--shot .cell__cap .body { max-width: 40ch; }
.cell--accent { background: var(--accent); color: #fff; box-shadow: 0 30px 60px -30px rgba(37, 99, 235, 0.55); }
.cell--accent .body, .cell--accent .small { color: rgba(255, 255, 255, 0.82); }
.cell--accent .cell__icon { background: rgba(255, 255, 255, 0.16); }
.c-8 { grid-column: span 8; } .c-4 { grid-column: span 4; } .c-6 { grid-column: span 6; } .c-12 { grid-column: span 12; }
.r-2 { grid-row: span 2; }

/* ---------- VeriFactu ---------- */
.veri { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: center; }
.veri__facts { display: grid; gap: 14px; margin-top: 28px; }
.veri__fact { display: flex; gap: 14px; align-items: flex-start; }
.veri__fact .icon { width: 22px; height: 22px; color: var(--ok); margin-top: 3px; }
.veri__fact strong { display: block; }
.veri__fact span { color: var(--ink-2); font-size: 15px; }

/* ---------- Configurador ---------- */
.config { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: start; }
.opt {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.opt:first-child { border-top: 1px solid var(--line); }
.opt strong { font-size: 1.1rem; letter-spacing: -0.015em; }
.opt p { color: var(--ink-2); font-size: 15px; max-width: 46ch; margin-top: 4px; }
.opt__price { font-family: var(--mono); font-size: 15px; color: var(--ink-3); margin-top: 6px; }
.stepper { display: inline-flex; align-items: center; background: var(--white); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line-strong); padding: 4px; }
.stepper button { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; transition: background-color 160ms ease, transform 140ms var(--ease-out); }
.stepper button:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) { .stepper button:hover { background: var(--silver); } }
.stepper button[disabled] { opacity: 0.35; }
.stepper output { min-width: 40px; text-align: center; font-family: var(--mono); font-weight: 500; font-size: 17px; }
.switch { position: relative; width: 58px; height: 34px; border-radius: 999px; background: var(--silver-2); box-shadow: inset 0 0 0 1px var(--line-strong); transition: background-color 200ms ease; }
.switch::after { content: ""; position: absolute; top: 4px; left: 4px; width: 26px; height: 26px; border-radius: 999px; background: #fff; box-shadow: 0 1px 3px rgba(11, 12, 16, 0.25); transition: transform 220ms var(--ease-drawer); }
.switch[aria-checked="true"] { background: var(--accent); }
.switch[aria-checked="true"]::after { transform: translateX(24px); }

.quote { position: sticky; top: 100px; }
.quote__core { padding: 28px; }
.quote__rows { display: grid; gap: 10px; margin: 18px 0; font-size: 15px; color: var(--ink-2); }
.quote__row { display: flex; justify-content: space-between; gap: 12px; }
.quote__row span:last-child { font-family: var(--mono); color: var(--ink); }
.quote__total { display: flex; align-items: baseline; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); }
.quote__total .big { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; }
.quote__total .big small { font-size: 1rem; font-weight: 500; color: var(--ink-3); letter-spacing: 0; margin-left: 2px; }
.quote__seg { display: inline-flex; background: var(--silver); border-radius: 999px; padding: 4px; margin-bottom: 8px; }
.quote__seg button { padding: 8px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink-3); transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.quote__seg button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(11, 12, 16, 0.12); }
.quote .pill { margin-top: 18px; }
.quote__note { font-size: 13px; color: var(--ink-3); margin-top: 12px; }

/* ---------- Pasos ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step { padding: 26px; border-radius: var(--r-l); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.step .title { margin: 14px 0 8px; }
.step .body { font-size: 15px; }
/* Páginas legales: una columna de lectura, sin decoración */
.legal { max-width: 70ch; padding: 20px 0 48px; }
.legal h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 10px; }
.legal .meta { color: #6B7280; font-size: 14px; margin: 0 0 8px; }
.legal h2 { font-size: 1.15rem; letter-spacing: -0.01em; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 16px; line-height: 1.65; color: #3F4450; margin: 0 0 12px; }
.legal ul { padding-left: 1.2em; margin: 0 0 12px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
/* Variante en columna con numeración (página de gracias) */
.steps--compact { grid-template-columns: 1fr; gap: 10px; margin: 0; padding: 0; list-style: none; }
.steps--compact .step { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; }
.steps--compact .step strong { display: block; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.steps--compact .step .body { margin: 0; }
.step__n { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 999px; background: var(--ink); color: var(--white); display: grid; place-items: center; font-family: "Geist Mono", ui-monospace, monospace; font-size: 13px; margin-top: 1px; }

/* ---------- CTA final ---------- */
.final { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 72px 56px; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: center; }
.final .lead { color: rgba(255, 255, 255, 0.72); }
.final .pill--ghost { background: #fff; color: var(--ink); box-shadow: none; }
.final__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ---------- Footer ---------- */
.footer { padding: 40px 0 56px; color: var(--ink-3); font-size: 14px; }
.footer__row { display: flex; flex-wrap: wrap; gap: 18px 32px; justify-content: space-between; align-items: center; }
.footer a { color: var(--ink-2); }
@media (hover: hover) and (pointer: fine) { .footer a:hover { color: var(--ink); } }

/* ---------- Formularios ---------- */
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; }
.field input {
  height: 50px; padding: 0 16px; border-radius: 14px; background: var(--white);
  border: 0; box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: box-shadow 160ms ease;
}
.field input::placeholder { color: #8A8E99; }
.field input:focus { outline: 0; box-shadow: inset 0 0 0 2px var(--accent); }
.field .hint { font-size: 13px; color: var(--ink-3); }
.field.is-bad input { box-shadow: inset 0 0 0 2px var(--bad); }
.field .err { font-size: 13px; color: var(--bad); display: none; }
.field.is-bad .err { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .span { grid-column: 1 / -1; }
.alert { padding: 14px 16px; border-radius: 14px; background: #FCE9E8; color: #8A2620; font-size: 14.5px; display: none; }
.alert.is-on { display: block; }

/* ---------- Contratar ---------- */
.wizard { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: start; }
.panel { padding: 30px; }
.panel h2 { margin-bottom: 6px; }
.panel .body { margin-bottom: 22px; }

/* ---------- Área de cliente ---------- */
.cuenta__head { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.cuenta__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 24px; align-items: start; }
.lic { padding: 26px; display: grid; gap: 14px; }
.lic__top { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px; border-radius: 999px; font-size: 13px; font-weight: 600; background: var(--silver); }
.badge--ok { background: #E3F6EE; color: #0B6B4B; }
.badge--bad { background: #FCE9E8; color: #8A2620; }
.badge--wait { background: #FFF2D6; color: #7A4B00; }
.lic__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; font-size: 14px; color: var(--ink-2); }
.lic__meta strong { display: block; color: var(--ink); font-family: var(--mono); font-weight: 500; }
.lic__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.stack { display: grid; gap: 24px; }
.inv { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.inv:last-child { border-bottom: 0; }
.inv .num { color: var(--ink-3); }
.inv strong { font-family: var(--mono); font-weight: 500; }
.empty { padding: 28px; text-align: center; color: var(--ink-3); font-size: 14.5px; }
.skel { border-radius: 10px; background: linear-gradient(90deg, var(--silver) 25%, var(--silver-2) 50%, var(--silver) 75%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; height: 16px; }
@keyframes shimmer { to { background-position: -200% 0; } }
.vincular { display: flex; gap: 10px; align-items: center; }
.vincular input { flex: 1; height: 44px; padding: 0 14px; border-radius: 999px; border: 0; box-shadow: inset 0 0 0 1px var(--line-strong); font-family: var(--mono); text-transform: uppercase; }
.vincular input:focus { outline: 0; box-shadow: inset 0 0 0 2px var(--accent); }
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); z-index: 70;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 999px; font-size: 14.5px;
  opacity: 0; transition: opacity 240ms var(--ease-out), transform 320ms var(--ease-out); pointer-events: none;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Motion de entrada ---------- */
.fx .reveal { opacity: 0; transform: translateY(22px); filter: blur(6px);
  transition: opacity 700ms var(--ease-out), transform 900ms var(--ease-out), filter 700ms var(--ease-out); }
.fx .reveal.is-in { opacity: 1; transform: none; filter: blur(0); }
.fx .reveal:nth-child(2) { transition-delay: 60ms; }
.fx .reveal:nth-child(3) { transition-delay: 120ms; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx .reveal { transform: none; filter: none; transition: opacity 300ms ease; }
  .pill__icon, .stepper button, .switch::after { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero__grid, .veri, .config, .wizard, .cuenta__grid, .final { grid-template-columns: 1fr; }
  .hero__float { right: 0; bottom: -8%; width: 44%; }
  .quote { position: static; }
  .final { padding: 48px 32px; }
  .final__actions { justify-content: flex-start; }
  .c-8, .c-4, .c-6 { grid-column: span 12; }
  .bento { grid-auto-rows: auto; }
}
@media (max-width: 760px) {
  .wrap { padding-inline: 18px; }
  main { padding-top: 96px; }
  .section { padding: 72px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: grid; }
  .hero { padding: 24px 0 24px; }
  .hero__float { display: none; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .lic__meta { grid-template-columns: 1fr 1fr; }
  .inv { grid-template-columns: 1fr auto; }
  .inv .num { grid-column: 1 / -1; }
  .display { font-size: clamp(2.3rem, 10vw, 3rem); }
  .cell { min-height: 200px; }
}
