/* ================================================================
   noova360 · Design System
   Fuentes: Montserrat (display / headings) + Poppins (body / UI)
   Paleta:  Negro puro, blancos, grises
   ================================================================ */

/* ── 1. TOKENS ───────────────────────────────────────────────── */
:root {
  /* Colores — Paleta dark navy + indigo eléctrico */
  --bg:        #020207;
  --bg-1:      #09091e;
  --bg-2:      #07071c;
  --bg-3:      #0b0b26;
  --surface:   rgba(99,102,241,.1);
  --bdr:       rgba(99,102,241,.18);
  --bdr-2:     rgba(99,102,241,.3);
  --bdr-3:     rgba(99,102,241,.45);
  --txt:       #f0f0fc;
  --txt-2:     #a8a8d8;
  --txt-3:     #6e6ea8;
  --white:     #ffffff;
  /* Accent principal — indigo eléctrico */
  --accent:    #5B5BF6;
  --accent-2:  #4338CA;
  --accent-dim:rgba(91,91,246,.18);
  /* Fuchsia → indigo claro (para chips, badges, checks) */
  --fuchsia:     #818CF8;
  --fuchsia-2:   #6366F1;
  --fuchsia-dim: rgba(129,140,248,.14);
  --fuchsia-bdr: rgba(129,140,248,.28);
  /* Alias green → indigo para refs existentes */
  --green:     #818CF8;
  --green-dim: rgba(129,140,248,.14);
  --amber:     #f59e0b;
  --red:       #ef4444;
  /* Neon blue para glows */
  --neon:      rgba(79,70,229,.28);
  --neon-2:    rgba(99,102,241,.18);

  /* Tipografía */
  --f-display: "Montserrat", system-ui, sans-serif;
  --f-body:    "Poppins",    system-ui, sans-serif;

  /* Radios */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Layout */
  --shell: 1180px;
  --hh:    72px;

  /* Animación */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.4, 0, 1, 1);
}

/* ── 2. RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html                    { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Glow atmosférico global en parte superior */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 65vh;
  background: radial-gradient(ellipse at 50% 0%, rgba(79,70,229,.32) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
main, .site-footer { position: relative; z-index: 1; }
.site-header { z-index: 200; }
img              { display: block; max-width: 100%; height: auto; }
a                { color: inherit; text-decoration: none; }
ul, ol           { list-style: none; }
button           { font-family: inherit; cursor: pointer; border: none; background: none; }
svg              { display: block; }

/* ── 3. UTILIDADES ───────────────────────────────────────────── */
.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .shell { width: min(100% - 5rem, var(--shell)); }
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  padding: .5rem 1rem;
  background: var(--white); color: var(--bg);
  font-family: var(--f-display); font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ── 4. TIPOGRAFÍA ───────────────────────────────────────────── */

/* Montserrat — display / impacto */
.t-display {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.t-heading {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.14;
}

/* Eyebrow — Montserrat uppercase pequeño */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--f-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8b93e8;
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: "";
  width: 16px; height: 1px;
  background: currentColor;
}

/* Section titles — Montserrat */
.sec-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.14;
  margin-bottom: .75rem;
}
.sec-title em {
  font-style: normal;
  border-bottom: 2px solid rgba(255,255,255,.38);
}

/* Section lede — Poppins */
.sec-lede {
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 400;
  color: var(--txt-2);
  line-height: 1.75;
  letter-spacing: .01em;
}

.sec-head               { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); max-width: 42rem; }
.sec-head.center        { margin-inline: auto; text-align: center; }

/* ── 5. SECCIÓN WRAPPER ──────────────────────────────────────── */
.section      { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-alt  { background: var(--bg-1); }
.section-dark { background: var(--bg-2); }
.border-t     { border-top: 1px solid var(--bdr); }

/* ── 6. BOTONES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: .65rem 1.25rem;
  transition: transform .18s var(--ease), box-shadow .18s, background .18s, color .18s;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-solid {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 22px -6px rgba(124,58,237,.4);
}
.btn-solid:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow: 0 8px 30px -6px rgba(124,58,237,.55);
}

.btn-outline {
  background: rgba(99,102,241,.08);
  color: #c7d2fe;
  border: 1px solid rgba(99,102,241,.28);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(99,102,241,.16);
  border-color: rgba(99,102,241,.45);
  color: var(--white);
}

/* Botón glass neon — para usar en secciones oscuras */
.btn-glass {
  background: rgba(79,70,229,.12);
  color: #c7d2fe;
  border: 1px solid rgba(99,102,241,.32);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 18px -6px rgba(99,102,241,.25), inset 0 1px 0 rgba(255,255,255,.06);
}
.btn-glass:hover {
  background: rgba(79,70,229,.22);
  border-color: rgba(99,102,241,.5);
  color: var(--white);
  box-shadow: 0 0 28px -6px rgba(99,102,241,.4), inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--txt-2);
  border: none;
  padding-inline: .75rem;
}
.btn-ghost:hover { color: var(--white); }

.btn-sm { padding: .55rem 1.1rem; font-size: .78rem; }

.btn-wa {
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--bdr-2);
}
.btn-wa:hover { background: var(--surface); border-color: var(--bdr-3); transform: translateY(-1px); }

.btn-lg  { padding: .8rem 1.55rem; font-size: .875rem; }
.btn-xl  { padding: .95rem 1.9rem; font-size: .9375rem; }

