/* Kit Digital · Landing styles · v3 (multi-page · white bg · full width) */

:root {
  /* Brand palette oficial — Kit Digital LATAM PPTX 2024 */
  --ink: #2A0E60;            /* deep brand indigo */
  --ink-2: #3F1F84;          /* mid-deep purple */
  --ink-3: #6B4E9C;          /* desaturated text */
  --ink-4: #9B8AB8;           /* tertiary text */
  --line: #ECE6F0;
  --line-2: #E1D9E8;
  --paper: #FFFFFF;
  --bg: #FFFFFF;
  --soft: #FAF8FB;
  --cream: #F5F0FB;          /* shifted from beige to lavender-cream */
  --cream-2: #EAE0FB;
  --purple: #7B5CE5;         /* brand mid lavender */
  --purple-2: #4D2998;       /* brand deep */
  --purple-3: #A892ED;       /* brand light lavender */
  --purple-soft: #E8DEFB;    /* brand softest */
  --yellow: #FFD93D;         /* accent (uso limitado, no es brand) */
  --yellow-soft: #FFF3B0;
  --blue: #6CA0FF;
  --blue-soft: #DDEAFF;
  --peach: #FAC9A6;
  --peach-soft: #FBE3D2;
  --mint: #B5E0BB;
  --pink: #FFB8D6;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01","cv11";
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}
em, i { font-style: normal; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }

.display { font-weight: 500; letter-spacing: -0.035em; line-height: 0.96; }
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* FULL WIDTH — sin max-width en ningún wrap, padding generoso */
.wrap,
.wrap-narrow,
.wrap-tight { max-width: 100%; margin: 0 auto; padding: 0 64px; }

@media (max-width: 900px) {
  .wrap, .wrap-narrow, .wrap-tight { padding: 0 24px; }
}

/* ===== NAV (con MEGA MENU) ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(1.2) blur(16px);
  -webkit-backdrop-filter: saturate(1.2) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-color: var(--line-2); background: rgba(255,255,255,.95); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 32px; padding: 0 64px; }
@media (max-width: 900px) { .nav-inner { padding: 0 24px; } }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px -2px rgba(42, 14, 96, .3);
}

.nav-links {
  display: flex; gap: 4px; align-items: center;
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
}
.nav-links > .nav-item {
  position: relative;
}
/* Divider vertical difuminado entre items del top nav */
.nav-links > .nav-item + .nav-item::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(60, 30, 120, 0.10) 30%,
    rgba(60, 30, 120, 0.10) 70%,
    transparent 100%);
  pointer-events: none;
}
.nav-links a, .nav-links button.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: 10px;
  color: var(--ink-2); font-weight: 500; font-size: 14.5px;
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links button.nav-trigger:hover { background: var(--soft); color: var(--purple-2); }
.nav-links button.nav-trigger.open { background: var(--soft); color: var(--purple-2); }
.nav-links button.nav-trigger svg { transition: transform .2s; }
.nav-links button.nav-trigger.open svg { transform: rotate(180deg); }

.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav-right .ingresar {
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
  padding: 8px 12px; border-radius: 10px;
}
.nav-right .ingresar:hover { color: var(--purple-2); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 20px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 600;
  transition: background .15s, transform .15s;
}
.nav-cta:hover { background: var(--purple-2); transform: translateY(-1px); }

/* MEGA MENU panel */
.mega {
  position: fixed; left: 0; right: 0; top: 76px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 80px -40px rgba(20,4,30,.2);
  z-index: 49;
  display: none;
  animation: megaFade .2s ease;
}
.mega.open { display: block; }
@keyframes megaFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-inner {
  display: grid; grid-template-columns: 2.5fr 1fr; gap: 32px;
  padding: 36px 64px;
}
.mega-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  transition: background .15s;
  cursor: pointer;
  position: relative;
}
.mega-item:hover { background: var(--soft); }
/* Divider vertical difuminado entre columnas (oculto en última columna y al hover) */
.mega-item:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  right: 0;
  top: 16%;
  bottom: 16%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(60, 30, 120, 0.10) 25%,
    rgba(60, 30, 120, 0.10) 75%,
    transparent 100%);
  pointer-events: none;
  transition: opacity .15s;
}
/* Divider horizontal difuminado entre filas (oculto en última fila) */
.mega-item:not(:nth-last-child(-n+3))::before {
  content: '';
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(60, 30, 120, 0.10) 25%,
    rgba(60, 30, 120, 0.10) 75%,
    transparent 100%);
  pointer-events: none;
  transition: opacity .15s;
}
/* Fade out dividers cuando el item o sus vecinos están en hover (efecto limpio) */
.mega-item:hover::after,
.mega-item:hover::before {
  opacity: 0;
}
.mega-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .15s;
}
.mega-item:hover .mega-ic { transform: scale(1.05) rotate(-3deg); }
.mega-ic.purple { background: var(--purple-soft); color: var(--purple-2); }
.mega-ic.yellow { background: var(--yellow-soft); color: #8A6C0B; }
.mega-ic.blue { background: var(--blue-soft); color: #1E5BB5; }
.mega-ic.peach { background: var(--peach-soft); color: #B55A1E; }
.mega-ic.mint { background: #DBF0DE; color: #0C8A4E; }
.mega-ic.dark { background: var(--ink); color: var(--yellow); }
.mega-text b {
  display: block; font-size: 14.5px; font-weight: 600;
  color: var(--ink); letter-spacing: -.005em;
}
.mega-text span {
  display: block; font-size: 12.5px; color: var(--ink-3);
  margin-top: 2px; line-height: 1.4;
}
.mega-feature {
  background: linear-gradient(160deg, var(--purple), var(--purple-2));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.mega-feature::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--yellow); opacity: .9;
}
.mega-feature .eyebrow { color: rgba(255,255,255,.6); position: relative; z-index: 1; }
.mega-feature h4 {
  font-size: 22px; font-weight: 600;
  margin: 12px 0 8px; line-height: 1.15; max-width: 14ch;
  position: relative; z-index: 1;
}
.mega-feature p { font-size: 13.5px; opacity: .8; margin: 0; max-width: 26ch; position: relative; z-index: 1; }
.mega-feature .mega-cta {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  font-size: 13px; font-weight: 600;
  position: relative; z-index: 1;
  transition: transform .15s;
  width: max-content;
}
.mega-feature .mega-cta:hover { transform: translateX(2px); }

/* mega menu - resources variant */
.mega.mega-resources .mega-grid { grid-template-columns: repeat(2, 1fr); }

/* mobile burger */
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 10px; background: var(--soft); align-items: center; justify-content: center; }
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mega { display: none !important; }
  .nav-right .ingresar { display: none; }
}

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: #fff;
  display: none;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu nav {
  padding: 16px 24px;
}
.mobile-menu nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-menu .mob-section {
  margin-top: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-4);
  padding: 14px 0 6px;
}
.mobile-menu .mob-cta {
  margin: 24px;
  display: block; text-align: center;
  background: var(--ink); color: #fff;
  padding: 16px; border-radius: 999px;
  font-weight: 600;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-size: 16px; font-weight: 600;
  transition: all .18s ease;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--purple-2); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.4);
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: #FFCD00; }
.btn .arr {
  width: 18px; height: 18px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  transition: transform .2s;
}
.btn:hover .arr { transform: translateX(3px); }
.btn-ghost .arr { background: rgba(0,0,0,.08); }

/* ===== HERO ===== */
.hero { position: relative; padding: 50px 0 0; overflow: hidden; }
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; animation: float 12s ease-in-out infinite; }
.blob.b1 {
  width: 380px; height: 380px;
  right: -80px; top: 60px;
  background: radial-gradient(circle at 30% 30%, var(--purple-3), var(--purple) 70%);
  opacity: .12;
}
.blob.b2 {
  width: 240px; height: 240px;
  left: -60px; top: 280px;
  background: var(--yellow);
  opacity: .25;
  animation-delay: -3s;
}
.blob.b3 {
  width: 180px; height: 180px;
  right: 40%; top: 380px;
  background: var(--peach);
  opacity: .35;
  animation-delay: -6s;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-15px,20px) scale(.97); }
}

.hero-inner { position: relative; z-index: 1; }

.kicker-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px 6px 6px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(20,4,30,.04);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.kicker-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(20,4,30,.08); }
.kicker-pill .badge {
  background: var(--purple); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}
.kicker-pill .arr-r { color: var(--ink-4); transition: transform .2s; }
.kicker-pill:hover .arr-r { transform: translateX(3px); color: var(--purple-2); }

