/* ============================================================
   Fijo Crédito — Sitio oficial
   Diseño alineado al logo (degradado cian→azul).
   Layout (recipe): hero diagonal · nav logo centrado · tarjetas glass
   · divisores diagonales SVG · secciones bicolor · contadores · stagger
   ============================================================ */

:root {
  /* Marca (tomado del logo) */
  --brand: #12a5e8;
  --brand-dark: #0570b6;
  --brand-deep: #044e86;
  --brand-light: #56c7f4;
  --accent: #00d4c8;
  --brand-grad: linear-gradient(135deg, #5ccbf7 0%, #1893dd 52%, #0a6fb8 100%);
  --brand-grad-soft: linear-gradient(135deg, #eafaff 0%, #d6f1fe 100%);

  /* Neutros */
  --bg: #ffffff;
  --surface: #f3f9fd;
  --ink: #0e2233;
  --ink-soft: #4a6072;
  --line: rgba(10, 60, 100, .10);
  --on-dark: #eaf6ff;

  /* Sistema */
  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-6: 48px; --space-8: 64px; --space-12: 96px;
  --radius-sm: 10px; --radius: 18px; --radius-lg: 28px; --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(8, 64, 110, .07);
  --shadow: 0 12px 36px rgba(8, 64, 110, .12);
  --shadow-lg: 0 26px 70px rgba(8, 64, 110, .20);
  --maxw: 1180px;
  --nav-h: 74px;
  --fs-h1: clamp(2.3rem, 5.4vw, 4.1rem);
  --fs-h2: clamp(1.7rem, 3.4vw, 2.7rem);
  --fs-lead: clamp(1.02rem, 1.6vw, 1.22rem);
  --ease: cubic-bezier(.4, 0, .2, 1);
  /* Icono de descarga (máscara para el CTA del nav) */
  --ico-dl: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v11'/%3E%3Cpath d='M8 11l4 3.2 4-3.2'/%3E%3Cpath d='M5 20.5h14'/%3E%3C/svg%3E");
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--ink); line-height: 1.7;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
section { scroll-margin-top: calc(var(--nav-h) + 12px); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px); }

/* Tipografía: palabra clave resaltada con la marca */
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-dark);
  background: rgba(18, 165, 232, .10); padding: 6px 14px; border-radius: var(--radius-pill); }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.02em; font-weight: 800; }
.section-head { max-width: 720px; margin: 0 auto var(--space-6); text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin: var(--space-2) 0; }
.section-head p { color: var(--ink-soft); font-size: var(--fs-lead); }
.hl { color: var(--brand); position: relative; white-space: nowrap; }
.hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em;
  height: .34em; background: rgba(0, 212, 200, .28); z-index: -1; border-radius: 4px; }

/* Botones */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease),
  background .25s var(--ease); font-size: 1rem; white-space: nowrap; }
.btn-primary { background: var(--brand-grad); color: #fff; box-shadow: 0 10px 26px rgba(18, 137, 221, .42); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(18, 137, 221, .52); }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-ghost:hover { background: rgba(255, 255, 255, .22); transform: translateY(-3px); }
.btn-outline { background: #fff; color: var(--brand-dark); border-color: var(--brand-light); }
.btn-outline:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ===================== NAV (logo centrado) ===================== */
.nav { position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.nav.scrolled { background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }
.nav-inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: var(--space-3); }
.nav-menu { display: contents; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 26px); }
.nav-links.left { justify-content: flex-end; order: 1; }
.brand { order: 2; }
.nav-links.right { justify-content: flex-start; order: 3; }
.burger { order: 4; }
.nav-links a { font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  position: relative; padding: 6px 2px; white-space: nowrap; transition: color .2s var(--ease); }
.nav.top .nav-links a { color: rgba(255, 255, 255, .92); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px;
  width: 0; background: var(--brand); transition: width .25s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brand); }