/* ── 7. HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hh);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-bottom: 1px solid var(--bdr);
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 1px 0 0 rgba(99,102,241,.12), 0 4px 32px -8px rgba(79,70,229,.12);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--hh);
  flex: 1;
}
.hdr-inner .logo {
  flex-shrink: 0;
  min-width: 0;
}
@media (min-width: 820px) {
  .hdr-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
  .hdr-nav-main { justify-self: center; }
}
.logo img { height: 40px; width: auto; max-width: 160px; }

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 820px) { .site-nav { display: flex; } }

.site-nav a {
  font-family: var(--f-body);
  font-size: .8125rem;
  font-weight: 500;
  color: #b8b8e4;
  transition: color .2s;
}
.site-nav a:hover { color: var(--white); }

.hdr-ctas { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

/* Móvil/tablet estrecho: solo logo + menú (evita solaparse Iniciar sesión / CTA) */
@media (max-width: 819px) {
  .hdr-ctas-desktop,
  .hdr-nav-main.site-nav {
    display: none !important;
  }
  .nav-toggle {
    display: inline-flex !important;
  }
}

@media (min-width: 820px) {
  .hdr-ctas-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none !important;
  }
}

/* Hamburguesa (display lo fijan los media queries; por defecto oculto) */
.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  margin-left: auto;
  padding: 0;
  border-radius: var(--r-sm);
  color: #e8e8ff;
  border: 1px solid var(--bdr-2);
  background: rgba(99,102,241,.12);
  transition: background .2s, border-color .2s, color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle:hover {
  background: rgba(99,102,241,.22);
  border-color: var(--bdr-3);
  color: var(--white);
}
.nav-toggle-bars {
  display: block;
  width: 20px;
  height: 14px;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s ease, top .22s var(--ease);
}
.nav-toggle-bars span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s ease, top .22s var(--ease);
}
.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars::after { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 6px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 6px;
  transform: rotate(-45deg);
}

/* Panel móvil */
.site-mobile-panel {
  position: fixed;
  top: var(--hh);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  padding: 1.25rem 1.25rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(2, 2, 7, 0.96);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--bdr);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.site-mobile-panel[hidden] {
  display: none !important;
}
.site-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--bdr);
  margin-bottom: 1.25rem;
}
.site-mobile-nav a {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt);
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  transition: background .2s, color .2s;
}
.site-mobile-nav a:hover,
.site-mobile-nav a:focus-visible {
  background: rgba(99,102,241,.15);
  color: var(--white);
  outline: none;
}
.hdr-ctas-mobile {
  flex-direction: column;
  align-items: stretch;
  gap: .65rem;
}
.hdr-ctas-mobile .btn-block-mobile {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ── 8. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  /* Cabecera fija (--hh): dejar hueco visible debajo del header */
  padding-top: max(calc(var(--hh) + 1.1rem), clamp(4.5rem, 9vw, 7rem));
  padding-bottom: clamp(4rem, 7vw, 6rem);
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  /* Grid de cuadros */
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    /* Glow indigo-blue central */
    radial-gradient(ellipse 75% 55% at 55% 30%, rgba(79,70,229,.26) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 8% 70%,  rgba(99,102,241,.14) 0%, transparent 52%),
    radial-gradient(ellipse 30% 35% at 92% 20%,  rgba(67,56,202,.12) 0%, transparent 48%),
    /* Fade a negro en bordes */
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 38%, rgba(5,5,15,.9) 80%);
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1.15fr; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(99,102,241,.2);
  border: 1px solid rgba(165,180,252,.45);
  border-radius: var(--r-pill);
  padding: .35rem 1rem;
  font-family: var(--f-display);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #eef2ff;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 24px -4px rgba(99,102,241,.35);
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 10px #6366f1;
  animation: pulse 2s ease infinite;
}

.hero-h1 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.35rem;
}
.hero-h1 .accent-word {
  color: var(--white);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white);
  background-clip: unset;
}

.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--txt-2);
  line-height: 1.75;
  max-width: 38ch;
  margin-bottom: 2rem;
  letter-spacing: .01em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }

.hero-proof   { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .5rem; }
.proof-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-body);
  font-size: .8rem;
  font-weight: 500;
  color: #a5b4fc;
  padding: .45rem .9rem .45rem .65rem;
  background: rgba(79,70,229,.1);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.proof-item:hover {
  background: rgba(79,70,229,.18);
  border-color: rgba(99,102,241,.4);
  color: var(--white);
  box-shadow: 0 0 16px -4px rgba(99,102,241,.25);
}
.proof-item svg { width: 13px; height: 13px; color: #818cf8; flex-shrink: 0; }

/* ── 9. DASHBOARD MOCKUP ─────────────────────────────────────── */
.dash-wrap {
  border-radius: var(--r-xl);
  border: 1px solid rgba(129,140,248,.38);
  overflow: hidden;
  box-shadow:
    0 32px 100px -20px rgba(5,5,15,.9),
    0 0 0 1px rgba(99,102,241,.08),
    0 0 60px -16px rgba(79,70,229,.25);
  background: var(--bg-2);
  position: relative;
}
.dash-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem .9rem;
  background: var(--bg-1);
  border-bottom: 1px solid var(--bdr);
}
.dash-tabs   { display: flex; gap: .05rem; }
.dash-tab {
  font-family: var(--f-body);
  font-size: .62rem; font-weight: 500;
  color: var(--txt-3);
  padding: .28rem .6rem;
  border-radius: var(--r-xs);
  transition: background .15s, color .15s; cursor: default;
}
.dash-tab.on { background: var(--surface); color: var(--white); font-weight: 600; }
.dash-status { display: flex; align-items: center; gap: .4rem; }
.s-dot       { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 5px var(--green); }
.s-txt       { font-family: var(--f-body); font-size: .6rem; color: var(--txt-3); }

.dash-body   { display: grid; grid-template-columns: 130px 1fr; min-height: 300px; }
@media (max-width: 580px) { .dash-body { grid-template-columns: 1fr; } }

.dash-sidebar {
  background: var(--bg-1);
  border-right: 1px solid var(--bdr);
  padding: .65rem .45rem;
  display: flex; flex-direction: column; gap: .1rem;
}
.d-nav {
  display: flex; align-items: center; gap: .45rem;
  padding: .42rem .55rem; border-radius: var(--r-xs);
  font-family: var(--f-body); font-size: .62rem; font-weight: 500;
  color: var(--txt-3); transition: background .15s, color .15s; cursor: default;
}
.d-nav.on    { background: rgba(255,255,255,.07); color: var(--white); }
.d-nav:hover { background: rgba(255,255,255,.05); color: var(--txt); }
.d-nav svg   { width: 11px; height: 11px; flex-shrink: 0; }

