/* ================================================================
   DEKEVA — misma-direccion.css · Landing "Misma Dirección"
   Concepto: "Dos líneas, una dirección". Sistema editorial DeKeVa
   (Cormorant Garamond + Inter + JetBrains Mono, blanco/azul #032FD4)
   con capa de campaña: dos líneas (marketing azul / ventas grafito)
   que divergen en el hero y convergen en el CTA final; paneles fríos
   de sala de reuniones (#f3f5fa) como fondo de secciones clave.

   Bare landing: standalone, sin header/footer del tema, sticky CTA
   propia. Sin GSAP, reveals vanilla (IntersectionObserver).

   Todo namespaced bajo #dkv-dir para no colisionar con WP/plugins.
================================================================ */

/* ── Tokens ── */
#dkv-dir {
  /* Base editorial DeKeVa */
  --bg:           #ffffff;
  --bg-dark:      #0d0d0b;
  --text:         #0d0d0b;
  --text-on-dark: #f5f5f3;
  --muted:        #6f6e6a;
  --muted-dark:   #8a8985;
  --faint:        #999894;
  --border:       rgba(13,13,11,0.10);
  --border-soft:  rgba(13,13,11,0.06);
  --border-dark:  rgba(245,245,243,0.12);
  --blue:         #032FD4;
  --blue-on-dark: #7C90FF;
  --blue-dim:     rgba(3,47,212,0.06);
  --blue-glow:    rgba(3,47,212,0.14);

  /* Capa campaña · Dos líneas, una dirección */
  --panel:        #f3f5fa;                    /* papel frío sala de reuniones */
  --panel-deep:   #e9edf6;
  --line-mkt:     #032FD4;                    /* línea marketing */
  --line-ven:     #3d3c38;                    /* línea ventas (grafito) */
  --line-mkt-dark:#3451F0;
  --line-ven-dark:#b9b8b2;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-italic:  'Cormorant', Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --ease:     cubic-bezier(.19,1,.22,1);
  --ease-lux: cubic-bezier(0.76,0,0.24,1);

  --pad:  clamp(90px, 12vw, 170px);
  /* El tercer término evita que el contenedor supere el hueco interior de la
     sección (padding lateral 24px) en móvil — si no, desborda a la derecha. */
  --cont: min(1180px, 92vw, 100vw - 48px);
  --cont-narrow: min(820px, 92vw, 100vw - 48px);

  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Reset scoped */
#dkv-dir *, #dkv-dir *::before, #dkv-dir *::after { margin: 0; padding: 0; box-sizing: border-box; }
#dkv-dir img, #dkv-dir video, #dkv-dir svg { display: block; max-width: 100%; }
#dkv-dir a { color: inherit; text-decoration: none; }
#dkv-dir button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
#dkv-dir ul, #dkv-dir ol { list-style: none; }
body.dkv-direccion { margin: 0; background: #fff; overflow-x: hidden; }

/* Cursor del sistema siempre visible */
body.dkv-direccion, body.dkv-direccion * { cursor: auto !important; }
body.dkv-direccion a,
body.dkv-direccion button,
body.dkv-direccion .btn,
body.dkv-direccion .faq-head,
body.dkv-direccion [role="button"] { cursor: pointer !important; }

/* ── Utilidades ── */
#dkv-dir .cont { width: var(--cont); margin-inline: auto; }
#dkv-dir .cont-narrow { width: var(--cont-narrow); margin-inline: auto; }
#dkv-dir section { padding: var(--pad) 24px; position: relative; overflow: hidden; }

/* Scroll progress */
#dkv-dir .scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 10000;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left center;
  pointer-events: none;
}

/* Eyebrow mono */
#dkv-dir .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
#dkv-dir .eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--blue); opacity: .6;
}
#dkv-dir .is-dark .eyebrow { color: var(--blue-on-dark); }
#dkv-dir .is-dark .eyebrow::before { background: var(--blue-on-dark); }

/* Section title */
#dkv-dir .stitle {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.01em;
  color: var(--text);
}
#dkv-dir .stitle em { font-family: var(--f-italic); font-style: italic; color: var(--blue); }
#dkv-dir .is-dark .stitle { color: var(--text-on-dark); }
#dkv-dir .is-dark .stitle em { color: var(--blue-on-dark); }
#dkv-dir .head-block { margin-bottom: clamp(48px, 6vw, 80px); }

