/* =========================================
   eXprimeNet 2026 — Digital Agency
   Design system: OFFICIAL corporate identity
   - Black #0a0a0a + Lime green #99CC33 (EXACT brand green) + White
   - Font: Calibri (with Segoe UI/system fallbacks — same visual family)
   - NO purple/violet — pure corporate palette
   ========================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --text-2: #b0b0b0;
  --text-3: #7a7a7a;
  /* OFFICIAL BRAND GREEN — extracted from eXprimeNet.svg logo */
  --accent: #99CC33;
  --accent-2: #ADD54F;
  --accent-3: #7FAA22;
  --accent-glow: rgba(153, 204, 51, 0.35);
  /* Legacy aliases mapped to green — kills all violet references safely */
  --ai: #99CC33;
  --ai-2: #ADD54F;
  --ai-glow: rgba(153, 204, 51, 0.35);
  --white: #ffffff;
  --white-2: #fafafa;
  --dark-on-white: #0a0a0a;
  --max: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --sh-glow: 0 0 0 1px rgba(153, 204, 51, 0.4), 0 20px 60px -20px rgba(153, 204, 51, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  /* Carlito (clon libre de Calibri, métricas idénticas) → Calibri (si Office instalado) → sistema */
  font-family: "Carlito", Calibri, "Segoe UI", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Open Sans", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Noise texture overlay — muy sutil */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea { font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arr { transition: transform 0.28s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

.btn-accent {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 8px 24px -8px var(--accent-glow), inset 0 0 0 1px rgba(0,0,0,0.05);
}
.btn-accent::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-accent:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 34px -10px var(--accent-glow); }
.btn-accent:hover::before { transform: translateX(120%); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(153,204,51,0.06); }

.btn-white {
  background: #0a0a0a; color: var(--text);
  border-color: #0a0a0a;
}
.btn-white:hover { background: #1a1a1a; }

.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ========== HEADER ========== */
.hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.35s var(--ease);
  background: transparent;
}
.hdr.scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

/* =============================================================
   Header sobre fondo claro (.v11-page, .light-page)
   → Cuando la página tiene fondo crema, el header transparente
     debe usar texto NEGRO para ser legible.
     Al scrollear vuelve al header oscuro habitual (blur + texto blanco).
   ============================================================= */
body:has(.v11-page) .hdr:not(.scrolled) {
  background: rgba(246, 244, 238, 0.85);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}
/* Regla legacy — la tag ya es negra por defecto en no-Home,
   así que sólo mantenemos el halo blanco para reforzar el contraste
   sobre fondo crema en secciones .v11-page (opcional, estético). */
body:has(.v11-page) .hdr:not(.scrolled) .logo .tag {
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
body:has(.v11-page) .hdr:not(.scrolled) .nav-link {
  color: #0a0a0a;
}
body:has(.v11-page) .hdr:not(.scrolled) .nav-link:hover,
body:has(.v11-page) .hdr:not(.scrolled) .nav-item:hover .nav-link {
  color: #7FAA22;
}
body:has(.v11-page) .hdr:not(.scrolled) .hdr-actions .lang,
body:has(.v11-page) .hdr:not(.scrolled) .burger,
body:has(.v11-page) .hdr:not(.scrolled) .chev {
  color: #0a0a0a;
}
body:has(.v11-page) .hdr:not(.scrolled) .btn-hdr-cta {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}
body:has(.v11-page) .hdr:not(.scrolled) .btn-hdr-cta:hover {
  background: #7FAA22;
  color: #0a0a0a;
  border-color: #7FAA22;
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

/* ---------- LOGO (SVG oficial + claim blanco) ---------- */
.logo {
  display: inline-flex; align-items: center; gap: 14px;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  display: block;
  height: 34px;
  width: auto;
  /* El SVG viene ya con verde #99CC33 de origen — no tocamos */
}
/* Logo tagline "Very Simple. Very Results."
   ─────────────────────────────────────────────
   Por defecto TODO NEGRO (#0a0a0a — mismo negro que el fondo del sitio).
   Sólo en la Home (body:has(.home-page)) se pinta en blanco + verde,
   porque ahí el header queda sobre fondo oscuro real.
*/
.logo .tag {
  display: flex; flex-direction: column;
  font-family: "Carlito", Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0.01em;
  line-height: 1.18;
  padding-left: 14px;
  border-left: 1px solid rgba(10,10,10,0.25);
}
.logo .tag > span:last-child { color: inherit; }

/* Home (fondo oscuro real) O header con scroll (fondo oscuro por scrolled)
   → tag blanca + Very Results en verde marca */
body:has(.home-page) .logo .tag,
.hdr.scrolled .logo .tag {
  color: #ffffff;
  border-left-color: rgba(255,255,255,0.28);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
body:has(.home-page) .logo .tag > span:last-child,
.hdr.scrolled .logo .tag > span:last-child {
  color: var(--accent);
}
.drawer-hdr .logo-img { height: 30px; }

.nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--text-2);
  border-radius: 10px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-item:hover .nav-link { color: var(--accent); }
/* Cuando .nav-link es un <span> (item padre no clicable), mantenemos afordance
   de menú pero sin selección de texto ni cursor de link real. */
span.nav-link {
  cursor: default;
  user-select: none;
}
span.nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.chev {
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s var(--ease);
}
.nav-item:hover .chev { transform: rotate(-135deg); margin-top: 2px; }

/* Mega-menu con iconos, más compacto y aireado */
/* Puente hover invisible: cubre el gap entre el .nav-link y el .mega
   para que el ratón pueda cruzar sin perder el :hover del .nav-item. */
.mega {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  margin-top: 12px;
  min-width: 480px;
  background: rgba(14, 14, 14, 0.97);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(153,204,51,0.06);
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  pointer-events: none;
}
/* Bridge invisible: extiende el área hover del .mega hacia arriba
   (14px) para tapar el gap y ~4px de solape con .nav-link. Solo
   activo cuando el .mega está visible, para no bloquear otros links. */
.mega::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
  background: transparent;
  pointer-events: none;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-item:hover .mega::before,
.nav-item:focus-within .mega::before {
  pointer-events: auto;
}
/* Bridge también en el .nav-item: extiende el área hover del propio
   item ~14px hacia abajo, así el :hover del .nav-item nunca se
   pierde mientras el ratón está en el gap. */
.nav-item::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 14px;
  background: transparent;
  pointer-events: none;
}
.nav-item:hover::after,
.nav-item:focus-within::after {
  pointer-events: auto;
}
.mega-hdr {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mega-hdr-ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(153,204,51,0.14);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.mega-hdr-ico svg { width: 20px; height: 20px; }
.mega-hdr h5 {
  font-size: 0.95rem; color: var(--text);
  margin: 0 0 2px; font-weight: 700;
  letter-spacing: -0.01em; text-transform: none;
}
.mega-hdr p {
  font-size: 0.78rem; color: var(--text-3);
  margin: 0; line-height: 1.35;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mega-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  font-size: 0.85rem; color: var(--text-2);
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  line-height: 1.2;
}
.mega-link-ico {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  color: var(--text-3);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.mega-link-ico svg { width: 15px; height: 15px; }
.mega-link-txt { flex: 1; min-width: 0; }
.mega-link:hover {
  background: rgba(153,204,51,0.09);
  color: var(--accent);
}
.mega-link:hover .mega-link-ico {
  background: rgba(153,204,51,0.18);
  color: var(--accent);
}
.mega-foot {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem; text-align: right;
}
.mega-foot a {
  color: var(--accent); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.mega-foot a .arr { transition: transform 0.2s var(--ease); display: inline-block; }
.mega-foot a:hover .arr { transform: translateX(3px); }

/* ── Mega-menu multi-columna (Soluciones) ─────────────────────
   Cuando la sección tiene `columns` en nav.ts, se renderiza como
   .mega.mega-2col con hijas .mega-cols > .mega-col > .mega-col-hdr + .mega-col-grid
   ─────────────────────────────────────────────────────────── */
.nav-item-wide .mega { min-width: 720px; }

/* Mega "simple" — dropdown compacto para menús con 1-3 items (ej. Casos > Clientes).
   Sobrescribe el min-width del .mega base para no ocupar todo el ancho. */
.mega-simple { min-width: 220px !important; padding: 10px; }
.mega-grid-simple { grid-template-columns: 1fr; gap: 4px; }
.mega-2col .mega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mega-col {
  display: flex; flex-direction: column;
}
.mega-col-hdr {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.mega-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
/* En pantallas medias, si el ancho no da, colapsamos a 1 columna */
@media (max-width: 900px) {
  .nav-item-wide .mega { min-width: 480px; }
  .mega-2col .mega-cols { grid-template-columns: 1fr; gap: 12px; }
}

/* Sublabel en el drawer móvil (acordeón) para agrupar Soluciones */
.acc-sublabel {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 12px 12px 4px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
}
.acc-sublabel:first-of-type { border-top: 0; margin-top: 0; }

.hdr-actions { display: flex; align-items: center; gap: 10px; }
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-2);
  transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 130px;
  background: rgba(16,16,16,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.22s var(--ease);
}
.lang-drop a { display: block; padding: 8px 12px; font-size: 0.86rem; color: var(--text-2); border-radius: 8px; }
.lang-drop a:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.lang-drop a.active { color: var(--accent); font-weight: 700; background: rgba(127,170,34,0.08); }
.ftr-langs a.active { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.lang.open .lang-drop { opacity: 1; visibility: visible; transform: translateY(0); }

.burger { display: none; padding: 10px; border-radius: 10px; color: var(--text); }
.burger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; right: 0;
  width: min(360px, 88vw); height: 100vh;
  background: #0d0d0d;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.drawer.open { transform: translateX(0); }
.backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 199; opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.backdrop.open { opacity: 1; visibility: visible; }
.drawer-hdr { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.close { padding: 8px; border-radius: 8px; color: var(--text); }
.close svg { width: 22px; height: 22px; }
.drawer nav { display: flex; flex-direction: column; padding: 14px; gap: 4px; }
.acc { border-bottom: 1px solid var(--border); }
.acc-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 8px;
  font-size: 0.98rem; font-weight: 600; color: var(--text);
  text-align: left;
}
.plus { width: 12px; height: 12px; position: relative; }
.plus::before, .plus::after { content: ''; position: absolute; background: var(--accent); }
.plus::before { top: 5px; left: 0; right: 0; height: 2px; }
.plus::after { left: 5px; top: 0; bottom: 0; width: 2px; transition: transform 0.25s; }
.acc.open .plus::after { transform: scaleY(0); }
.acc-panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.acc.open .acc-panel { max-height: 500px; }
.acc-panel a { display: block; padding: 10px 8px; font-size: 0.88rem; color: var(--text-2); }
.acc-panel a:hover { color: var(--accent); }
.drawer-cta { padding: 20px; }
.drawer-cta .btn { width: 100%; justify-content: center; }

/* Floating CTA button */
.float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 90;
  padding: 14px 22px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 14px 40px -10px var(--accent-glow), 0 0 0 6px rgba(153,204,51,0.08);
  display: inline-flex; align-items: center; gap: 8px;
  animation: floatPulse 3s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 14px 40px -10px var(--accent-glow), 0 0 0 6px rgba(153,204,51,0.08); }
  50% { box-shadow: 0 14px 40px -10px var(--accent-glow), 0 0 0 14px rgba(153,204,51,0.0); }
}
.float:hover { transform: translateY(-2px) scale(1.02); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(153,204,51,0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(139,92,246,0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(153,204,51,0.14) 0%, transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(139,92,246,0.12) 0%, transparent 50%);
  filter: blur(60px);
  animation: meshFloat 20s ease-in-out infinite;
}
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-3%, 2%) scale(1.05); }
  66% { transform: translate(2%, -3%) scale(0.98); }
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-spot {
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(153,204,51,0.10), transparent 40%);
  pointer-events: none;
  transition: background 0.15s;
}

.hero .wrap { position: relative; z-index: 3; }
.hero-content { max-width: 900px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(153,204,51,0.08);
  border: 1px solid rgba(153,204,51,0.25);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(153,204,51,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(153,204,51,0); }
  100% { box-shadow: 0 0 0 0 rgba(153,204,51,0); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.hero h1 .gradient {
  background: linear-gradient(120deg, var(--accent) 0%, var(--ai-2) 50%, var(--accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
  display: inline-block;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-form {
  display: flex; gap: 8px;
  max-width: 520px;
  margin: 0 auto 24px;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s;
}
.hero-form:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(153,204,51,0.1); }
.hero-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 20px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}
.hero-form input::placeholder { color: var(--text-3); }
.hero-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.22s;
  white-space: nowrap;
}
.hero-form button:hover { background: var(--accent-2); transform: translateX(2px); }

.hero-scarcity {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 40px;
}
.hero-scarcity .live { color: var(--accent); font-weight: 600; }

.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-3);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .sep { color: var(--border-2); }
.hero-trust strong { color: var(--text); font-weight: 700; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem; color: var(--text-3);
  letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.7;
  animation: scrollBob 2.4s ease-in-out infinite;
}
.hero-scroll .line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--accent), transparent); }
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.trust-track {
  display: flex; gap: 60px;
  animation: trustScroll 40s linear infinite;
  white-space: nowrap;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-2);
  opacity: 0.85;
}
.trust-item strong { color: var(--accent); font-weight: 700; }
.trust-item .ico { width: 16px; height: 16px; color: var(--accent); }
@keyframes trustScroll { to { transform: translateX(-50%); } }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; position: relative; z-index: 2; }
.section-hdr { text-align: center; margin-bottom: 64px; max-width: 780px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(153,204,51,0.08);
  border: 1px solid rgba(153,204,51,0.2);
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow.ai {
  background: rgba(139,92,246,0.08);
  border-color: rgba(139,92,246,0.28);
  color: var(--ai-2);
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.section h2 .accent { color: var(--accent); }
.section h2 .ai { color: var(--ai-2); }
.section-hdr p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ========== AI STACK ========== */
.ai-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ai-card {
  position: relative;
  padding: 30px 26px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.ai-card::before {
  content: '';
  position: absolute; top: -2px; left: -2px; right: -2px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.ai-card:hover { transform: translateY(-6px); border-color: rgba(153,204,51,0.3); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(153,204,51,0.2); }
.ai-card:hover::before { opacity: 1; }
.ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--ai-2);
  border-radius: 999px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.ai-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ai-2); animation: dotPulse 2s infinite; }
.ai-card h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.ai-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; margin-bottom: 18px; min-height: 66px; }
.ai-card .ai-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(153,204,51,0.1);
  border: 1px solid rgba(153,204,51,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.ai-card .ai-ico svg { width: 22px; height: 22px; }
.ai-mini {
  display: flex; gap: 4px; align-items: flex-end;
  height: 28px;
  margin-top: auto;
}
.ai-mini span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 2px;
  animation: miniBar 2s ease-in-out infinite;
  opacity: 0.7;
}
.ai-mini span:nth-child(1) { height: 40%; animation-delay: 0s; }
.ai-mini span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.ai-mini span:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.ai-mini span:nth-child(4) { height: 85%; animation-delay: 0.45s; }
.ai-mini span:nth-child(5) { height: 60%; animation-delay: 0.6s; }
@keyframes miniBar {
  0%, 100% { transform: scaleY(0.7); }
  50% { transform: scaleY(1); }
}