.dash-main    { padding: .8rem; overflow: hidden; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: .45rem; margin-bottom: .65rem; }
@media (max-width: 400px) { .dash-metrics { grid-template-columns: 1fr; } }

.metric-card {
  background: var(--bg-3); border: 1px solid var(--bdr); border-radius: var(--r-md);
  padding: .55rem .65rem;
}
.mc-label { font-family: var(--f-display); font-size: .5rem; font-weight: 600; color: var(--txt-3); margin-bottom: .18rem; text-transform: uppercase; letter-spacing: .08em; }
.mc-value { font-family: var(--f-display); font-size: 1.05rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.mc-delta { font-family: var(--f-body);   font-size: .52rem; font-weight: 500; margin-top: .12rem; }
.mc-delta.up  { color: var(--green); }
.mc-delta.neu { color: var(--txt-3); }

.dash-content { display: grid; grid-template-columns: 1.4fr 1fr; gap: .5rem; }
@media (max-width: 480px) { .dash-content { grid-template-columns: 1fr; } }

.d-panel       { background: var(--bg-3); border: 1px solid var(--bdr); border-radius: var(--r-md); padding: .7rem; }
.d-panel-title { font-family: var(--f-display); font-size: .55rem; font-weight: 700; color: var(--txt-3); margin-bottom: .55rem; text-transform: uppercase; letter-spacing: .09em; }

/* Gráfico de barras */
.bar-chart    { display: flex; align-items: flex-end; gap: .32rem; height: 64px; }
.bar-col      { flex: 1; border-radius: 3px 3px 0 0; background: rgba(255,255,255,.1); min-height: 5px; }
.bar-col.hi   { background: rgba(255,255,255,.72); }
.bar-col.md   { background: rgba(255,255,255,.34); }

/* Gauge / progress */
.gauge-list   { display: flex; flex-direction: column; gap: .5rem; margin-top: .7rem; }
.gauge-item   {}
.gauge-header { display: flex; justify-content: space-between; font-family: var(--f-body); font-size: .54rem; color: var(--txt-3); margin-bottom: .22rem; }
.gauge-track  { height: 4px; background: rgba(255,255,255,.07); border-radius: var(--r-pill); overflow: hidden; }
.gauge-fill   { height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,.88)); }

/* Lista de agentes */
.agent-item   { display: flex; align-items: center; gap: .45rem; padding: .28rem 0; border-bottom: 1px solid var(--bdr); }
.agent-item:last-child { border: none; }
.a-dot        { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.a-dot.green  { background: var(--green); box-shadow: 0 0 5px var(--green); }
.a-dot.amber  { background: var(--amber); box-shadow: 0 0 5px var(--amber); }
.a-name       { font-family: var(--f-body); font-size: .6rem; font-weight: 500; color: var(--txt); flex: 1; }
.a-count      { font-family: var(--f-display); font-size: .54rem; font-weight: 700; color: var(--txt-2); padding: .12rem .38rem; background: var(--surface); border-radius: var(--r-pill); }

/* ── 10. TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  padding: 2.5rem 0;
  border-block: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(79,70,229,.04) 0%, transparent 100%);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.trust-metric {
  text-align: center;
  padding: .75rem 3rem;
  flex: 1 1 auto;
}
.trust-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-divider { display: none; }
  .trust-metric  { padding: .75rem 1.5rem; min-width: 50%; }
}
.tm-value {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem; font-weight: 800;
  color: var(--white); letter-spacing: -.045em;
  line-height: 1;
  margin-bottom: .3rem;
}
.tm-label {
  font-family: var(--f-body);
  font-size: .7rem; font-weight: 400;
  color: rgba(255,255,255,.52);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── 11. BRAND LOGOS — marquee infinito ──────────────────────── */
.brands-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--bdr);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-family: var(--f-display);
  font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--txt-3);
  margin-bottom: 1.75rem;
  padding-inline: max(1.25rem, calc((100% - var(--shell)) / 2));
}

/* Wrapper que centra el marquee con el mismo ancho que .shell */
.marquee-shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .marquee-shell { width: min(100% - 5rem, var(--shell)); }
}

/* Fade lateral dentro del shell */
.marquee-outer {
  overflow: visible;
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%);
  mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%);
}

/* Track — ancho natural, se mueve en loop */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  padding: .5rem 0;
  animation: marquee-scroll 55s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Nombre de marca — texto puro, sin caja */
.brand-item {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.42);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
  line-height: 1;
  transition: color .3s;
  user-select: none;
}
.brand-item:hover { color: rgba(255,255,255,.88); }

/* Punto separador entre nombres */
.brand-sep {
  flex-shrink: 0;
  color: rgba(255,255,255,.2);
  font-size: 1rem;
  line-height: 1;
  padding: 0 1.2rem;
  user-select: none;
  pointer-events: none;
}

/* ── 12. SECCIÓN DOLOR ───────────────────────────────────────── */

/* Layout superior: título izq + cita der */
.pain-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 5rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 760px) { .pain-hero { grid-template-columns: 1fr; gap: 2rem; } }

.pain-hero-copy .sec-title { margin-bottom: 0; }

/* Cita estilizada — texto flotante sin caja ni línea */
.pain-quote {
  font-family: var(--f-body);
  font-size: clamp(.95rem, 1.6vw, 1.12rem);
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,.68);
  line-height: 1.82;
  padding: 0;
  background: none;
  border: none;
  margin: 0;
}
.pain-qmark {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-family: Georgia, serif;
  font-style: normal;
  color: rgba(129,140,248,.5);
  margin-bottom: .6rem;
  letter-spacing: -.05em;
  user-select: none;
}