/* Secciones oscuras */
#dkv-dir .is-dark { background: var(--bg-dark); color: var(--text-on-dark); }

/* ── CTA buttons ── */
#dkv-dir .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 18px 34px; border-radius: 2px;
  background: var(--blue); color: #fff;
  transition: background .4s var(--ease-lux), box-shadow .4s var(--ease-lux), transform .4s var(--ease-lux);
  will-change: transform;
  position: relative;
  text-align: center;
}
#dkv-dir .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
#dkv-dir .btn:hover { background: #0220a8; box-shadow: 0 16px 40px -12px var(--blue-glow); transform: translateY(-2px); }
#dkv-dir .btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
#dkv-dir .btn--ghost:hover { background: var(--text); color: #fff; box-shadow: none; }
#dkv-dir .btn--on-dark { background: #fff; color: var(--bg-dark); }
#dkv-dir .btn--on-dark:hover { background: var(--blue-on-dark); color: #fff; }
#dkv-dir .btn--ghost-dark {
  background: transparent; color: var(--text-on-dark);
  border: 1px solid var(--border-dark);
}
#dkv-dir .btn--ghost-dark:hover { background: var(--text-on-dark); color: var(--bg-dark); }

/* ── Reveals ── */
#dkv-dir .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
#dkv-dir .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  #dkv-dir .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   HERO · dos líneas divergen
================================================================ */
#dkv-dir .hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding-top: clamp(110px, 14vw, 160px);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, var(--blue-dim), transparent 60%),
    var(--bg);
}
#dkv-dir .hero-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: .32;
}
#dkv-dir .h-line {
  fill: none; stroke-width: 1.5;
  stroke-dasharray: 1800; stroke-dashoffset: 1800;
}
#dkv-dir .h-line--mkt { stroke: var(--line-mkt); }
#dkv-dir .h-line--ven { stroke: var(--line-ven); opacity: .5; }
#dkv-dir .hero-lines.drawn .h-line {
  transition: stroke-dashoffset 2.6s var(--ease-lux);
  stroke-dashoffset: 0;
}
#dkv-dir .hero-lines.drawn .h-line--ven { transition-delay: .25s; }
@media (prefers-reduced-motion: reduce) {
  #dkv-dir .h-line { stroke-dashoffset: 0 !important; }
}

#dkv-dir .hero-inner {
  width: var(--cont); margin-inline: auto;
  max-width: 900px; position: relative; z-index: 2;
}
/* Frost: velo suave sobre TODO el fondo del hero (encima de las líneas,
   debajo del contenido). Sin mask — robusto también en Safari. */
#dkv-dir .hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
  pointer-events: none;
}
#dkv-dir .brand-line {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(28px, 4vw, 44px);
}
#dkv-dir .brand-line span:first-child { color: var(--blue); }
#dkv-dir .brand-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

#dkv-dir .hero h1 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.5rem, 6.2vw, 4.9rem);
  line-height: 1.05; letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: clamp(24px, 3.4vw, 36px);
}
#dkv-dir .hero h1 em { font-family: var(--f-italic); font-style: italic; color: var(--blue); }

#dkv-dir .hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75; color: var(--muted);
  max-width: 640px;
  margin-bottom: clamp(34px, 4.6vw, 52px);
}

#dkv-dir .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
#dkv-dir .hero-nota {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint);
}

/* ================================================================
   MARQUEE · convergencia
================================================================ */
#dkv-dir .marquee {
  overflow: hidden; padding: 26px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
}
#dkv-dir .marquee-track {
  display: flex; width: max-content;
  animation: dir-marquee 30s linear infinite;
}
#dkv-dir .marquee-item { display: flex; align-items: center; padding-right: 0; }
#dkv-dir .marquee-word {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--text); white-space: nowrap;
  padding: 0 26px;
}
#dkv-dir .marquee-sep { width: 26px; height: 14px; color: var(--blue); opacity: .55; flex-shrink: 0; }
@keyframes dir-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  #dkv-dir .marquee-track { animation: none; }
}

/* ================================================================
   LA ESCENA (dark) · versus
================================================================ */
#dkv-dir .versus {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: start;
  gap: clamp(18px, 3vw, 40px);
}
#dkv-dir .versus-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px;
  margin-bottom: 26px;
}
#dkv-dir .versus-col--mkt .versus-tag { color: var(--line-mkt-dark); border: 1px solid rgba(52,81,240,0.35); }
#dkv-dir .versus-col--ven .versus-tag { color: var(--line-ven-dark); border: 1px solid var(--border-dark); }