/* ========== BENTO GRID ========== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.bento-card {
  position: relative;
  padding: 32px;
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
  cursor: pointer;
}
.bento-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(153,204,51,0.08), transparent 50%);
  opacity: 0.5;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bento-card:hover { transform: translateY(-4px); border-color: rgba(153,204,51,0.35); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); }
.bento-card:hover::after { opacity: 1; }

.bento-card.b-1 { grid-column: span 4; grid-row: span 2; }
.bento-card.b-2 { grid-column: span 2; }
.bento-card.b-3 { grid-column: span 2; }
.bento-card.b-4 { grid-column: span 3; }
.bento-card.b-5 { grid-column: span 3; }
.bento-card.b-6 { grid-column: span 6; background: linear-gradient(120deg, rgba(139,92,246,0.15), rgba(139,92,246,0.03) 60%, var(--bg-2)); border-color: rgba(139,92,246,0.25); }

.bento-num {
  position: absolute; top: 26px; right: 30px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.15em;
}
.bento-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(153,204,51,0.1);
  border: 1px solid rgba(153,204,51,0.22);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.bento-card:hover .bento-ico { background: rgba(153,204,51,0.18); transform: scale(1.05) rotate(-3deg); }
.bento-ico svg { width: 26px; height: 26px; }
.bento-card.b-6 .bento-ico { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.3); color: var(--ai-2); }

.bento-card h3 {
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bento-card.b-1 h3 { font-size: 2rem; }
.bento-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 20px;
}
.bento-tags {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 4px 0;
  align-items: center;
}
.bento-tags a {
  padding: 4px 10px;
  font-size: 0.78rem;
  color: var(--text-2);
  border-radius: 6px;
  transition: all 0.18s;
}
.bento-tags a:hover { color: var(--accent); background: rgba(153,204,51,0.08); }
.bento-tags .sep { color: var(--text-3); margin: 0 2px; font-size: 0.7rem; opacity: 0.5; }

.bento-mock {
  position: absolute; right: -30px; bottom: -30px;
  width: 260px; height: 180px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.bento-card:hover .bento-mock { opacity: 0.9; }

/* Growth chart mock */
.growth-chart {
  position: absolute; right: 24px; bottom: 24px;
  width: 200px; height: 90px;
  display: flex; gap: 6px; align-items: flex-end;
  opacity: 0.65;
}
.growth-chart span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(153,204,51,0.2) 100%);
  border-radius: 3px 3px 0 0;
  transition: transform 0.4s;
}
.bento-card:hover .growth-chart span { transform: scaleY(1.15); }
.growth-chart span:nth-child(1) { height: 25%; }
.growth-chart span:nth-child(2) { height: 40%; }
.growth-chart span:nth-child(3) { height: 32%; }
.growth-chart span:nth-child(4) { height: 55%; }
.growth-chart span:nth-child(5) { height: 48%; }
.growth-chart span:nth-child(6) { height: 70%; }
.growth-chart span:nth-child(7) { height: 62%; }
.growth-chart span:nth-child(8) { height: 88%; }
.growth-chart span:nth-child(9) { height: 78%; }
.growth-chart span:nth-child(10) { height: 100%; }

/* ========== AI PLAYGROUND ========== */
.playground {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.pg-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.pg-card {
  position: relative;
  background: linear-gradient(160deg, rgba(139,92,246,0.08), rgba(153,204,51,0.04) 60%, var(--surface));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  overflow: hidden;
}
.pg-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 65%);
  filter: blur(40px);
}
.pg-card::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(153,204,51,0.18), transparent 65%);
  filter: blur(40px);
}
.pg-inner { position: relative; z-index: 2; text-align: center; }
.pg-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; }
.pg-inner p { font-size: 1.02rem; color: var(--text-2); max-width: 560px; margin: 0 auto 36px; }