/* Grid de cards */
.pain-grid  { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(3,1fr); } }

.pain-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--bdr);
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
/* Borde superior gradiente */
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, rgba(79,70,229,.8), rgba(168,85,247,.4), transparent);
}
.pain-card:hover {
  border-color: rgba(99,102,241,.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(79,70,229,.2);
}

/* Número de orden */
.pain-num {
  display: block;
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: #818cf8;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pain-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(99,102,241,.16); border: 1px solid rgba(129,140,248,.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.pain-icon svg  { width: 22px; height: 22px; color: #c7d2fe; }
.pain-title     { font-family: var(--f-display); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.02em; }
.pain-text      { font-family: var(--f-body); font-size: .86rem; color: var(--txt-2); line-height: 1.72; }

/* ── 13. PLATAFORMA / PATHS ──────────────────────────────────── */
.paths-grid { display: grid; gap: 1.25rem; }
@media (min-width: 760px) { .paths-grid { grid-template-columns: repeat(3,1fr); } }

.path-card {
  position: relative;
  padding: 1.85rem 1.65rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--bdr-2);
  background: linear-gradient(155deg, rgba(255,255,255,.07) 0%, rgba(99,102,241,.04) 45%, transparent 70%);
  box-shadow: 0 0 0 1px rgba(99,102,241,.06), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.path-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.1) 0%, transparent 48%);
  pointer-events: none;
}
.path-card:hover  {
  border-color: rgba(129,140,248,.55);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -12px rgba(79,70,229,.4), 0 0 0 1px rgba(99,102,241,.12), inset 0 1px 0 rgba(255,255,255,.08);
}
.path-card > *    { position: relative; }

.path-num {
  font-family: var(--f-display);
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #a5b4fc; margin-bottom: .9rem;
  display: flex; align-items: center; gap: .5rem;
}
.path-num::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(129,140,248,.35), transparent); }

.path-icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: rgba(99,102,241,.14); border: 1px solid rgba(129,140,248,.35);
  box-shadow: 0 0 20px -6px rgba(99,102,241,.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.path-icon svg { width: 22px; height: 22px; color: #e0e7ff; }
.path-title    { font-family: var(--f-display); font-size: 1rem; font-weight: 700; margin-bottom: .45rem; letter-spacing: -.02em; }
.path-text     { font-family: var(--f-body);    font-size: .84rem; color: var(--txt-2); line-height: 1.72; letter-spacing: .01em; margin-bottom: 1rem; }
.path-tags     { display: flex; flex-wrap: wrap; gap: .35rem; }
.path-tag {
  font-family: var(--f-display);
  font-size: .62rem; font-weight: 600; color: #e0e7ff;
  padding: .28rem .65rem;
  background: rgba(99,102,241,.16);
  border: 1px solid rgba(129,140,248,.38);
  border-radius: var(--r-pill);
  box-shadow: 0 0 12px -4px rgba(99,102,241,.2);
}

/* ── 14. FEATURES ────────────────────────────────────────────── */
.features-grid {
  display: grid; gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 2.5rem;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px)  { .features-grid { grid-template-columns: repeat(3,1fr); } }

.feat {
  background: var(--bg-1);
  padding: 2.5rem 2.25rem;
  transition: background .25s;
  display: flex;
  flex-direction: column;
}
.feat:hover { background: var(--bg-2); }

.feat-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; border: 1px solid var(--bdr);
}
.feat-icon svg  { width: 20px; height: 20px; }
.f-purple,
.f-blue,
.f-green,
.f-amber,
.f-red,
.f-white {
  background: rgba(99,102,241,.16);
  border-color: rgba(129,140,248,.38);
  box-shadow: 0 0 18px -4px rgba(99,102,241,.28);
}
.f-purple svg,
.f-blue   svg,
.f-green  svg,
.f-amber  svg,
.f-red    svg,
.f-white  svg { color: #e0e7ff; }

.feat-title { font-family: var(--f-display); font-size: .96rem; font-weight: 700; margin-bottom: .55rem; letter-spacing: -.02em; }
.feat-text  { font-family: var(--f-body);    font-size: .84rem; color: var(--txt-2); line-height: 1.7; letter-spacing: .01em; }

/* ── 15. CÓMO FUNCIONA ───────────────────────────────────────── */
.steps-grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px) { .steps-grid { grid-template-columns: repeat(3,1fr); } }

.step {
  position: relative; padding: 1.75rem;
  background: var(--bg-1);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  transition: border-color .25s, box-shadow .25s;
}
.step:hover {
  border-color: rgba(99,102,241,.35);
  box-shadow: 0 0 30px -10px rgba(79,70,229,.25);
}
.step::after { display: none; }

.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.22); border: 1px solid rgba(165,180,252,.45);
  font-family: var(--f-display); font-size: .82rem; font-weight: 800; color: #eef2ff;
  margin-bottom: 1rem;
  box-shadow: 0 0 18px -6px rgba(99,102,241,.3);
  box-shadow: 0 0 16px -4px rgba(99,102,241,.3);
}
.step-title { font-family: var(--f-display); font-size: .96rem; font-weight: 700; margin-bottom: .35rem; letter-spacing: -.02em; }
.step-text  { font-family: var(--f-body);    font-size: .84rem; color: var(--txt-2); line-height: 1.72; letter-spacing: .01em; }
.step-badge {
  display: inline-flex; align-items: center; gap: .28rem;
  font-family: var(--f-display); font-size: .62rem; font-weight: 700; color: var(--txt-3);
  margin-top: .75rem; padding: .25rem .65rem;
  background: rgba(168,85,247,.07); border: 1px solid rgba(168,85,247,.16); border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.step-badge svg { width: 11px; height: 11px; color: var(--fuchsia); }

/* ── 16. POR QUÉ NOOVA360 (nuevo visual) ─────────────────────── */
.why-section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.why-manifesto { display: flex; flex-direction: column; gap: 0; }

.why-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(2.5rem,5vw,4rem) 0;
  border-bottom: 1px solid var(--bdr);
  position: relative;
}
.why-item:last-child { border-bottom: none; }
.why-item.reverse .why-copy   { order: 2; }
.why-item.reverse .why-visual { order: 1; }

