/* ================================================================
   DEKEVA — estrategia.css · Landing "Estrategia Digital 360°"
   Funnel de captación (llamada estratégica). REDISEÑADA al estilo
   editorial nuevo de DeKeVa: blanco/crema + secciones oscuras con
   blueprint, Cormorant Garamond + Cormorant italic + Inter + JetBrains
   Mono, azul #032FD4. Standalone (sin header/footer del tema), con
   sticky CTA. Sin GSAP — reveals vanilla (IntersectionObserver).

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

/* ── Tokens del tema ── */
#dkv-est {
  --bg:           #ffffff;
  --bg-soft:      #f5f5f3;
  --bg-cream:     #f2ede4;
  --bg-dark:      #0d0d0b;
  --text:         #0d0d0b;
  --muted:        #6f6e6a;
  --faint:        #999894;
  --border:       rgba(13,13,11,0.10);
  --border-soft:  rgba(13,13,11,0.06);
  --blue:         #032FD4;
  --blue-on-dark: #3451F0;
  --blue-dim:     rgba(3,47,212,0.06);
  --blue-glow:    rgba(3,47,212,0.14);

  --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);
  --cont: min(1180px, 92vw);
  --cont-narrow: min(820px, 92vw);

  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-est *, #dkv-est *::before, #dkv-est *::after { margin: 0; padding: 0; box-sizing: border-box; }
#dkv-est img, #dkv-est video, #dkv-est canvas { display: block; max-width: 100%; }
#dkv-est a { color: inherit; text-decoration: none; }
#dkv-est button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
body.dkv-estrategia { margin: 0; background: var(--bg); overflow-x: hidden; }

/* Cursor del sistema siempre visible (la web aplica cursor:none global y
   esta landing no lo reemplaza). */
body.dkv-estrategia, body.dkv-estrategia * { cursor: auto !important; }
body.dkv-estrategia a,
body.dkv-estrategia button,
body.dkv-estrategia .btn,
body.dkv-estrategia .faq-head,
body.dkv-estrategia [role="button"] { cursor: pointer !important; }

/* ── Utilidades ── */
#dkv-est .cont { width: var(--cont); margin-inline: auto; }
#dkv-est .cont-narrow { width: var(--cont-narrow); margin-inline: auto; }
#dkv-est .center { text-align: center; }
#dkv-est .accent { color: var(--blue); font-style: italic; font-family: var(--f-italic); }

#dkv-est section { padding: var(--pad) 24px; position: relative; overflow: hidden; }

/* Eyebrow mono */
#dkv-est .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-est .eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--blue); opacity: .6;
}

/* Section title — Cormorant 300 con em italic azul */
#dkv-est .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-est .stitle em { font-family: var(--f-italic); font-style: italic; color: var(--blue); }
#dkv-est .stext {
  font-size: 1.02rem; color: var(--muted); line-height: 1.85; font-weight: 300;
  max-width: 560px;
}

/* ── CTA buttons ── */
#dkv-est .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 36px; 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;
}
#dkv-est .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
#dkv-est .btn:hover { background: #0220a8; box-shadow: 0 16px 40px -12px var(--blue-glow); }
#dkv-est .btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
#dkv-est .btn--ghost:hover { background: var(--text); color: #fff; box-shadow: none; }
#dkv-est .btn--on-dark { background: #fff; color: var(--bg-dark); }
#dkv-est .btn--on-dark:hover { background: var(--blue-on-dark); color: #fff; }

/* ── Reveal (IntersectionObserver) ── */
#dkv-est .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
#dkv-est .reveal.visible { opacity: 1; transform: none; }
#dkv-est .reveal-clip { opacity: 0; clip-path: inset(0 100% 0 0); transition: opacity .7s var(--ease), clip-path .9s var(--ease-lux); }
#dkv-est .reveal-clip.visible { opacity: 1; clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  #dkv-est .reveal, #dkv-est .reveal-clip { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* Blueprint pattern para secciones oscuras */
#dkv-est .is-dark {
  background: var(--bg-dark); color: #f2ede4;
}
#dkv-est .is-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(52,81,240,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,81,240,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 35%, transparent 85%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 35%, transparent 85%);
}
#dkv-est .is-dark > * { position: relative; z-index: 1; }
#dkv-est .is-dark .eyebrow { color: var(--blue-on-dark); }
#dkv-est .is-dark .eyebrow::before { background: var(--blue-on-dark); }
#dkv-est .is-dark .stitle { color: #fff; }
#dkv-est .is-dark .stitle em { color: var(--blue-on-dark); }
#dkv-est .is-dark .stext { color: rgba(242,237,228,.55); }

/* ════════════════════════════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════════════════════════ */
#dkv-est .scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--blue);
  transform-origin: left center; transform: scaleX(0);
  z-index: 10001; pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   HERO  (light editorial)