.pg-form {
  display: flex; gap: 8px;
  max-width: 620px;
  margin: 0 auto;
  padding: 6px;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pg-form:focus-within { border-color: var(--ai-2); box-shadow: 0 0 0 4px rgba(139,92,246,0.15); }
.pg-form input {
  flex: 1; background: transparent; border: 0;
  padding: 14px 22px;
  color: var(--text);
  font-size: 0.98rem;
  outline: none;
}
.pg-form input::placeholder { color: var(--text-3); }
.pg-form button {
  padding: 14px 26px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.22s;
  white-space: nowrap;
}
.pg-form button:hover { transform: translateX(2px); box-shadow: 0 8px 24px -6px var(--accent-glow); }

.pg-result {
  margin-top: 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.pg-result.show { max-height: 600px; }
.pg-score-row {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding: 32px;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  margin-top: 24px;
  flex-wrap: wrap;
}
.pg-score {
  position: relative;
  width: 120px; height: 120px;
  flex-shrink: 0;
}
.pg-score svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.pg-score circle { fill: none; stroke-width: 8; }
.pg-score .track { stroke: rgba(255,255,255,0.08); }
.pg-score .value { stroke: var(--accent); stroke-linecap: round; transition: stroke-dashoffset 1.4s var(--ease); }
.pg-score-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800;
  color: var(--accent);
}
.pg-insights { text-align: left; flex: 1; min-width: 240px; }
.pg-insights h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-3); margin-bottom: 12px; font-weight: 700; }
.pg-insights ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pg-insights li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-2); }
.pg-insights li .tick { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.pg-cta { margin-top: 24px; }

/* ========== RESULTADOS (WHITE) ========== */
.white-section {
  background: var(--white);
  color: var(--dark-on-white);
  padding: 110px 0;
  position: relative;
  z-index: 2;
}
.white-section .eyebrow {
  background: rgba(10,10,10,0.05);
  border-color: rgba(10,10,10,0.12);
  color: #0a0a0a;
}
.white-section h2 { color: var(--dark-on-white); }
.white-section h2 .accent { color: var(--accent-3); }
.white-section .section-hdr p { color: #555; }

.stats-big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.stat-big {
  text-align: left;
  padding: 24px 0;
  border-top: 1px solid rgba(10,10,10,0.08);
}
.stat-big .num {
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--dark-on-white);
  margin-bottom: 10px;
  display: inline-block;
}
.stat-big .num .dot { color: var(--accent-3); }
.stat-big h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; color: #0a0a0a; }
.stat-big p { font-size: 0.85rem; color: #666; line-height: 1.5; }

.testimonial {
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 50px;
  background: #fafafa;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
.testimonial .quote-mark {
  font-size: 5rem; font-weight: 800;
  color: var(--accent-3);
  line-height: 1;
  opacity: 0.4;
  position: absolute;
  top: 24px; left: 40px;
}
.testimonial blockquote {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
  position: relative; z-index: 2;
}
.testimonial .author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a; font-weight: 800; font-size: 1.1rem;
}
.testimonial .author-info { text-align: left; }
.testimonial .author-info strong { display: block; font-size: 0.95rem; color: #0a0a0a; }
.testimonial .author-info span { font-size: 0.85rem; color: #777; }

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case {
  padding: 26px;
  background: #fafafa;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.case:hover { border-color: var(--accent-3); transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }
.case .metric {
  font-size: 2.2rem; font-weight: 800;
  color: var(--accent-3);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.case h5 { font-size: 1rem; font-weight: 700; color: #0a0a0a; margin-bottom: 6px; }
.case p { font-size: 0.86rem; color: #666; line-height: 1.5; }
.case { position: relative; }

/* ---- Cases header + illustrative labels (compliance-safe) ---- */
.cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 48px 0 24px;
  flex-wrap: wrap;
}
.cases-header-title { flex: 1 1 auto; min-width: 260px; }
.cases-header .eyebrow-mini {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #999;
  margin-bottom: 8px;
}
.cases-header h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.cases-header h3 .accent { color: var(--accent-3); }

.illustrative-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px dashed rgba(10,10,10,0.2);
  background: rgba(10,10,10,0.03);
  color: #555;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: help;
  transition: all 0.2s;
  white-space: nowrap;
}
.illustrative-badge:hover {
  border-color: var(--accent-3);
  color: #0a0a0a;
  background: rgba(153,204,51,0.08);
}

.illustrative-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-block;
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  background: rgba(10,10,10,0.05);
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 4px;
  z-index: 2;
}
.testimonial { position: relative; }
.testimonial .illustrative-tag {
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.7);
}

.cases-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(10,10,10,0.03);
  border-left: 3px solid var(--accent-3);
  border-radius: 6px;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.55;
}
.cases-disclaimer strong { color: #0a0a0a; font-weight: 700; }
.cases-disclaimer em { font-style: italic; color: #333; }

/* ========== VERTICALS ========== */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.vertical {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.vertical::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.vertical:hover { transform: translateY(-6px); border-color: rgba(153,204,51,0.35); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.vertical:hover::before { transform: translateX(0); }
.vertical-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(153,204,51,0.1);
  border: 1px solid rgba(153,204,51,0.22);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.vertical-ico svg { width: 22px; height: 22px; }
.vertical h4 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; }
.vertical p { font-size: 0.88rem; color: var(--text-2); margin-bottom: 18px; line-height: 1.55; }
.vertical .kpi {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(153,204,51,0.08);
  border: 1px solid rgba(153,204,51,0.2);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  margin-bottom: 18px;
}
.vertical .link {
  color: var(--accent);
  font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s;
}
.vertical:hover .link { gap: 10px; }

/* ========== PROCESO ========== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute; top: 34px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2) 20%, var(--border-2) 80%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  color: var(--text);
  margin: 0 auto 20px;
  transition: all 0.35s;
  position: relative;
}
.step.ai .step-num {
  border-color: var(--ai);
  color: var(--ai-2);
  box-shadow: 0 0 0 6px rgba(139,92,246,0.08);
}
.step:hover .step-num { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 8px rgba(153,204,51,0.08); }
.step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-2); line-height: 1.55; }
.step .ai-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--ai-2);
  border-radius: 999px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

/* ========== PRESS BAR (white) ========== */
.press-section {
  background: var(--white);
  color: var(--dark-on-white);
  padding: 60px 0;
  border-top: 1px solid rgba(10,10,10,0.06);
}
.press-inner {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  flex-wrap: wrap;
}
.press-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #777;
  font-weight: 700;
}
.press-logos {
  display: flex; gap: 44px; flex-wrap: wrap; align-items: center;
}
.press-logo {
  font-size: 1rem; font-weight: 700;
  color: #0a0a0a;
  opacity: 0.55;
  transition: opacity 0.25s;
  letter-spacing: -0.01em;
}
.press-logo:hover { opacity: 1; }

/* ========== FAQ ========== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 26px 4px;
  font-size: 1.08rem; font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .plus { width: 14px; height: 14px; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding: 0 4px 26px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.65;
}
.faq.open .faq-a { max-height: 400px; }
.faq.open .plus::after { transform: scaleY(0); }

/* ========== CTA FINAL ========== */
.cta-final {
  padding: 100px 0;
  background: var(--accent);
  color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(0,0,0,0.08), transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(0,0,0,0.08), transparent 40%);
}
.cta-final .wrap { text-align: center; position: relative; z-index: 2; }
.cta-final .eyebrow {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.15);
  color: #0a0a0a;
}
.cta-final h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0a0a0a;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.cta-final p {
  font-size: 1.1rem;
  color: rgba(10,10,10,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-final .btn-dark {
  padding: 18px 36px;
  background: #0a0a0a;
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.28s var(--ease);
}
.cta-final .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(0,0,0,0.4); }
.cta-final .promise {
  margin-top: 24px;
  font-size: 0.88rem;
  color: rgba(10,10,10,0.6);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
}
.cta-final .promise span { display: inline-flex; align-items: center; gap: 6px; }

/* ========== FOOTER ========== */
.ftr {
  background: var(--bg-2);
  color: var(--text-2);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.ftr-newsletter {
  padding: 40px;
  background: linear-gradient(140deg, rgba(153,204,51,0.06), rgba(139,92,246,0.04));
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  margin-bottom: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.ftr-newsletter-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 8px; }
.ftr-newsletter-info p { font-size: 0.92rem; color: var(--text-2); }
.ftr-newsletter-form { display: flex; gap: 8px; min-width: 340px; padding: 5px; background: rgba(10,10,10,0.6); border: 1px solid var(--border-2); border-radius: 999px; }
.ftr-newsletter-form input {
  flex: 1; background: transparent; border: 0;
  padding: 10px 18px; color: var(--text); outline: none; font-size: 0.9rem;
}
.ftr-newsletter-form input::placeholder { color: var(--text-3); }
.ftr-newsletter-form button {
  padding: 10px 22px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 700; font-size: 0.85rem;
}

.ftr-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.ftr-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.6; }
.ftr-brand .ftr-tag { color: var(--accent); font-weight: 700; margin-top: 8px; }
.ftr-col h5 { color: var(--text); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; }
.ftr-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ftr-col a { font-size: 0.9rem; color: var(--text-2); transition: color 0.2s; }
.ftr-col a:hover { color: var(--accent); }

/* ========== FOOTER · BADGES DE IDENTIDAD (compactos, con sello SVG) ========== */
.ftr-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  padding: 22px 0 18px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 8px;
}
.ftr-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: help;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
  outline: none;
  min-height: 42px;
}
.ftr-badge:hover,
.ftr-badge:focus-visible {
  border-color: var(--accent);
  background: rgba(127, 170, 34, 0.06);
  transform: translateY(-1px);
}

/* Sello SVG circular · 28x28 */
.ftr-seal {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}
.ftr-badge:hover .ftr-seal,
.ftr-badge:focus-visible .ftr-seal {
  transform: rotate(-6deg);
}
.ftr-seal svg { width: 100%; height: 100%; display: block; }

/* Estilos comunes de los trazos del sello */
.ftr-seal .s-ring       { fill: none; stroke: var(--text-2); stroke-width: 1; }
.ftr-seal .s-ring-in    { fill: none; stroke: var(--text-3); stroke-width: 0.6; stroke-dasharray: 1.2 1.2; opacity: 0.7; }
.ftr-seal .s-ring-dashed{ fill: none; stroke: var(--text-3); stroke-width: 0.5; stroke-dasharray: 0.8 1.6; opacity: 0.55; }
.ftr-seal .s-glyph      { fill: none; stroke: var(--text); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ftr-seal .s-slash      { stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; }
.ftr-seal .s-mute       { stroke: var(--text); stroke-width: 1.4; stroke-linecap: round; }
.ftr-seal .s-orbit      { fill: none; stroke: var(--accent); stroke-width: 0.7; opacity: 0.55; stroke-dasharray: 1.4 1.6; }
.ftr-seal .s-link       { stroke: var(--accent); stroke-width: 0.7; opacity: 0.55; }
.ftr-seal .s-core       { fill: var(--accent-hi, #9AD141); stroke: none; }
.ftr-seal .s-node       { fill: var(--accent); stroke: none; }
.ftr-seal .s-tick       { stroke: var(--accent); stroke-width: 1.2; stroke-linecap: round; }
.ftr-seal .s-since-top  { fill: var(--text-3); font-family: 'SF Mono', Consolas, monospace; font-size: 4.6px; font-weight: 700; letter-spacing: 0.35px; text-anchor: middle; }
.ftr-seal .s-since-year { fill: var(--text); font-family: 'SF Mono', Consolas, monospace; font-size: 8.5px; font-weight: 800; text-anchor: middle; }

.ftr-badge-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.ftr-badge-txt strong {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.ftr-badge-txt em {
  color: var(--text-3);
  font-size: 0.66rem;
  font-style: normal;
  margin-top: 1px;
}

/* Variante AI · scan-line animada + core que pulsa */
.ftr-badge-ai {
  border-color: rgba(154, 209, 65, 0.28);
  background: linear-gradient(180deg, rgba(154, 209, 65, 0.05), rgba(127, 170, 34, 0.02));
  overflow: hidden;
}
.ftr-badge-ai::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-hi, #9AD141), transparent);
  animation: ftr-badge-scan 3.2s linear infinite;
}
@keyframes ftr-badge-scan {
  0%   { transform: translateY(0); opacity: 0.6; }
  50%  { transform: translateY(38px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.6; }
}
.ftr-badge-ai .s-core { animation: ftr-seal-pulse 1.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes ftr-seal-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.75; }
}

/* Variante SINCE · dashed sutil */
.ftr-badge-since {
  background: transparent;
  border-style: dashed;
}

/* Tooltip puro CSS con [data-tip] */
.ftr-badge[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 320px;
  padding: 12px 14px;
  background: #0a0a0a;
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  white-space: normal;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 20;
}
.ftr-badge[data-tip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--accent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
  z-index: 20;
}
.ftr-badge:hover[data-tip]::after,
.ftr-badge:focus-visible[data-tip]::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.ftr-badge:hover[data-tip]::before,
.ftr-badge:focus-visible[data-tip]::before {
  opacity: 1;
}

/* ========== FOOTER · LEGAL STRIP (aviso + políticas) ========== */
.ftr-legal-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}
.ftr-legal-lbl {
  color: var(--text-3);
  font-family: 'SF Mono', Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-right: 4px;
}
.ftr-legal-link {
  position: relative;
  color: var(--text-2);
  font-weight: 500;
  transition: color 0.2s var(--ease);
  padding-bottom: 2px;
}
.ftr-legal-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 0.25s var(--ease);
}
.ftr-legal-link:hover,
.ftr-legal-link:focus-visible {
  color: var(--accent);
  outline: none;
}
.ftr-legal-link:hover::after,
.ftr-legal-link:focus-visible::after {
  right: 0;
}

/* ========== FOOTER · BOTTOM (© + langs) ========== */
.ftr-bot {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 22px;
  flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-3);
}
.ftr-langs { display: flex; gap: 6px; }
.ftr-langs a {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-2);
  transition: all 0.2s;
}
.ftr-langs a.active { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.ftr-langs a:hover { border-color: var(--accent); color: var(--accent); }
.ftr-langs a.active:hover { color: #0a0a0a; }

/* Responsive · tooltip debajo en móvil para no salirse */
@media (max-width: 768px) {
  .ftr-badges { grid-template-columns: 1fr 1fr; }
  .ftr-badge[data-tip]::after {
    max-width: 260px;
    font-size: 0.74rem;
  }
}
@media (max-width: 480px) {
  .ftr-badges { grid-template-columns: 1fr; }
  .ftr-legal-strip { font-size: 0.78rem; gap: 6px 16px; }
}

/* ========== REVEAL ========== */
[data-r] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-r].v { opacity: 1; transform: translateY(0); }
[data-r][data-d="1"] { transition-delay: 0.08s; }
[data-r][data-d="2"] { transition-delay: 0.16s; }
[data-r][data-d="3"] { transition-delay: 0.24s; }
[data-r][data-d="4"] { transition-delay: 0.32s; }
[data-r][data-d="5"] { transition-delay: 0.4s; }
/* Fallback: if JS fails, show everything after 2.5s */
@keyframes forceReveal { to { opacity: 1; transform: translateY(0); } }
[data-r] { animation: forceReveal 0s ease 2.5s forwards; }
[data-r].v { animation: none; }
/* No-JS fallback */
.no-js [data-r] { opacity: 1 !important; transform: none !important; animation: none !important; }

/* ========== FRANJA VERDE FULL-WIDTH ========== */
.strip-accent {
  background: var(--accent);
  color: #0a0a0a;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.strip-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.strip-accent .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.strip-accent h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0a0a0a;
  margin: 0;
  flex: 1 1 auto;
}
.strip-accent h2 strong { font-weight: 900; }
.strip-accent .btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: #0a0a0a; color: #ffffff;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  border: 2px solid #0a0a0a;
  flex-shrink: 0;
}
.strip-accent .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.4);
  background: #000;
}

