/* ============ TOKENS (heredados de Boceto gratis) ============ */
:root {
  --bg: #faf6f1;
  --bg-sunk: #f3ece2;
  --surface: #ffffff;
  --ink: #1f1a16;
  --ink-soft: #574f47;
  --ink-mute: #8a8078;
  --line: #ece3d6;
  --line-strong: #d6cbba;

  --accent: #F3B805;
  --accent-hover: #d9a402;
  --accent-soft: #fff4cc;
  --accent-soft-2: #ffe9a3;
  --accent-ink: #3d2e00;
  --nav: #2a6b5d;
  --nav-soft: #e3f0ec;

  --star: #ffb020;
  --wa: #25D366;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-1: 0 1px 0 rgba(0,0,0,.03), 0 1px 2px rgba(0,0,0,.04);
  --shadow-2: 0 2px 4px rgba(0,0,0,.04), 0 10px 30px rgba(0,0,0,.08);
  --shadow-3: 0 24px 56px rgba(0,0,0,.14);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-ui: "Nunito", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--font-ui); -webkit-font-smoothing: antialiased; }
body { font-size: 15px; line-height: 1.55; font-weight: 500; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }

.wrap { max-width: 1500px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 720px) { .wrap { padding: 0 18px; } }

/* ============ MINIBAR ============ */
.minibar {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
}
.minibar .accent { color: var(--accent); }
.minibar .dot { opacity: .45; margin: 0 10px; }
.minibar .mb-track { display: inline-block; }
.minibar .mb-track .mb-clone { display: none; }
@media (max-width: 760px) {
  .minibar { padding: 9px 0; text-align: left; }
  .minibar .mb-track { padding-left: 100%; animation: minibarScroll 26s linear infinite; }
  .minibar .mb-track .mb-clone { display: inline; }
}
@keyframes minibarScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ============ NAV (cream, soft) ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,246,241,.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 20px;
  color: var(--ink);
}
.nav .brand em { font-style: normal; color: var(--accent); }
.nav .brand .brand-logo { height: 40px; max-height: 40px; width: auto; max-width: 160px; display: block; object-fit: contain; }
.nav .brand .b-tag {
  margin-left: 6px;
  padding: 3px 8px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border: 1px solid #f3d77f;
  border-radius: var(--r-pill);
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 13px; font-weight: 700;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(243,184,5,.34);
  transition: transform .12s, background .12s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
@media (max-width: 820px) { .nav-links { display: none; } .nav .brand { font-size: 17px; } .nav-cta { padding: 10px 14px; font-size: 12px; } }

/* ============ HERO (cream, mismo estilo que boceto gratis) ============ */
.hero {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(243,184,5,.22), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero { padding: 36px 0 48px; }
  /* En movil: titulo + subtitulo -> VIDEO (en medio) -> CTAs -> stats. Se mueve el mismo bloque (sin duplicar) y se centra todo. */
  .hero-grid { display: flex; flex-direction: column; gap: 0; align-items: center; text-align: center; }
  .hero-copy { display: contents; }
  .hero-copy .eyebrow-pill { order: 1; margin-bottom: 14px; }
  .hero-copy h1 { order: 2; }
  .hero-copy .sub { order: 3; margin-left: auto; margin-right: auto; }
  .hero-video { order: 4; margin: 22px auto; width: 100%; max-width: 560px; }
  .hero-copy .hero-ctas { order: 5; justify-content: center; flex-wrap: wrap; }
  .hero-copy .hero-stats { order: 6; margin-top: 24px; justify-content: center; }
  .hero-copy .hero-reviews { order: 7; justify-content: center; }
}

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 13px 6px 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px;
  border: 1px solid #f3d77f;
}
.eyebrow-pill .pulse {
  width: 8px; height: 8px;
  background: #1f8a4c;
  border-radius: 999px;
  position: relative;
}
.eyebrow-pill .pulse::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 999px;
  border: 2px solid #1f8a4c;
  opacity: .5;
  animation: pulseRing 1.6s infinite;
}
@keyframes pulseRing { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(1.8);opacity:0} }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 3px;
}
.hero .sub {
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 26px;
  max-width: 54ch;
  font-weight: 500;
}
.hero .sub strong { color: var(--ink); font-weight: 800; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 17px 26px;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 30px rgba(243,184,5,.4);
  transition: transform .12s, background .12s, box-shadow .12s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.45) 50%, transparent 80%);
  transform: translateX(-120%);
  pointer-events: none;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(243,184,5,.48); }