═══════════════════════════════════════════════════════════ */
#dkv-est .hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: clamp(120px, 16vh, 180px) 24px clamp(90px, 12vh, 130px);
  background: var(--bg);
}
#dkv-est .hero-bp {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--blue-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--blue-dim) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 70%);
  opacity: .7;
}
#dkv-est .hero-inner { position: relative; z-index: 1; max-width: 880px; width: 100%; }
#dkv-est .hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  padding: 8px 18px; border: 1px solid var(--border); border-radius: 999px;
  margin-bottom: 34px; background: rgba(255,255,255,.6); backdrop-filter: blur(6px);
}
#dkv-est .hero-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: est-pulse 2.4s infinite; }
#dkv-est .hero h1 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem); line-height: 1.04; letter-spacing: -0.015em;
  color: var(--text); margin-bottom: 28px;
}
#dkv-est .hero h1 em { font-family: var(--f-italic); font-style: italic; color: var(--blue); }
#dkv-est .hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem); color: var(--muted); font-weight: 300;
  max-width: 600px; margin: 0 auto 50px; line-height: 1.85;
}

/* Video frame editorial */
#dkv-est .video-frame {
  position: relative; max-width: 820px; margin: 0 auto 52px;
  border: 1px solid var(--border); border-top: 1px solid var(--blue);
  background: var(--bg-soft);
  box-shadow: 0 50px 90px -40px rgba(13,13,11,0.4);
}
#dkv-est .video-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-bottom: 1px solid var(--border-soft);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint);
}
#dkv-est .video-bar__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
#dkv-est .video-bar__label { margin-left: auto; }
#dkv-est .video-wrap { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
#dkv-est .video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }

#dkv-est .hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Scroll indicator */
#dkv-est .scroll-ind {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
#dkv-est .scroll-ind span {
  width: 9px; height: 9px;
  border-right: 1.5px solid rgba(3,47,212,.45); border-bottom: 1.5px solid rgba(3,47,212,.45);
  transform: rotate(45deg);
}
#dkv-est .scroll-ind span:nth-child(1) { animation: est-bounce 1.6s 0s ease-in-out infinite; }
#dkv-est .scroll-ind span:nth-child(2) { animation: est-bounce 1.6s .2s ease-in-out infinite; }
#dkv-est .scroll-ind span:nth-child(3) { animation: est-bounce 1.6s .4s ease-in-out infinite; }

/* ════════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════ */
#dkv-est .ticker {
  padding: 0 !important; overflow: hidden; position: relative; z-index: 5;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
#dkv-est .ticker-track { display: flex; width: max-content; animation: est-marquee 28s linear infinite; }
#dkv-est .ticker-item { display: flex; align-items: center; padding: 16px 0; white-space: nowrap; }
#dkv-est .ticker-word {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  padding: 0 26px;
}
#dkv-est .ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--blue); opacity: .55; }

/* ════════════════════════════════════════════════════════════
   PROBLEMA  (dark + blueprint)
═══════════════════════════════════════════════════════════ */
#dkv-est .head-block { margin-bottom: 56px; }
#dkv-est .problema-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
#dkv-est .is-dark .problema-grid { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); }
#dkv-est .problema-item {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 30px 34px; background: var(--bg-dark);
  transition: background .4s var(--ease);
}
#dkv-est .problema-item:hover { background: #131310; }
#dkv-est .problema-idx {
  font-family: var(--f-mono); font-size: 12px; color: var(--blue-on-dark); flex-shrink: 0;
  padding-top: 4px; letter-spacing: .1em;
}
#dkv-est .problema-item p { color: rgba(242,237,228,.6); font-size: 1.02rem; line-height: 1.65; }
#dkv-est .problema-item p strong { color: #fff; font-weight: 500; }

#dkv-est .warning {
  margin-top: 36px; padding: 34px 40px; text-align: center;
  border: 1px solid rgba(52,81,240,.35); background: rgba(52,81,240,.06);
}
#dkv-est .warning p { color: #fff; font-family: var(--f-display); font-weight: 300; font-size: 1.5rem; line-height: 1.4; }
#dkv-est .warning p + p { color: rgba(242,237,228,.5); font-family: var(--f-body); font-size: .95rem; margin-top: 8px; }

/* ════════════════════════════════════════════════════════════
   DIFERENCIA  (light)
═══════════════════════════════════════════════════════════ */
#dkv-est .diferencia { background: var(--bg); }
#dkv-est .dif-intro { font-family: var(--f-italic); font-style: italic; font-size: 1.4rem; color: var(--blue); margin: 8px 0 16px; }
#dkv-est .servicios-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border: 1px solid var(--border); margin-top: 54px;
}
#dkv-est .servicio {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 30px;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; transition: background .4s var(--ease);
}
#dkv-est .servicio::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--blue); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease-lux);
}
#dkv-est .servicio:hover { background: var(--bg-soft); }
#dkv-est .servicio:hover::before { transform: scaleY(1); }
#dkv-est .servicio-check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(3,47,212,.3); background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
}
#dkv-est .servicio-check svg { width: 14px; height: 14px; color: var(--blue); }
#dkv-est .servicio span { font-size: .98rem; color: var(--text); font-weight: 400; }