#dkv-dir .versus-col li {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dark);
}
#dkv-dir .versus-col li:last-child { border-bottom: none; }
#dkv-dir .versus-col--mkt li { color: var(--text-on-dark); }
#dkv-dir .versus-col--ven li { color: var(--muted-dark); font-style: italic; }

#dkv-dir .versus-divider {
  position: relative;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
#dkv-dir .versus-divider::before,
#dkv-dir .versus-divider::after {
  content: ''; position: absolute; left: 50%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-dark) 20%, var(--border-dark) 80%, transparent);
}
#dkv-dir .versus-divider::before { top: 0; bottom: calc(50% + 28px); }
#dkv-dir .versus-divider::after { top: calc(50% + 28px); bottom: 0; }
#dkv-dir .versus-divider span {
  font-family: var(--f-mono); font-size: 15px;
  color: var(--muted-dark);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
}

#dkv-dir .escena-cierre {
  margin-top: clamp(52px, 7vw, 88px);
  text-align: center;
}
#dkv-dir .escena-cierre p {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  color: var(--text-on-dark);
}
#dkv-dir .escena-cierre p + p { margin-top: 10px; }
#dkv-dir .escena-cierre em { font-family: var(--f-italic); font-style: italic; color: var(--blue-on-dark); }

/* ================================================================
   EL PROBLEMA REAL · falsas soluciones
================================================================ */
#dkv-dir .problema { background: var(--bg); }
#dkv-dir .problema .cont-narrow { margin-bottom: clamp(48px, 6vw, 72px); }
#dkv-dir .problema-text {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted); max-width: 620px;
}

#dkv-dir .falsas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  margin-bottom: clamp(56px, 7vw, 90px);
}
#dkv-dir .falsa {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  padding: clamp(26px, 3.4vw, 40px);
  position: relative;
}
#dkv-dir .falsa-x {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  margin-bottom: 20px;
}
#dkv-dir .falsa-x svg { width: 14px; height: 14px; }
#dkv-dir .falsa h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  line-height: 1.2; color: var(--text);
  text-decoration: line-through;
  text-decoration-color: rgba(13,13,11,0.35);
  text-decoration-thickness: 1px;
  margin-bottom: 12px;
}
#dkv-dir .falsa p { font-size: .95rem; color: var(--muted); }

#dkv-dir .problema-giro { text-align: center; max-width: 720px; margin-inline: auto; }
#dkv-dir .problema-giro p {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.3; color: var(--text);
}
#dkv-dir .problema-giro strong { font-weight: 400; color: var(--blue); }
#dkv-dir .problema-giro-sub {
  margin-top: 14px !important;
  font-family: var(--f-italic) !important;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem) !important;
  color: var(--muted) !important;
}

/* ================================================================
   EL MÉTODO · rail de fases
================================================================ */
#dkv-dir .metodo { background: var(--panel); }
#dkv-dir .metodo-intro {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted); max-width: 640px;
}

#dkv-dir .fases-rail { position: relative; max-width: 760px; }
#dkv-dir .fases-rail::before {
  content: ''; position: absolute;
  left: 27px; top: 30px; bottom: 30px; width: 1px;
  background: var(--blue);
  transform: scaleY(0); transform-origin: top center;
  transition: transform 1.6s var(--ease-lux);
}
#dkv-dir .fases-rail.drawn::before { transform: scaleY(1); }
@media (prefers-reduced-motion: reduce) {
  #dkv-dir .fases-rail::before { transform: scaleY(1); transition: none; }
}

#dkv-dir .fase {
  display: grid; grid-template-columns: 56px 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(24px, 3.4vw, 40px) 0;
  position: relative;
}
#dkv-dir .fase-node {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
#dkv-dir .fase-num {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--blue);
}
#dkv-dir .fase-body h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15; color: var(--text);
  margin-bottom: 12px;
}
#dkv-dir .fase-body p { color: var(--muted); max-width: 580px; }

#dkv-dir .metodo-cta { margin-top: clamp(36px, 5vw, 56px); }

/* ================================================================
   QUÉ CAMBIA · antes / después
================================================================ */
#dkv-dir .cambia { background: var(--bg); }
#dkv-dir .cambia-list { border-top: 1px solid var(--border); }
#dkv-dir .cambio {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--border);
}
#dkv-dir .cambio-antes {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  color: var(--faint);
  text-align: right;
}
#dkv-dir .cambio-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
#dkv-dir .cambio-arrow svg { width: 30px; height: 30px; }
#dkv-dir .cambio-despues {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  color: var(--text);
}