.btn-primary:hover::before { animation: shine 1s cubic-bezier(.2,.7,.2,1); }
@keyframes shine { to { transform: translateX(120%); } }
.btn-primary .arr { font-size: 17px; line-height: 1; transition: transform .15s; }
.btn-primary:hover .arr { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 16px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  transition: border-color .12s, background .12s;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-sunk); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: start;
  gap: 22px 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero-stats .stat .num em { font-style: normal; color: var(--accent); }
.hero-stats .stat .num .slash { font-size: 15px; color: var(--ink-mute); font-weight: 700; }
.hero-stats .stat .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 7px;
  line-height: 1.35;
}
.hero-stats .stat .lbl .stars { color: var(--star); letter-spacing: 1px; font-size: 11px; margin-right: 5px; }
@media (max-width: 720px) {
  .hero-stats { gap: 18px 32px; }
}

/* ---- Hero reviews (movido desde la banda de confianza) ---- */
.hero-reviews {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-reviews .hr-stars {
  color: var(--star);
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-reviews .hr-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero-reviews .hr-num .slash { font-size: 14px; color: var(--ink-mute); font-weight: 700; }
.hero-reviews .hr-pill {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid #f3d77f;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  line-height: 1;
}

/* Badges Trustpilot + Revi */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.hero-badge:hover { border-color: var(--ink); box-shadow: 0 6px 16px rgba(31,26,18,.08); transform: translateY(-1px); }
.hero-badge svg { flex: none; }

/* ============ HERO VIDEO PLAYER ============ */
.hero-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  box-shadow:
    0 30px 70px rgba(31,26,18,.22),
    0 0 0 1px var(--line);
  cursor: pointer;
  transition: transform .25s;
}
.hero-video:hover { transform: translateY(-3px); box-shadow: 0 36px 90px rgba(31,26,18,.28), 0 0 0 1px var(--line-strong); }
.hero-video iframe,
.hero-video .hv-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.hv-poster {
  background:
    linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.55) 100%),
    radial-gradient(circle at 50% 50%, #2a2218 0%, #0e0a07 80%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
}
.hv-poster img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* El PNG del póster trae barras negras laterales incrustadas: ampliamos para recortarlas. */
  transform: scale(1.26);
  opacity: 1;
}
.hv-poster::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
}
.hv-play {
  position: relative;
  z-index: 2;
  width: 92px; height: 92px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  color: #fff;
  border: 3.5px solid #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transition: transform .15s, background .2s;
}
.hero-video:hover .hv-play { transform: scale(1.06); background: rgba(0,0,0,.28); }
.hv-play svg { margin-left: 6px; }
.hv-cap {
  position: absolute;
  left: 22px; bottom: 20px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.hv-cap .rec {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff4040;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hv-cap small { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.65); letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 720px) {
  .hv-play { width: 72px; height: 72px; }
  .hv-cap { left: 14px; bottom: 12px; font-size: 12px; }
}

/* ============ TRUST BAND (cream) — opiniones + logos en chips ============ */
.logos {
  background: var(--bg);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.trust-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 38px;
}
.trust-rating .tr-stars {
  color: var(--star);
  font-size: 26px;
  letter-spacing: 3px;
  line-height: 1;
}
.trust-rating .tr-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-rating .tr-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 58px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.trust-rating .tr-num small { font-size: 0.42em; color: var(--ink-mute); font-weight: 700; }
.trust-rating .tr-count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: -0.02em;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid #f3d77f;
  padding: 4px 14px;
  border-radius: var(--r-pill);
}
.trust-rating .tr-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}
.trust-rating .tr-sub strong { color: var(--ink); }
.trust-rating .tr-platforms {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mute);
  margin-top: 2px;
}
.trust-rating .tr-platforms b { color: #00B67A; font-weight: 800; }

.logos .lh {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.logos .lh em { font-style: normal; color: var(--accent-ink); }
.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.logo-track {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  animation: logoScroll 36s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
.logo-chip {
  flex-shrink: 0;
  height: 96px;
  width: 200px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(31,26,22,.08);
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  transition: transform .15s, box-shadow .15s;
}
.logo-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.logo-chip img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: .9;
  filter: invert(1) brightness(.15);
}
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 720px) {
  .logos { padding: 44px 0 48px; }
  .logo-track { gap: 12px; }
  .logo-chip { height: 78px; width: 156px; border-radius: 14px; }
  .logo-chip img { height: 32px; max-width: 118px; }
}

/* ============ SECTION CHROME ============ */
.section { padding: 88px 0; }
.section.tight { padding: 56px 0; }
.section.alt { background: var(--bg-sunk); }
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section.tight { padding: 36px 0; }
}