#dkv-est .dif-statement {
  margin-top: 60px; text-align: center; max-width: 720px; margin-inline: auto;
}
#dkv-est .dif-statement p {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35; color: var(--text);
}
#dkv-est .dif-statement em { font-family: var(--f-italic); font-style: italic; color: var(--blue); }

/* ════════════════════════════════════════════════════════════
   PARA QUIÉN  (cream)
═══════════════════════════════════════════════════════════ */
#dkv-est .paraquien { background: var(--bg-cream); }
#dkv-est .audience {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px; margin-top: 56px;
}
#dkv-est .aud-card {
  padding: 44px 34px; background: var(--bg); border: 1px solid var(--border);
  text-align: center; transition: transform .5s var(--ease-lux), box-shadow .5s var(--ease-lux), border-color .3s;
}
#dkv-est .aud-card:hover {
  transform: translateY(-6px); border-color: rgba(3,47,212,.3);
  box-shadow: 0 30px 60px -30px rgba(13,13,11,.25);
}
#dkv-est .aud-icon {
  width: 58px; height: 58px; margin: 0 auto 24px; border-radius: 4px;
  background: var(--blue-dim); border: 1px solid rgba(3,47,212,.22);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-lux);
}
#dkv-est .aud-card:hover .aud-icon { transform: translateY(-3px) scale(1.06); }
#dkv-est .aud-icon svg { width: 25px; height: 25px; color: var(--blue); }
#dkv-est .aud-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.45rem; margin-bottom: 12px; color: var(--text); }
#dkv-est .aud-card p { color: var(--muted); font-size: .95rem; line-height: 1.75; }

/* ════════════════════════════════════════════════════════════
   PROCESO  (light, números display)
═══════════════════════════════════════════════════════════ */
#dkv-est .proceso { background: var(--bg); }
#dkv-est .steps { margin-top: 64px; position: relative; max-width: 680px; }
#dkv-est .steps::before {
  content: ''; position: absolute; left: 35px; top: 40px; bottom: 40px; width: 1px;
  background: linear-gradient(to bottom, var(--blue), rgba(3,47,212,.15) 80%, transparent);
  transform-origin: top; transform: scaleY(0); transition: transform 1.6s var(--ease-lux);
}
#dkv-est .steps.drawn::before { transform: scaleY(1); }
#dkv-est .step { display: flex; gap: 38px; margin-bottom: 54px; position: relative; }
#dkv-est .step:last-child { margin-bottom: 0; }
#dkv-est .step-num {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 300; font-size: 2rem; color: var(--blue);
  position: relative; z-index: 1;
  transition: transform .5s var(--ease-lux), box-shadow .5s var(--ease-lux);
}
#dkv-est .step:hover .step-num { transform: scale(1.06); box-shadow: 0 0 0 6px var(--blue-dim); }
#dkv-est .step-body { padding-top: 12px; }
#dkv-est .step-body h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.55rem; margin-bottom: 10px; color: var(--text); }
#dkv-est .step-body p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

#dkv-est .proc-badges { margin-top: 66px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
#dkv-est .proc-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px; border: 1px solid var(--border); border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  transition: border-color .3s, color .3s, transform .4s var(--ease-lux);
}
#dkv-est .proc-badge:hover { border-color: rgba(3,47,212,.4); color: var(--text); transform: translateY(-2px); }
#dkv-est .proc-badge svg { width: 14px; height: 14px; color: var(--blue); }

/* ════════════════════════════════════════════════════════════
   OBJECIONES / FAQ  (cream)
═══════════════════════════════════════════════════════════ */
#dkv-est .objeciones { background: var(--bg-cream); }
#dkv-est .faq-list { margin: 56px 0; max-width: 800px; margin-inline: auto; }
#dkv-est .faq-item { border-top: 1px solid var(--border); }
#dkv-est .faq-item:last-child { border-bottom: 1px solid var(--border); }
#dkv-est .faq-head {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 28px 4px; cursor: pointer; transition: padding-left .35s var(--ease);
}
#dkv-est .faq-head:hover { padding-left: 12px; }
#dkv-est .faq-q { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 1.35rem; color: var(--text); }
#dkv-est .faq-plus { flex-shrink: 0; font-size: 22px; font-weight: 300; color: var(--blue); line-height: 1; transition: transform .35s var(--ease-lux); }
#dkv-est .faq-item.open .faq-plus { transform: rotate(45deg); }
#dkv-est .faq-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-lux); }
#dkv-est .faq-answer { color: var(--muted); font-size: 1rem; line-height: 1.8; padding: 0 4px 28px; max-width: 680px; }