/* ========== TOOL BANNER (IA como herramienta) ========== */
.tool-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 56px;
  padding: 24px 28px;
  background: linear-gradient(120deg, rgba(153,204,51,0.06), rgba(153,204,51,0.02));
  border: 1px solid rgba(153,204,51,0.18);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
}
.tool-banner-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(153,204,51,0.12);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.tool-banner-ico svg { width: 22px; height: 22px; }
.tool-banner-txt { display: flex; flex-direction: column; gap: 4px; }
.tool-banner-txt strong {
  font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em;
}
.tool-banner-txt span { font-size: 0.9rem; color: var(--text-2); line-height: 1.55; }

/* ========== PG DISCLAIMER ========== */
.pg-disclaimer {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.55;
}
.pg-disclaimer strong { color: var(--text-2); font-weight: 600; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hdr-actions .lang { display: none; }
  .ai-stack-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .bento-card.b-1, .bento-card.b-6 { grid-column: span 2; }
  .bento-card.b-2, .bento-card.b-3, .bento-card.b-4, .bento-card.b-5 { grid-column: span 1; }
  .stats-big { grid-template-columns: repeat(2, 1fr); }
  .cases { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process::before { display: none; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero h1 { font-size: 3rem; }
  .section { padding: 70px 0; }
  .section-hdr { margin-bottom: 40px; }
  .ai-stack-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card { min-height: 220px; }
  .bento-card.b-1, .bento-card.b-6 { grid-column: span 1; }
  .stats-big { grid-template-columns: 1fr 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .pg-card { padding: 40px 24px; }
  .pg-form, .hero-form { flex-direction: column; padding: 12px; border-radius: 20px; }
  .pg-form input, .hero-form input { text-align: center; }
  .pg-form button, .hero-form button { justify-content: center; }
  .ftr-newsletter { flex-direction: column; align-items: stretch; padding: 30px; }
  .ftr-newsletter-form { min-width: 0; width: 100%; }
  .ftr-top { grid-template-columns: 1fr; }
  .ftr-bot { flex-direction: column; align-items: flex-start; }
  .logo .tag { display: none; }
  .float { padding: 12px 18px; font-size: 0.85rem; }
  .press-inner { gap: 20px; flex-direction: column; }
  .press-logos { justify-content: center; gap: 24px; }
}

/* =========================================
   SECCIÓN CLARA (crema/warm) — reduce peso del negro
   Aporta calidez, aire y look "agencia", no "herramienta software"
   ========================================= */
.section-light {
  background: #f6f4ee; /* crema cálido, no blanco puro */
  color: #1a1a1a;
  padding: 110px 0;
  position: relative;
  z-index: 2;
}
.section-light .eyebrow {
  background: rgba(10,10,10,0.05);
  border-color: rgba(10,10,10,0.12);
  color: #0a0a0a;
}
.section-light h2 { color: #0a0a0a; }
.section-light h2 .accent { color: var(--accent-3); }
.section-light .section-hdr p { color: #555; }

/* Bento cards sobre fondo claro */
.section-light .bento-card {
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.08);
  color: #1a1a1a;
}
.section-light .bento-card:hover {
  border-color: var(--accent-3);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.18);
}
.section-light .bento-card h3 { color: #0a0a0a; }
.section-light .bento-card p { color: #555; }
.section-light .bento-num { color: rgba(10,10,10,0.08); }
.section-light .bento-ico {
  background: rgba(153,204,51,0.14);
  color: var(--accent-3);
  border-color: rgba(153,204,51,0.3);
}
.section-light .bento-tag {
  background: rgba(10,10,10,0.05);
  color: #333;
  border: 1px solid rgba(10,10,10,0.08);
}
.section-light .bento-arrow { color: var(--accent-3); }

/* Verticals sobre fondo claro */
.section-light .vertical-card {
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.08);
}
.section-light .vertical-card:hover {
  border-color: var(--accent-3);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}
.section-light .vertical-card h3 { color: #0a0a0a; }
.section-light .vertical-card p { color: #555; }
.section-light .vertical-card .v-tag { color: var(--accent-3); }
.section-light .vertical-ico {
  background: rgba(153,204,51,0.14);
  color: var(--accent-3);
}

/* FAQ sobre fondo claro */
.section-light .faq-item {
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.08);
}
.section-light .faq-item.open,
.section-light .faq-item:hover {
  border-color: var(--accent-3);
}
.section-light .faq-q {
  color: #0a0a0a;
}
.section-light .faq-a {
  color: #555;
}
.section-light .faq-icon {
  background: rgba(153,204,51,0.14);
  color: var(--accent-3);
}

/* Tool banner sobre fondo claro */
.section-light .tool-banner {
  background: linear-gradient(120deg, rgba(153,204,51,0.14), rgba(153,204,51,0.05));
  border-color: rgba(153,204,51,0.35);
  border-left-color: var(--accent-3);
}
.section-light .tool-banner-ico {
  background: rgba(153,204,51,0.2);
  color: var(--accent-3);
}
.section-light .tool-banner-txt strong { color: #0a0a0a; }
.section-light .tool-banner-txt span { color: #555; }

/* Process sobre fondo claro */
.section-light .step {
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.08);
}
.section-light .step:hover {
  border-color: var(--accent-3);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.18);
}
.section-light .step-num {
  background: rgba(153,204,51,0.14);
  color: var(--accent-3);
}
.section-light .step h4 { color: #0a0a0a; }
.section-light .step p { color: #555; }
.section-light .process::before {
  background: linear-gradient(90deg, transparent, rgba(10,10,10,0.15), transparent);
}

/* Ai-badge (número + label) sobre fondo claro */
.section-light .ai-badge {
  background: rgba(153,204,51,0.14);
  color: var(--accent-3);
  border-color: rgba(153,204,51,0.3);
}

/* ========== FRANJA HECHOS (sutil, entre secciones oscuras) ========== */
.strip-facts {
  background: #f6f4ee;
  color: #1a1a1a;
  padding: 40px 0;
  border-top: 1px solid rgba(10,10,10,0.06);
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.strip-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.strip-facts-item {
  text-align: center;
}
.strip-facts-item .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-3);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}
.strip-facts-item .label {
  font-size: 0.82rem;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .strip-facts-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* Hero — un pelín menos negro, sutil warmth */
.hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 60%, #101010 100%);
}

/* =========================================
   CHEV SVG (sustituye al chev CSS border)
   ========================================= */
.chev-svg {
  width: 10px; height: 10px;
  display: inline-block;
  transition: transform 0.2s var(--ease);
  color: currentColor;
}
.nav-item:hover .chev-svg { transform: rotate(180deg); }
.lang.open .chev-svg { transform: rotate(180deg); }

/* =========================================
   CTA "¿HABLAMOS?" en cabecera
   ========================================= */
.btn-hdr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.005em;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-hdr-cta .arr { display: inline-block; transition: transform 0.25s var(--ease); }
.btn-hdr-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px var(--accent-glow);
}
.btn-hdr-cta:hover .arr { transform: translateX(3px); }

/* Header: sube el CTA en scrolled */
.hdr.scrolled .btn-hdr-cta { padding: 8px 18px; font-size: 0.85rem; }

/* =========================================
   DRAWER MÓVIL — iconos + más compacto
   ========================================= */
.acc-btn {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 14px 8px;
  font-size: 0.98rem; font-weight: 600; color: var(--text);
  text-align: left;
}
.acc-ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(153,204,51,0.12);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.acc-ico svg { width: 16px; height: 16px; }
.acc-label { flex: 1; }
.acc-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 8px 9px 44px;
  font-size: 0.88rem;
  color: var(--text-2);
}
.acc-panel a.acc-see-all {
  padding-left: 44px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.acc-child-ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--text-3);
  display: inline-flex; align-items: center; justify-content: center;
}
.acc-child-ico svg { width: 13px; height: 13px; }
.acc-panel a:hover { color: var(--accent); }
.acc-panel a:hover .acc-child-ico { background: rgba(153,204,51,0.15); color: var(--accent); }

/* Ocultar el CTA de header en mobile (el ¿Hablamos? flotante y drawer ya lo cubren) */
@media (max-width: 900px) {
  .btn-hdr-cta { display: none; }
}

/* =========================================
   HERO CTAs (sin form)
   ========================================= */
.hero-ctas {
  display: flex; flex-wrap: wrap;
  gap: 12px; justify-content: center;
  margin: 32px 0 28px;
}
.hero-ctas .btn { min-width: 180px; justify-content: center; }

/* =========================================
   MANIFIESTO (bloque "Desde 2005")
   ========================================= */
.manifesto { padding: 100px 0; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
.manifesto-copy .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.manifesto-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0a0a0a;
}
.manifesto-copy h2 .accent { color: var(--accent-3); }
.manifesto-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 16px;
}
.manifesto-copy strong { color: #0a0a0a; font-weight: 700; }
.link-inline {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-3);
  font-weight: 700;
  font-size: 0.98rem;
  margin-top: 10px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s;
}
.link-inline:hover { border-bottom-color: var(--accent-3); }

.manifesto-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 14px;
  transition: all 0.28s var(--ease);
}
.value-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-3);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.15);
}
.value-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(153,204,51,0.14);
  color: var(--accent-3);
  display: inline-flex; align-items: center; justify-content: center;
}
.value-ico svg { width: 22px; height: 22px; }
.value-item strong {
  display: block;
  font-size: 1rem;
  color: #0a0a0a;
  margin-bottom: 4px;
  font-weight: 700;
}
.value-item p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* =========================================
   SERVICES GRID (4 áreas, sin Soluciones)
   ========================================= */