@media (max-width: 760px) {
  .why-item { grid-template-columns: 1fr; }
  .why-item.reverse .why-copy   { order: unset; }
  .why-item.reverse .why-visual { order: unset; }
}

.why-copy { width: 100%; }
.why-num {
  font-family: var(--f-display);
  font-size: 5rem; font-weight: 900;
  color: rgba(199,210,254,.36);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: -.5rem;
  user-select: none;
  text-shadow: 0 0 56px rgba(99,102,241,.28);
}
.why-title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.why-text {
  font-family: var(--f-body);
  font-size: .9375rem; font-weight: 400;
  color: var(--txt-2); line-height: 1.72;
}
.why-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.25rem;
  font-family: var(--f-display); font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: #c7d2fe;
  padding: .32rem .75rem;
  background: rgba(79,70,229,.13);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: var(--r-pill);
  box-shadow: 0 0 16px -4px rgba(99,102,241,.2);
}
.why-chip svg { width: 11px; height: 11px; }

/* Infografías de cada item */
.why-visual {
  display: flex; align-items: center; justify-content: center;
  min-height: 290px;
  width: 100%;
}
.infographic {
  width: 100%;
  min-height: 290px;
  border-radius: var(--r-lg);
  border: 1px solid var(--bdr-2);
  background: var(--bg-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  padding: 1.85rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infographic::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.05) 0%, transparent 55%);
  pointer-events: none;
}
.infographic > * { position: relative; }

/* Infographic 01 — nodos conectados */
.node-graph { display: flex; flex-direction: column; gap: .75rem; }
.node-row   { display: flex; align-items: center; justify-content: center; gap: .75rem; }
.node {
  display: flex; flex-direction: column; align-items: center; gap: .28rem;
  padding: .55rem .75rem;
  background: var(--bg-3); border: 1px solid var(--bdr-2);
  border-radius: var(--r-md);
  font-family: var(--f-display); font-size: .58rem; font-weight: 700; color: #c4c4e8;
}
.node svg   { width: 16px; height: 16px; }
.node.center {
  background: var(--white); color: var(--bg);
  border-color: var(--white);
  box-shadow: 0 0 24px rgba(255,255,255,.15);
}
.node.center svg { color: var(--bg); }
.node-line  {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bdr-3), transparent);
}
.node-arrow { font-size: .7rem; color: #8b93e8; line-height: 1; }

/* Infographic 02 — flujo de automatización */
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step  {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .55rem 0;
}
.flow-step:not(:last-child) { border-bottom: 1px dashed var(--bdr); }
.flow-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3); border: 1px solid var(--bdr-2);
}
.flow-dot svg { width: 13px; height: 13px; color: var(--txt-2); }
.flow-dot.done { background: rgba(168,85,247,.12); border-color: rgba(168,85,247,.3); }
.flow-dot.done svg { color: var(--fuchsia); }
.flow-content { flex: 1; }
.flow-label {
  font-family: var(--f-display); font-size: .65rem; font-weight: 700; color: var(--txt); line-height: 1.3;
}
.flow-sub { font-family: var(--f-body); font-size: .58rem; color: #9a9ac8; margin-top: .08rem; }
.flow-time {
  font-family: var(--f-display); font-size: .58rem; font-weight: 600;
  color: var(--green); padding: .12rem .35rem;
  background: var(--green-dim); border-radius: var(--r-pill); white-space: nowrap; flex-shrink: 0;
}

/* Infographic 03 — timeline */
.timeline { display: flex; flex-direction: column; gap: .5rem; }
.tl-item  { display: flex; align-items: flex-start; gap: .75rem; position: relative; }
.tl-dot-col { display: flex; flex-direction: column; align-items: center; }
.tl-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-3); border: 2px solid var(--bdr-2);
}
.tl-dot.done  { background: var(--green); border-color: var(--green); box-shadow: 0 0 8px var(--green); }
.tl-dot.active{ background: var(--white); border-color: var(--white); box-shadow: 0 0 8px rgba(255,255,255,.4); }
.tl-line { width: 1px; flex: 1; min-height: 18px; background: var(--bdr); }
.tl-content { padding-top: .05rem; padding-bottom: .5rem; }
.tl-phase { font-family: var(--f-display); font-size: .65rem; font-weight: 700; color: var(--txt); letter-spacing: -.01em; }
.tl-time  { font-family: var(--f-body); font-size: .58rem; color: #9a9ac8; margin-top: .05rem; }

/* Infographic 04 — barra de precios */
.price-bars { }
.price-bar-item { display: flex; align-items: center; gap: .65rem; margin-bottom: .55rem; }
.price-bar-item:last-child { margin: 0; }
.pb-label {
  font-family: var(--f-display); font-size: .58rem; font-weight: 700; color: var(--txt-2);
  width: 88px; flex-shrink: 0; text-align: right; line-height: 1.2;
}
.pb-track { flex: 1; height: 8px; background: rgba(255,255,255,.12); border-radius: var(--r-pill); overflow: hidden; }
.pb-fill  { height: 100%; border-radius: var(--r-pill); }
.pb-fill.ours { background: linear-gradient(90deg, rgba(255,255,255,.6), var(--white)); }
.pb-fill.comp { background: rgba(255,255,255,.18); }
.pb-val   { font-family: var(--f-display); font-size: .55rem; font-weight: 700; color: var(--txt-2); min-width: 5.5rem; max-width: 6.5rem; flex-shrink: 0; text-align: right; line-height: 1.15; }
.pb-badge-ours { color: var(--white); }
.pb-badge-comp { color: var(--txt-3); }

/* Infographic 05 — checklist LATAM */
.latam-list { display: flex; flex-direction: column; gap: .45rem; }
.latam-item { display: flex; align-items: flex-start; gap: .55rem; }
.latam-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--fuchsia-dim); border: 1px solid var(--fuchsia-bdr);
}
.latam-check svg { width: 10px; height: 10px; color: var(--fuchsia); }
.latam-txt { font-family: var(--f-body); font-size: .78rem; font-weight: 500; color: var(--txt-2); line-height: 1.4; padding-top: .15rem; }