.nav.top .nav-links a.active { color: #fff; }
/* CTA del nav — botón de descarga compacto y pulido */
.nav-links .cta { margin-left: 10px; padding: 9px 18px 9px 16px; font-size: .9rem;
  flex: none; white-space: nowrap;
  border: 0; border-radius: var(--radius-pill); letter-spacing: .01em;
  background: linear-gradient(135deg, #45bdf2 0%, #1791db 52%, #0b73bd 100%);
  box-shadow: 0 4px 12px rgba(11, 110, 185, .32), inset 0 1px 0 rgba(255, 255, 255, .38);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), filter .22s var(--ease); }
.nav-links .cta::before { content: ""; flex: none; width: 15px; height: 15px;
  background: currentColor;
  -webkit-mask: var(--ico-dl) center / contain no-repeat;
  mask: var(--ico-dl) center / contain no-repeat; }
.nav-links .cta:hover { transform: translateY(-2px); filter: brightness(1.04);
  box-shadow: 0 8px 20px rgba(11, 110, 185, .42), inset 0 1px 0 rgba(255, 255, 255, .45); }
.nav-links .cta:active { transform: translateY(0); }
/* En el tope (hero transparente) el botón conserva su color de marca, no se vuelve blanco */
.nav.top .nav-links .cta { color: #fff; }
.brand { display: flex; align-items: center; gap: 10px; justify-self: center; }
.brand img { width: 42px; height: 42px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand b { font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.nav.top .brand b { color: #fff; }
.burger { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px;
  justify-self: end; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto;
  transition: .3s var(--ease); }
.nav.top .burger span { background: #fff; }

/* ===================== HERO (diagonal split) ===================== */
.hero { position: relative; min-height: 100svh; display: grid;
  grid-template-columns: 1.05fr .95fr; isolation: isolate; }
.hero-left { background: var(--brand-grad); color: #fff; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) clamp(24px, 5vw, 80px) 60px; position: relative; z-index: 2; }
.hero-left::before { /* corte diagonal sobre la imagen */
  content: ""; position: absolute; top: 0; bottom: 0; right: -10vw; width: 12vw;
  background: var(--brand-deep); transform: skewX(-8deg); z-index: -1; }
.hero-copy { max-width: 560px; margin-left: auto; }
.hero h1 { font-size: var(--fs-h1); margin: 18px 0 20px; }
.hero h1 .hl { color: #d6fcff; }
.hero h1 .hl::after { background: rgba(255, 255, 255, .3); }
.hero p.lead { font-size: var(--fs-lead); color: var(--on-dark); margin-bottom: 30px; }
.hero .eyebrow { background: rgba(255, 255, 255, .16); color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-mini { display: flex; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.hero-mini div b { display: block; font-size: 1.7rem; font-weight: 800; }
.hero-mini div span { font-size: .85rem; color: rgba(255, 255, 255, .8); }
.hero-right { position: relative; }
.hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-right::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10, 78, 134, .35), transparent 45%); }

/* Divisor diagonal SVG reutilizable */
.divider { display: block; width: 100%; height: 70px; }
.divider path { fill: var(--surface); }

/* ===================== Secciones bicolor ===================== */
.sec { padding: var(--space-12) 0; position: relative; }
.sec.alt { background: var(--surface); }
.sec.brand { background: var(--brand-deep); color: var(--on-dark); }
.sec.brand .section-head p { color: rgba(234, 246, 255, .8); }

/* PASOS (#how) — timeline */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
  counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; box-shadow: var(--shadow-sm); position: relative; }
.step::before { counter-increment: step; content: "0" counter(step);
  font-size: 2.2rem; font-weight: 800; color: var(--brand-light); line-height: 1; }
.step h3 { font-size: 1.12rem; margin: 12px 0 8px; }
.step p { color: var(--ink-soft); font-size: .94rem; }
.step .ico { position: absolute; top: 26px; right: 24px; width: 30px; height: 30px; color: var(--brand); }

/* VENTAJAS (#why) — imagen/texto alternado (zig-zag) */
.zig { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; margin-bottom: var(--space-8); }
.zig:last-child { margin-bottom: 0; }
.zig.rev .zig-media { order: 2; }
.zig-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%;
  aspect-ratio: 5/4; object-fit: cover; }
.zig h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 16px; }
.zig p { color: var(--ink-soft); margin-bottom: 16px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px;
  font-weight: 600; }
.feat-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0, 212, 200, .16); color: var(--brand-dark); display: grid; place-items: center;
  font-size: .8rem; }

/* RESEÑAS (#reviews) — carril horizontal de tarjetas glass */
.rail { display: flex; gap: 22px; overflow-x: auto; padding: 8px 4px 24px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--brand-light); border-radius: 99px; }
.glass { background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .7); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); }
.review { flex: 0 0 340px; max-width: 340px; scroll-snap-align: start; padding: 28px; }
.review .stars { color: #ffb020; letter-spacing: 2px; margin-bottom: 10px; }
.review p { color: var(--ink); margin-bottom: 18px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review .who b { display: block; font-size: .95rem; }
.review .who span { font-size: .82rem; color: var(--ink-soft); }

/* ESTADÍSTICAS (#stats) — contadores sobre marca */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
  text-align: center; }
.stat .num { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: #fff; line-height: 1; }
.stat .num .suf { color: var(--accent); }
.stat .lbl { color: rgba(234, 246, 255, .82); margin-top: 8px; font-weight: 600; }

/* PARTNERS / RESPALDO (#partners) */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.badge { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.badge .ico { width: 40px; height: 40px; color: var(--brand); margin: 0 auto 14px; }
.badge h3 { font-size: 1.05rem; margin-bottom: 6px; }
.badge p { color: var(--ink-soft); font-size: .9rem; }

/* FAQ (#faq) */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px;
  overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.qa summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 700;
  display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-grad-soft); color: var(--brand-dark); display: grid; place-items: center;
  transition: transform .3s var(--ease); font-weight: 800; }
.qa[open] summary .pm { transform: rotate(45deg); }
.qa .ans { padding: 0 24px 20px; color: var(--ink-soft); }

/* DESCARGA / CTA (#download) */
.cta-card { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
  background: var(--brand-grad); color: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-card .txt { padding: clamp(32px, 5vw, 60px); }
.cta-card h2 { font-size: var(--fs-h2); margin-bottom: 14px; }
.cta-card p { color: var(--on-dark); margin-bottom: 26px; font-size: var(--fs-lead); }
.store-row { display: flex; gap: 14px; flex-wrap: wrap; }
.store { display: inline-flex; align-items: center; gap: 10px; background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .35); color: #fff; padding: 12px 20px; border-radius: 14px;
  font-weight: 700; transition: transform .25s var(--ease), background .25s var(--ease); }
.store:hover { transform: translateY(-3px); background: rgba(0, 0, 0, .42); }
.store small { display: block; font-weight: 500; font-size: .68rem; opacity: .8; }
.cta-card .media { position: relative; min-height: 320px; }
.cta-card .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ===================== FOOTER ===================== */
.foot { background: #07263c; color: #b9d4e6; padding: var(--space-12) 0 var(--space-6); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-6); }
.foot .brand b { color: #fff; }
.foot p { font-size: .92rem; margin-top: 14px; max-width: 30ch; }
.foot h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 16px; }
.foot li { margin-bottom: 10px; }
.foot a { color: #b9d4e6; font-size: .92rem; transition: color .2s; }
.foot a:hover { color: var(--brand-light); }
.foot-contact li { display: flex; gap: 10px; font-size: .9rem; line-height: 1.5; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: var(--space-8);
  padding-top: var(--space-3); display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; font-size: .85rem; color: #7fa2ba; }
.disclaimer { background: #061d2e; color: #6f93ab; font-size: .8rem; padding: 18px 0; }
.disclaimer .wrap { line-height: 1.6; }

/* ===================== Animaciones (stagger) ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease),
  transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }

/* ===================== Páginas legales ===================== */
.legal-hero { background: var(--brand-grad); color: #fff; padding: calc(var(--nav-h) + 56px) 0 90px;
  text-align: center; }
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.legal-hero p { color: var(--on-dark); margin-top: 10px; }
.legal-body { max-width: 820px; margin: -50px auto 0; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(28px, 5vw, 56px); position: relative; z-index: 2; }
.legal-body h2 { font-size: 1.2rem; color: var(--brand-deep); margin: 30px 0 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--surface); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.02rem; color: var(--brand-dark); margin: 20px 0 8px; }
.legal-body p { color: #34495a; margin-bottom: 12px; font-size: .96rem; }
.legal-body ul { margin: 8px 0 14px; }
.legal-body ul li { position: relative; padding: 8px 0 8px 22px; border-bottom: 1px solid var(--surface);
  font-size: .95rem; color: #44596a; }
.legal-body ul li::before { content: "•"; position: absolute; left: 4px; color: var(--accent);
  font-weight: 800; }
.legal-body a { color: var(--brand-dark); word-break: break-word; border-bottom: 1px solid var(--brand-light); }
.legal-back { display: inline-flex; gap: 8px; align-items: center; margin-top: 30px;
  font-weight: 700; color: var(--brand-dark); }

/* ===================== Página: Eliminación de datos =====================
   Layout propio (recipe: base con brillo de marca, tarjetas de borde
   degradado, divisor de ola SVG, pasos numerados con stagger).
   Deliberadamente distinto a .legal-body para evitar plantillas idénticas. */
.del-hero { position: relative; overflow: hidden;
  background: radial-gradient(1100px 460px at 82% -12%, rgba(0, 212, 200, .30), transparent 60%),
    var(--brand-grad-soft);
  padding: calc(var(--nav-h) + 60px) 0 116px; }
.del-hero::before { content: ""; position: absolute; right: -130px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 165, 232, .35), transparent 70%); }
.del-hero .wrap { position: relative; z-index: 2; }
.del-hero .eyebrow { background: rgba(18, 165, 232, .14); color: var(--brand-dark); }
.del-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 16px 0 14px; max-width: 18ch; }
.del-hero p { color: var(--ink-soft); font-size: var(--fs-lead); max-width: 58ch; }
.del-wave { display: block; width: 100%; height: 80px; margin-top: -80px; }
.del-wave path { fill: var(--bg); }

.del-main { padding-bottom: var(--space-12); }
.del-methods { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4);
  margin-top: -52px; position: relative; z-index: 3; }
.method { border-radius: var(--radius-lg); padding: 2px; background: var(--brand-grad);
  box-shadow: var(--shadow); }
.method-in { background: #fff; border-radius: calc(var(--radius-lg) - 2px); height: 100%;
  padding: clamp(26px, 3.4vw, 40px); }
.method-tag { display: inline-flex; align-items: center; gap: 10px; font-weight: 800;
  color: var(--brand-dark); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.method-tag .n { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-grad);
  color: #fff; display: grid; place-items: center; font-size: .95rem; }
.method h2 { font-size: 1.4rem; margin: 14px 0 18px; color: var(--ink); }
.del-steps { counter-reset: ds; display: grid; gap: 14px; }
.del-step { position: relative; padding: 16px 18px 16px 58px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); }
.del-step::before { counter-increment: ds; content: counter(ds); position: absolute;
  left: 16px; top: 15px; width: 28px; height: 28px; border-radius: 50%; background: #fff;
  border: 2px solid var(--brand-light); color: var(--brand-dark); font-weight: 800;
  display: grid; place-items: center; font-size: .9rem; }
.del-step b { display: block; margin-bottom: 3px; color: var(--ink); font-size: .98rem; }
.del-step span { color: var(--ink-soft); font-size: .92rem; }

.del-terms { background: var(--brand-deep); color: var(--on-dark); border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 54px); margin-top: var(--space-8); position: relative; overflow: hidden; }
.del-terms::after { content: ""; position: absolute; left: -90px; bottom: -90px; width: 300px;
  height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 200, .28), transparent 70%); }