.sec-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.sec-head.left { margin-left: 0; text-align: left; max-width: 760px; }
.sec-head .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nav);
  margin-bottom: 12px;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  text-wrap: balance;
  color: var(--ink);
}
.sec-head h2 em {
  font-style: normal;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 2px 10px;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.sec-head .lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
  max-width: 60ch;
}
.sec-head.center .lead { margin-left: auto; margin-right: auto; }

/* ============ POR QUÉ NOSOTROS — pillar grid ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr 1fr; gap: 12px; } }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  position: relative;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.pillar .pi {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.pillar:nth-child(2) .pi { background: var(--nav-soft); color: var(--nav); }
.pillar:nth-child(3) .pi { background: #fbecd4; color: #8a5800; }
.pillar:nth-child(4) .pi { background: #f0e7d6; color: var(--ink); }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.pillar p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pillar .pi-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

/* ============ CASOS DE ÉXITO — case cards (cream surface) ============ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.case {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.case .case-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-sunk);
  overflow: hidden;
}
.case .case-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.case:hover .case-photo { transform: scale(1.06); }
.case image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.case .case-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
}
.case .case-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border: 1px solid #f3d77f;
  border-radius: var(--r-pill);
  margin-bottom: 6px;
}
.case .case-tag.teal { background: var(--nav-soft); color: var(--nav); border-color: #b8d8d0; }
.case h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.case .case-meta { font-size: 13px; color: var(--ink-soft); font-weight: 600; line-height: 1.45; }
.case.large { grid-column: span 6; }
.case.small { grid-column: span 3; }
.case.small .case-img-wrap { aspect-ratio: 4/5; }
.case.wide { grid-column: span 6; }
@media (max-width: 900px) {
  .case.large, .case.wide { grid-column: span 6; }
  .case.small { grid-column: span 6; }
  .case.small .case-img-wrap { aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .case.large, .case.wide, .case.small { grid-column: span 12; }
}

/* ============ USE CASES ============ */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .usecases { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .usecases { grid-template-columns: 1fr; } }
.uc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.uc:hover { border-color: var(--accent); box-shadow: var(--shadow-2); transform: translateY(-3px); }
.uc .uc-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.uc:nth-child(2) .uc-ico { background: var(--nav-soft); color: var(--nav); }
.uc:nth-child(4) .uc-ico { background: var(--nav-soft); color: var(--nav); }
.uc:nth-child(6) .uc-ico { background: var(--nav-soft); color: var(--nav); }
.uc h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.uc p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ PROCESS (cream surface) ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.step .step-n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin: -4px 0 10px;
  opacity: .9;
}
.step:nth-child(2) .step-n { color: var(--nav); }
.step:nth-child(3) .step-n { color: var(--accent); }
.step:nth-child(4) .step-n { color: var(--nav); }
.step h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.step::after {
  content: "";
  position: absolute;
  top: 38px; right: -10px;
  width: 22px; height: 1px;
  border-top: 2px dashed var(--line-strong);
}
.step:last-child::after { display: none; }
@media (max-width: 980px) { .step::after { display: none; } }

/* ============ QUÉ INCLUYE — checklist on image ============ */
.includes-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .includes-wrap { grid-template-columns: 1fr; gap: 32px; } }
.inc-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-3);
  background: var(--bg-sunk);
  border: 1px solid var(--line);
}
.inc-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.inc-img .inc-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inc-img .tag {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  z-index: 2;
  pointer-events: none;
}
.inc-img .tag .d { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.inc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.inc-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .15s, transform .12s;
}
.inc-list li:hover { border-color: var(--accent); transform: translateX(2px); }
.inc-list .ck {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  margin-top: 1px;
}
.inc-list strong { display: block; font-family: var(--font-display); font-weight: 800; color: var(--ink); margin-bottom: 2px; font-size: 14.5px; }
.inc-list span { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* ============ FEATURED QUOTE (under cases) ============ */
.feat-quote {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 22px;
  align-items: start;
  box-shadow: var(--shadow-1);
  position: relative;
}
.feat-quote .fq-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 96px;
  line-height: .7;
  color: var(--accent);
  grid-row: 1 / span 2;
  align-self: start;
}
.feat-quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  margin: 6px 0 0;
  text-wrap: pretty;
  max-width: 60ch;
}
.feat-quote p strong { font-weight: 800; }
.feat-quote .fq-who {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.feat-quote .fq-av {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--nav);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
}
.feat-quote .fq-name { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 14px; }
.feat-quote .fq-role { font-size: 12px; color: var(--ink-mute); font-weight: 600; }
.feat-quote .fq-stars { margin-left: auto; color: var(--star); letter-spacing: 1px; font-size: 14px; }
@media (max-width: 720px) {
  .feat-quote { padding: 22px; grid-template-columns: 1fr; }
  .feat-quote .fq-mark { font-size: 64px; }
  .feat-quote .fq-stars { margin-left: 0; }
}