/* ── 17. PRECIOS ─────────────────────────────────────────────── */
.pricing-grid { display: grid; gap: 1.25rem; }
@media (min-width: 760px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.price-card {
  padding: 2.25rem 2rem;
  border-radius: var(--r-xl); border: 1px solid var(--bdr-2);
  background: var(--bg-1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.price-card:hover { border-color: rgba(124,58,237,.3); transform: translateY(-3px); }
.price-card.featured {
  border-color: rgba(99,102,241,.45);
  background: var(--bg-2);
  box-shadow: 0 0 0 1px rgba(99,102,241,.18), 0 24px 60px -16px rgba(79,70,229,.35);
}
.price-card.featured::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 50% at 50% -5%, rgba(79,70,229,.22) 0%, transparent 60%);
  pointer-events: none;
}
.price-card.featured::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.price-badge {
  position: absolute; top: .9rem; right: .9rem;
  font-family: var(--f-display); font-size: .58rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: var(--white); color: var(--bg);
  padding: .22rem .6rem; border-radius: var(--r-pill);
}
.price-plan  { font-family: var(--f-display); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #a5b4fc; margin-bottom: .6rem; }
.price-amount { font-family: var(--f-display); font-size: 2.1rem; font-weight: 800; color: var(--white); letter-spacing: -.04em; margin-bottom: .18rem; }
.price-amount .price-amount-note {
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--txt-2);
  margin-left: .2rem;
  vertical-align: baseline;
  letter-spacing: 0;
}
.price-desc  { font-family: var(--f-body); font-size: .8rem; color: var(--txt-2); margin-bottom: 1.35rem; line-height: 1.55; }
.price-list  { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.35rem; }
.price-li {
  display: flex; align-items: flex-start; gap: .45rem;
  font-family: var(--f-body); font-size: .8rem; color: var(--txt-2);
  letter-spacing: .01em;
}
.price-li svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: .15rem; }
.price-li.ok svg   { color: var(--fuchsia); }
.price-li.no svg   { color: #7c7cb0; }
.price-li.no       { color: #8a8ab8; }

/* ── 17b. PRECIOS — calculador con slider + rejilla de planes ─ */
.pricing-calc {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pc-mode {
  display: flex;
  padding: .2rem;
  border-radius: 12px;
  border: 1px solid var(--bdr-2);
  background: rgba(0,0,0,.25);
  gap: .15rem;
}
.pc-mode-btn {
  flex: 1;
  font-family: var(--f-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--txt-2);
  padding: .65rem .5rem;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}
.pc-mode-btn:hover { color: var(--white); }
.pc-mode-btn.active {
  background: rgba(99,102,241,.25);
  color: #eef2ff;
  box-shadow: 0 0 20px -8px rgba(99,102,241,.4);
}

.pc-slider-block { padding: 0 .25rem; max-width: 40rem; margin-inline: auto; width: 100%; }
.pc-slider-label {
  display: block;
  font-family: var(--f-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: .85rem;
  text-align: center;
}
.pc-slider-row { padding: .25rem 0 .5rem; }
.pc-range {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  appearance: none;
  background: rgba(255,255,255,.1);
  outline: none;
  cursor: pointer;
}
.pc-range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #eef2ff, #a5b4fc);
  border: 2px solid rgba(15,15,35,.9);
  box-shadow: 0 0 0 2px rgba(99,102,241,.5), 0 4px 16px rgba(79,70,229,.45);
  cursor: grab;
}
.pc-range::-webkit-slider-thumb:active { cursor: grabbing; }
.pc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #eef2ff, #a5b4fc);
  border: 2px solid rgba(15,15,35,.9);
  box-shadow: 0 0 0 2px rgba(99,102,241,.5), 0 4px 16px rgba(79,70,229,.45);
  cursor: grab;
}
.pc-scale-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
  padding: 0 .15rem;
  margin-top: .4rem;
  font-family: var(--f-body);
  font-size: .68rem;
  color: var(--txt-3);
}
.pc-scale-labels #pc-scale-mid {
  text-align: center;
  flex: 1;
  font-size: .62rem;
  color: var(--txt-2);
  line-height: 1.35;
}
.pc-tier-hint {
  font-family: var(--f-body);
  font-size: .72rem;
  color: var(--txt-3);
  text-align: center;
  line-height: 1.55;
}
.pc-tier-hint--footer {
  margin: 0 auto;
  max-width: 40rem;
  padding: 0 .75rem;
}