.del-terms h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: var(--space-3); }
.del-term-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
  position: relative; z-index: 2; }
.del-term { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius); padding: 26px 24px; }
.del-term .ico { width: 38px; height: 38px; color: var(--accent); margin-bottom: 14px; }
.del-term b { display: block; font-size: 1.05rem; color: #fff; margin-bottom: 6px; }
.del-term p { color: rgba(234, 246, 255, .82); font-size: .92rem; }

.del-help { text-align: center; max-width: 640px; margin: var(--space-8) auto 0; }
.del-help p { color: var(--ink-soft); }
.del-help .legal-back { margin-top: 22px; }

@media (max-width: 860px) {
  .del-methods, .del-term-grid { grid-template-columns: 1fr; }
  .del-methods { margin-top: -28px; }
}

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding-top: calc(var(--nav-h) + 48px); }
  .hero-left::before { display: none; }
  .hero-right { min-height: 52vh; order: -1; }
  .hero-right img { position: relative; }
  .steps, .stats, .badges { grid-template-columns: repeat(2, 1fr); }
  .zig, .cta-card, .foot-grid { grid-template-columns: 1fr; }
  .zig.rev .zig-media { order: 0; }
  .cta-card .media { min-height: 240px; order: -1; }
}
@media (max-width: 720px) {
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 0; }
  .brand { order: 0; justify-self: auto; }
  .burger { display: block; order: 0; justify-self: auto; }
  /* Un solo menú desplegable que contiene TODOS los enlaces (izq + der) */
  .nav-menu { display: flex; flex-direction: column; position: fixed; left: 0; right: 0; top: var(--nav-h);
    background: rgba(255, 255, 255, .98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    padding: 6px 24px 20px; box-shadow: var(--shadow); border-top: 1px solid var(--line);
    transform: translateY(-135%); transition: transform .35s var(--ease);
    max-height: calc(100svh - var(--nav-h)); overflow-y: auto; }
  .nav.open .nav-menu { transform: translateY(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links.left, .nav-links.right { justify-content: flex-start; order: 0; }
  .nav .nav-links a { color: var(--ink) !important; width: 100%; padding: 13px 2px;
    border-bottom: 1px solid var(--line); }
  .nav .nav-links a::after { display: none; }
  .nav-links .cta { margin: 14px 0 0; width: 100%; justify-content: center;
    color: #fff !important; border-bottom: 0; }
  .nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .burger span:nth-child(2) { opacity: 0; }
  .nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .steps, .stats, .badges { grid-template-columns: 1fr; }
  .hero-mini { gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal, [data-stagger] > * { transition: none; opacity: 1; transform: none; }
}