h1.hero-title {
  font-size: clamp(56px, 8.4vw, 124px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 28px 0 0;
  max-width: 18ch;
  color: var(--ink);
}
h1.hero-title .swap {
  display: inline-block;
  position: relative;
  color: var(--purple);
}
h1.hero-title .swap::after {
  content: '';
  position: absolute; left: 0; bottom: 0.05em;
  width: 100%; height: 0.12em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
}

.hero-lede {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 450;
}
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (smaller for non-home pages) */
.page-hero { padding: 80px 0 60px; position: relative; }
.page-hero h1 {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 16px 0 0;
  max-width: 18ch;
}
.page-hero .lede { margin-top: 24px; max-width: 60ch; font-size: 19px; line-height: 1.55; color: var(--ink-2); }
.page-hero .ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Interactive switcher */
.hero-switcher {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 14px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  box-shadow: 0 30px 80px -40px rgba(20,4,30,.2);
  overflow: hidden;
}
.switcher-tabs { display: flex; flex-direction: column; gap: 6px; padding: 12px; }
.switcher-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px 14px; }
.switcher-head h4 { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
.switcher-head .live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #0C8A4E; font-weight: 600; }
.switcher-head .live .dot { width: 7px; height: 7px; border-radius: 50%; background: #0C8A4E; box-shadow: 0 0 0 3px rgba(12,138,78,.15); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 6px rgba(12,138,78,.05); } }

.stab {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
  width: 100%;
}
.stab:hover { background: var(--soft); }
.stab.active { background: var(--ink); color: #fff; }
.stab .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--purple-soft);
  color: var(--purple-2);
  flex-shrink: 0;
  transition: background .15s;
}
.stab.active .ic { background: var(--yellow); color: var(--ink); }
.stab b { font-size: 14.5px; font-weight: 600; display: block; }
.stab span.sub { font-size: 12.5px; opacity: .65; display: block; line-height: 1.3; margin-top: 2px; }
.stab .chev { margin-left: auto; opacity: 0; transition: opacity .15s, transform .15s; }
.stab.active .chev, .stab:hover .chev { opacity: 1; }
.stab:hover .chev { transform: translateX(2px); }

.switcher-panel {
  border-radius: var(--radius-lg);
  background: var(--cream);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  transition: background .3s ease;
}
.switcher-panel[data-key="sitio"] { background: linear-gradient(135deg, #EBE3FF, #FAF8FB); }
.switcher-panel[data-key="factura"] { background: linear-gradient(135deg, #FFF3B0, #FAF8FB); }
.switcher-panel[data-key="monitor"] { background: linear-gradient(135deg, #DDEAFF, #FAF8FB); }
.switcher-panel[data-key="dominio"] { background: linear-gradient(135deg, #FBE3D2, #FAF8FB); }
.switcher-panel[data-key="market"] { background: linear-gradient(135deg, #B5E0BB, #FAF8FB); }

.panel-content { display: none; }
.panel-content.active { display: block; animation: fadein .35s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.panel-tag {
  display: inline-flex; gap: 8px; align-items: center;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(20,4,30,.06);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
}
.panel-tag .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); }
.panel-content[data-key="factura"] .panel-tag .pip { background: #C9A100; }
.panel-content[data-key="monitor"] .panel-tag .pip { background: var(--blue); }
.panel-content[data-key="dominio"] .panel-tag .pip { background: #B55A1E; }
.panel-content[data-key="market"] .panel-tag .pip { background: #2E8B3F; }

.panel-content h3 { font-size: 32px; font-weight: 600; margin: 14px 0 10px; letter-spacing: -.025em; line-height: 1.05; max-width: 16ch; }
.panel-content p { color: var(--ink-2); font-size: 15px; max-width: 42ch; margin: 0; }

.mini-mock {
  margin-top: 24px; background: #fff; border-radius: 14px;
  padding: 16px; box-shadow: 0 10px 30px -16px rgba(20,4,30,.15);
  border: 1px solid rgba(20,4,30,.04);
}
.mini-mock-head { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.mini-mock-head span { width: 8px; height: 8px; border-radius: 50%; background: #E4E4EB; }
.mini-mock-head span:nth-child(1) { background: #FF6057; }
.mini-mock-head span:nth-child(2) { background: #FFBD2E; }
.mini-mock-head span:nth-child(3) { background: #28C840; }
.mini-mock-head .url-mini { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--ink-4); margin-left: 8px; }

.mock-rows { display: flex; flex-direction: column; gap: 8px; }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; background: var(--soft); font-size: 12.5px; }
.mock-row .pill { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 5px; background: var(--purple-soft); color: var(--purple-2); }
.mock-row .pill.green { background: #E2F4E5; color: #0C8A4E; }
.mock-row .pill.yellow { background: #FFF3B0; color: #8A6C0B; }
.mock-row .amt { margin-left: auto; font-weight: 600; }
.mock-row .arrow-up { color: #0C8A4E; font-size: 11px; font-weight: 600; }
.mock-uptime { display: grid; grid-template-columns: repeat(20,1fr); gap: 3px; margin-top: 10px; }
.mock-uptime span { height: 22px; border-radius: 3px; background: #2EAD6A; }
.mock-uptime span.warn { background: #F2B544; }
.mock-uptime span.down { background: #E25555; }

/* ============= PRICING TEASER (home) ============= */
.pricing-teaser { padding: 80px 0 56px; }
.pricing-teaser .pt-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.pricing-teaser .pt-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 8px 0 0;
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pt-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pt-card:hover { border-color: var(--ink-4); transform: translateY(-2px); box-shadow: 0 16px 48px -24px rgba(20,4,30,.16); }
.pt-card.pt-featured {
  border-color: var(--purple);
  box-shadow: 0 12px 40px -16px rgba(88,38,220,.25);
  background: linear-gradient(180deg, #FBFAFE 0%, #fff 30%);
}
.pt-card.pt-featured:hover { transform: translateY(-3px); box-shadow: 0 20px 56px -20px rgba(88,38,220,.32); }
.pt-badge {
  position: absolute;
  top: -10px;
  left: 28px;
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.pt-card-head { display: flex; flex-direction: column; gap: 4px; min-height: 50px; }
.pt-tier {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--purple);
}
.pt-target {
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.4;
}
.pt-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  margin-top: 6px;
}
.pt-currency { font-size: 22px; font-weight: 500; color: var(--ink); }
.pt-amount { font-size: 56px; font-weight: 600; color: var(--ink); letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.pt-period { font-size: 14.5px; color: var(--ink-3); margin-left: 4px; }
.pt-day {
  font-size: 12px;
  color: var(--ink-4);
  margin: -2px 0 14px;
  font-family: 'JetBrains Mono', monospace;
}
.pt-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pt-features li {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  position: relative;
  padding-left: 22px;
}
.pt-features li::before {
  content: '';
  position: absolute;
  left: 2px; top: 5px;
  width: 12px; height: 8px;
  border-left: 1.8px solid var(--purple);
  border-bottom: 1.8px solid var(--purple);
  transform: rotate(-45deg);
}
.pt-link {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: none;
  margin-top: auto;
  padding-top: 4px;
  transition: color .15s;
}
.pt-link:hover { color: var(--purple); }
.pt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: auto;
  transition: background .15s, transform .15s;
}
.pt-cta:hover { background: var(--purple); transform: translateY(-1px); }
.pt-foot {
  text-align: center;
  margin: 28px 0 0;
  font-size: 13.5px;
  color: var(--ink-3);
}
.pt-foot a {
  color: var(--purple);
  font-weight: 500;
  text-decoration: none;
}
.pt-foot a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .pricing-teaser .pt-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .pt-grid { grid-template-columns: 1fr; gap: 14px; }
  .pt-card { padding: 28px 22px 24px; }
  .pt-amount { font-size: 48px; }
}

/* ============= TEAM (San Salvador) ============= */
.team { padding: 96px 0 64px; background: var(--soft); border-top: 1px solid var(--line-2); }
.team-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.team-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 8px 0 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(20,4,30,.14);
  border-color: var(--ink-4);
}
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px -6px rgba(20,4,30,.22);
}
.team-avatar span {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  letter-spacing: .04em;
}
.team-name {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -.005em;
  color: var(--ink);
}
.team-role {
  font-size: 12.5px;
  color: var(--purple-2);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: .02em;
}
.team-bio {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.team-foot {
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}
.team-foot a { color: var(--purple-2); font-weight: 500; }
@media (max-width: 900px) {
  .team-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
  .team-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============= FAQ ============= */
.faq { padding: 96px 0 80px; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 8px 0 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-q {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.faq-q:hover { border-color: var(--ink-4); }
.faq-q[open] {
  border-color: var(--purple);
  box-shadow: 0 8px 24px -12px rgba(88,38,220,.16);
}
.faq-q summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  user-select: none;
  transition: background .12s;
}
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary:hover { background: var(--soft); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--ink-2);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .25s, background .15s, color .15s;
}
.faq-q[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.faq-a {
  padding: 0 24px 24px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.65;
  border-top: 1px solid var(--line-2);
  padding-top: 16px;
  margin: 0 24px;
  margin-top: -4px;
}
.faq-a p { margin: 0; }
.faq-foot {
  text-align: center;
  margin: 36px auto 0;
  max-width: 56ch;
  font-size: 13.5px;
  color: var(--ink-3);
}
.faq-foot a { color: var(--purple-2); font-weight: 500; }
@media (max-width: 900px) {
  .faq-q summary { padding: 16px 18px; font-size: 14.5px; }
  .faq-a { padding: 0 18px 20px; margin: 0 18px; }
}

/* ============= STICKY CTA — full width, pin to bottom ============= */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  z-index: 90;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-top: 1px solid var(--line-2);
  padding: 14px 24px calc(14px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 28px -10px rgba(20,4,30,.1);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: none;
}
.sticky-cta-text {
  flex: 1; min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-2);
}
.sticky-cta-text b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
  letter-spacing: -.005em;
}
.sticky-cta a.btn {
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 13.5px;
}
@media (max-width: 600px) {
  .sticky-cta { padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); }
  .sticky-cta-inner { gap: 10px; }
  .sticky-cta-text { font-size: 12px; }
  .sticky-cta-text b { font-size: 13px; }
  .sticky-cta a.btn { padding: 10px 16px; font-size: 13px; }
}

/* ============= ANCHOR SUB-NAV (sticky home) ============= */
.subnav {
  display: none;
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
  transition: opacity .2s, transform .2s;
}
.subnav.is-visible { display: block; }
.subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  gap: 22px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: none;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .12s;
  position: relative;
}
.subnav a:hover { color: var(--ink); }
.subnav a.is-active {
  color: var(--purple);
}
.subnav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--purple);
  border-radius: 1px;
}
@media (max-width: 768px) {
  .subnav-inner { padding: 10px 18px; gap: 16px; }
  .subnav { display: none !important; } /* nav alterno hace de nav-burger */
}

/* hero trust marquee (deprecated) */
.hero-trust {
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}
.hero-trust .lbl { font-size: 13px; color: var(--ink-3); font-weight: 500; line-height: 1.4; }
.hero-trust .lbl b { color: var(--ink); display: block; font-weight: 700; font-size: 14.5px; }

/* hero testimonial — reemplaza marquee */
.hero-testimonial {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
.ht-card {
  position: relative;
  margin: 0;
  padding: 32px 32px 28px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  box-shadow: 0 2px 12px -6px rgba(20,4,30,.06);
}
.ht-quote-mark {
  position: absolute;
  top: 12px; left: 22px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--purple);
  opacity: .18;
  pointer-events: none;
}
.ht-quote {
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 450;
  letter-spacing: -.005em;
  margin: 0 0 24px;
  padding-left: 4px;
  position: relative;
  z-index: 1;
}
.ht-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.ht-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8A5A2B, #4A2C13);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(20,4,30,.18);
}
.ht-initials {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  letter-spacing: .04em;
}
.ht-author-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.ht-author-name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.ht-author-role { font-size: 12.5px; color: var(--ink-4); }
.ht-author-link {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--soft);
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: background .15s, color .15s, transform .15s;
}
.ht-author-link:hover {
  background: var(--purple);
  color: #fff;
  transform: translate(2px, -2px);
}

.ht-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-content: center;
}
.ht-stat {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.ht-stat-num {
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ht-stat-num sup {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  margin-left: 2px;
  letter-spacing: 0;
  vertical-align: super;
}
.ht-stat-lbl {
  font-size: 11.5px;
  color: var(--ink-4);
  line-height: 1.35;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .hero-testimonial { grid-template-columns: 1fr; gap: 20px; }
  .ht-stats { grid-template-columns: 1fr 1fr 1fr; }
  .ht-card { padding: 28px 22px 22px; }
  .ht-quote { font-size: 16.5px; }
}
@media (max-width: 540px) {
  .ht-stats { grid-template-columns: 1fr; }
}
.marquee { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; gap: 60px; animation: scroll-x 35s linear infinite; width: max-content; align-items: center; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee .lg { font-size: 22px; font-weight: 700; color: var(--ink-2); opacity: .55; letter-spacing: -.02em; flex-shrink: 0; white-space: nowrap; }
.marquee .lg.mono { font-family: 'JetBrains Mono'; font-size: 18px; font-weight: 500; }
.marquee .lg.caps { letter-spacing: .25em; font-size: 17px; text-transform: uppercase; }

/* ===== SECTIONS ===== */
section.sec { padding: 120px 0; position: relative; }
.sec h2 {
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 0.98;
  margin: 18px 0 0;
  max-width: 22ch;
}
.sec h2 .accent { color: var(--purple); }
.sec .lede { margin-top: 22px; max-width: 58ch; font-size: 18px; line-height: 1.55; color: var(--ink-2); }

/* ===== Product grid (Deel-style cards) ===== */
.deel-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.pcard {
  grid-column: span 6;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(20,4,30,.18); }
.pcard.tall { grid-column: span 6; }
.pcard.wide { grid-column: span 12; min-height: 320px; flex-direction: row; align-items: center; gap: 60px; padding: 56px; }
.pcard.small { grid-column: span 4; min-height: 320px; padding: 32px; }

.pcard.purple { background: var(--purple); color: #fff; }
.pcard.cream { background: var(--cream-2); }
.pcard.yellow { background: var(--yellow); }
.pcard.peach { background: var(--peach-soft); }
.pcard.blue { background: var(--blue-soft); }
.pcard.mint { background: #DBF0DE; }
.pcard.dark { background: var(--ink); color: #fff; }

.pcard .pcard-num { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(20,4,30,.5); }
.pcard.purple .pcard-num, .pcard.dark .pcard-num { color: rgba(255,255,255,.55); }
.pcard h3 { font-size: 38px; font-weight: 500; letter-spacing: -.025em; line-height: 1.02; margin: 14px 0; max-width: 14ch; }
.pcard.wide h3 { font-size: 48px; max-width: 16ch; }
.pcard.small h3 { font-size: 28px; }
.pcard p { color: var(--ink-2); font-size: 15.5px; line-height: 1.5; margin: 0; max-width: 42ch; }
.pcard.purple p, .pcard.dark p { color: rgba(255,255,255,.78); }

.pcard .pcard-cta {
  margin-top: auto; padding-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600;
  color: var(--purple-2);
}
.pcard.purple .pcard-cta, .pcard.dark .pcard-cta, .pcard.yellow .pcard-cta { color: var(--ink); }
.pcard.purple .pcard-cta { color: #fff; }
.pcard .pcard-cta .arr-c {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  transition: transform .2s, background .2s;
}
.pcard.purple .pcard-cta .arr-c { background: #fff; color: var(--purple); }
.pcard.yellow .pcard-cta .arr-c { background: var(--ink); color: var(--yellow); }
.pcard:hover .arr-c { transform: translateX(3px) rotate(-12deg); }
.pcard-art { margin-top: 20px; flex: 1; display: flex; align-items: center; justify-content: center; min-height: 140px; }
.pcard.wide .pcard-art { flex: 1; align-self: stretch; }

/* STATS */
.stats {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  opacity: .35;
  pointer-events: none;
}
.stats::after {
  content: ''; position: absolute; left: -80px; bottom: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .15;
  filter: blur(20px);
  pointer-events: none;
}
.stats-head { max-width: 700px; position: relative; z-index: 1; }
.stats-head .eyebrow { color: rgba(255,255,255,.55); }
.stats-head h2 { color: #fff; }
.stats-head h2 .accent { color: var(--yellow); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; position: relative; z-index: 1; }
.stat .n { font-size: clamp(56px, 6vw, 84px); font-weight: 500; letter-spacing: -.04em; line-height: .95; }
.stat .n .small { font-size: .55em; font-weight: 500; opacity: .85; }
.stat .l { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.65); max-width: 26ch; line-height: 1.45; }
.stat .rule { width: 32px; height: 2px; background: var(--yellow); margin-bottom: 18px; opacity: .8; }

/* COVERAGE */
.coverage-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ccard {
  grid-column: span 2;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line-2);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ccard:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(20,4,30,.15); border-color: var(--purple-soft); }
.ccard.live {
  background: var(--purple); color: #fff;
  border-color: var(--purple);
  grid-column: span 4;
  display: flex; gap: 28px; align-items: flex-start;
  cursor: pointer;
}
.ccard.live .live-art {
  width: 140px; height: 140px;
  background: var(--yellow);
  border-radius: 24px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.flag-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(20,4,30,.06);
  font-size: 12px; font-weight: 600;
}
.ccard.live .flag-pill { background: rgba(255,255,255,.18); color: #fff; }
.ccard.soon .flag-pill { color: var(--ink-3); }
.flag-rect { width: 18px; height: 12px; border-radius: 2px; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,.05); }
.ccard h3 { font-size: 22px; font-weight: 600; margin: 16px 0 6px; letter-spacing: -.015em; }
.ccard.live h3 { font-size: 32px; margin-top: 14px; }
.ccard .meta { font-size: 13.5px; opacity: .7; line-height: 1.4; }
.ccard.live .meta { color: rgba(255,255,255,.78); opacity: 1; font-size: 15px; max-width: 32ch; }
.ccard .status-tag { margin-top: 18px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.ccard.soon .status-tag { color: var(--ink-4); }
.ccard.live .status-tag { color: var(--yellow); }

/* TESTIMONIALS */
.testimonials-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; }
.twall { margin-top: 56px; columns: 3; column-gap: 16px; }
.tcard {
  break-inside: avoid;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line-2);
  margin-bottom: 16px;
  display: inline-block; width: 100%;
}
.tcard.purple { background: var(--purple); color: #fff; border-color: var(--purple); }
.tcard.yellow { background: var(--yellow); border-color: var(--yellow); }
.tcard .stars { color: #FFAB00; font-size: 15px; letter-spacing: 2px; }
.tcard.purple .stars { color: var(--yellow); }
.tcard p { margin: 14px 0 18px; font-size: 16px; line-height: 1.45; font-weight: 500; letter-spacing: -.005em; }
.tcard .who { display: flex; gap: 12px; align-items: center; }
.tcard .who .av { width: 36px; height: 36px; border-radius: 50%; background: var(--cream-2); color: var(--ink); display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.tcard.purple .who .av { background: rgba(255,255,255,.18); color: #fff; }
.tcard .who b { font-size: 13.5px; font-weight: 600; display: block; }
.tcard .who span { font-size: 12px; opacity: .65; display: block; }

/* PRICING — billing toggle */
.billing-toggle {
  display: inline-flex;
  margin: 32px auto 0;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  gap: 4px;
}
.billing-toggle .bt-opt {
  background: transparent; border: 0;
  font: inherit;
  font-size: 14px; font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s, color .15s;
}
.billing-toggle .bt-opt:hover { color: var(--ink); }
.billing-toggle .bt-opt.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(20,4,30,.4);
}
.billing-toggle .bt-save {
  font-size: 11px; font-weight: 700;
  background: var(--yellow); color: var(--ink);
  padding: 3px 8px; border-radius: 999px;
  letter-spacing: .02em;
}
.billing-toggle .bt-opt.is-active .bt-save { background: var(--yellow); color: var(--ink); }

.price-note { font-size: 13px; color: var(--ink-3); margin-top: 6px; line-height: 1.4; }
.plan.featured .price-note { color: rgba(255,255,255,.7); }
.price-note .save { color: #0C8A4E; font-weight: 600; }
.plan.featured .price-note .save { color: var(--yellow); }

/* PRICING GRID — 3 main cards (Multi-canal · Multi-sede · Multi-país) */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

/* ALL PLANS INCLUDE — universal features strip */
.included-strip {
  background: var(--soft);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 22px 28px;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 24px;
  align-items: center;
}
.included-strip .is-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.included-strip .is-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px 16px;
  font-size: 13.5px;
  color: var(--ink);
}
.included-strip .is-list li {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.included-strip .is-list li::before {
  content: ""; flex-shrink: 0;
  width: 14px; height: 14px;
  background-color: #0C8A4E;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* OUTLIERS — Solo + White-label as horizontal compact cards */
.outliers-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.tier-outlier {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.tier-outlier:hover {
  border-color: var(--purple-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(20,4,30,.12);
}
.tier-outlier .to-head {
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
}
.tier-outlier .to-head h4 {
  font-size: 22px; font-weight: 700; margin: 0;
  letter-spacing: -.01em;
}
.tier-outlier .to-price {
  font-size: 26px; font-weight: 600;
  color: var(--purple);
  letter-spacing: -.02em;
}
.tier-outlier .to-price sup {
  font-size: .55em; vertical-align: top; opacity: .65; margin-right: 1px;
}
.tier-outlier .to-price small {
  font-size: .5em; font-weight: 500;
  color: var(--ink-3); margin-left: 2px;
}
.tier-outlier .to-desc {
  margin: 0; font-size: 15px;
  color: var(--ink-2); font-weight: 500;
}
.tier-outlier .to-features {
  margin: 0; font-size: 13px;
  color: var(--ink-3); line-height: 1.5;
}
.tier-outlier .to-cta {
  font-size: 14px; font-weight: 600;
  color: var(--purple-2);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 0 0;
  transition: gap .2s;
}
.tier-outlier .to-cta:hover { color: var(--ink); }

/* FEES PANEL — transparent transaction fees */
.fees-panel {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 32px 40px;
  margin-top: 32px;
}
.fees-panel .fp-head { margin-bottom: 24px; }
.fees-panel .fp-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; color: var(--ink-3);
  letter-spacing: .14em; text-transform: uppercase;
}
.fees-panel .fp-head h3 {
  font-size: 24px; font-weight: 600;
  margin: 8px 0 8px;
  letter-spacing: -.02em;
}
.fees-panel .fp-head p {
  margin: 0; font-size: 14.5px;
  color: var(--ink-3); line-height: 1.5;
  max-width: 56ch;
}
.fees-panel .fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.fees-panel .fp-item {
  background: var(--soft);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.fees-panel .fp-item b {
  font-size: 14.5px; font-weight: 700;
  color: var(--ink);
}
.fees-panel .fp-item span {
  font-size: 13px; color: var(--ink-3);
  font-weight: 500;
}

/* COMPLEXITY ANCHOR — "5 contratos separados" framing */
.complexity-anchor {
  background: linear-gradient(135deg, var(--ink) 0%, #3F1F84 100%);
  color: #fff;
  border-radius: 24px;
  padding: 48px 56px;
  margin-top: 32px;
  text-align: center;
}
.complexity-anchor .ca-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.complexity-anchor h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  margin: 12px 0 32px;
  letter-spacing: -.02em;
  color: #fff;
}
.complexity-anchor .ca-equation {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 8px 12px;
  margin: 0 0 20px;
}
.complexity-anchor .ca-piece {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.complexity-anchor .ca-plus {
  font-size: 18px;
  color: var(--yellow);
  font-weight: 400;
  opacity: .7;
}
.complexity-anchor .ca-result {
  font-size: 16px;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 18px;
}
.complexity-anchor .ca-foot {
  margin: 0; font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  max-width: 56ch;
  margin-inline: auto;
}

/* COMPARE EXPAND — collapsible comparison table */
.compare-expand {
  background: var(--soft);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 0;
  margin-top: 56px;
}
.compare-expand > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
  transition: background .15s;
}
.compare-expand > summary::-webkit-details-marker { display: none; }
.compare-expand > summary::marker { display: none; content: ''; font-size: 0; }
.compare-expand > summary:hover { background: rgba(91,63,255,.04); border-radius: 16px; }
.compare-expand[open] > summary {
  border-bottom: 1px solid var(--line-2);
  border-radius: 16px 16px 0 0;
}
.compare-expand .ce-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--purple); color: #fff;
  border-radius: 8px;
  font-size: 18px; font-weight: 400;
  transition: transform .25s;
  line-height: 1;
}
.compare-expand[open] .ce-icon { transform: rotate(45deg); }
.compare-expand .compare {
  padding: 0 28px 28px;
}
.plan {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
}
.plan.featured {
  background: var(--ink);
  color: #fff; border-color: var(--ink);
  position: relative; overflow: hidden;
}
.plan.featured::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--purple); opacity: .8;
}
.plan-head { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.plan h4 { font-size: 22px; font-weight: 700; margin: 0; }
.plan .pill { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-weight: 700; }
.plan .price { font-size: 56px; font-weight: 500; letter-spacing: -.04em; margin: 22px 0 4px; line-height: 1; position: relative; z-index: 1; }
.plan .price sup { font-size: .4em; vertical-align: top; opacity: .55; margin-right: 4px; font-weight: 600; }
.plan .price small { font-size: 16px; font-weight: 500; opacity: .55; letter-spacing: 0; margin-left: 4px; }
.plan .desc { font-size: 14.5px; margin: 4px 0 22px; opacity: .7; max-width: 32ch; position: relative; z-index: 1; }
.plan ul { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; flex: 1; }
.plan li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.plan li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--purple-soft);
  display: grid; place-items: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B5CE5' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
  flex-shrink: 0; margin-top: 2px;
}
.plan.featured li::before {
  background-color: var(--yellow);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A0E60' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.plan .cta-block {
  display: block; text-align: center; padding: 14px;
  border-radius: 999px; font-size: 14px; font-weight: 600;
  background: var(--ink); color: #fff;
  transition: background .15s;
  position: relative; z-index: 1;
}
.plan .cta-block:hover { background: var(--purple-2); }
.plan.featured .cta-block { background: var(--yellow); color: var(--ink); }
.plan.featured .cta-block:hover { background: #FFCD00; }

/* FINAL CTA */
.final-card {
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: ''; position: absolute; right: -120px; bottom: -120px;
  width: 480px; height: 480px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  opacity: .9;
}
.final-card::after {
  content: ''; position: absolute; right: 60px; top: 80px;
  width: 80px; height: 80px;
  background: var(--peach);
  border-radius: 50%;
  pointer-events: none;
}
.final-card .inner { position: relative; z-index: 2; max-width: 56%; }
.final-card h2 {
  font-size: clamp(44px, 5.6vw, 84px);
  font-weight: 500;
  letter-spacing: -.04em; line-height: .96;
  margin: 18px 0 0; color: #fff;
  max-width: 14ch;
}
.final-card h2 .accent { color: var(--yellow); }
.final-card p { margin-top: 22px; font-size: 18px; color: rgba(255,255,255,.78); max-width: 48ch; }
.final-card .ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.final-card .btn-primary { background: #fff; color: var(--ink); }
.final-card .btn-primary:hover { background: var(--yellow); }
.final-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); background: transparent; }
.final-card .btn-ghost:hover { background: rgba(255,255,255,.14); }

/* FOOTER */
footer { padding: 80px 0 40px; border-top: 1px solid var(--line); margin-top: 80px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand p { color: var(--ink-3); font-size: 14px; max-width: 32ch; margin-top: 14px; }
.foot-col h5 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); font-weight: 700; margin: 0 0 16px; }
.foot-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--ink-2); }
.foot-col a:hover { color: var(--purple-2); }
.foot-bot { margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-4); flex-wrap: wrap; gap: 20px; }
.foot-bot a { color: var(--ink-4); }

/* Page sections — generic content */
.feature-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-top: 80px; padding-top: 80px; border-top: 1px solid var(--line);
}
.feature-detail:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.feature-detail.flip { direction: rtl; }
.feature-detail.flip > * { direction: ltr; }
.feature-detail .fd-text h3 { font-size: clamp(32px, 4vw, 52px); font-weight: 500; letter-spacing: -.025em; line-height: 1.04; margin: 0 0 16px; }
.feature-detail .fd-text p { font-size: 17px; color: var(--ink-2); line-height: 1.55; margin: 0 0 24px; max-width: 48ch; }
.feature-detail .fd-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.feature-detail .fd-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.feature-detail .fd-list li::before {
  content: ''; width: 24px; height: 24px; border-radius: 50%;
  background: var(--purple-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B5CE5' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
  flex-shrink: 0; margin-top: 1px;
}
.feature-detail .fd-art {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--purple-soft), var(--cream));
  padding: 40px; min-height: 380px;
  display: grid; place-items: center;
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0; margin-top: 56px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 19px; font-weight: 500;
  cursor: pointer;
  list-style: none;
  letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 32px; font-weight: 300;
  color: var(--ink-4);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--purple-2); }
.faq-item p { margin: 0 0 24px; font-size: 16px; color: var(--ink-2); line-height: 1.6; max-width: 70ch; }

/* Compare table */
.compare {
  margin-top: 56px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 18px 24px; text-align: left; font-size: 14.5px; }
.compare thead th { background: var(--soft); font-weight: 600; font-size: 13px; }
.compare thead th.featured { background: var(--ink); color: var(--yellow); }
.compare tbody tr { border-top: 1px solid var(--line); }
.compare td:not(:first-child) { text-align: center; }
.compare td.yes { color: #0C8A4E; font-weight: 600; }
.compare td.no { color: var(--ink-4); }

/* Responsive */
@media (max-width: 1100px) {
  .deel-grid { grid-template-columns: repeat(6, 1fr); }
  .pcard { grid-column: span 6; }
  .pcard.small { grid-column: span 6; }
}
@media (max-width: 1000px) {
  .hero-switcher { grid-template-columns: 1fr; }
  .switcher-tabs { flex-direction: row; overflow-x: auto; padding: 6px; }
  .stab { flex-direction: column; min-width: 130px; padding: 12px; align-items: flex-start; }
  .stab .ic { margin-bottom: 6px; }
  .stab .chev { display: none; }
  .deel-grid > .pcard { grid-column: span 6 !important; min-height: auto; flex-direction: column; gap: 0; padding: 32px; }
  .pcard.wide { grid-column: span 6 !important; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats { padding: 56px 32px; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .ccard, .ccard.live { grid-column: span 2 !important; }
  .ccard.live { flex-direction: column; }
  .twall { columns: 2; }
  .pricing-grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .outliers-row { grid-template-columns: 1fr; gap: 12px; }
  .included-strip { grid-template-columns: 1fr; gap: 14px; padding: 18px 20px; }
  .fees-panel { padding: 24px 22px; }
  .fees-panel .fp-head h3 { font-size: 20px; }
  .complexity-anchor { padding: 32px 24px; border-radius: 18px; }
  .complexity-anchor .ca-piece { font-size: 12.5px; padding: 8px 12px; }
  .complexity-anchor .ca-plus { font-size: 14px; }
  .compare-expand > summary { padding: 18px 20px; font-size: 14.5px; }
  .compare-expand .compare { padding: 0 16px 20px; }
  .final-card { padding: 56px 32px; }
  .final-card .inner { max-width: 100%; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-head { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; gap: 18px; }
  .feature-detail { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; margin-top: 56px; }
  .feature-detail.flip { direction: ltr; }
  .mega-inner { grid-template-columns: 1fr; padding: 24px; }
}
@media (max-width: 700px) {
  .twall { columns: 1; }
  .coverage-grid { grid-template-columns: 1fr; }
  .ccard, .ccard.live { grid-column: span 1 !important; }
  .deel-grid > .pcard { grid-column: span 6 !important; }
  .deel-grid { grid-template-columns: repeat(6,1fr); }
  .stats { padding: 40px 24px; }
  section.sec { padding: 80px 0; }
  h1.hero-title { font-size: clamp(44px, 12vw, 72px); }
}

/* ========================================================================== */
/* ANIMATION TOOLKIT · scroll-driven interactivity                              */
/* ========================================================================== */

/* Scroll progress bar (top of viewport) */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple), var(--yellow)); transform-origin: left center; transform: scaleX(0); z-index: 100; pointer-events: none; transition: transform .12s linear; }

/* ─── Reveal-on-scroll primitives ─── */
[data-reveal] { opacity: 0; transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="down"]  { transform: translateY(-40px); }
[data-reveal="left"]  { transform: translateX(40px); }
[data-reveal="right"] { transform: translateX(-40px); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal="fade"]  { transform: none; }
[data-reveal][data-revealed="1"] { opacity: 1; transform: none; }

/* Stagger children — used with [data-reveal-stagger] on parent */
[data-reveal-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal-stagger][data-revealed="1"] > * { opacity: 1; transform: none; }
[data-reveal-stagger][data-revealed="1"] > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger][data-revealed="1"] > *:nth-child(2) { transition-delay: .15s; }
[data-reveal-stagger][data-revealed="1"] > *:nth-child(3) { transition-delay: .25s; }
[data-reveal-stagger][data-revealed="1"] > *:nth-child(4) { transition-delay: .35s; }
[data-reveal-stagger][data-revealed="1"] > *:nth-child(5) { transition-delay: .45s; }
[data-reveal-stagger][data-revealed="1"] > *:nth-child(6) { transition-delay: .55s; }
[data-reveal-stagger][data-revealed="1"] > *:nth-child(7) { transition-delay: .65s; }
[data-reveal-stagger][data-revealed="1"] > *:nth-child(8) { transition-delay: .75s; }

/* ─── Parallax (transform binds to scroll, set by JS) ─── */
[data-parallax]    { will-change: transform; transition: transform .05s linear; }
[data-parallax-bg] { will-change: transform; }

/* ─── Magnetic button — JS sets --mx/--my variables ─── */
.btn[data-magnetic] { will-change: transform; transition: transform .15s ease-out; }
.btn[data-magnetic]:hover { transform: translate(calc(var(--mx,0) * 1px), calc(var(--my,0) * 1px)); }

/* ─── Mouse-tilt (3D rotation tracking cursor) ─── */
[data-mouse-tilt] { transform-style: preserve-3d; transition: transform .25s cubic-bezier(.2,.7,.2,1); will-change: transform; }
[data-mouse-tilt-inner] { transform: translateZ(40px); }

/* ─── Hero scene (FLOWING + minimal — sin parallax, sin floating chips) ─── */
.hero-scene { position: relative; height: auto !important; max-height: none !important; min-height: auto !important; padding: 100px 0 60px !important; overflow: hidden; }
.hero-scene > .layer { display: none !important; }   /* hide decorative blobs / floating chips / orb */
.hero-scene .layer-content { position: relative; z-index: 5; height: auto; display: block; text-align: center; padding: 0; }
[data-parallax] { transform: none !important; }

/* ─── Storytelling de corrido (alineado al header, mismo padding 64px) ─── */
.sticky-story {
  position: relative;
  height: auto !important;
  padding: 80px 64px !important;
  overflow: hidden;
  box-sizing: border-box;
}
.sticky-story .ss-pin {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px 80px;
  align-items: center;
  padding: 0 !important;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.sticky-story .ss-text, .sticky-story .ss-text-wrap, .sticky-story .ss-art { display: contents; min-height: 0; height: auto; }
.sticky-story .ss-step { position: relative !important; opacity: 1 !important; transform: none !important; pointer-events: auto !important; align-self: center; min-width: 0; }
.sticky-story .ss-frame { position: relative !important; opacity: 1 !important; transform: none !important; display: flex !important; justify-content: center; align-items: center; height: auto; align-self: center; min-width: 0; }
.sticky-story .ss-step-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--purple-2); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }

/* Zig-zag: pares alternan lados */
.sticky-story .ss-step:nth-child(1) { grid-row: 1; grid-column: 1; }
.sticky-story .ss-step:nth-child(2) { grid-row: 2; grid-column: 2; }
.sticky-story .ss-step:nth-child(3) { grid-row: 3; grid-column: 1; }
.sticky-story .ss-step:nth-child(4) { grid-row: 4; grid-column: 2; }
.sticky-story .ss-frame:nth-child(1) { grid-row: 1; grid-column: 2; }
.sticky-story .ss-frame:nth-child(2) { grid-row: 2; grid-column: 1; }
.sticky-story .ss-frame:nth-child(3) { grid-row: 3; grid-column: 2; }
.sticky-story .ss-frame:nth-child(4) { grid-row: 4; grid-column: 1; }

/* Disable reveal-on-scroll — todo visible inmediatamente */
[data-reveal], [data-reveal-stagger], [data-reveal-stagger] > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 900px) {
  .sticky-story { padding: 60px 24px !important; }
  .sticky-story .ss-pin { grid-template-columns: 1fr; gap: 56px; }
  .sticky-story .ss-step, .sticky-story .ss-frame { grid-column: 1 !important; grid-row: auto !important; }
}

/* ─── Counter animations ─── */
[data-counter] { font-variant-numeric: tabular-nums; }

/* ─── Animated mockup primitives ─── */
.mockup-browser { background: #fff; border-radius: 18px; box-shadow: 0 30px 80px -30px rgba(20,4,30,.25), 0 6px 20px -10px rgba(20,4,30,.1); overflow: hidden; border: 1px solid var(--line-2); }
.mockup-browser-bar { background: var(--soft); padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line-2); }
.mockup-browser-dots { display: flex; gap: 6px; }
.mockup-browser-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.mockup-browser-dots span:nth-child(1) { background: #FF5F57; }
.mockup-browser-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-browser-dots span:nth-child(3) { background: #28C840; }
.mockup-browser-url { flex: 1; background: #fff; border-radius: 6px; padding: 5px 12px; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--ink-3); border: 1px solid var(--line-2); }
.mockup-browser-content { padding: 0; min-height: 320px; }

/* Phone mockup */
.mockup-phone { width: 280px; height: 560px; border-radius: 36px; background: #2A0E60; padding: 12px; box-shadow: 0 30px 80px -20px rgba(20,4,30,.4); position: relative; }
.mockup-phone-screen { width: 100%; height: 100%; background: #FAF8FB; border-radius: 26px; overflow: hidden; position: relative; }
.mockup-phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #2A0E60; border-radius: 0 0 14px 14px; z-index: 2; }

/* Floating chip */
.float-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); box-shadow: 0 8px 24px -8px rgba(20,4,30,.18); font-size: 12px; font-weight: 600; color: var(--ink); }
.float-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: #0C8A4E; }
.float-chip .dot-pulse { animation: pulse-ring 1.6s ease-out infinite; }

@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(12,138,78,.5); } 70% { box-shadow: 0 0 0 8px rgba(12,138,78,0); } 100% { box-shadow: 0 0 0 0 rgba(12,138,78,0); } }

/* Floating decorative blobs (parallax-bg targets) */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none; }
.blob-purple { background: var(--purple); }
.blob-yellow { background: var(--yellow); }
.blob-peach  { background: #FFB59E; }
.blob-mint   { background: #B5E8C9; }

/* Ticker / live data */
.ticker { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--soft); font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500; }
.ticker .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #E25555; animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* SVG draw-on-scroll */
[data-draw] { fill: none; }
[data-draw][data-revealed="1"] path { animation: draw 1.6s cubic-bezier(.65,0,.35,1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Marquee */
.km { display: flex; gap: 48px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.km-track { display: flex; gap: 48px; flex-shrink: 0; animation: km-scroll 28s linear infinite; }
.km:hover .km-track { animation-play-state: paused; }
@keyframes km-scroll { to { transform: translateX(calc(-100% - 48px)); } }

/* Number ticker effect */
.num-pop { display: inline-block; transition: transform .25s cubic-bezier(.2,.7,.2,1); }

/* Underline-on-scroll */
.kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; background: var(--purple-soft); color: var(--purple-2); font-size: 13px; font-weight: 600; letter-spacing: -.005em; }
.kicker-yellow { background: var(--yellow-soft); color: #8A6C0B; }
.kicker-mint   { background: #DBF0DE; color: #0C8A4E; }
.kicker-peach  { background: var(--peach-soft); color: #B85428; }
.kicker-blue   { background: var(--blue-soft); color: #1E5BB5; }
.kicker-dark   { background: var(--ink); color: var(--yellow); }

/* Side-by-side product list */
.feature-list { display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); list-style: none; }
.feature-list li:last-child { border-bottom: none; }
.feature-list .feat-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--purple-soft); color: var(--purple-2); display: grid; place-items: center; flex-shrink: 0; }
.feature-list .feat-text b { display: block; font-size: 15.5px; font-weight: 600; }
.feature-list .feat-text span { font-size: 14px; color: var(--ink-3); }

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > *, [data-parallax], [data-mouse-tilt] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-progress, .ticker .live-dot, .float-chip .dot-pulse { animation: none; }
  .km-track { animation-play-state: paused; }
}


/* ========================================================================== */
/* PRINT — clean B&W layout for evaluators printing the pricing page          */
/* ========================================================================== */
@media print {
  * { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  body { font-size: 11pt; line-height: 1.4; }
  header, footer, .nav, .billing-toggle, .tier-selector-wrap,
  .scroll-progress, .marquee, .km, .blob, .hero-shapes,
  .final-card, #cta, .faq, .compare-accordion { display: none !important; }
  a { color: #000 !important; text-decoration: none; }
  .page-hero { padding: 0 0 16pt; text-align: left; }
  .page-hero .eyebrow { font-size: 9pt; letter-spacing: 0.05em; }
  .page-hero h1 { font-size: 22pt; margin: 4pt 0 8pt; line-height: 1.1; }
  .page-hero .lede { font-size: 11pt; max-width: none; margin: 0; }
  .pricing-grid { display: grid !important; grid-template-columns: repeat(5, 1fr) !important; gap: 4pt !important; padding: 0 !important; margin: 12pt 0 !important; overflow: visible !important; }
  .plan { padding: 8pt !important; border: 1pt solid #000 !important; border-radius: 4pt !important; page-break-inside: avoid; }
  .plan.featured { border-width: 2pt !important; }
  .plan h4 { font-size: 12pt; margin: 0 0 4pt; }
  .plan .price { font-size: 22pt !important; margin: 4pt 0; }
  .plan .price small { font-size: 10pt; }
  .plan .price-note { font-size: 8.5pt; color: #444 !important; }
  .plan .desc { font-size: 9pt; margin: 4pt 0; }
  .plan ul { font-size: 8.5pt; padding-left: 12pt; line-height: 1.45; }
  .plan ul li { padding: 1pt 0; }
  .plan ul li::before { content: "·"; margin-right: 4pt; color: #000 !important; }
  .plan .cta-block, .plan-selection-label, .plan .pill { display: none !important; }
  .compare table { font-size: 9pt; page-break-inside: auto; border-collapse: collapse; width: 100%; }
  .compare th, .compare td { padding: 3pt 6pt; border-bottom: 0.5pt solid #ccc !important; }
  .compare thead th { border-bottom: 1pt solid #000 !important; font-weight: 700; }
  .compare td.yes::before { content: "✓ "; }
  .compare td.no::before { content: "—"; }
  .compare h2 { font-size: 14pt; margin: 16pt 0 8pt; }
  @page { margin: 1cm; size: A4 landscape; }
}



/* ========================================================================== */
/* COMPARISON TABLE — mobile accordion (≤900px). Defensive: !important       */
/* ========================================================================== */
.compare-accordion { display: none !important; margin-top: 32px; }
.compare-acc-item {
  border: 1px solid var(--line-2);
  border-radius: 12px;
  margin-bottom: 8px;
  background: #fff;
  overflow: hidden;
}
.compare-acc-item > summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  list-style-type: none;
}
.compare-acc-item > summary::-webkit-details-marker { display: none; }
.compare-acc-item > summary::marker { content: ''; display: none; font-size: 0; }
.compare-acc-item > summary::after {
  content: "+";
  font-size: 22px;
  color: var(--ink-3);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s;
  margin-left: 12px;
}
.compare-acc-item[open] > summary::after { transform: rotate(45deg); }
.compare-acc-item[open] > summary {
  border-bottom: 1px solid var(--line);
  color: var(--purple-2);
}
.compare-acc-grid {
  display: grid !important;
  grid-template-columns: 1fr auto;
  column-gap: 14px;
  row-gap: 8px;
  padding: 14px 18px 18px;
  font-size: 13.5px;
  margin: 0;
}
.compare-acc-grid dt {
  color: var(--ink-3);
  font-weight: 500;
  margin: 0;
}
.compare-acc-grid dd {
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  text-align: right;
}
.compare-acc-grid dt.featured-tier,
.compare-acc-grid dd.featured-tier { color: var(--purple-2); font-weight: 700; }
.compare-acc-grid dd.yes { color: #15803D; }
.compare-acc-grid dd.no { color: var(--ink-4); font-weight: 400; }

@media (max-width: 900px) {
  .compare table { display: none !important; }
  .compare-accordion { display: block !important; }
}



/* ========================================================================== */
/* SQUARESPACE-STYLE PRICING — minimal, clean, equal-weighted cards          */
/* ========================================================================== */

/* Hero centrado */
.sq-hero {
  text-align: center;
  padding: 80px 0 48px;
}
.sq-hero .wrap-narrow { max-width: 880px; }
.sq-h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
}
.sq-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 56ch;
  margin: 0 auto;
}
.sq-hero .billing-toggle {
  margin: 36px auto 0;
}

/* Grid de 4 cards */
.sq-grid-section { padding-top: 24px; padding-bottom: 8px; }
.sq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

/* Card individual */
.sq-plan {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.sq-plan:hover {
  border-color: var(--ink);
  box-shadow: 0 12px 32px -16px rgba(20,4,30,.12);
}
.sq-plan.is-featured {
  border-color: var(--ink);
  border-width: 2px;
  padding: 31px 27px;
}
.sq-plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Card head: nombre + tagline */
.sq-plan-meta { margin-bottom: 24px; }
.sq-plan-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.sq-plan-tag {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.45;
  margin: 0;
  min-height: 40px;
}

/* Precio + período */
.sq-price-block { margin-bottom: 24px; }
.sq-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--ink);
}
.sq-currency {
  font-size: 24px;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 6px;
  opacity: .7;
}
.sq-amount {
  font-size: 56px;
  line-height: 1;
}
.sq-period {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-3);
}
.sq-per { font-weight: 500; color: var(--ink-2); font-size: 14px; }
.sq-detail { font-size: 12.5px; color: var(--ink-4); }

/* CTA — full-width, dark, antes de features */
.sq-cta {
  display: block;
  width: 100%;
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: background .15s, transform .15s;
  margin-bottom: 24px;
}
.sq-cta:hover {
  background: #3F1F84;
  transform: translateY(-1px);
}

/* Features list — debajo del CTA */
.sq-features {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  flex: 1;
}
.sq-features-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.sq-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sq-features li {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.sq-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 14px;
  background-color: var(--ink);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Enterprise / White-label callout (single horizontal card) */
.sq-enterprise {
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 8px;
}
.sq-ent-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.sq-ent-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -.01em;
}
.sq-ent-desc {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  max-width: 64ch;
}
.sq-ent-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  white-space: nowrap;
}
.sq-ent-price {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.sq-ent-price strong {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-left: 4px;
}
.sq-enterprise .sq-cta {
  background: #fff;
  color: var(--ink);
  width: auto;
  padding: 13px 24px;
  margin: 0;
}
.sq-enterprise .sq-cta:hover {
  background: var(--yellow);
  transform: translateY(-1px);
}

/* Section title genérico Squarespace-style */
.sq-section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -.02em;
  text-align: center;
  margin: 0 0 32px;
  color: var(--ink);
}

/* Todos los planes incluyen */
.sq-included {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 32px;
}
.sq-included li {
  font-size: 14.5px;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.sq-included li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  background-color: #15803D;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Mobile (≤900px) */
@media (max-width: 900px) {
  .sq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sq-plan, .sq-plan.is-featured {
    padding: 28px 24px;
    border-width: 1px;
  }
  .sq-plan.is-featured { border-color: var(--ink); border-width: 2px; padding: 27px 23px; }
  .sq-enterprise {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 20px;
  }
  .sq-ent-action {
    align-items: flex-start;
  }
  .sq-included {
    grid-template-columns: 1fr;
  }
  .sq-hero { padding: 60px 0 32px; }
}


/* ========================================================================== */
/* HOME — MÓDULO GROW (tabs + showcase imagen estilo Squarespace)            */
/* ========================================================================== */
.grow-mod { padding: 120px 0; }
.grow-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.grow-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--ink);
}
.grow-head p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

.grow-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.grow-tab {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 10px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s ease;
}
.grow-tab:hover { border-color: var(--ink); color: var(--ink); }
.grow-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Stage */
.grow-stage { position: relative; }
.grow-panel { display: none; }
/* 1-col proporcional: canvas arriba, texto + features abajo */
.grow-panel.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  animation: growFade .35s ease;
}
@keyframes growFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.grow-bg {
  position: relative;
  border-radius: 24px;
  aspect-ratio: 16/8;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.grow-bg-art { position: absolute; inset: 0; }
.grow-bg-art svg { width: 100%; height: 100%; }

/* Sitio mockup */
.grow-mock-browser {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  width: 60%; max-width: 560px;
  box-shadow: 0 30px 80px -20px rgba(20,4,30,.35);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.gmb-bar {
  background: var(--soft);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line-2);
}
.gmb-bar > span:not(.gmb-url) { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.gmb-bar > span:nth-child(1) { background: #FF5F57; }
.gmb-bar > span:nth-child(2) { background: #FEBC2E; }
.gmb-bar > span:nth-child(3) { background: #28C840; }
.gmb-url {
  flex: 1;
  background: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  border: 1px solid var(--line-2);
}
.gmb-content { padding: 32px 36px; color: var(--ink); }
.gmb-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,210,140,.85);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gmb-title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 10px 0 18px;
  max-width: 14ch;
  color: #2D1810;
}
.gmb-buttons { display: flex; gap: 8px; }
.gmb-btn-yellow {
  background: #FFD93D;
  color: #2D1810;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
}
.gmb-btn-ghost {
  background: rgba(0,0,0,.05);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
}

/* Tienda mockup */
.gmb-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gmb-prod {
  aspect-ratio: 1/1.15;
  border-radius: 10px;
  padding: 12px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  color: #2D1810;
}
.gmb-prod span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}
.gmb-prod b { font-size: 14px; font-weight: 700; }
.gmb-cart {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.gmb-btn-dark {
  background: var(--ink); color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

/* Floating accent (top-left of canvas) */
.grow-floater {
  position: absolute;
  top: 32px;
  left: 32px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 36px -16px rgba(20,4,30,.3);
  z-index: 3;
  font-family: 'Inter', sans-serif;
  animation: growFloat 3s ease-in-out infinite;
}
.grow-floater.bottom-right {
  top: auto; left: auto;
  bottom: 32px; right: 32px;
  animation-delay: -1.5s;
}
@keyframes growFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.grow-floater-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.grow-floater-text { display: flex; flex-direction: column; gap: 1px; }
.grow-floater-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  white-space: nowrap;
}
.grow-floater-text span {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.2;
}
.grow-floater-pill {
  position: absolute;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  z-index: 3;
  box-shadow: 0 8px 24px -10px rgba(20,4,30,.25);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
  animation: growFloat 3.5s ease-in-out infinite;
  animation-delay: -.8s;
}
@media (max-width: 900px) {
  .grow-floater, .grow-floater-pill { display: none; }
}

/* Card overlay (info chips a la derecha del mockup) */
.grow-card-overlay {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 16px 40px -16px rgba(20,4,30,.25);
  z-index: 3;
}
.gco-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.gco-dot { width: 7px; height: 7px; border-radius: 50%; }
.gco-green { background: #15803D; }
.gco-yellow { background: #F2A040; }
.gco-purple { background: var(--purple); }
.gco-pay-method {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.gco-pay-method b { color: var(--purple); font-weight: 700; }

/* Factura mockup */
.grow-mock-invoice {
  background: #fff;
  border-radius: 14px;
  width: 60%; max-width: 480px;
  box-shadow: 0 30px 80px -20px rgba(20,4,30,.25);
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line-2);
}
.gmi-head {
  background: linear-gradient(135deg, #2A0E60, #3F1F84);
  color: #fff;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.gmi-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  opacity: .6;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.gmi-title { font-size: 17px; font-weight: 600; margin-top: 4px; }
.gmi-stamp {
  background: rgba(255,217,61,.2);
  color: #FFD93D;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,217,61,.3);
}
.gmi-body { padding: 18px 22px; }
.gmi-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.gmi-row b { font-weight: 500; }
.gmi-totals { padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--line); }
.gmi-trow { display: flex; justify-content: space-between; padding: 3px 0; font-size: 12.5px; color: var(--ink-3); }
.gmi-total {
  font-size: 18px !important;
  font-weight: 600;
  color: var(--ink) !important;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.gmi-total span:last-child { color: var(--purple); }

/* Calendario mockup */
.grow-mock-calendar {
  background: #fff;
  border-radius: 14px;
  width: 64%; max-width: 480px;
  padding: 20px 24px;
  box-shadow: 0 30px 80px -20px rgba(20,4,30,.2);
  position: relative;
  z-index: 2;
  border: 1px solid var(--line-2);
}
.gmc-head {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.gmc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.gmc-cell {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
  text-align: center;
  padding: 4px 0;
}
.gmc-day {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  font-size: 12px;
  border-radius: 6px;
  color: var(--ink-2);
}
.gmc-busy { background: #DBF0DE; color: #14532D; font-weight: 500; }
.gmc-active { background: var(--ink); color: #fff; font-weight: 700; }
.gmc-slot {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--soft);
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 12.5px;
}
.gmc-slot span:first-child { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-3); }
.gmc-slot b { font-weight: 500; }
.gmc-slot-tag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: #DCFCE7;
  color: #15803D;
}
.gmc-tentative { background: var(--yellow-soft); color: #8A6C0B; }

/* IA orb */
.grow-orb {
  width: 280px; height: 280px;
  position: relative;
  z-index: 2;
}
.grow-orb circle:nth-child(2) { animation: orbPulse 3s ease-in-out infinite; }
@keyframes orbPulse { 50% { r: 110; } }
.grow-ai-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.gai-chip {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.gai-chip:nth-child(1) { top: 18%; left: 12%; }
.gai-chip:nth-child(2) { top: 22%; right: 10%; transform: rotate(2deg); }
.gai-chip:nth-child(3) { bottom: 28%; left: 8%; transform: rotate(-2deg); }
.gai-chip:nth-child(4) { bottom: 22%; right: 14%; }

/* Monitor dashboard */
.grow-mock-dash {
  background: #fff;
  border-radius: 14px;
  width: 64%; max-width: 520px;
  padding: 22px 26px;
  box-shadow: 0 30px 80px -20px rgba(20,4,30,.2);
  position: relative; z-index: 2;
  border: 1px solid var(--line-2);
}
.gmd-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}
.gmd-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gmd-title { font-size: 18px; font-weight: 600; margin-top: 4px; letter-spacing: -.01em; }
.gmd-status {
  background: #DCFCE7;
  color: #15803D;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.gmd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.gmd-stats > div {
  background: var(--soft);
  border-radius: 8px;
  padding: 10px 12px;
}
.gmd-stats span {
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}
.gmd-stats b {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-top: 4px;
  display: block;
}
.gmd-bars {
  display: flex; gap: 2px; align-items: flex-end;
  height: 32px;
}
.gmd-bars span {
  flex: 1;
  height: 100%;
  background: #15803D;
  border-radius: 2px;
}
.gmd-bars span.warn { background: #F2A040; height: 75%; }

/* Marketplace talent */
.grow-mock-talent {
  display: flex; flex-direction: column; gap: 8px;
  width: 60%; max-width: 440px;
  position: relative; z-index: 2;
}
.gmt-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px -12px rgba(20,4,30,.15);
}
.gmt-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.gmt-card b { display: block; font-size: 14.5px; }
.gmt-card span:not(.gmt-av):not(.gmt-price) { font-size: 12px; color: var(--ink-3); }
.gmt-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
}

/* Texto bajo el visual (layout original 2-col h4+p / link) */
.grow-text {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 0 8px;
}
.grow-text h4 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 8px;
  max-width: 28ch;
}
.grow-text p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 64ch;
}
.grow-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--purple-2);
  white-space: nowrap;
  align-self: end;
  padding-bottom: 2px;
  transition: color .15s;
}
.grow-link:hover { color: var(--ink); }

/* Features como row horizontal — hijo span all columns del grid */
.grow-features {
  list-style: none;
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--line-2);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
}
.grow-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.45;
  min-width: 0;
}
.grow-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.grow-features li strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 900px) {
  .grow-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .grow-features { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 900px) {
  .grow-mod { padding: 80px 0; }
  .grow-bg { aspect-ratio: 4/5; min-height: 380px; padding: 24px; }
  .grow-text { grid-template-columns: 1fr; }
  .grow-mock-browser, .grow-mock-invoice, .grow-mock-calendar, .grow-mock-dash { width: 100%; max-width: none; }
  .grow-mock-talent { width: 100%; max-width: none; }
  .grow-card-overlay { position: static; transform: none; margin-top: 16px; }
  .grow-text { grid-template-columns: 1fr; gap: 12px; }
  .grow-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; justify-content: flex-start; -webkit-overflow-scrolling: touch; margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
  .grow-tab { flex-shrink: 0; }
  .grow-orb { width: 200px; height: 200px; }
  .gai-chip { font-size: 11px; padding: 6px 10px; }
}

/* ========================================================================== */
/* HOME — MÓDULO INFRA (carrusel oscuro estilo Squarespace)                  */
/* ========================================================================== */
.infra-mod { padding: 120px 0; background: var(--soft); }
.infra-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.infra-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  max-width: 14ch;
}
.infra-head p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 8px;
  max-width: 56ch;
}

.infra-carousel { position: relative; }
.infra-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, calc((100% - 36px) / 4));
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 24px;
  scrollbar-width: none;
}
.infra-track::-webkit-scrollbar { display: none; }

.infra-card {
  scroll-snap-align: start;
  background: #2A0E60;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  aspect-ratio: 3/4;
  min-height: 480px;
  color: #fff;
  position: relative;
}
.ifc-text { padding: 28px 28px 18px; }
.ifc-text h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #fff;
  max-width: 18ch;
}
.ifc-text p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.65);
  margin: 0;
  max-width: 36ch;
}

.ifc-art {
  flex: 1;
  position: relative;
  margin: 0 16px 16px;
  border-radius: 12px;
  background: linear-gradient(160deg, #3F1F84, #2A0E60);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ifc-art-light {
  background: linear-gradient(160deg, var(--soft), #fff);
  color: var(--ink);
}

/* Globe (card 1) */
.ifc-globe { width: 70%; max-width: 220px; }
.ifc-globe svg { width: 100%; height: auto; }

/* DNS card (card 2) */
.ifc-dns {
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  width: calc(100% - 32px);
  max-width: 280px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  box-shadow: 0 16px 36px -16px rgba(20,4,30,.2);
}
.ifc-dns-header {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.ifc-dns-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  padding: 4px 0;
  align-items: center;
}
.ifc-dns-row span {
  color: var(--purple-2);
  font-weight: 700;
}
.ifc-dns-row code {
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ifc-dns-foot {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  color: var(--ink-3);
}
.ifc-dns-ok { color: #15803D; font-weight: 700; }

/* PSE badge (card 3) */
.ifc-pse {
  text-align: center;
  color: #fff;
}
.ifc-pse-badge {
  width: 88px; height: 88px;
  border-radius: 22px;
  background: rgba(255,217,61,.15);
  border: 1px solid rgba(255,217,61,.3);
  display: grid; place-items: center;
  margin: 0 auto 14px;
}
.ifc-pse-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #FFD93D;
}
.ifc-pse-sub {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  line-height: 1.4;
}
.ifc-pse-num {
  margin-top: 14px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
}

/* Backups (card 4) */
.ifc-backups {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  width: calc(100% - 32px);
  max-width: 280px;
  font-size: 12px;
  box-shadow: 0 16px 36px -16px rgba(20,4,30,.2);
}
.ifc-backup-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.ifc-backup-row:last-of-type { border-bottom: none; }
.ifc-backup-dot { width: 7px; height: 7px; border-radius: 50%; }
.ifc-bd-green { background: #15803D; }
.ifc-bd-yellow { background: #F2A040; }
.ifc-backup-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-4);
  background: var(--soft);
  padding: 2px 8px;
  border-radius: 999px;
}
.ifc-backup-foot {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-3);
}

/* Pasarelas (card 5) */
.ifc-pays {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  width: calc(100% - 24px);
}
.ifc-pay {
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
.ifc-pay-logo {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 6px;
  color: #fff;
}
.ifc-pay b { display: block; font-size: 12px; color: #fff; margin-bottom: 2px; font-weight: 600; }
.ifc-pay span { font-size: 10px; color: rgba(255,255,255,.55); }

/* Chat (card 6) */
.ifc-chat {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  width: calc(100% - 32px);
  max-width: 290px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 16px 36px -16px rgba(20,4,30,.2);
}
.ifc-chat-msg {
  display: flex; flex-direction: column; gap: 2px;
  max-width: 85%;
}
.ifc-chat-msg div {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.4;
}
.ifc-chat-msg span {
  font-size: 10px;
  color: var(--ink-4);
}
.ifc-chat-them div { background: var(--soft); color: var(--ink); border-radius: 12px 12px 12px 4px; }
.ifc-chat-them span { padding-left: 4px; }
.ifc-chat-us { align-self: flex-end; align-items: flex-end; }
.ifc-chat-us div { background: #25D366; color: #fff; border-radius: 12px 12px 4px 12px; }
.ifc-chat-us span { padding-right: 4px; }
.ifc-chat-foot {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
}
.ifc-chat-foot b { color: var(--ink); }

/* Carousel controls */
.infra-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}
.infra-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .15s ease;
}
.infra-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.infra-btn:disabled { opacity: .35; cursor: not-allowed; }
.infra-btn:disabled:hover { background: #fff; color: var(--ink-2); border-color: var(--line-2); }
.infra-dots { display: flex; gap: 6px; }
.infra-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-2);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .15s, width .2s ease;
}
.infra-dot.is-active { background: var(--ink); width: 24px; border-radius: 999px; }

@media (max-width: 1100px) {
  .infra-track { grid-auto-columns: minmax(0, calc((100% - 24px) / 3)); }
}
@media (max-width: 900px) {
  .infra-mod { padding: 80px 0; }
  .infra-head { grid-template-columns: 1fr; gap: 16px; }
  .infra-track { grid-auto-columns: minmax(0, calc((100% - 12px) / 2)); }
  .infra-card { aspect-ratio: 4/5; min-height: 420px; }
}
@media (max-width: 640px) {
  .infra-track { grid-auto-columns: 80%; }
}

/* =============================================================
   /precios v4 — 20 mejoras de conversión + claridad + engagement
   ============================================================= */

/* #17 Live counter banner */
.sq-livecounter {
  background: linear-gradient(90deg, #F4F0FE 0%, #EDF6FF 100%);
  border-bottom: 1px solid var(--line, #ECECF1);
  padding: 10px 0;
  font-size: 13px;
  color: var(--ink-3, #4A4A55);
  text-align: center;
}
.sq-livecounter strong { color: var(--ink, #0A0A0F); font-weight: 600; font-variant-numeric: tabular-nums; }
.sq-livecounter .lc-pulse {
  display: inline-block; width: 8px; height: 8px;
  background: #10B981; border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: lc-pulse 2s infinite;
}
@keyframes lc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* #5 Plan selector */
.sq-selector {
  margin: 24px auto 16px;
  max-width: 640px;
  background: #FBFAFE;
  border: 1px solid #DEDCFB;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}
.sq-selector[open] { background: #fff; }
.sq-selector-trigger {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 14px; font-weight: 500;
  color: var(--violet-2, #5826DC);
  list-style: none;
}
.sq-selector-trigger::-webkit-details-marker { display: none; }
.sq-selector-body { padding: 8px 20px 20px; }
.sq-q { margin: 16px 0; }
.sq-q label { display: block; font-size: 13px; color: var(--ink-3, #4A4A55); margin-bottom: 8px; font-weight: 500; }
.sq-q-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.sq-q-opts button {
  background: #fff; border: 1px solid var(--line-2, #DEDEE5);
  border-radius: 8px; padding: 8px 14px;
  font-size: 13px; cursor: pointer;
  transition: all .12s;
  font-family: inherit;
}
.sq-q-opts button:hover { border-color: var(--violet-2, #5826DC); }
.sq-q-opts button.is-active {
  background: var(--violet-2, #5826DC); color: #fff;
  border-color: var(--violet-2, #5826DC);
}
.sq-result { margin-top: 16px; }
.sq-result-card {
  background: linear-gradient(135deg, #F4F0FE, #EDF6FF);
  border: 1px solid #DEDCFB;
  border-radius: 10px;
  padding: 16px 18px;
}
.sq-result-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--violet-2, #5826DC); }
.sq-result-card h4 { font-family: 'Geist', sans-serif; font-size: 22px; margin: 6px 0 8px; }
.sq-result-card p { font-size: 14px; color: var(--ink-3, #4A4A55); margin: 0 0 12px; }
.sq-result-cta { font-size: 13.5px; font-weight: 500; color: var(--violet-2, #5826DC); }

/* #8 Currency toggle */
.currency-toggle {
  display: flex; gap: 4px; flex-wrap: wrap;
  align-items: center; justify-content: center;
  margin-top: 14px;
  font-size: 12px;
}
.currency-toggle .ct-label { color: var(--ink-4, #74747F); margin-right: 6px; }
.ct-opt {
  background: transparent; border: 1px solid var(--line-2, #DEDEE5);
  padding: 4px 10px; border-radius: 6px;
  font-size: 11.5px; cursor: pointer;
  font-family: inherit; color: var(--ink-3, #4A4A55);
  transition: all .12s;
}
.ct-opt:hover { border-color: var(--violet-2, #5826DC); }
.ct-opt.is-active {
  background: var(--ink, #0A0A0F); color: #fff;
  border-color: var(--ink, #0A0A0F);
}

/* #1 + #9 + #15 Plan card additions */
.sq-plan-fit {
  font-size: 12.5px;
  color: var(--ink-3, #4A4A55);
  margin: 8px 0 0;
  line-height: 1.5;
}
.sq-plan-fit strong { color: var(--ink, #0A0A0F); }
.sq-cta-risk {
  font-size: 11.5px;
  color: var(--ink-4, #74747F);
  text-align: center;
  margin: 8px 0 0;
}
.sq-quote {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: rgba(255,255,255,.6);
  border-left: 3px solid var(--violet-2, #5826DC);
  border-radius: 6px;
}
.sq-quote blockquote {
  margin: 0; font-size: 13px; line-height: 1.5;
  color: var(--ink-2, #1F1F28);
  font-style: italic;
}
.sq-quote figcaption {
  margin-top: 8px;
  font-size: 11.5px; color: var(--ink-4, #74747F);
}

/* #10 Lo que NO incluye */
.sq-excludes {
  margin-top: 12px;
  padding: 10px 12px;
  background: #FAFAFA;
  border-radius: 6px;
  font-size: 12px;
}
.sq-excludes-label {
  display: block;
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-4, #74747F);
  margin-bottom: 4px;
}
.sq-excludes ul { margin: 0; padding-left: 16px; color: var(--ink-3, #4A4A55); }
.sq-excludes ul li { margin: 2px 0; font-size: 12px; }
.sq-upgrade-hint {
  display: inline-block;
  margin-top: 6px;
  font-size: 11.5px; font-weight: 500;
  color: var(--violet-2, #5826DC);
  text-decoration: none;
}
.sq-upgrade-hint:hover { text-decoration: underline; }

/* #2 social proof badge */
.sq-plan-badge .sq-badge-flame { font-size: 12px; margin-right: 4px; }

/* #13 Premium tier visual */
.sq-plan.is-premium {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #F59E0B, #5826DC) border-box;
  position: relative;
}
.sq-badge-premium {
  background: linear-gradient(135deg, #F59E0B, #5826DC) !important;
  color: #fff !important;
}

/* Recommended highlight (selector + dte slider) */
.sq-plan.is-recommended,
.sq-plan.is-dte-match {
  outline: 3px solid var(--violet-2, #5826DC);
  outline-offset: 2px;
  transform: translateY(-4px);
  transition: transform .25s, outline .25s;
}

/* Annual savings inline */
.sq-savings {
  display: block;
  font-size: 11px;
  color: #047857;
  font-weight: 600;
  margin-top: 2px;
}

/* Enterprise premium card — mantiene fondo oscuro brand + agrega features list */
.sq-enterprise-premium {
  /* Heredamos bg negro de .sq-enterprise — solo agregamos un sutil gradient violet en el border */
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    linear-gradient(135deg, #F59E0B, #5826DC, #8A5CFF) border-box;
  border: 2px solid transparent;
}
.sq-enterprise-premium .sq-ent-tag {
  background: linear-gradient(135deg, #F59E0B, #8A5CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sq-ent-feats {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}
.sq-ent-feats li { padding: 2px 0; }
.sq-ent-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
@media (max-width: 760px) {
  .sq-enterprise-premium { grid-template-columns: 1fr; padding: 24px; }
  .sq-ent-feats { grid-template-columns: 1fr; }
}

/* #4 LTV calculator */
.sq-calc-section { padding: 56px 0; background: #FAFAFA; }
.sq-section-title {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 8px 0 6px;
  letter-spacing: -.02em;
  color: var(--ink, #0A0A0F);
}
.sq-section-lede { color: var(--ink-3, #4A4A55); margin: 0 0 24px; font-size: 15px; }
.sq-calc {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--line, #ECECF1);
  border-radius: 14px;
  padding: 24px;
}
.sq-calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sq-calc-input {
  display: flex; flex-direction: column;
  font-size: 12px; color: var(--ink-4, #74747F);
}
.sq-calc-input span { margin-bottom: 4px; }
.sq-calc-input input {
  padding: 8px 10px;
  border: 1px solid var(--line-2, #DEDEE5);
  border-radius: 6px;
  font-size: 14px; font-variant-numeric: tabular-nums;
  font-family: inherit;
}
.sq-calc-result {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 20px;
  background: linear-gradient(135deg, #F4F0FE, #EDF6FF);
  border-radius: 10px;
}
.sq-calc-row { font-size: 13px; color: var(--ink-3, #4A4A55); text-align: center; }
.sq-calc-row strong {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 22px; color: var(--ink, #0A0A0F);
  font-weight: 500;
}
.sq-calc-row-arrow { color: var(--ink-4, #74747F); font-size: 24px; }
.sq-calc-row-final {
  margin-top: 8px; padding-top: 12px;
  border-top: 1px solid rgba(88,38,220,.15);
  width: 100%;
}
.sq-calc-row-final strong { color: var(--violet-2, #5826DC); font-size: 28px; }
.sq-calc-row-final em {
  display: block; font-style: normal;
  font-size: 11.5px; color: var(--ink-4, #74747F); margin-top: 4px;
}
.sq-calc-row strong.is-negative { color: var(--ink-3, #4A4A55); font-size: 16px; }
@media (max-width: 760px) {
  .sq-calc { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .sq-calc-inputs { grid-template-columns: 1fr; }
}

/* #6 Comparativa vs competencia */
.sq-versus-section { padding: 64px 0; }
.sq-vs-table {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line, #ECECF1);
  border-radius: 12px; overflow: hidden;
  font-size: 13.5px;
}
.sq-vs-table th, .sq-vs-table td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--line, #ECECF1);
}
.sq-vs-table th { background: #FAFAFA; font-weight: 600; font-size: 12.5px; }
.sq-vs-table th.sq-vs-us {
  background: linear-gradient(135deg, #F4F0FE, #EDF6FF);
  color: var(--violet-2, #5826DC);
}
.sq-vs-table td.sq-vs-us { background: #FBFAFE; font-weight: 500; }
.sq-vs-yes { color: #047857; }
.sq-vs-no { color: #DC2626; }
.sq-vs-partial { color: #92400E; }
@media (max-width: 760px) {
  .sq-vs-table { font-size: 12px; }
  .sq-vs-table th, .sq-vs-table td { padding: 8px 10px; }
}

/* #16 Upgrade path */
.sq-path-section { padding: 56px 0; background: #FAFAFA; }
.sq-path {
  display: flex; align-items: stretch; gap: 24px;
  margin: 32px 0 0; padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.sq-path-step {
  flex: 1; min-width: 160px;
  display: flex; align-items: center; gap: 8px;
  padding: 16px 12px;
  background: #fff;
  border: 1px solid var(--line, #ECECF1);
  border-radius: 8px;
  position: relative;
  font-size: 13.5px;
}
.sq-path-step.is-current {
  border-color: var(--violet-2, #5826DC);
  background: linear-gradient(135deg, #F4F0FE, #fff);
}
.sq-path-num {
  width: 28px; height: 28px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--ink, #0A0A0F); color: #fff;
  font-family: 'Geist', sans-serif;
  font-size: 13px; font-weight: 600;
  flex-shrink: 0;
}
.sq-path-step.is-current .sq-path-num { background: var(--violet-2, #5826DC); }
.sq-path-step strong { font-family: 'Geist', sans-serif; font-weight: 500; font-size: 15px; }
.sq-path-step em {
  display: block;
  font-style: normal;
  font-size: 11px; color: var(--ink-4, #74747F);
  margin-top: 2px;
}
.sq-path-arrow {
  position: absolute;
  right: -20px; top: 50%; transform: translateY(-50%);
  color: var(--ink-4, #74747F);
  font-weight: bold;
}
@media (max-width: 760px) {
  .sq-path-step { margin-bottom: 12px; }
  .sq-path-arrow {
    right: 50%; top: auto; bottom: -20px;
    transform: translateX(50%) rotate(90deg);
  }
}

/* #12 DTE slider */
.sq-dte-section { padding: 48px 0; }
.sq-dte {
  background: #fff;
  border: 1px solid var(--line, #ECECF1);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}
.sq-dte-track { position: relative; }
.sq-dte-track input[type="range"] {
  width: 100%; height: 4px;
  -webkit-appearance: none; appearance: none;
  background: linear-gradient(90deg, #5826DC, #8A5CFF);
  border-radius: 2px; outline: none;
}
.sq-dte-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--violet-2, #5826DC);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(88,38,220,.3);
}
.sq-dte-track input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--violet-2, #5826DC);
  cursor: pointer;
}
.sq-dte-marks {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 11.5px; color: var(--ink-4, #74747F);
}
.sq-dte-output {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 24px;
  font-size: 16px;
  flex-wrap: wrap;
}
.sq-dte-current { color: var(--ink-2, #1F1F28); }
.sq-dte-current strong { color: var(--ink, #0A0A0F); font-size: 24px; font-family: 'Geist', sans-serif; font-weight: 500; }
.sq-dte-arrow { color: var(--ink-4, #74747F); }
.sq-dte-plan strong { color: var(--violet-2, #5826DC); font-weight: 600; }

/* #11 Tooltips */
.sq-tooltip {
  position: absolute;
  background: var(--ink, #0A0A0F);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.45;
  max-width: 280px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%) translateY(-4px);
  transition: opacity .15s;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.sq-tooltip.is-show { opacity: 1; }
.compare table td[data-tip] { cursor: help; border-bottom: 1px dotted var(--ink-5, #A6A6B0); }
.ce-hint {
  font-size: 11.5px; color: var(--ink-4, #74747F);
  font-weight: 400;
  margin-left: 12px;
}

/* #18 FAQ overhaul */
.sq-faq-controls {
  display: flex; flex-direction: column; gap: 12px;
  margin: 24px 0 16px;
}
.sq-faq-search {
  position: relative;
  display: flex; align-items: center;
}
.sq-faq-search svg {
  position: absolute; left: 12px;
  color: var(--ink-4, #74747F);
}
.sq-faq-search input {
  flex: 1;
  padding: 10px 14px 10px 36px;
  border: 1px solid var(--line, #ECECF1);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}
.sq-faq-search input:focus {
  outline: none;
  border-color: var(--violet-2, #5826DC);
  box-shadow: 0 0 0 3px rgba(88,38,220,.12);
}
.sq-faq-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.sq-faq-cat {
  background: #fff; border: 1px solid var(--line-2, #DEDEE5);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12.5px; cursor: pointer;
  font-family: inherit;
  color: var(--ink-3, #4A4A55);
  transition: all .12s;
}
.sq-faq-cat:hover { border-color: var(--violet-2, #5826DC); }
.sq-faq-cat.is-active {
  background: var(--ink, #0A0A0F); color: #fff;
  border-color: var(--ink, #0A0A0F);
}
.sq-faq-cat span {
  display: inline-block;
  background: rgba(0,0,0,.08);
  color: inherit;
  margin-left: 4px; padding: 0 6px;
  border-radius: 4px;
  font-size: 10.5px;
  font-variant-numeric: tabular-nums;
}
.sq-faq-cat.is-active span { background: rgba(255,255,255,.18); }
.sq-faq-empty {
  text-align: center; padding: 32px;
  color: var(--ink-3, #4A4A55);
}
.sq-link { color: var(--violet-2, #5826DC); font-weight: 500; }

/* #14 Sticky mobile */
.sq-sticky-mobile {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line, #ECECF1);
  padding: 10px 16px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 12px;
  z-index: 100;
  box-shadow: 0 -8px 24px rgba(0,0,0,.06);
}
.sq-sticky-mobile.is-visible { display: flex; }
.sm-info { display: flex; flex-direction: column; }
.sm-info strong { font-size: 14px; color: var(--ink, #0A0A0F); }
.sm-info span { font-size: 12.5px; color: var(--ink-4, #74747F); font-variant-numeric: tabular-nums; }
.sm-cta {
  background: var(--ink, #0A0A0F);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13.5px; font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 760px) {
  .sq-sticky-mobile { display: none !important; }
}

/* #20 Final card rich */
.final-card-rich .final-feats {
  list-style: none; padding: 0; margin: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  font-size: 14px;
  color: rgba(255,255,255,.86);
}
.final-card-rich .final-trust {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
}
.final-card-rich .final-trust strong { color: rgba(255,255,255,.95); }
@media (max-width: 760px) {
  .final-card-rich .final-feats { grid-template-columns: 1fr; }
}

/* Mobile adjustments */
@media (max-width: 760px) {
  .sq-livecounter { font-size: 11.5px; padding: 8px 12px; }
}

/* =============================================================
   MOBILE OPTIMIZATIONS — applies to ALL pages of landing static
   #1-#10 mejoras Home + globales
   ============================================================= */

/* #1 Hero h1: font-size más sano en mobile */
@media (max-width: 540px) {
  h1.hero-title {
    font-size: clamp(34px, 11vw, 48px) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.05 !important;
    margin: 20px 0 0 !important;
  }
  .hero-lede {
    font-size: 16px !important;
    margin-top: 20px !important;
    line-height: 1.5 !important;
  }
  .hero { padding: 24px 0 0 !important; }
}

/* #2 Hero <br/> solo en desktop. En mobile dejar wrap natural */
@media (max-width: 760px) {
  h1.hero-title br { display: none; }
}

/* #3 Hero CTAs full-width + stack en mobile */
@media (max-width: 540px) {
  .hero-ctas {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }
  .hero-ctas a, .hero-ctas button,
  .hero-ctas .btn, .hero-ctas .btn-primary, .hero-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  /* Pill del live banner: simplificar texto largo */
  .hero-pill, .pill {
    font-size: 12px !important;
  }
}

/* #4 Subnav: scroll horizontal con snap en mobile */
@media (max-width: 760px) {
  .subnav, .subnav-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .subnav::-webkit-scrollbar,
  .subnav-inner::-webkit-scrollbar { display: none; }
  .subnav-inner {
    display: flex;
    gap: 4px;
    padding: 8px 16px;
  }
  .subnav-inner > a {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
  }
}

/* #5 Grow tabs: scroll horizontal con snap (7 tabs no caben) */
@media (max-width: 760px) {
  .grow-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    flex-wrap: nowrap !important;
    padding: 4px 16px 12px;
    margin: 0 -16px;
  }
  .grow-tabs::-webkit-scrollbar { display: none; }
  .grow-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: 44px;
    white-space: nowrap;
    padding: 10px 16px;
  }
}

/* #6 Hero blob animation: off en mobile (jank en celulares mid-tier) */
@media (max-width: 760px) {
  .blob, .hero-shapes .blob {
    animation: none !important;
    transform: scale(0.7) !important;
    opacity: 0.6 !important;
  }
}
/* Respetar prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .blob, [class*="float"], [class*="pulse"], [class*="bounce"] {
    animation: none !important;
  }
}

/* #7 Sticky bottom CTA mobile (Empezar gratis) */
.kd-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line, #ECECF1);
  padding: 10px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 90;
  box-shadow: 0 -8px 20px rgba(0,0,0,.06);
}
.kd-mobile-cta.is-visible { display: flex; }
.kd-mobile-cta-info { display: flex; flex-direction: column; line-height: 1.2; }
.kd-mobile-cta-info strong { font-size: 13px; color: var(--ink, #0A0A0F); }
.kd-mobile-cta-info span { font-size: 11.5px; color: var(--ink-4, #74747F); }
.kd-mobile-cta-btn {
  background: var(--ink, #0A0A0F);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex; align-items: center;
}
@media (min-width: 760px) {
  .kd-mobile-cta { display: none !important; }
}

/* #8 Tap targets ≥ 44px universal en mobile */
@media (max-width: 760px) {
  a, button, [role="button"], .btn, .nav-cta, .ingresar {
    min-height: 44px;
  }
  /* Excepción para inline links en parrafos/footer (evitar destruir layout) */
  p a, footer a, li a { min-height: auto; }
  /* Pero forzar para botones/CTAs */
  .btn, button.nav-trigger, .nav-burger,
  .grow-tab, .bt-opt, .ct-opt, .sq-faq-cat,
  .sq-cta, .sq-q-opts button { min-height: 44px; }
}

/* #9 Mobile-friendly grids: pricing teaser, infra, team */
@media (max-width: 760px) {
  .pricing-teaser .pt-cards,
  .infra-track,
  .team-grid {
    gap: 16px;
  }
  .pt-card, .team-card { padding: 20px !important; }
  /* Country switcher: scroll-x */
  .countries-grid, .country-switch {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .countries-grid > *,
  .country-switch > * { flex-shrink: 0; scroll-snap-align: start; }
}

/* #10 Footer mobile: 2-col grid + collapse + headings tappable */
@media (max-width: 760px) {
  footer .footer-cols,
  footer [class*="footer-grid"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
  }
  footer h4, footer .footer-heading {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  footer ul { padding: 0; list-style: none; }
  footer li { margin: 4px 0; }
  footer a { font-size: 13px; padding: 4px 0; display: inline-block; }
}
@media (max-width: 540px) {
  footer .footer-cols,
  footer [class*="footer-grid"] {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Logo + tagline arriba en mobile */
  footer [class*="footer-brand"],
  footer .footer-logo {
    grid-column: 1 / -1;
    margin-bottom: 16px;
  }
}

/* Padding lateral consistente en mobile (evita contenido pegado al borde) */
@media (max-width: 540px) {
  .wrap, .wrap-narrow {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* Spacing reducido en sec mobile */
  .sec { padding: 48px 0 !important; }
}

/* Prevent horizontal overflow global en mobile */
@media (max-width: 760px) {
  html, body { overflow-x: hidden; }
  img, video { max-width: 100%; height: auto; }
}

/* =============================================================
   GLOBAL h1 mobile override (cubre TODAS las páginas)
   Las páginas de productos usan h1 con style="font-size: clamp(56px, 9vw, 120px)"
   inline. Sobrescribimos con !important.
   ============================================================= */
@media (max-width: 540px) {
  main h1[style*="clamp(56px"],
  main h1[style*="font-size: clamp(56px"],
  .hero-scene h1,
  .clients-hero h1,
  section.sec h1[style] {
    font-size: clamp(34px, 10vw, 48px) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.05 !important;
    max-width: 16ch !important;
  }
  /* Sub-text del hero */
  .hero-scene p, main h1 + p {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
}

/* hero-scene altura mobile (productos pages tienen 110vh max-height: 880px) */
@media (max-width: 760px) {
  .hero-scene {
    height: auto !important;
    min-height: 70vh !important;
    max-height: none !important;
    padding: 24px 0 !important;
  }
}

/* sticky-story con 400vh es jank en mobile — collapse a layout normal */
@media (max-width: 760px) {
  .sticky-story {
    height: auto !important;
    padding: 32px 0 !important;
  }
  .sticky-story [class*="sticky-step"],
  .sticky-story [class*="story-step"] {
    position: static !important;
    height: auto !important;
    margin-bottom: 24px;
  }
}

/* Forms en mobile (contacto.html) */
@media (max-width: 540px) {
  form input, form textarea, form select {
    font-size: 16px !important; /* evita zoom iOS */
    min-height: 48px !important;
    width: 100% !important;
  }
  form textarea { min-height: 120px !important; }
  form .form-row, form [class*="row"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  form button, form [type="submit"] {
    width: 100%;
    min-height: 48px;
  }
}

/* Países (cobertura.html) — country cards stack mobile */
@media (max-width: 760px) {
  .country-card, [class*="country-"] {
    width: 100%;
  }
}

/* Logos / clients band en mobile (clients.html, home) */
@media (max-width: 540px) {
  .clients-logos, [class*="logos-band"] {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    padding: 8px 16px;
  }
  .clients-logos > *, [class*="logo-item"] {
    flex-shrink: 0;
    min-height: 32px;
  }
}

/* 404 page mobile fix */
@media (max-width: 540px) {
  body[class*="404"] h1,
  main h1[style*="clamp(56px, 9vw"] {
    font-size: clamp(40px, 12vw, 56px) !important;
  }
}

/* =============================================================
   PER-PAGE TWEAKS (10 mejoras específicas por página)
   ============================================================= */

/* CLIENTES: stats 4-col → 2x2 mobile + reseñas cards stack */
@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .stats-grid .n {
    font-size: clamp(28px, 8vw, 40px) !important;
  }
  .reviews-grid, [class*="testimonial-grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}
@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr !important; }
}

/* COBERTURA: country cards más compactas + scroll-x para tabla */
@media (max-width: 760px) {
  .country-grid, [class*="cobertura-grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Tabla de comparación países: scroll-x */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* CONTACTO: form stack + 16px font (no zoom iOS) + mapa height reducido */
@media (max-width: 760px) {
  .contact-grid, [class*="contact-cols"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  iframe[src*="maps"], .contact-map {
    height: 280px !important;
    width: 100% !important;
  }
  /* Channels grid stack */
  .channels-grid, [class*="channels-"] {
    grid-template-columns: 1fr !important;
  }
}

/* 404: centrar + spacing mobile */
@media (max-width: 540px) {
  body main > section:first-child {
    padding: 80px 16px !important;
  }
}

/* PRODUCTOS pages (6 sub-pages): sticky-story → linear, hero-scene shorter,
   feature grids stack, CTAs full-width */
@media (max-width: 760px) {
  /* feature grids */
  [id="agentes"] .agent-grid,
  [id="categorias"] .cat-grid,
  .feature-grid, [class*="features-"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Code blocks / mockups: scroll-x */
  pre, code, [class*="code-block"], [class*="mockup"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  /* Hero scene mockups: stack column */
  .hero-scene > .wrap > [class*="grid"],
  .hero-scene .hero-art-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Marketplace categorías: scroll-x mobile (muchas categorías) */
@media (max-width: 760px) {
  [id="categorias"] .grid,
  [class*="cat-cards"] {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 16px;
  }
  [id="categorias"] .grid > *,
  [class*="cat-card"] {
    flex-shrink: 0;
    min-width: 280px;
    scroll-snap-align: start;
  }
}

/* IA page: dark hero — asegurar contraste mobile */
@media (max-width: 540px) {
  .hero-scene[style*="radial-gradient"] {
    padding: 32px 0 !important;
  }
  .hero-scene[style*="radial-gradient"] h1,
  .hero-scene[style*="radial-gradient"] p {
    color: #fff !important;
  }
}

/* General: section spacing más cómodo en mobile */
@media (max-width: 540px) {
  .sec { padding: 56px 0 !important; }
  .sec[style*="padding-top: 0"] { padding-top: 0 !important; }
  /* Eyebrows con menos margen */
  .eyebrow { font-size: 11px !important; }
  /* Lede subtitle */
  .lede {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
  /* H2 secciones */
  h2 {
    font-size: clamp(28px, 8vw, 40px) !important;
    letter-spacing: -.02em !important;
    line-height: 1.1 !important;
  }
}