.services-section { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 34px 32px 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 340px;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(153,204,51,0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -30px rgba(153,204,51,0.25);
}
.service-card:hover::before { opacity: 1; }

.service-head {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.service-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(153,204,51,0.12);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(153,204,51,0.22);
}
.service-ico svg { width: 26px; height: 26px; }
.service-num {
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.05em;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card > p {
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-card > p strong { color: var(--accent); font-weight: 700; }
.service-list {
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.service-arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.28s var(--ease);
}
.service-card:hover .service-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: translateX(4px);
}

/* Variante nueva: cards de sección sin link padre (los items son enlaces individuales).
   No aplicamos hover-lift a la card completa, solo padding inferior menor (sin flecha). */
.service-card-static { padding-bottom: 34px; }
.service-card-static:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}
.service-card-static:hover::before { opacity: 0; }

/* Lista de sub-servicios como enlaces individuales dentro del card estático */
.service-list-links li { padding-left: 0; }
.service-list-links li::before { content: none; }
.service-list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.service-list-link::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateY(-50%);
}
.service-list-link:hover {
  background: rgba(153, 204, 51, 0.08);
  color: var(--text);
}
.service-list-link:hover .service-list-arr {
  transform: translateX(3px);
  color: var(--accent);
  opacity: 1;
}
.service-list-arr {
  display: inline-block;
  font-size: 1rem;
  color: var(--text-2);
  opacity: 0.5;
  transition: transform 0.18s var(--ease), opacity 0.18s var(--ease), color 0.18s var(--ease);
}

/* =========================================
   CASES TEASER (testimonial + mini cases)
   ========================================= */
.cases-teaser .testimonial-block {
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 50px 44px 40px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid rgba(10,10,10,0.06);
  box-shadow: 0 20px 50px -30px rgba(0,0,0,0.12);
}
.cases-teaser .quote-ico {
  position: absolute;
  top: 20px; left: 32px;
  width: 40px; height: 40px;
  color: rgba(153,204,51,0.3);
}
.cases-teaser blockquote {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.55;
  margin: 30px 0 28px;
  font-style: italic;
}
.cases-teaser .quote-author {
  display: flex; align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(10,10,10,0.06);
}
.cases-teaser .quote-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  color: #0a0a0a;
}
.cases-teaser .quote-author strong {
  display: block;
  font-size: 0.95rem;
  color: #0a0a0a;
}
.cases-teaser .quote-author span {
  display: block;
  font-size: 0.82rem;
  color: #777;
  margin-top: 2px;
}