/* ============ SHORTS (Así hacemos nuestras figuras) ============ */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .shorts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .shorts-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

.short {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  box-shadow: var(--shadow-2);
  cursor: pointer;
  isolation: isolate;
  transition: transform .2s, box-shadow .2s;
}
.short:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.short .short-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 3;
}
.short.playing::after,
.short.playing .short-head,
.short.playing .short-play,
.short.playing .short-cap { display: none; }
.short image-slot,
.short .short-bg,
.short .short-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.short .short-bg,
.short .short-photo { object-fit: cover; }
.short::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, transparent 22%, transparent 60%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}
.short .short-head {
  position: absolute; top: 12px; left: 12px; right: 12px;
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
  color: #fff;
  pointer-events: none;
}
.short .short-head .av {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8a3d 100%);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  color: var(--ink);
  flex-shrink: 0;
}
.short .short-head .ti {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.short .short-head .ti small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: .8;
  margin-top: 1px;
}
.short .short-head .ti .ti-ic {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 2px;
  color: var(--accent);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
}
.short .short-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  transition: transform .15s;
  pointer-events: none;
}
.short:hover .short-play { transform: translate(-50%, -50%) scale(1.1); }
.short .short-play svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.6));
}
.short .short-cap {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 14px;
  z-index: 2;
  pointer-events: none;
}
.short .short-cap span {
  display: inline;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: #fff;
  background: rgba(0,0,0,.78);
  padding: 3px 7px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-transform: uppercase;
}
.short .short-cap span em { font-style: normal; background: var(--accent); color: var(--ink); padding: 0 4px; }
.strip {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.005em;
  border-top: 1px solid #d9a402;
  border-bottom: 1px solid #d9a402;
}
.strip-track {
  display: inline-flex; align-items: center; gap: 28px;
  animation: stripScroll 32s linear infinite;
  padding-right: 28px;
}
.strip-track .di { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-ink); display: inline-block; }
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ FORM SECTION (cream con gradient suave amarillo) ============ */
.form-section {
  background:
    radial-gradient(700px 360px at 100% 0%, var(--accent-soft), transparent 65%),
    radial-gradient(500px 400px at 0% 100%, var(--nav-soft), transparent 65%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .form-grid { grid-template-columns: 1fr; gap: 32px; } }

.form-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.24;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--ink);
  text-wrap: balance;
}
.form-left h2 em {
  font-style: normal;
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 2px 10px;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.form-left .fl-lead {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 48ch;
  line-height: 1.55;
}
.form-left .fl-promise {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 10px;
}
.form-left .fl-promise li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}
.form-left .fl-promise li .ck {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
}
.fl-contact {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.fl-contact strong { color: var(--ink); font-weight: 800; font-family: var(--font-display); }
.fl-contact a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.fl-contact a:hover { color: var(--accent-ink); }

/* Form card (LIGHT — same DNA as Boceto gratis lead-card) */
.form-card {
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-2);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ffd862, var(--accent));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
@media (max-width: 720px) { .form-card { padding: 22px; } }
.form-card .fc-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.form-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--ink);
}
.form-card .fc-hint { font-size: 13.5px; color: var(--ink-mute); margin: 0 0 22px; font-weight: 600; }

.field2 { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field2 label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
}
.field2 label .req { color: var(--accent-hover); margin-left: 3px; }
.field2 label .opt { color: #9a9286; font-weight: 600; font-size: .85em; margin-left: 4px; }
.field2 input,
.field2 textarea,
.field2 select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  transition: border-color .12s, background .12s, box-shadow .15s;
  min-height: 48px;
}
.field2 input::placeholder, .field2 textarea::placeholder { color: var(--ink-mute); font-weight: 500; }
.field2 input:focus, .field2 textarea:focus, .field2 select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent);
}
.field2 textarea { resize: vertical; min-height: 92px; }
.field2 select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231f1a16' stroke-width='3' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field2 .err { font-size: 12px; color: #c0392b; font-weight: 700; display: none; }
.field2.error input, .field2.error select, .field2.error textarea { border-color: #c0392b; }
.field2.error .err { display: block; }

.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .row2 { grid-template-columns: 1fr; } }