.pc-plans-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 640px) {
  .pc-plans-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (min-width: 1040px) {
  .pc-plans-grid { grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
}

.pc-plan-card.price-card {
  height: 100%;
  padding: 1.55rem 1.4rem 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255,255,255,.075);
  background:
    linear-gradient(160deg, rgba(255,255,255,.045) 0%, transparent 42%),
    var(--bg-1);
  box-shadow: 0 4px 28px rgba(0,0,0,.22);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.pc-plan-card.price-card:hover {
  border-color: rgba(167,139,250,.28);
  box-shadow: 0 8px 36px rgba(0,0,0,.28);
  transform: translateY(-2px);
}
.pc-plan-card.price-card.featured {
  border-color: rgba(129,140,248,.5);
  box-shadow:
    0 0 0 1px rgba(99,102,241,.2),
    0 12px 48px -12px rgba(79,70,229,.4);
}

.pc-plan-card {
  position: relative;
  z-index: 0;
}
.pc-plan-card.featured {
  z-index: 1;
}

/* Altura fija: alinea títulos entre columnas; el chip solo se ve en la tarjeta activa */
.pc-plan-badge-slot {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 2.35rem;
  margin-bottom: .75rem;
}

.pc-plan-badge-slot .why-chip.pc-plan-rec-tag {
  margin-top: 0;
  text-align: center;
  justify-content: center;
  max-width: 100%;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .32rem .78rem;
  line-height: 1.35;
  flex-wrap: wrap;
}
.pc-plan-badge-slot .why-chip.pc-plan-rec-tag svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
/* .why-chip fuerza display:inline-flex y anula el [hidden] nativo del navegador */
.pc-plan-badge-slot .why-chip.pc-plan-rec-tag[hidden] {
  display: none !important;
}

.pc-plan-head {
  display: flex;
  flex-direction: column;
  min-height: 11.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) and (max-width: 1039px) {
  .pc-plan-head { min-height: 12.5rem; }
}
@media (max-width: 639px) {
  .pc-plan-head { min-height: 0; }
}

.pc-plan-head .price-plan {
  margin-bottom: .55rem;
  letter-spacing: .09em;
}
.pc-plan-head .price-amount {
  margin-bottom: .65rem;
  line-height: 1.05;
}
.pc-plan-head .price-desc {
  margin-bottom: 0;
  margin-top: 0;
  font-size: .78rem;
  line-height: 1.5;
  color: #b8bdd9;
}

.price-amount--enterprise {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
  margin-bottom: .65rem;
}
.price-amount--enterprise .price-amount__hero {
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--white);
}
.price-amount--enterprise .price-amount__sub {
  font-family: var(--f-body);
  font-size: .78rem;
  font-weight: 500;
  color: var(--txt-2);
  letter-spacing: .015em;
}

.pc-plan-card ul.pc-plan-features {
  flex: 1;
  margin-bottom: 1.2rem;
  padding-top: 1rem;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.065);
  gap: .62rem;
}
.pc-plan-card ul.pc-plan-features .price-li {
  font-size: .78rem;
  line-height: 1.45;
  gap: .5rem;
}
.pc-plan-card ul.pc-plan-features .price-li svg {
  width: 14px;
  height: 14px;
  margin-top: .12rem;
  opacity: .95;
}

.pc-plan-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  min-height: 2.85rem;
  padding-top: .65rem;
  padding-bottom: .65rem;
  font-size: .82rem;
}
.pc-plan-cta--outline {
  border-width: 1.5px;
}

.pc-usage {
  text-align: center;
  margin-bottom: .85rem;
  padding: .35rem 0 .15rem;
}
.pc-usage-value {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
  display: block;
  line-height: 1;
}
.pc-usage-unit {
  font-family: var(--f-body);
  font-size: .85rem;
  color: var(--txt-2);
  display: block;
  margin-top: .35rem;
}
.pc-slider-block .pc-match {
  margin-top: .55rem;
}
.pc-match {
  font-family: var(--f-body);
  font-size: .8rem;
  color: #a8adc8;
  text-align: center;
  margin: 0 auto;
  line-height: 1.55;
  max-width: 36rem;
}