/* ================================================================
   EL COSTE DE ESPERAR (dark)
================================================================ */
#dkv-dir .coste-list { display: flex; flex-direction: column; }
#dkv-dir .coste-item {
  display: grid; grid-template-columns: 60px 1fr;
  gap: clamp(18px, 3vw, 32px);
  align-items: baseline;
  padding: clamp(20px, 2.8vw, 30px) 0;
  border-bottom: 1px solid var(--border-dark);
}
#dkv-dir .coste-item:first-child { border-top: 1px solid var(--border-dark); }
#dkv-dir .coste-idx {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--blue-on-dark); letter-spacing: 0.08em;
}
#dkv-dir .coste-item p {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.3; color: var(--muted-dark);
}
#dkv-dir .coste-item strong { font-weight: 400; color: var(--text-on-dark); }

#dkv-dir .coste-cierre {
  margin-top: clamp(44px, 6vw, 68px);
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.4; color: var(--text-on-dark);
}
#dkv-dir .coste-cierre em { font-family: var(--f-italic); font-style: italic; color: var(--blue-on-dark); }

/* ================================================================
   QUIÉNES SOMOS + SELECCIÓN
================================================================ */
#dkv-dir .somos { background: var(--bg); }
#dkv-dir .somos-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
#dkv-dir .somos-intro p {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted);
}
#dkv-dir .somos-principios { margin-top: 30px; }
#dkv-dir .somos-principios li {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.3; color: var(--text);
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
#dkv-dir .somos-principios li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 14px; height: 1px; background: var(--blue);
}
#dkv-dir .somos-principios li:last-child { border-bottom: none; }

#dkv-dir .seleccion { display: flex; flex-direction: column; gap: 18px; }
#dkv-dir .seleccion-block {
  border-radius: 3px;
  padding: clamp(24px, 3vw, 36px);
}
#dkv-dir .seleccion-block--si { background: var(--panel); border: 1px solid var(--border-soft); }
#dkv-dir .seleccion-block--no { background: var(--bg); border: 1px dashed var(--border); }
#dkv-dir .seleccion-tag {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 18px;
}
#dkv-dir .seleccion-block--si .seleccion-tag { color: var(--blue); }
#dkv-dir .seleccion-block--no .seleccion-tag { color: var(--faint); }
#dkv-dir .seleccion-block li {
  font-size: .95rem; color: var(--muted);
  padding: 8px 0 8px 22px; position: relative;
}
#dkv-dir .seleccion-block--si li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 10px; height: 5px;
  border-left: 1.5px solid var(--blue); border-bottom: 1.5px solid var(--blue);
  transform: rotate(-45deg);
}
#dkv-dir .seleccion-block--no li::before {
  content: '\00d7'; position: absolute; left: 2px; top: 7px;
  color: var(--faint); font-size: 14px;
}

/* ================================================================
   LA REUNIÓN
================================================================ */
#dkv-dir .reunion { background: var(--panel); }
#dkv-dir .reunion-list { counter-reset: reunion; max-width: 680px; }
#dkv-dir .reunion-list li {
  display: grid; grid-template-columns: 52px 1fr;
  gap: clamp(18px, 2.6vw, 28px);
  align-items: start;
  padding: clamp(20px, 2.6vw, 28px) 0;
  border-bottom: 1px solid var(--border-soft);
}
#dkv-dir .reunion-list li:last-child { border-bottom: none; }
#dkv-dir .reunion-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 13px; color: var(--blue);
}
#dkv-dir .reunion-list p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6; color: var(--muted);
  padding-top: 8px;
}
#dkv-dir .reunion-list strong { font-weight: 500; color: var(--text); }

#dkv-dir .reunion-nota {
  margin-top: clamp(28px, 4vw, 40px);
  font-size: .95rem; color: var(--faint);
  max-width: 620px;
}
#dkv-dir .reunion-cta {
  margin-top: clamp(30px, 4vw, 44px);
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ================================================================
   FAQ