#dkv-est .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 48px; }
#dkv-est .trust {
  display: flex; align-items: center; gap: 13px;
  padding: 18px 24px; background: var(--bg); border: 1px solid var(--border);
  transition: border-color .3s, transform .4s var(--ease-lux);
}
#dkv-est .trust:hover { border-color: rgba(3,47,212,.35); transform: translateY(-3px); }
#dkv-est .trust-check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid rgba(3,47,212,.3);
  display: flex; align-items: center; justify-content: center;
}
#dkv-est .trust-check svg { width: 11px; height: 11px; color: var(--blue); }
#dkv-est .trust span { font-size: .92rem; font-weight: 400; color: var(--text); }
#dkv-est .faq-foot { text-align: center; margin-top: 34px; font-family: var(--f-italic); font-style: italic; color: var(--muted); font-size: 1.05rem; }

/* ════════════════════════════════════════════════════════════
   CTA FINAL  (dark + blueprint)
═══════════════════════════════════════════════════════════ */
#dkv-est .cta-final { background: var(--bg-dark); text-align: center; padding: clamp(110px, 14vw, 170px) 24px; }
#dkv-est .cta-divider { width: 54px; height: 2px; background: var(--blue-on-dark); margin: 0 auto 50px; }
#dkv-est .cta-lines { font-family: var(--f-display); font-weight: 300; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.9; color: rgba(242,237,228,.55); margin-bottom: 18px; }
#dkv-est .cta-lines em { font-family: var(--f-italic); font-style: italic; color: #fff; }
#dkv-est .cta-final .stitle { margin-top: 32px; color: #fff; }
#dkv-est .cta-final .stitle em { color: var(--blue-on-dark); }
#dkv-est .cta-benefits {
  margin: 52px auto; max-width: 540px; text-align: left;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03);
}
#dkv-est .cta-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 28px; font-size: 1rem; color: rgba(242,237,228,.75);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
#dkv-est .cta-benefit:last-child { border-bottom: none; }
#dkv-est .cta-benefit-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(52,81,240,.15); border: 1px solid rgba(52,81,240,.4);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
#dkv-est .cta-benefit-icon svg { width: 11px; height: 11px; color: var(--blue-on-dark); }
#dkv-est .cta-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 18px; position: relative; }
#dkv-est .cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,237,228,.6);
  padding: 6px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px;
}
#dkv-est .cta-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-on-dark); animation: est-pulse 2s infinite; }
#dkv-est .cta-honesty { margin-top: 30px; font-family: var(--f-italic); font-style: italic; color: rgba(242,237,228,.4); font-size: .98rem; }

/* ════════════════════════════════════════════════════════════
   STICKY CTA
═══════════════════════════════════════════════════════════ */
#dkv-est .sticky-cta {
  position: fixed; bottom: 22px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9990; opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease-lux);
}
#dkv-est .sticky-cta.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
#dkv-est .sticky-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 10px 10px 22px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 999px;
  box-shadow: 0 18px 50px -16px rgba(13,13,11,.35);
}
#dkv-est .sticky-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
#dkv-est .sticky-label strong { display: block; font-family: var(--f-body); font-size: .9rem; letter-spacing: 0; text-transform: none; color: var(--text); font-weight: 500; }
#dkv-est .sticky-cta .btn { padding: 13px 24px; border-radius: 999px; }

/* ════════════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════════ */
@keyframes est-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
@keyframes est-bounce { 0%,100% { opacity: 0; transform: rotate(45deg) translate(-3px,-3px); } 50% { opacity: .6; transform: rotate(45deg) translate(3px,3px); } }
@keyframes est-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #dkv-est section { padding: 80px 20px; }
  #dkv-est .hero { padding: 120px 20px 90px; }
  #dkv-est .steps { max-width: 100%; }
  #dkv-est .steps::before { left: 26px; }
  #dkv-est .step-num { width: 54px; height: 54px; font-size: 1.5rem; }
  #dkv-est .step { gap: 24px; }
  #dkv-est .problema-item { padding: 24px 22px; gap: 16px; }
  #dkv-est .servicio { border-right: none; }
  #dkv-est .scroll-ind { display: none; }
  #dkv-est .sticky-label { display: none; }
  #dkv-est .cta-final { padding-bottom: 100px; }
}
@media (max-width: 480px) {
  #dkv-est .servicios-grid { grid-template-columns: 1fr; }
  #dkv-est .audience { grid-template-columns: 1fr; }
  #dkv-est .trust-grid { grid-template-columns: 1fr 1fr; }
}