/* Volume tier as chips */
.tier-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tier-chips .tc {
  padding: 9px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-ui);
  transition: border-color .12s, background .12s, color .12s;
}
.tier-chips .tc:hover { color: var(--ink); border-color: var(--ink); }
.tier-chips .tc.on {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

/* Aviso para pedidos pequeños (1-2 figuras) → desviar a la tienda / WhatsApp */
.tier-note { margin-top: 12px; padding: 14px 16px; border: 1.5px solid var(--accent); border-radius: 14px; background: var(--accent-soft, #fff4cc); }
.tier-note[hidden] { display: none; }
.tier-note p { margin: 0 0 12px; font-size: 13.5px; line-height: 1.5; color: var(--ink); }
.tier-note__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.tier-note .tn-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: var(--r-pill); font-size: 13px; font-weight: 700; font-family: var(--font-ui); text-decoration: none; transition: transform .12s, filter .12s; }
.tier-note .tn-btn--primary { background: var(--ink); color: #fff; }
.tier-note .tn-btn--wa { background: #25d366; color: #fff; }
.tier-note .tn-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.tier-note .tn-btn svg { width: 15px; height: 15px; }

.form-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 17px 22px;
  border-radius: var(--r-md);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
  box-shadow: 0 12px 28px rgba(243,184,5,.4);
  transition: transform .1s, background .12s, box-shadow .12s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.form-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.45) 50%, transparent 80%);
  transform: translateX(-120%);
  pointer-events: none;
}
.form-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 16px 34px rgba(243,184,5,.5); }
.form-cta:hover::before { animation: shine 1s cubic-bezier(.2,.7,.2,1); }
.form-cta:active { transform: translateY(0); }

.legal2 {
  display: flex; align-items: flex-start; gap: 9px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
  cursor: pointer;
  font-weight: 500;
}
.legal2 input {
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--accent-ink);
}
.legal2 a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

/* Success */
.form-card.sent .lc-form,
.form-card.sent .fc-eyebrow,
.form-card.sent h3,
.form-card.sent .fc-hint { display: none; }
.fc-success { display: none; text-align: center; padding: 16px 4px 8px; }
.form-card.sent .fc-success { display: block; }
.fc-success .check {
  width: 68px; height: 68px;
  border-radius: 999px;
  background: var(--nav);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  animation: popIn .5s cubic-bezier(.2,.9,.3,1.4);
}
@keyframes popIn { 0%{transform:scale(0)} 60%{transform:scale(1.15)} 100%{transform:scale(1)} }
.fc-success h3 { font-family: var(--font-display); font-weight: 800; color: var(--ink); margin: 0 0 8px; font-size: 22px; }
.fc-success p { margin: 0 0 4px; color: var(--ink-soft); font-size: 14px; }

/* ============ FAQ ============ */
.faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 10px 14px;
}
@media (max-width: 700px) {
  .faq-list { grid-template-columns: 1fr; }
}
.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.faq[open] { border-color: var(--accent); box-shadow: var(--shadow-1); }
.faq summary {
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pl {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-sunk);
  color: var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .2s, background .15s, color .15s;
  font-size: 18px; font-weight: 800;
  line-height: 1;
}
.faq[open] summary .pl { transform: rotate(45deg); background: var(--accent); color: var(--accent-ink); }
.faq .a {
  padding: 0 22px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ FOOTER ============ */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
  font-size: 13.5px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand .bn {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}
.foot-brand .bn em { font-style: normal; color: var(--accent); }
.foot-brand p { margin: 0 0 14px; max-width: 32ch; line-height: 1.55; }
.foot-col h5 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 13px; }
.foot-col a:hover { color: #fff; }
.foot-col .so { display: flex; align-items: center; gap: 8px; }
.foot-col .so .ic { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .12s; }
.foot-col .so .ic:hover { background: rgba(255,255,255,.14); }
.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 12px;
}
.foot-bot .links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
  align-items: center; gap: 10px;
  box-shadow: 0 -6px 24px rgba(31,26,18,.08);
}
.sticky-cta .info {
  flex: 1; display: flex; flex-direction: column;
  font-size: 11px; line-height: 1.3;
  color: var(--ink-mute); font-weight: 600;
}
.sticky-cta .info strong { color: var(--ink); font-size: 13px; font-weight: 800; font-family: var(--font-display); }
.sticky-cta a {
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 13px 18px; border-radius: var(--r-pill);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 12px rgba(243,184,5,.4);
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

