/* ============================================================
   RESTAURIO — sistema de diseño v2 (marca dino: cian · teal · menta · tinta)
   ============================================================ */
:root {
  /* Marca */
  --cyan: #25b6d2;
  --cyan-bright: #3fd0e9;
  --cyan-deep: #1194b4;
  --teal: #157f9d;
  --dark: #062730;
  --dark-2: #04191f;
  --mint: #e4f7f5;
  --mint-2: #f2fbfa;

  /* Neutros */
  --ink: #0b1b20;
  --paper: #fbfdfd;
  --card: #ffffff;
  --muted: #55707a;
  --line: #e2edee;

  /* Alias heredados (páginas internas) */
  --gold: var(--cyan-deep);
  --gold-soft: var(--cyan-bright);

  --radius: 20px;
  --shadow-sm: 0 1px 2px rgba(6, 39, 48, .05), 0 4px 12px rgba(6, 39, 48, .05);
  --shadow: 0 2px 4px rgba(6, 39, 48, .04), 0 12px 32px rgba(6, 39, 48, .08), 0 32px 64px -24px rgba(17, 148, 180, .18);
  --shadow-lg: 0 4px 8px rgba(6, 39, 48, .04), 0 24px 48px -8px rgba(6, 39, 48, .12), 0 48px 96px -24px rgba(17, 148, 180, .22);
  --grad: linear-gradient(135deg, #2cc2dd 0%, #1194b4 100%);
  --grad-text: linear-gradient(120deg, #29bcd8 20%, #157f9d 80%);
  --ease: cubic-bezier(.22, .8, .3, 1);

  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(37, 182, 210, .25); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(251, 253, 253, .82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(6, 39, 48, .06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  display: inline-flex; align-items: center; gap: 0;
  font-family: var(--font-display); font-size: 21px; font-weight: 800;
  letter-spacing: -.02em; color: var(--ink);
}
.logo img { height: 40px; width: auto; margin-right: 11px; }
.logo span { color: var(--cyan-deep); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 14.5px; font-weight: 550;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--grad); color: #fff !important; padding: 10px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px !important; letter-spacing: .01em;
  box-shadow: 0 2px 8px rgba(17, 148, 180, .3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(17, 148, 180, .4); color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 26px; cursor: pointer; }

/* ---------------- Botones ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 32px; border-radius: 999px;
  font-family: var(--font-display); font-size: 15.5px; font-weight: 700; letter-spacing: -.01em;
  border: 0; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform;
}
.btn:active { transform: translateY(0) scale(.98); }
.btn-gold {
  background: var(--grad); color: #fff;
  box-shadow: 0 2px 6px rgba(17, 148, 180, .25), 0 10px 28px -6px rgba(17, 148, 180, .45);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(17, 148, 180, .3), 0 18px 40px -6px rgba(17, 148, 180, .55); }
.btn-ghost {
  background: rgba(255, 255, 255, .7); color: var(--ink);
  border: 1.5px solid var(--line); backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 10px 28px -8px rgba(11, 27, 32, .5); }
.btn-dark:hover { transform: translateY(-2px); background: #16323a; }

/* Secciones oscuras: variantes */
.on-dark .btn-ghost { background: rgba(255, 255, 255, .07); color: #fff; border-color: rgba(255, 255, 255, .18); }
.on-dark .btn-ghost:hover { border-color: var(--cyan-bright); background: rgba(255, 255, 255, .12); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; overflow: hidden;
  padding: 168px 0 96px;
  text-align: center;
  background:
    radial-gradient(720px 420px at 50% -8%, rgba(63, 208, 233, .16), transparent 65%),
    radial-gradient(560px 380px at 88% 28%, rgba(37, 182, 210, .10), transparent 60%),
    radial-gradient(560px 380px at 10% 38%, rgba(21, 127, 157, .08), transparent 60%),
    var(--paper);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(6, 39, 48, .11) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(640px 460px at 50% 6%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(640px 460px at 50% 6%, #000 20%, transparent 75%);
}
.hero > .container { position: relative; }
.hero-logo { height: 132px; width: auto; margin: 0 auto 26px; filter: drop-shadow(0 16px 32px rgba(17, 148, 180, .25)); }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; margin-bottom: 30px;
  font-size: 13px; font-weight: 650; letter-spacing: .04em; color: var(--cyan-deep);
  box-shadow: var(--shadow-sm);
}
.hero-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(37, 182, 210, .18); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.6vw, 74px);
  font-weight: 800; line-height: 1.06; letter-spacing: -.035em;
  margin: 0 auto;
}
.hero h1 .grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero p.sub {
  margin: 26px auto 38px; font-size: clamp(16.5px, 2vw, 19px);
  color: var(--muted); max-width: 52ch; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 46px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 17px; font-size: 13.5px; font-weight: 550; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 15px; height: 15px; stroke: var(--cyan-deep); stroke-width: 2.6; flex: none; }

/* Cinta de datos bajo el hero */
.statbar { border-block: 1px solid var(--line); background: #fff; }
.statbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide: none;
}
.statbar .stat {
  padding: 26px 18px; text-align: center;
  border-left: 1px solid var(--line);
}
.statbar .stat:first-child { border-left: 0; }
.statbar .num {
  font-family: var(--font-display); font-size: 27px; font-weight: 800; letter-spacing: -.02em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.statbar .lbl { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------------- Secciones ---------------- */
section { padding: 112px 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cyan-deep); font-weight: 800; margin-bottom: 18px;
}
.kicker::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad); }
h2.title {
  font-family: var(--font-display); font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.12; max-width: 24ch;
}
p.section-sub { color: var(--muted); max-width: 60ch; margin-top: 18px; font-size: 16.5px; }
.on-dark .kicker { color: var(--cyan-bright); }
.on-dark h2.title { color: #fff; }
.on-dark p.section-sub { color: rgba(233, 248, 250, .62); }

/* ---------------- Cómo funciona ---------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 46px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(37, 182, 210, .45); }
.step .num {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  box-shadow: 0 6px 16px -4px rgba(17, 148, 180, .5);
  margin-bottom: 20px;
}
.step h3 { font-family: var(--font-display); font-size: 17.5px; font-weight: 750; letter-spacing: -.015em; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------------- Servicios (sección oscura) ---------------- */
.services {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 420px at 82% -10%, rgba(37, 182, 210, .18), transparent 60%),
    radial-gradient(600px 420px at 8% 108%, rgba(21, 127, 157, .16), transparent 55%),
    linear-gradient(178deg, var(--dark) 0%, var(--dark-2) 100%);
}
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.svc {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius); padding: 32px 28px;
  backdrop-filter: blur(6px);
  transition: transform .35s var(--ease), background .35s, border-color .35s;
}
.svc:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .08); border-color: rgba(63, 208, 233, .4); }
.svc .icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(63, 208, 233, .22), rgba(17, 148, 180, .12));
  border: 1px solid rgba(63, 208, 233, .25);
  margin-bottom: 22px;
}
.svc .icon svg { width: 25px; height: 25px; stroke: var(--cyan-bright); stroke-width: 1.7; }
.svc h3 { font-family: var(--font-display); font-size: 19px; font-weight: 750; letter-spacing: -.015em; color: #fff; }
.svc .time {
  display: inline-block; margin: 9px 0 13px;
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  color: var(--cyan-bright);
  background: rgba(63, 208, 233, .12); border: 1px solid rgba(63, 208, 233, .25);
  border-radius: 999px; padding: 4px 12px;
}
.svc p { font-size: 14.5px; color: rgba(233, 248, 250, .6); }

/* ---------------- Widget Calcula tu precio ---------------- */
.pricing { background: linear-gradient(180deg, var(--mint-2), var(--paper) 70%); }
.widget {
  margin-top: 56px;
  background: var(--card);
  border: 1px solid rgba(37, 182, 210, .22);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 46px;
  max-width: 800px;
  position: relative;
}
.widget::before {
  content: ""; position: absolute; inset: -1px; border-radius: 29px; padding: 1px;
  background: linear-gradient(140deg, rgba(63, 208, 233, .55), transparent 30%, transparent 70%, rgba(21, 127, 157, .35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.widget-steps { display: flex; gap: 8px; margin-bottom: 36px; }
.wstep { flex: 1; height: 5px; border-radius: 5px; background: var(--line); transition: background .4s var(--ease); }
.wstep.active { background: var(--grad); }
.widget h3.wtitle { font-family: var(--font-display); font-size: 23px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 24px; }
.opt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; max-height: 430px; overflow-y: auto; padding: 2px; }
.opt-grid::-webkit-scrollbar { width: 8px; }
.opt-grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.opt {
  border: 1.5px solid var(--line); background: #fff; border-radius: 15px; padding: 17px 15px;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600; color: var(--ink);
  cursor: pointer; text-align: center;
  transition: border-color .25s, transform .2s var(--ease), box-shadow .25s;
}
.opt:hover {
  border-color: var(--cyan); transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(17, 148, 180, .25);
}
.opt small { display: block; color: var(--cyan-deep); font-weight: 700; font-size: 13px; margin-top: 5px; }
.opt-fam { padding: 22px 14px 18px; font-weight: 700; }
.opt-fam img { height: 86px; width: auto; margin: 0 auto 12px; object-fit: contain; transition: transform .35s var(--ease); }
.opt-fam:hover img { transform: scale(1.07) rotate(-2deg); }
.opt .ric {
  display: flex; width: 34px; height: 34px; border-radius: 10px; background: var(--mint);
  align-items: center; justify-content: center; margin: 0 auto 9px;
}
.opt .ric svg { width: 18px; height: 18px; stroke: var(--cyan-deep); }
.widget .back {
  background: none; border: 0; color: var(--muted); font-size: 14px; font-weight: 600; cursor: pointer;
  margin-bottom: 18px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body);
  transition: color .2s;
}
.widget .back:hover { color: var(--cyan-deep); }
.widget .loading { color: var(--muted); font-size: 15px; padding: 34px 0; text-align: center; }
.result { text-align: center; padding: 10px 0; }
.result .device { color: var(--muted); font-size: 15px; font-weight: 550; }
.result .price {
  font-family: var(--font-display); font-size: 66px; font-weight: 800; letter-spacing: -.04em;
  line-height: 1.15; margin: 10px 0 4px;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.result .price small { font-size: 20px; font-weight: 700; letter-spacing: normal; margin-left: 8px; }
.result .meta { color: var(--muted); font-size: 14.5px; margin-bottom: 8px; }
.result .note {
  display: inline-block; font-size: 12.5px; font-weight: 650; color: var(--cyan-deep);
  background: var(--mint); border-radius: 999px; padding: 5px 14px; margin-bottom: 28px;
}
.result .actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Hogar ---------------- */
.hogar-panel {
  margin-top: 56px;
  background: linear-gradient(140deg, var(--mint) 0%, #f6fcfb 55%, var(--mint-2) 100%);
  border: 1px solid rgba(37, 182, 210, .2);
  border-radius: 32px;
  padding: 52px;
  box-shadow: var(--shadow-sm);
}
.hogar-badge {
  display: inline-block; background: var(--grad); color: #fff;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: 0 4px 14px -2px rgba(17, 148, 180, .45);
}
.hogar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin: 44px 0 40px; }
.hogar-card {
  background: #fff; border: 1px solid var(--line); border-radius: 17px; padding: 24px 20px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.hogar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(37, 182, 210, .45); }
.hogar-card .icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mint); margin-bottom: 14px;
}
.hogar-card .icon svg { width: 21px; height: 21px; stroke: var(--cyan-deep); stroke-width: 1.9; }
.hogar-card h3 { font-family: var(--font-display); font-size: 15.5px; font-weight: 750; margin-bottom: 4px; letter-spacing: -.01em; }
.hogar-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.hogar-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Banda de confianza ---------------- */
.trust-band {
  background:
    radial-gradient(600px 300px at 22% 120%, rgba(63, 208, 233, .2), transparent 60%),
    linear-gradient(120deg, var(--teal), #0e5f77 55%, var(--dark));
  padding: 76px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trust { text-align: center; color: #fff; }
.trust .big { font-family: var(--font-display); font-size: 38px; font-weight: 800; letter-spacing: -.03em; }
.trust .big span { color: var(--cyan-bright); }
.trust p { font-size: 13.5px; color: rgba(233, 248, 250, .72); margin-top: 4px; }

/* ---------------- FAQ + contacto ---------------- */
.faq-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; margin-top: 56px; align-items: start; }
details { border-bottom: 1px solid var(--line); padding: 21px 0; }
details summary {
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -.01em;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color .2s;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { color: var(--cyan-deep); }
details summary::after {
  content: "+"; font-size: 22px; font-weight: 500; color: var(--cyan);
  width: 30px; height: 30px; border: 1.5px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex: none;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
details[open] summary::after { transform: rotate(45deg); background: var(--mint); }
details p { color: var(--muted); font-size: 14.5px; margin-top: 12px; max-width: 62ch; }
.contact-card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(420px 240px at 88% -20%, rgba(63, 208, 233, .25), transparent 60%),
    linear-gradient(160deg, var(--dark), var(--dark-2));
  color: #fff; border-radius: 26px; padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-card h3 { font-family: var(--font-display); font-size: 25px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.contact-card > p { color: rgba(233, 248, 250, .65); font-size: 14.5px; margin-bottom: 26px; }
.contact-card .row {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .09); font-size: 15px;
}
.contact-card .row svg { width: 18px; height: 18px; stroke: var(--cyan-bright); stroke-width: 2; flex: none; }
.contact-card .btn { margin-top: 28px; width: 100%; }

/* ---------------- Footer ---------------- */
footer { background: var(--dark-2); color: rgba(233, 248, 250, .5); padding: 56px 0 44px; font-size: 13.5px; }
.foot-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: center; }
footer .logo { font-size: 19px; color: #fff; }
footer .logo span { color: var(--cyan-bright); }
footer a { transition: color .2s; }
footer a:hover { color: #fff; }
.foot-links { display: flex; gap: 26px; }

/* ---------------- WhatsApp flotante ---------------- */
.wa-float {
  position: fixed; right: 26px; bottom: 100px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(6, 39, 48, .18), 0 12px 32px rgba(37, 211, 102, .4);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------------- Animaciones de entrada ---------------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(3px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; filter: none; }
.steps .step:nth-child(2), .svc-grid .svc:nth-child(2), .hogar-grid .hogar-card:nth-child(2) { transition-delay: .08s; }
.steps .step:nth-child(3), .svc-grid .svc:nth-child(3), .hogar-grid .hogar-card:nth-child(3) { transition-delay: .16s; }
.steps .step:nth-child(4), .svc-grid .svc:nth-child(4), .hogar-grid .hogar-card:nth-child(4) { transition-delay: .24s; }
.svc-grid .svc:nth-child(5) { transition-delay: .32s; }
.svc-grid .svc:nth-child(6) { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; filter: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Chat n8n — branding ---------------- */
:root:root {
  --chat--color-primary: #1194b4;
  --chat--color-secondary: #062730;
  --chat--toggle--background: #062730;
  --chat--toggle--hover--background: #0e4553;
  --chat--toggle--active--background: #062730;
  --chat--header--background: #062730;
  --chat--message--user--background: #1194b4;
}


/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .steps, .hogar-grid { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .svc-grid, .opt-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .widget { padding: 34px 26px; }
  .statbar-inner { grid-template-columns: repeat(2, 1fr); }
  .statbar .stat:nth-child(3) { border-left: 0; }
  .statbar .stat { border-top: 1px solid var(--line); }
  .statbar .stat:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(251, 253, 253, .98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 26px; gap: 22px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 76px 0; }
  .hero { padding: 132px 0 72px; }
  .hero-logo { height: 96px; }
  .steps, .svc-grid, .hogar-grid, .opt-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .result .price { font-size: 50px; }
  .hogar-panel { padding: 32px 24px; }
}