================================================================ */
#dkv-dir .objeciones { background: var(--bg); }
#dkv-dir .faq-item { border-bottom: 1px solid var(--border); }
#dkv-dir .faq-head {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(22px, 3vw, 30px) 0;
}
#dkv-dir .faq-q {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.3; color: var(--text);
}
#dkv-dir .faq-plus {
  font-family: var(--f-mono); font-size: 18px; font-weight: 300;
  color: var(--blue);
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .45s var(--ease-lux), background .45s var(--ease-lux), color .45s var(--ease-lux);
}
#dkv-dir .faq-item.open .faq-plus { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
#dkv-dir .faq-body { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease-lux); }
#dkv-dir .faq-answer {
  padding: 0 0 clamp(24px, 3vw, 32px);
  color: var(--muted);
  max-width: 680px;
}

/* ================================================================
   CTA FINAL (dark) · convergencia
================================================================ */
#dkv-dir .final { text-align: center; padding-bottom: clamp(120px, 15vw, 200px); }
#dkv-dir .final-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: .5;
}
#dkv-dir .f-line {
  fill: none; stroke-width: 1.5;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  vector-effect: non-scaling-stroke;
}
#dkv-dir .f-line--mkt { stroke: var(--line-mkt-dark); }
#dkv-dir .f-line--ven { stroke: var(--line-ven-dark); opacity: .5; }
#dkv-dir .f-line--one { stroke: var(--line-mkt-dark); stroke-width: 2; }
#dkv-dir .final-lines.drawn .f-line {
  transition: stroke-dashoffset 2s var(--ease-lux);
  stroke-dashoffset: 0;
}
#dkv-dir .final-lines.drawn .f-line--one { transition-delay: 1.1s; }
@media (prefers-reduced-motion: reduce) {
  #dkv-dir .f-line { stroke-dashoffset: 0 !important; }
}

#dkv-dir .final .cont { position: relative; z-index: 2; max-width: 860px; }
/* Frost oscuro: velo suave sobre TODO el fondo del CTA final (mismo criterio) */
#dkv-dir .final::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(13,13,11,0.22);
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
  pointer-events: none;
}
#dkv-dir .final-pre {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 26px;
}
#dkv-dir .final-title {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.3rem, 5.6vw, 4.4rem);
  line-height: 1.06; letter-spacing: -0.015em;
  color: var(--text-on-dark);
  margin-bottom: 22px;
}
#dkv-dir .final-title em { font-family: var(--f-italic); font-style: italic; color: var(--blue-on-dark); }
#dkv-dir .final-y {
  font-family: var(--f-italic); font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  color: var(--muted-dark);
  margin-bottom: clamp(36px, 5vw, 52px);
}
#dkv-dir .final-cta {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
#dkv-dir .final-nota {
  margin-top: 22px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-dark);
}

/* ================================================================
   STICKY CTA
================================================================ */
#dkv-dir .sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform .6s var(--ease-lux);
}
#dkv-dir .sticky-cta.show { transform: translateY(0); }
#dkv-dir .sticky-inner {
  width: var(--cont); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px 0;
}
#dkv-dir .sticky-label {
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
#dkv-dir .sticky-label strong { font-weight: 500; color: var(--text); font-size: 11px; }
#dkv-dir .sticky-cta .btn { padding: 14px 26px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  #dkv-dir .versus { grid-template-columns: 1fr; gap: 0; }
  #dkv-dir .versus-divider {
    height: 72px;
    margin: 8px 0;
  }
  #dkv-dir .versus-divider::before { top: 0; bottom: calc(50% + 26px); left: 50%; }
  #dkv-dir .versus-divider::after { top: calc(50% + 26px); bottom: 0; left: 50%; }
  #dkv-dir .falsas { grid-template-columns: 1fr; }
  #dkv-dir .somos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  #dkv-dir .hero { min-height: auto; }
  #dkv-dir .hero-cta .btn { width: 100%; }
  #dkv-dir .reunion-cta .btn { width: 100%; }
  #dkv-dir .final-cta .btn { width: 100%; }
  #dkv-dir .cambio {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
  #dkv-dir .cambio-antes { text-align: left; }
  #dkv-dir .cambio-arrow { justify-content: flex-start; }
  #dkv-dir .cambio-arrow svg { transform: rotate(90deg); width: 22px; height: 22px; }
  #dkv-dir .fase { grid-template-columns: 44px 1fr; }
  #dkv-dir .fase-node { width: 44px; height: 44px; }
  #dkv-dir .fases-rail::before { left: 21px; }
  #dkv-dir .sticky-label { display: none; }
  #dkv-dir .sticky-inner { justify-content: center; }
  #dkv-dir .sticky-cta .btn { width: 100%; }
}