.mini-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.mini-case {
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 16px;
  text-align: center;
  transition: all 0.28s var(--ease);
}
.mini-case:hover {
  transform: translateY(-3px);
  border-color: var(--accent-3);
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.15);
}
.mini-case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-3);
  background: rgba(153,204,51,0.14);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mini-case-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.mini-case p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}
.illustrative-note {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  margin: 40px auto 0;
  max-width: 620px;
  font-style: italic;
}

/* =========================================
   PROCESS SECTION contexto oscuro
   ========================================= */
.process-section { padding: 100px 0; }

/* =========================================
   CTA FINAL — versión potente
   ========================================= */
.btn-cta-final {
  padding: 20px 44px !important;
  font-size: 1.08rem !important;
  gap: 12px !important;
}

/* =========================================
   RESPONSIVE — mobile-first ajustes
   ========================================= */
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .mini-cases { grid-template-columns: repeat(2, 1fr); }
  .mega { min-width: 320px; }
  .mega-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .manifesto { padding: 70px 0; }
  .services-section { padding: 70px 0; }
  .process-section { padding: 70px 0; }
  .service-card {
    padding: 26px 22px 80px;
    min-height: auto;
  }
  .service-num { font-size: 2.4rem; }
  .service-card h3 { font-size: 1.4rem; }
  .service-arrow { width: 38px; height: 38px; bottom: 22px; right: 22px; }
  .cases-teaser .testimonial-block { padding: 36px 24px 30px; margin-bottom: 40px; }
  .cases-teaser blockquote { font-size: 1rem; }
  .mini-cases { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mini-case { padding: 16px 12px; }
  .mini-case-num { font-size: 1.7rem; }
  .hero-ctas .btn { width: 100%; }
  .strip-accent h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .strip-accent .wrap { flex-direction: column; text-align: center; gap: 20px; }
  .btn-cta-final { padding: 16px 32px !important; font-size: 0.98rem !important; }
}


/* =============================================================
   /campanas-sem/  v11  —  PAID MULTI-PLATAFORMA · DASHBOARD LIVE
   Namespace: .v11-*  → aislado, no colisiona con v10 / legacy
   Fondo crema Home + cards blancas + efectos live (counters, ticker)
   ============================================================= */

.v11-page {
  background: #f6f4ee;
  color: #0a0a0a;
  font-family: 'Carlito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow-x: hidden;
}

.v11-page .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.v11-card {
  background: #ffffff;
  border: 1px solid #e8e5db;
  border-radius: 16px;
  padding: 48px 52px;
  box-shadow: 0 1px 2px rgba(10,10,10,0.02);
}

.v11-section { padding: 20px 0; }
.v11-section + .v11-section { padding-top: 4px; }

/* ---------- Common ---------- */
.v11-eyebrow {
  font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #7FAA22;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.v11-h1 {
  font-family: 'Carlito', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}
.v11-h1-accent {
  color: #7FAA22;
  border-bottom: 3px solid #7FAA22;
  padding-bottom: 2px;
}
.v11-h1-sub {
  font-size: 1.08rem;
  line-height: 1.62;
  color: #3b3b3b;
  margin: 0 0 28px;
  max-width: 560px;
}

.v11-h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.16;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.v11-under {
  border-bottom: 3px solid #7FAA22;
  padding-bottom: 2px;
}

.v11-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #3b3b3b;
  margin: 0 0 28px;
  max-width: 780px;
}

/* ---------- Crumb + Live dot ---------- */
.v11-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #7FAA22;
  margin-bottom: 22px;
  padding: 6px 12px;
  background: #f4f7ec;
  border: 1px solid #d9e8b8;
  border-radius: 999px;
}
.v11-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7FAA22;
  box-shadow: 0 0 0 0 rgba(127,170,34,0.6);
  animation: v11-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes v11-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(127,170,34,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(127,170,34,0);   }
  100% { box-shadow: 0 0 0 0    rgba(127,170,34,0);   }
}

/* ---------- Crumb row + AI pill (hero) ---------- */
.v11-crumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.v11-crumb-row .v11-crumb { margin-bottom: 0; }
.v11-crumb-ai {
  background: #0a0a0a !important;
  border-color: #0a0a0a !important;
  color: #9AD141 !important;
  position: relative;
  overflow: hidden;
}
.v11-crumb-ai::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9AD141, transparent);
  animation: v11-scan 3s linear infinite;
}
.v11-crumb-ai .v11-ai-badge-ico {
  color: #9AD141;
  font-size: 0.9rem;
  line-height: 1;
}
.v11-crumb-ai .v11-live-dot { background: #9AD141; }
.v11-crumb-ai .v11-live-dot { box-shadow: 0 0 0 0 rgba(154, 209, 65, 0.6); }
@keyframes v11-pulse-green {
  0%   { box-shadow: 0 0 0 0    rgba(154, 209, 65, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(154, 209, 65, 0);   }
  100% { box-shadow: 0 0 0 0    rgba(154, 209, 65, 0);   }
}

/* ---------- Agente IA tag ---------- */
.v11-agent-tag {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 4px;
  color: #ffffff;
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
  position: relative;
  overflow: hidden;
}
.v11-agent-tag::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9AD141, transparent);
  animation: v11-scan 3s linear infinite;
}

/* ---------- Buttons ---------- */
.v11-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Carlito', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.v11-btn-primary { background: #0a0a0a; color: #ffffff; border-color: #0a0a0a; }
.v11-btn-primary:hover { background: #7FAA22; color: #0a0a0a; border-color: #7FAA22; transform: translateY(-1px); }
.v11-btn-ghost { background: transparent; color: #0a0a0a; border-color: #d5d1c4; }
.v11-btn-ghost:hover { border-color: #0a0a0a; }
.v11-btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============ HERO 2 COL ============ */
.v11-hero { padding: 24px 0 28px; }
.v11-hero-card {
  padding: 48px 52px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbf5 100%);
  position: relative;
  overflow: hidden;
}
.v11-hero-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(127,170,34,0.12), transparent 70%);
  pointer-events: none;
}
.v11-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.v11-hero-left { min-width: 0; }
.v11-hero-right { min-width: 0; }