/* ── 18. FAQ ─────────────────────────────────────────────────── */
.faq-list  { display: flex; flex-direction: column; gap: .55rem; max-width: 56rem; margin-inline: auto; }
.faq-item  { border: 1px solid var(--bdr); border-radius: var(--r-md); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: .9rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--f-body); font-size: .875rem; font-weight: 600; color: var(--txt);
  background: var(--bg-1); text-align: left; cursor: pointer;
  transition: background .2s;
}
.faq-q:hover { background: rgba(79,70,229,.08); }
.faq-icon    { width: 18px; height: 18px; flex-shrink: 0; color: #b4b4e0; transition: transform .3s var(--ease), color .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: #818cf8; }
.faq-a {
  font-family: var(--f-body); font-size: .85rem; color: var(--txt-2); line-height: 1.75;
  letter-spacing: .01em;
  padding: 0 1.25rem; max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding: .75rem 1.25rem 1.25rem; }

/* ── 19. CTA BAND ────────────────────────────────────────────── */
.cta-band {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse 75% 80% at 50% 50%, rgba(79,70,229,.32) 0%, transparent 65%),
    var(--bg-2);
  border: 1px solid rgba(99,102,241,.32);
  color: var(--white);
  text-align: center;
  box-shadow: 0 0 0 1px rgba(99,102,241,.15), 0 24px 80px -20px rgba(79,70,229,.35);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-ey    { font-family: var(--f-display); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(224,231,255,.88); margin-bottom: .7rem; }
.cta-title { font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -.035em; margin-bottom: .7rem; color: var(--white); }
.cta-sub   { font-family: var(--f-body); font-size: .9375rem; color: var(--txt-2); line-height: 1.7; max-width: 36ch; margin-inline: auto; margin-bottom: 2rem; letter-spacing: .01em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.cta-band .btn-solid   { background: var(--accent); color: #fff; box-shadow: 0 4px 22px -6px rgba(124,58,237,.55); }
.cta-band .btn-solid:hover { background: var(--accent-2); box-shadow: 0 8px 28px -6px rgba(124,58,237,.7); }
.cta-band .btn-outline { border-color: rgba(255,255,255,.18); color: var(--txt); background: rgba(255,255,255,.05); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }

.lead-form {
  text-align: left;
  max-width: 46rem;
  margin-inline: auto;
}
.lead-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lead-form-grid {
  display: grid;
  gap: 1rem 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lead-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lead-field--full { grid-column: 1 / -1; }
.lead-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.lead-field--inline { min-width: 0; }
.lead-fieldpair {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .lead-fieldpair { grid-template-columns: 1fr 1fr; }
}

.lead-label {
  font-family: var(--f-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(224,231,255,.82);
}
.lead-req { color: #fda4af; font-weight: 800; }

.lead-input {
  font-family: var(--f-body);
  font-size: .875rem;
  color: var(--txt);
  background: rgba(12,12,28,.65);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .62rem .85rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.lead-input::placeholder { color: var(--txt-3); opacity: .85; }
.lead-input:focus {
  border-color: rgba(129,140,248,.55);
  box-shadow: 0 0 0 3px rgba(99,102,241,.18);
}
.lead-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.25rem;
}
.lead-textarea {
  resize: vertical;
  min-height: 5rem;
  line-height: 1.55;
}

.lead-fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
.lead-legend {
  font-family: var(--f-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(224,231,255,.82);
  margin-bottom: .65rem;
  padding: 0;
}

.lead-form-consent {
  margin-top: 1.25rem;
}
.lead-check {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-family: var(--f-body);
  font-size: .78rem;
  color: var(--txt-2);
  line-height: 1.55;
  cursor: pointer;
}
.lead-check input {
  margin-top: .2rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.lead-turnstile {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.lead-turnstile:not([hidden]) { margin-bottom: .25rem; }

.lead-form-msg {
  font-family: var(--f-body);
  font-size: .82rem;
  text-align: center;
  min-height: 1.35rem;
  margin: .85rem 0 0;
}
.lead-form-msg.ok { color: #86efac; }
.lead-form-msg.err { color: #fca5a5; }

.lead-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.35rem;
}
.lead-submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.lead-submit[disabled] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

.lead-form-footnote {
  font-family: var(--f-body);
  font-size: .72rem;
  color: var(--txt-3);
  text-align: center;
  margin: 1.35rem 0 0;
  line-height: 1.5;
  max-width: 38rem;
  margin-inline: auto;
}

/* Modal — solicitud diagnóstico */
body.lead-modal-open {
  overflow: hidden;
}
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: border-box;
  overscroll-behavior: contain;
}
@media (min-width: 540px) {
  .lead-modal {
    align-items: center;
    padding: 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    padding-top: max(1.25rem, env(safe-area-inset-top, 0px));
  }
}
.lead-modal[hidden] {
  display: none !important;
}
.lead-modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(32rem, 100vw);
  max-height: min(85vh, 720px);
  max-height: min(85dvh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  border-radius: 1.15rem 1.15rem 0 0;
  border: 1px solid rgba(129, 140, 248, 0.35);
  background:
    linear-gradient(165deg, rgba(30, 27, 75, 0.97) 0%, rgba(15, 15, 35, 0.98) 45%);
  box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(99, 102, 241, 0.12);
}
@media (min-width: 540px) {
  .lead-modal-dialog {
    border-radius: 1.15rem;
    width: min(100%, 32rem);
    max-height: min(82vh, 680px);
    max-height: min(82dvh, 680px);
  }
}
.lead-modal-x {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--txt-2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lead-modal-x:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.lead-modal-x svg {
  width: 20px;
  height: 20px;
}
.lead-modal-head {
  flex-shrink: 0;
  padding: 1.35rem min(1rem, 4vw) 0.35rem;
  padding-right: max(3rem, 15vw);
  text-align: left;
}
@media (min-width: 540px) {
  .lead-modal-head {
    padding: 1.5rem 1.75rem 0.25rem;
    padding-right: 3rem;
  }
}
.lead-modal-ey {
  font-family: var(--f-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.45rem;
}
.lead-modal-title {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 4.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 0.45rem;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.lead-modal-lede {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--txt-2);
  line-height: 1.55;
  margin: 0;
}

.lead-form--modal {
  text-align: left;
  max-width: none;
  margin: 0;
  padding: 0.65rem min(1rem, 4vw) calc(1rem + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 540px) {
  .lead-form--modal {
    padding: 0.85rem 1.5rem 1.5rem;
  }
}
.lead-form--modal .lead-form-actions {
  flex-direction: column;
}
@media (min-width: 480px) {
  .lead-form--modal .lead-form-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.lead-form--modal .lead-form-actions .btn {
  flex: 1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 480px) {
  .lead-form--modal .lead-form-actions .btn {
    width: auto;
    min-width: 10rem;
  }
}

/* ── 20. FOOTER ──────────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem 0 calc(2.5rem + 60px);
  border-top: 1px solid var(--bdr);
}
.footer-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { height: 34px; width: auto; max-width: 150px; margin-bottom: .85rem; }
.footer-tagline { font-family: var(--f-body); font-size: .8rem; color: var(--txt-2); line-height: 1.65; }
.footer-col-title {
  font-family: var(--f-display);
  font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #a5b4fc; margin-bottom: .85rem;
}
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-family: var(--f-body); font-size: .8rem; color: var(--txt-2); transition: color .2s; }
.footer-links a:hover { color: var(--txt); }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .65rem;
  padding-top: 1.5rem; border-top: 1px solid var(--bdr); margin-top: 2.5rem;
}
.footer-copy { font-family: var(--f-body); font-size: .72rem; color: #8a8ab8; }

/* ── 21. WHATSAPP FLOTANTE ───────────────────────────────────── */
.wa-float {
  position: fixed; right: 1.15rem; bottom: 1.15rem; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}
body.menu-open .wa-float { z-index: 50; }
.wa-float:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(0,0,0,.4);
}
.wa-float:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.wa-float svg { width: 25px; height: 25px; }

/* ── 22. ANIMACIONES ─────────────────────────────────────────── */
@keyframes pulse   { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }

.anim-fadeup  { opacity: 0; }
.anim-fadeup.visible  { animation: fadeUp  .6s var(--ease) both; }
.anim-slidein { opacity: 0; }
.anim-slidein.visible { animation: slideIn .6s var(--ease) both; }

.delay-1  { animation-delay: .1s; }
.delay-2  { animation-delay: .2s; }
.delay-3  { animation-delay: .3s; }

/* ── 23. RESPONSIVO ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .hdr-ctas .btn-outline { display: none; }
  .why-title { font-size: 1.3rem; }
  .infographic { padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