.v11-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 28px;
  padding: 20px 0;
  border-top: 1px solid #eeece4;
  border-bottom: 1px solid #eeece4;
}
.v11-hero-stat-num {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.v11-hero-stat-lbl {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #6b6b6b;
  text-transform: uppercase;
}
.v11-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Dashboard "live" */
.v11-dash {
  background: #0a0a0a;
  color: #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 20px 40px -20px rgba(10,10,10,0.35), 0 0 0 1px rgba(127,170,34,0.15);
  font-family: 'SF Mono', 'Consolas', monospace;
  position: relative;
}
.v11-dash::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7FAA22, transparent);
  animation: v11-scan 3.5s linear infinite;
}
@keyframes v11-scan {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.v11-dash-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1f1f1f;
}
.v11-dash-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9AD141;
}
.v11-dash-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
}
.v11-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.v11-dash-cell {
  background: #131313;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 14px 14px;
  transition: border-color 0.3s;
}
.v11-dash-cell:hover { border-color: #7FAA22; }
.v11-dash-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #8a8a8a;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.v11-dash-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.v11-dash-bar {
  height: 3px;
  background: #1e1e1e;
  border-radius: 999px;
  overflow: hidden;
}
.v11-dash-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #7FAA22, #9AD141);
  border-radius: 999px;
  animation: v11-bar 2s ease-out;
}
@keyframes v11-bar {
  0% { width: 0 !important; }
}
.v11-dash-foot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  padding-top: 14px;
  border-top: 1px solid #1f1f1f;
}
.v11-dash-mini {
  font-size: 0.72rem;
  color: #cfcfcf;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v11-dot-g, .v11-dot-b, .v11-dot-p, .v11-dot-y {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.v11-dot-g { background: #4285F4; }
.v11-dot-b { background: #1877F2; }
.v11-dot-p { background: #FF9900; }
.v11-dot-y { background: #FE2C55; }

/* ============ TICKER ============ */
.v11-ticker-wrap {
  padding: 12px 0 24px;
}
.v11-ticker {
  max-width: 1180px;
  margin: 0 auto;
  background: #0a0a0a;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #1a1a1a;
}
.v11-ticker::before,
.v11-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.v11-ticker::before { left: 0;  background: linear-gradient(90deg, #0a0a0a, transparent); }
.v11-ticker::after  { right: 0; background: linear-gradient(-90deg, #0a0a0a, transparent); }
.v11-ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: v11-ticker 42s linear infinite;
  width: max-content;
}
@keyframes v11-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v11-ticker-item {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cfcfcf;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

/* ============ PLATAFORMAS ============ */
.v11-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.v11-platform {
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-left: 3px solid #7FAA22;
  border-radius: 10px;
  padding: 22px 24px;
  transition: all 0.25s;
}
.v11-platform:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(10,10,10,0.12);
  border-left-color: #0a0a0a;
}
.v11-platform-cat {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #7FAA22;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.v11-platform-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.v11-platform-plats {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.78rem;
  color: #3b3b3b;
  margin-bottom: 12px;
  line-height: 1.5;
  padding: 8px 10px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e8e5db;
}
.v11-platform-role {
  font-size: 0.94rem;
  line-height: 1.55;
  color: #3b3b3b;
  margin-bottom: 14px;
}
.v11-platform-ai {
  border-top: 1px dashed #d9d5c7;
  padding-top: 12px;
  margin-top: 12px;
}
.v11-platform-ai-lbl {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #0a0a0a;
  margin-bottom: 6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v11-platform-ai-lbl::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: #7FAA22;
  border-radius: 50%;
}
.v11-platform-ai-body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4a4a4a;
}

/* ============ CASOS ============ */
.v11-cases {
  border: 1px solid #eeece4;
  border-radius: 10px;
  overflow: hidden;
  background: #fafbf5;
}
.v11-cases-hdr,
.v11-case-row {
  display: grid;
  grid-template-columns: 1.6fr 1.6fr 0.7fr 0.8fr 0.8fr 0.7fr 0.9fr;
  gap: 12px;
  padding: 12px 18px;
  align-items: center;
  font-size: 0.86rem;
}
.v11-cases-hdr {
  background: #0a0a0a;
  color: #9AD141;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 18px;
}
.v11-case-row {
  border-top: 1px solid #eeece4;
  transition: background 0.15s;
  animation: v11-slide-in 0.5s ease-out both;
}
.v11-case-row:hover { background: #ffffff; }
@keyframes v11-slide-in {
  0%   { opacity: 0; transform: translateX(-12px); }
  100% { opacity: 1; transform: translateX(0);    }
}
.v11-case-sector { font-weight: 700; color: #0a0a0a; }
.v11-case-plat {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.8rem;
  color: #4a4a4a;
}
.v11-case-kpi {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #7FAA22;
  letter-spacing: 0.06em;
}
.v11-case-before {
  font-family: 'SF Mono', 'Consolas', monospace;
  color: #8a8a8a;
  text-decoration: line-through;
  font-size: 0.86rem;
}
.v11-case-after {
  font-family: 'SF Mono', 'Consolas', monospace;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.94rem;
}
.v11-case-delta {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
}
.v11-case-delta.is-up   { background: #eaf3d4; color: #4a6d10; }
.v11-case-delta.is-down { background: #eaf3d4; color: #4a6d10; }
.v11-case-period {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.78rem;
  color: #6b6b6b;
}
.v11-cases-note {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.74rem;
  color: #6b6b6b;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ============ MÉTODO ============ */
.v11-method {
  margin-top: 8px;
  display: grid;
  gap: 14px;
}
.v11-method-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 22px;
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-radius: 10px;
  transition: all 0.2s;
}
.v11-method-row:hover {
  background: #ffffff;
  border-color: #d9d5c7;
  transform: translateX(4px);
}
.v11-method-n {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #7FAA22;
  line-height: 1;
  letter-spacing: -0.02em;
}
.v11-method-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.v11-method-txt {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #3b3b3b;
}

/* ============ TRANSVERSAL ============ */
.v11-transversal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.v11-trans-item {
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-radius: 10px;
  padding: 20px 22px;
  transition: all 0.2s;
}
.v11-trans-item:hover {
  border-color: #7FAA22;
  transform: translateY(-2px);
}
.v11-trans-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.v11-trans-body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #3b3b3b;
}

/* ============ IA ============ */
.v11-ai {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}
.v11-ai-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 22px;
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-radius: 10px;
}
.v11-ai-layer {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  background: #0a0a0a;
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
  border-left: 3px solid #7FAA22;
}
.v11-ai-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.v11-ai-body {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #3b3b3b;
}

/* ============ FAQ ============ */
.v11-faq { margin-top: 8px; }
.v11-faq-item {
  border-bottom: 1px solid #eeece4;
  padding: 4px 0;
}
.v11-faq-item[open] .v11-faq-ico { transform: rotate(45deg); color: #7FAA22; }
.v11-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 18px 4px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0a0a0a;
  list-style: none;
  transition: color 0.2s;
}
.v11-faq-q::-webkit-details-marker { display: none; }
.v11-faq-q:hover { color: #7FAA22; }
.v11-faq-ico {
  font-size: 1.6rem;
  font-weight: 400;
  color: #6b6b6b;
  transition: transform 0.25s, color 0.25s;
  line-height: 1;
  margin-left: 12px;
}
.v11-faq-a {
  padding: 0 4px 20px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #3b3b3b;
  max-width: 780px;
}

/* ============ CTA ============ */
.v11-cta-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  border-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.v11-cta-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(127,170,34,0.18), transparent 70%);
  pointer-events: none;
}
.v11-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.v11-cta-card .v11-eyebrow { color: #9AD141; }
.v11-cta-h2 { color: #ffffff; margin-bottom: 12px; }
.v11-cta-lead { color: #cfcfcf; margin-bottom: 0; }
.v11-cta-card .v11-btn-primary { background: #7FAA22; border-color: #7FAA22; color: #0a0a0a; }
.v11-cta-card .v11-btn-primary:hover { background: #9AD141; border-color: #9AD141; }

/* ============ AGENTES IA ============ */
.v11-agents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.v11-agent {
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-top: 3px solid #7FAA22;
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.v11-agent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7FAA22, transparent);
  animation: v11-scan 4s linear infinite;
  opacity: 0.5;
}
.v11-agent:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -14px rgba(10,10,10,0.15);
  border-top-color: #0a0a0a;
}
.v11-agent-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.v11-agent-code {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: #ffffff;
  border: 1px solid #e8e5db;
  border-radius: 999px;
}
/* v11-agent-status: eliminado (badges quitados) */
.v11-agent-name {
  font-size: 1.14rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.v11-agent-role {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.74rem;
  color: #7FAA22;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.v11-agent-body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #3b3b3b;
  margin-bottom: 14px;
  flex-grow: 1;
}
.v11-agent-plats {
  border-top: 1px dashed #d9d5c7;
  padding-top: 10px;
  margin-top: auto;
}
.v11-agent-plats-lbl {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6b6b6b;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.v11-agent-plats-val {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.78rem;
  color: #0a0a0a;
  line-height: 1.4;
}

.v11-agents-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding: 20px 22px;
  background: #0a0a0a;
  color: #ffffff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.v11-agents-foot::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7FAA22, transparent);
  animation: v11-scan 3.5s linear infinite;
}
.v11-agents-foot-item { text-align: center; }
.v11-agents-foot-num {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: #9AD141;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.v11-agents-foot-lbl {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #cfcfcf;
  text-transform: uppercase;
}

/* ============ GOVERNANCE ============ */
.v11-gov {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.v11-gov-item {
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-left: 3px solid #0a0a0a;
  border-radius: 10px;
  padding: 20px 22px;
  transition: all 0.2s;
}
.v11-gov-item:hover {
  border-left-color: #7FAA22;
  transform: translateX(3px);
}
.v11-gov-num {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #7FAA22;
  margin-bottom: 8px;
}
.v11-gov-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 6px;
  line-height: 1.3;
}
.v11-gov-body {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3b3b3b;
}

/* ============ COMPARATIVA ============ */
.v11-comp {
  border: 1px solid #eeece4;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}
.v11-comp-hdr {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  gap: 0;
  background: #0a0a0a;
  color: #ffffff;
}
.v11-comp-hdr > div {
  padding: 14px 18px;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.v11-comp-hdr-without { color: #cfcfcf; border-left: 1px solid #1f1f1f; }
.v11-comp-hdr-with    { color: #9AD141; border-left: 1px solid #1f1f1f; }

.v11-comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  gap: 0;
  border-top: 1px solid #eeece4;
  background: #ffffff;
  transition: background 0.15s;
}
.v11-comp-row:hover { background: #fafbf5; }
.v11-comp-row > div {
  padding: 14px 18px;
  font-size: 0.92rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.v11-comp-dim {
  font-weight: 700;
  color: #0a0a0a;
  background: #fafbf5;
}
.v11-comp-without {
  color: #6b6b6b;
  border-left: 1px solid #eeece4;
  gap: 10px;
}
.v11-comp-with {
  color: #0a0a0a;
  font-weight: 600;
  border-left: 1px solid #eeece4;
  background: #f6faee;
  gap: 10px;
}
.v11-comp-mark {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-weight: 700;
  font-size: 0.86rem;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.v11-comp-mark-x { background: #f0e5e5; color: #a04040; }
.v11-comp-mark-v { background: #eaf3d4; color: #4a6d10; }

/* ============ LOGOS STRIP ============ */
.v11-logos-strip {
  background: #ffffff;
  border: 1px solid #e8e5db;
  border-radius: 14px;
  padding: 20px 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 2px rgba(10,10,10,0.02);
}
.v11-logos-lbl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #7FAA22;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.v11-logos-track {
  display: flex;
  gap: 36px;
  animation: v11-logos 55s linear infinite;
  width: max-content;
  align-items: center;
  padding: 6px 0;
}
@keyframes v11-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v11-logos-strip::before,
.v11-logos-strip::after {
  content: '';
  position: absolute;
  top: 40px; bottom: 12px;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.v11-logos-strip::before { left: 0;  background: linear-gradient(90deg, #ffffff, transparent); }
.v11-logos-strip::after  { right: 0; background: linear-gradient(-90deg, #ffffff, transparent); }

.v11-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid #eeece4;
  border-radius: 8px;
  background: #fafbf5;
  color: #0a0a0a;
  flex-shrink: 0;
  transition: all 0.25s;
  cursor: default;
}
.v11-logo:hover {
  border-color: #7FAA22;
  background: #ffffff;
  color: #7FAA22;
  transform: translateY(-2px);
}
.v11-logo-ico {
  color: currentColor;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.v11-logo-name {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: currentColor;
  white-space: nowrap;
}

/* ============ CASE STUDY EXTENDIDO ============ */
.v11-cs-kpis {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  margin: 20px 0 32px;
  padding: 20px 24px;
  background: #0a0a0a;
  color: #ffffff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.v11-cs-kpis::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7FAA22, transparent);
  animation: v11-scan 3.5s linear infinite;
}
.v11-cs-kpi { text-align: center; }
.v11-cs-kpi-lbl {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #8a8a8a;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.v11-cs-kpi-val {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.v11-cs-kpi-before { color: #cfcfcf; text-decoration: line-through; text-decoration-thickness: 2px; }
.v11-cs-kpi-after  { color: #9AD141; }
.v11-cs-kpi-arrow {
  font-family: 'SF Mono', 'Consolas', monospace;
  color: #7FAA22;
  font-size: 1.6rem;
  font-weight: 700;
  align-self: center;
}

.v11-cs-timeline {
  display: grid;
  gap: 0;
  margin-top: 8px;
  position: relative;
}
.v11-cs-step {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 4px 0;
}
.v11-cs-step-day {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7FAA22;
  letter-spacing: 0.06em;
  padding-top: 22px;
  text-align: right;
}
.v11-cs-step-line {
  position: relative;
  display: flex;
  justify-content: center;
}
.v11-cs-step-line::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: #e8e5db;
  left: 50%;
  transform: translateX(-50%);
}
.v11-cs-step:first-child .v11-cs-step-line::before { top: 22px; }
.v11-cs-step:last-child  .v11-cs-step-line::before { bottom: calc(100% - 30px); }
.v11-cs-step-dot {
  position: absolute;
  top: 22px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 3px solid #7FAA22;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px #ffffff;
}
.v11-cs-step-content {
  padding: 16px 20px;
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-radius: 10px;
  margin: 6px 0;
  transition: all 0.2s;
}
.v11-cs-step:hover .v11-cs-step-content {
  border-color: #7FAA22;
  transform: translateX(3px);
}
.v11-cs-step-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.v11-cs-step-body {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3b3b3b;
}

/* ============ SECTORES ============ */
.v11-sectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.v11-sector {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-radius: 10px;
  transition: all 0.25s;
}
.v11-sector:hover {
  transform: translateY(-2px);
  border-color: #7FAA22;
  box-shadow: 0 10px 20px -12px rgba(10,10,10,0.12);
}
.v11-sector-ico {
  width: 56px;
  height: 56px;
  background: #0a0a0a;
  color: #9AD141;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 1.7rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #7FAA22;
  flex-shrink: 0;
}
.v11-sector-name {
  font-size: 1.06rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.v11-sector-kpi {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.76rem;
  background: #ffffff;
  border: 1px solid #e8e5db;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.v11-sector-kpi-lbl {
  color: #6b6b6b;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.66rem;
}
.v11-sector-kpi-val {
  color: #0a0a0a;
  font-weight: 700;
}
.v11-sector-focus {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3b3b3b;
}

/* ============ ONBOARDING ============ */
.v11-onb {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
  position: relative;
}
.v11-onb-step {
  background: #fafbf5;
  border: 1px solid #eeece4;
  border-top: 3px solid #7FAA22;
  border-radius: 10px;
  padding: 20px 22px;
  transition: all 0.25s;
  position: relative;
}
.v11-onb-step:hover {
  transform: translateY(-3px);
  border-top-color: #0a0a0a;
  box-shadow: 0 12px 24px -14px rgba(10,10,10,0.12);
}
.v11-onb-day {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  background: #0a0a0a;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.v11-onb-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 6px;
  line-height: 1.3;
}
.v11-onb-body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #3b3b3b;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .v11-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  /* Mobile: texto primero, dashboard después (orden natural del DOM) */
  .v11-hero-left  { order: 1; }
  .v11-hero-right { order: 2; }
  .v11-sectors { grid-template-columns: 1fr; }
  .v11-onb { grid-template-columns: repeat(2, 1fr); }
  .v11-cs-kpis { grid-template-columns: 1fr 1fr; gap: 20px; padding: 20px; }
  .v11-cs-kpi-arrow { display: none; }
  .v11-platforms { grid-template-columns: 1fr; }
  .v11-transversal { grid-template-columns: repeat(2, 1fr); }
  .v11-agents { grid-template-columns: repeat(2, 1fr); }
  .v11-gov { grid-template-columns: 1fr; }
  .v11-agents-foot { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .v11-cases-hdr,
  .v11-case-row {
    grid-template-columns: 1.4fr 1.4fr 0.7fr 0.8fr 0.8fr 0.7fr;
    font-size: 0.8rem;
  }
  .v11-case-period { display: none; }
  .v11-cases-hdr > div:nth-child(7) { display: none; }
}

@media (max-width: 768px) {
  .v11-page { padding-top: 80px; }
  .v11-card { padding: 32px 24px; border-radius: 12px; }
  .v11-hero-card { padding: 32px 24px; }
  .v11-hero-stats { grid-template-columns: 1fr; gap: 12px; padding: 16px 0; }
  .v11-hero-ctas { flex-direction: column; }
  .v11-hero-ctas .v11-btn { width: 100%; }
  .v11-dash-grid { grid-template-columns: 1fr; }
  .v11-dash-foot { grid-template-columns: 1fr 1fr; }
  .v11-transversal { grid-template-columns: 1fr; }
  .v11-method-row { grid-template-columns: 1fr; gap: 8px; }
  .v11-method-n { font-size: 1.4rem; }
  .v11-ai-row { grid-template-columns: 1fr; gap: 10px; }
  .v11-ai-layer { justify-self: start; }
  .v11-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .v11-cta-card .v11-btn-lg { width: 100%; }
  .v11-cases-hdr,
  .v11-case-row {
    grid-template-columns: 1fr 1fr;
    padding: 12px 14px;
    gap: 8px;
  }
  .v11-cases-hdr { display: none; }
  .v11-case-row { border-radius: 8px; margin: 8px; border: 1px solid #eeece4; }
  .v11-case-sector { grid-column: 1 / -1; font-size: 1rem; }
  .v11-case-plat { grid-column: 1 / -1; padding-bottom: 6px; border-bottom: 1px dashed #d9d5c7; }
  .v11-case-kpi::before { content: 'KPI: '; color: #6b6b6b; }
  .v11-case-before::before { content: 'Antes: '; color: #6b6b6b; font-family: 'Carlito', sans-serif; text-decoration: none; }
  .v11-case-after::before { content: 'Ahora: '; color: #6b6b6b; font-family: 'Carlito', sans-serif; }
  .v11-case-delta { justify-self: start; }
  .v11-case-period { display: block; grid-column: 1 / -1; }
  .v11-case-period::before { content: 'Periodo: '; color: #6b6b6b; }
  .v11-ticker-item { font-size: 0.74rem; }
  .v11-ticker-track { gap: 32px; }
  /* Agentes / Governance / Comparativa / Onboarding / Case study mobile */
  .v11-agents { grid-template-columns: 1fr; }
  .v11-onb { grid-template-columns: 1fr; }
  .v11-cs-step { grid-template-columns: 60px 30px 1fr; gap: 8px; }
  .v11-cs-step-day { font-size: 0.74rem; padding-top: 20px; }
  .v11-sector { grid-template-columns: 48px 1fr; gap: 14px; padding: 16px 18px; }
  .v11-sector-ico { width: 48px; height: 48px; font-size: 1.4rem; }
  .v11-logo-name { font-size: 0.7rem; }
  .v11-logos-track { gap: 24px; }
  .v11-logo { padding: 6px 10px; }
  .v11-comp-hdr { display: none; }
  .v11-comp-row {
    grid-template-columns: 1fr;
    padding: 12px 14px;
    gap: 0;
  }
  .v11-comp-row > div {
    padding: 10px 14px;
    border-left: none;
    border-top: 1px solid #eeece4;
  }
  .v11-comp-row > div:first-child { border-top: none; }
  .v11-comp-dim { background: #0a0a0a; color: #ffffff; }
  .v11-comp-without::before { content: 'Estándar: '; color: #6b6b6b; font-weight: 600; margin-right: 4px; }
  .v11-comp-with::before    { content: 'eXprimeNet: '; color: #4a6d10; font-weight: 700; margin-right: 4px; }
}

@media (max-width: 480px) {
  .v11-card { padding: 24px 18px; }
  .v11-hero-card { padding: 24px 18px; }
  .v11-h1 { font-size: 1.8rem; }
  .v11-h2 { font-size: 1.3rem; }
  .v11-dash { padding: 16px 16px; }
  .v11-dash-val { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER MINIMALISTA · 1 sola línea
   Sustituye al footer largo (columnas + badges + newsletter).
   Namespace: .ftr-min (sobreescribe reglas heredadas de .ftr).
   ═══════════════════════════════════════════════════════════════════ */
.ftr.ftr-min {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text-2);
  font-size: 0.85rem;
  line-height: 1.4;
}
.ftr-min-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ftr-min-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.ftr-min-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.15s ease;
}
.ftr-min-logo:hover { opacity: 1; }
.ftr-min-logo img { display: block; height: 22px; width: auto; }
.ftr-min-copy {
  font-size: 0.82rem;
  color: var(--text-3);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.ftr-min-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.ftr-min-legal a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.ftr-min-legal a:hover { color: var(--accent); }
.ftr-min-sep { color: var(--text-3); opacity: 0.5; user-select: none; }
.ftr-min-langs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.ftr-min-langs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.ftr-min-langs a:hover { color: var(--text); border-color: var(--border-2); }
.ftr-min-langs a.active {
  color: #0a0a0a;
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 720px) {
  .ftr-min-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .ftr-min-legal { justify-content: center; }
}
