/* ================================================================
   DEKEVA — auditoria.css · Landing herramienta de auditoría (Lead Audit)
   "Light landing": usa el HEADER y FOOTER del tema (no los del HTML
   original). Sin ScrollSmoother, sin preloader, sin cursor custom,
   sin grain — pensada como página de conversión rápida (destino de
   anuncios). Cero dependencia de GSAP.

   Estructura:
     1) Chrome del tema (vars + reset + header + offcanvas + footer)
        extraído 1:1 de blog.css para calcar el resto de la web.
     2) Override: header sólido sobre el hero oscuro de la auditoría.
     3) Estilos del widget de auditoría, namespaced bajo #dkv-la
        (incluye su propio --blue #0A28CE, aislado del azul del tema).
================================================================ */

/* ════════════════════════════════════════════════════════════
   1. CHROME DEL TEMA — variables
═══════════════════════════════════════════════════════════ */
:root {
  --bg:            #ffffff;
  --bg-soft:       #f5f5f3;
  --bg-cream:      #f2ede4;
  --bg-dark:       #0d0d0b;
  --text:          #0d0d0b;
  --muted:         #999894;
  --border:        rgba(13,13,11,0.08);
  --blue:          #032FD4;
  --blue-on-dark:  #3451F0;
  --blue-dim:      rgba(3,47,212,0.06);

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

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

  --pad:           clamp(80px,10vw,140px);
  --cont:          min(1280px, 92vw);
}

/* ── Reset (sin cursor:none — esta página usa el cursor del sistema) ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body.dkv-auditoria {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.dkv-auditoria a { color: inherit; text-decoration: none; transition: color .35s var(--ease); }
/* OJO: sin `height:auto` — esa regla (0,1,2) machacaba a `.logo img` (0,1,1)
   de header-extras y agrandaba el logo. La altura del logo la fija header-extras. */
body.dkv-auditoria img { display: block; max-width: 100%; }
body.dkv-auditoria button { font: inherit; color: inherit; background: none; border: none; }

/* ── Cursor del sistema SIEMPRE visible ──────────────────────────
   La web aplica un cursor custom (cursor:none) de forma global; esta
   landing es lean y NO lo reemplaza, así que forzamos el cursor normal
   para que no desaparezca el ratón. */
html body.dkv-auditoria, html body.dkv-auditoria * { cursor: auto !important; }
html body.dkv-auditoria a,
html body.dkv-auditoria button,
html body.dkv-auditoria summary,
html body.dkv-auditoria label,
html body.dkv-auditoria [role="button"],
html body.dkv-auditoria .choice-card,
html body.dkv-auditoria .burger,
html body.dkv-auditoria .offcanvas-close { cursor: pointer !important; }
html body.dkv-auditoria input,
html body.dkv-auditoria textarea { cursor: text !important; }

/* ── Logo: tamaño correcto garantizado (refuerzo de header-extras) ── */
body.dkv-auditoria .logo img { height: 65px; width: auto; }
body.dkv-auditoria #site-header.scrolled .logo img { height: 52px; }
@media (max-width: 800px) {
  body.dkv-auditoria .logo img { height: 48px; }
  body.dkv-auditoria #site-header.scrolled .logo img { height: 42px; }
}

/* ── Fuentes del chrome (sin el font-kill global de blog.css) ── */
.dkv-auditoria .nav-link,
.dkv-auditoria .btn-nav,
.dkv-auditoria .footer-col-title,
.dkv-auditoria .footer-link,
.dkv-auditoria .footer-copy,
.dkv-auditoria .footer-legal {
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}
.dkv-auditoria .offcanvas-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── Contenedor ── */
.dkv-auditoria .cont { width: var(--cont); margin-inline: auto; }

/* ════════════════════════════════════════════════════════════
   1b. HEADER + OFFCANVAS  (extraído de blog.css)
═══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.2rem 0;
  transition: background .6s var(--ease-lux), padding .5s var(--ease-lux), backdrop-filter .6s;
}
#site-header.scrolled {
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: var(--cont); margin-inline: auto;
}
.logo { font-family: var(--f-display); }

.nav-main { display: flex; align-items: center; }
.nav-link {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); position: relative;
  transition: color .4s var(--ease-lux);
}
.nav-link.is-active, .nav-link:hover { color: var(--text); }
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--blue);
  transition: width .6s var(--ease);
}
.nav-link.is-active::after, .nav-link:hover::after { width: 100%; }

.btn-nav {
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: .7rem 1.4rem; border-radius: 999px;
  transition: background .35s var(--ease-lux), color .35s var(--ease-lux);
}
.btn-nav:hover { background: var(--blue); color: #fff; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 1px; background: var(--text); transition: transform .5s var(--ease-lux), opacity .4s; }
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.offcanvas {
  position: fixed; top: 0; right: 0;
  width: min(340px,90vw); height: 100vh; background: var(--bg);
  z-index: 300; padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  transform: translateX(100%);
  transition: transform .7s var(--ease-lux);
  border-left: 1px solid var(--border);
}
.offcanvas.open { transform: translateX(0); }
.offcanvas-overlay {
  position: fixed; inset: 0; background: rgba(13,13,11,0.4);
  z-index: 299; opacity: 0; pointer-events: none; transition: opacity .5s;
}
.offcanvas-overlay.open { opacity: 1; pointer-events: all; }
.offcanvas-close { position: absolute; top: 1.8rem; right: 2rem; width: 28px; height: 28px; cursor: pointer; }
.offcanvas-close span { position: absolute; width: 22px; height: 1px; background: var(--text); }
.offcanvas-close span:first-child { transform: rotate(45deg); }
.offcanvas-close span:last-child { transform: rotate(-45deg); }
.offcanvas-nav { display: flex; flex-direction: column; gap: 1.8rem; margin-bottom: 3rem; }
.offcanvas-link {
  font-size: 2.2rem; font-weight: 300; letter-spacing: -0.02em;
  transition: color .4s;
}
.offcanvas-link:hover { color: var(--blue); }
.offcanvas-footer { display: flex; flex-direction: column; gap: .4rem; font-size: 11px; color: var(--muted); letter-spacing: .06em; }

@media (max-width: 1100px) {
  .nav-main { display: none; }
  .burger { display: flex; }
}

/* ════════════════════════════════════════════════════════════
   2. OVERRIDE — header sólido sobre el hero oscuro de la auditoría
   (el logo del tema es la variante negra → necesita fondo claro)
═══════════════════════════════════════════════════════════ */
body.dkv-auditoria #site-header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* Holgura superior del hero para no quedar bajo el header fijo */
#dkv-la .hero { padding-top: 132px; }
@media (max-width: 900px) {
  #dkv-la .hero { padding-top: 104px; }
}

/* ════════════════════════════════════════════════════════════
   3. FOOTER DEL TEMA  (extraído de blog.css)
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.6);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  margin-top: 0;
  position: relative; overflow: hidden;
}
.footer-inner { width: var(--cont); margin-inline: auto; position: relative; z-index: 1; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--f-display) !important;
  font-size: 1.3rem;
  letter-spacing: 0.32em; text-transform: uppercase; color: #fff;
}
.footer-tagline {
  margin-top: 1rem;
  font-family: var(--f-display) !important;
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.5);
  font-size: 1rem; line-height: 1.55;
}
.footer-col-title {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-link {
  font-size: 13px; color: rgba(255,255,255,0.65);
  transition: color .3s, padding-left .3s var(--ease);
}
.footer-link:hover { color: #fff; padding-left: .5rem; }
.footer-link.is-active { color: var(--blue-on-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: .06em;
}
.footer-bottom a { transition: color .3s; }
.footer-bottom a:hover { color: #fff; }
.footer-bg-word {
  position: absolute; bottom: -25%; left: 50%; transform: translateX(-50%);
  font-family: var(--f-italic) !important;
  font-style: italic; font-weight: 200;
  font-size: 32vw; color: rgba(255,255,255,0.025);
  pointer-events: none; line-height: 1; white-space: nowrap;
}

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   4. WIDGET DE AUDITORÍA  (namespaced bajo #dkv-la)
═══════════════════════════════════════════════════════════ */
#dkv-la * {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

#dkv-la a {
  text-decoration: none;
  color: inherit
}

#dkv-la img {
  display: block
}

#dkv-la {
  --blue: #0A28CE;
  --blue-dk: #0820a8;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --light: #8a8a8a;
  --border: rgba(0, 0, 0, 0.07);
  --border-md: rgba(0, 0, 0, 0.1);
  --surface: #fff;
  --bg: #f8f8f6;
  --red: #DC2626;
  --yellow: #EAB308;
  --green: #16a34a;
  --red-bg: rgba(220, 38, 38, 0.04);
  --red-bd: rgba(220, 38, 38, 0.12);
  --ylw-bg: rgba(234, 179, 8, 0.05);
  --ylw-bd: rgba(234, 179, 8, 0.15);
  --blu-bg: rgba(10, 40, 206, 0.04);
  --blu-bd: rgba(10, 40, 206, 0.12);
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

#dkv-la .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300
}

/* ── Hero ── */
#dkv-la .hero {
  background: #0d0d0b;
  background-image: radial-gradient(ellipse 65% 55% at 60% 110%, rgba(10, 40, 206, 0.2) 0%, transparent 70%);
  padding: 88px 28px 96px;
}

#dkv-la .hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center
}

#dkv-la .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

#dkv-la .hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: la-pulse 2s infinite
}

#dkv-la .hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
}

#dkv-la .hero h1 em {
  color: #7b96ff;
  font-style: italic
}

#dkv-la .hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px
}

#dkv-la .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

#dkv-la .hero-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

#dkv-la .hero-right .form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

/* ── Stats ── */
#dkv-la .stats {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

#dkv-la .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border)
}

#dkv-la .stat {
  background: #fff;
  padding: 28px;
  text-align: center
}

#dkv-la .stat-v {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--text)
}

#dkv-la .stat-l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--light);
  margin-top: 4px
}

/* ── Sections ── */
#dkv-la .sec {
  padding: 88px 28px
}

#dkv-la .sec-inner {
  max-width: 1080px;
  margin: 0 auto
}

#dkv-la .sec-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px
}

#dkv-la .sec-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px
}

#dkv-la .sec-title em {
  color: var(--blue);
  font-style: italic
}

#dkv-la .sec-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px
}

/* ── How it works ── */
#dkv-la .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px
}

#dkv-la .step-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 14px
}

#dkv-la .step-t {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px
}

#dkv-la .step-b {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75
}

/* ── Analyze grid ── */
#dkv-la .analyze-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px
}

#dkv-la .analyze-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px
}

#dkv-la .analyze-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px
}

#dkv-la .analyze-head span {
  font-size: 22px
}

#dkv-la .analyze-head h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text)
}

#dkv-la .analyze-list {
  list-style: none
}

#dkv-la .analyze-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04)
}

#dkv-la .analyze-list li:last-child {
  border: none
}

/* ── Preview ── */
#dkv-la .preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

#dkv-la .preview-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden
}

#dkv-la .preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, white 85%)
}

#dkv-la .pv-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px
}

#dkv-la .pv-score {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0
}

#dkv-la .pv-score svg {
  transform: rotate(-90deg)
}

#dkv-la .pv-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text)
}

#dkv-la .pv-cat {
  margin-bottom: 12px
}

#dkv-la .pv-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px
}

#dkv-la .pv-cat-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text)
}

#dkv-la .pv-badge {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 9px;
  border-radius: 999px
}

#dkv-la .pv-bar {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  height: 4px;
  overflow: hidden
}

#dkv-la .pv-bar-f {
  height: 100%;
  border-radius: 3px
}

/* ── FAQ ── */
#dkv-la details {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--bg)
}

#dkv-la details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 12px;
  transition: background .15s
}

#dkv-la details summary::-webkit-details-marker {
  display: none
}

#dkv-la details summary:hover {
  background: rgba(0, 0, 0, 0.02)
}

#dkv-la .faq-plus {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--light);
  transition: transform .2s;
  line-height: 1
}

#dkv-la details[open] .faq-plus {
  transform: rotate(45deg)
}

#dkv-la .faq-body {
  padding: 0 22px 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px
}

/* ── Final CTA ── */
#dkv-la .final {
  background: #0d0d0b;
  padding: 96px 28px;
  text-align: center
}

#dkv-la .final h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 50px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px
}

#dkv-la .final h2 em {
  color: #7b96ff;
  font-style: italic
}

#dkv-la .final p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 36px;
  line-height: 1.75
}

#dkv-la .final-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 16px 36px;
  border-radius: 12px;
  transition: background .25s;
}

#dkv-la .final-btn:hover {
  background: var(--blue-dk);
  color: #fff
}

#dkv-la .final-sub {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 20px
}

/* ══ FORM ═══════════════════════════════════════════════════════ */
#dkv-la .form-hdr {
  text-align: center;
  margin-bottom: 26px
}

#dkv-la .fbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 40, 206, 0.15);
  background: rgba(10, 40, 206, 0.04);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #555;
  margin-bottom: 16px;
}

#dkv-la .fbadge .fdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: la-pulse 2s infinite
}

#dkv-la .ftitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px
}

#dkv-la .ftitle em {
  color: var(--blue);
  font-style: italic
}

#dkv-la .fsub {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted)
}

/* Step dots */
#dkv-la .sdots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px
}

#dkv-la .sdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all .3s
}

#dkv-la .sdot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--blue)
}

#dkv-la .sdot.done {
  background: var(--green)
}

#dkv-la .sline {
  width: 16px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0 3px
}

/* Choice cards */
#dkv-la .choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px
}

#dkv-la .choice-card {
  cursor: pointer;
  border: 1px solid var(--border-md);
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  background: #fff;
  transition: border-color .2s, background .2s, transform .15s;
  user-select: none;
  position: relative;
}

#dkv-la .choice-card:hover {
  border-color: rgba(10, 40, 206, .35);
  transform: translateY(-1px)
}

#dkv-la .choice-card.active {
  border-color: var(--blue);
  background: var(--blu-bg)
}

#dkv-la .choice-card.rec::before {
  content: 'Mejor opción';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

#dkv-la .choice-emoji {
  font-size: 20px;
  margin-bottom: 7px
}

#dkv-la .choice-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text)
}

/* Inputs */
#dkv-la .field {
  margin-bottom: 12px
}

#dkv-la .field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 6px
}

#dkv-la .fi {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-md);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: 'Inter', sans-serif;
}

#dkv-la .fi:focus {
  border-color: rgba(10, 40, 206, .4);
  box-shadow: 0 0 0 3px rgba(10, 40, 206, .08)
}

#dkv-la .fi::placeholder {
  color: #bbb
}

#dkv-la .iw {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-md);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden
}

#dkv-la .iw:focus-within {
  border-color: rgba(10, 40, 206, .4);
  box-shadow: 0 0 0 3px rgba(10, 40, 206, .08)
}

#dkv-la .ip {
  padding: 13px 6px 13px 16px;
  font-size: 14px;
  font-weight: 300;
  color: var(--light);
  flex-shrink: 0;
  user-select: none
}

#dkv-la .iw .fi {
  border: none;
  background: transparent;
  box-shadow: none;
  padding-left: 2px
}

#dkv-la .iw .fi:focus {
  border: none;
  box-shadow: none
}

#dkv-la .fhint {
  font-size: 11px;
  font-weight: 300;
  color: var(--light);
  margin-top: 5px
}

/* Buttons */
#dkv-la .btn {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .25s;
}

#dkv-la .btn:hover {
  background: var(--blue-dk)
}

#dkv-la .btn-back {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--light);
  border: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color .2s;
  margin-top: 4px;
}

#dkv-la .btn-back:hover {
  color: var(--text)
}

#dkv-la .ferr {
  font-size: 12px;
  color: var(--red);
  text-align: center;
  margin: 8px 0;
  display: none
}

#dkv-la .flegal {
  font-size: 10px;
  font-weight: 300;
  color: #bbb;
  text-align: center;
  margin-top: 14px;
  line-height: 1.6
}

/* Loading */
#dkv-la .spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(10, 40, 206, .12);
  border-top-color: var(--blue);
  animation: la-spin 1.2s linear infinite;
  margin: 0 auto 20px;
}

#dkv-la .lstep {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #aaa;
  transition: color .4s;
  opacity: 0;
  animation: la-fadein .5s forwards
}

#dkv-la .lstep.active {
  color: var(--blue);
  font-weight: 500
}

#dkv-la .lstep.done {
  color: var(--green)
}

#dkv-la .lstep-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0
}

/* Results */
#dkv-la .res-lbl {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--light);
  text-align: center;
  margin-bottom: 12px
}

#dkv-la .circle-wrap {
  position: relative;
  display: inline-block
}

#dkv-la .circle-wrap svg {
  display: block;
  transform: rotate(-90deg)
}

#dkv-la .circle-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

#dkv-la .res-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0
}

#dkv-la .res-sec {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--light);
  margin: 18px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px
}

#dkv-la .res-sec::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

#dkv-la .cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

/* ── Full-width results section (sale debajo del hero) ── */
#dkv-la .results-section {
  background: #f8f8f6;
  padding: 64px 28px 80px;
  border-top: 1px solid var(--border)
}

#dkv-la .results-container {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 44px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04)
}

#dkv-la .results-section .cat-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

#dkv-la .form-done {
  padding: 32px 24px;
  text-align: center
}

#dkv-la .form-done .fd-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

#dkv-la .form-done h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px
}

#dkv-la .form-done p {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6
}

#dkv-la .form-done .fd-btn {
  display: inline-block;
  background: var(--text);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none
}

/* ── Font size overrides inside results section (+2px) ── */
#dkv-la .results-section .res-lbl {
  font-size: 12px
}

#dkv-la .results-section .cat-name {
  font-size: 13px
}

#dkv-la .results-section .cat-score {
  font-size: 20px
}

#dkv-la .results-section .cat-issues {
  font-size: 13px
}

#dkv-la .results-section .cat-teaser {
  font-size: 13px
}

#dkv-la .results-section .cat-pain {
  font-size: 13px
}

#dkv-la .results-section .impact-num {
  font-size: 24px
}

#dkv-la .results-section .impact-lbl {
  font-size: 12px
}

#dkv-la .results-section .stakes-title {
  font-size: 15px
}

#dkv-la .results-section .stakes-list li {
  font-size: 14px
}

#dkv-la .results-section .urgency-bar {
  font-size: 14px
}

#dkv-la .results-section .cta-box h3 {
  font-size: clamp(20px, 2.5vw, 24px)
}

#dkv-la .results-section .cta-box p {
  font-size: 15px
}

#dkv-la .results-section .ig-scope-note {
  font-size: 13px
}

@media (max-width: 720px) {
  #dkv-la .results-section {
    padding: 36px 16px 48px
  }

  #dkv-la .results-container {
    padding: 24px 18px;
    border-radius: 14px
  }

  #dkv-la .results-section .cat-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* ── Bloque de perfil real Instagram ── */
#dkv-la .ig-profile-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px
}

#dkv-la .ip-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-md)
}

#dkv-la .ip-info {
  flex: 1;
  min-width: 0
}

#dkv-la .ip-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

#dkv-la .ip-verified {
  color: var(--blue);
  font-size: 13px
}

#dkv-la .ip-handle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  margin-bottom: 6px
}

#dkv-la .ip-bio {
  font-size: 12px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

#dkv-la .ip-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

#dkv-la .ip-stat {
  display: flex;
  flex-direction: column;
  gap: 1px
}

#dkv-la .ip-stat-v {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1
}

#dkv-la .ip-stat-l {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em
}

#dkv-la .ip-posts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden
}

#dkv-la .ip-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--border)
}

#dkv-la .ip-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease
}

#dkv-la .ip-post:hover img {
  transform: scale(1.05)
}

#dkv-la .ip-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s ease;
  font-size: 11px;
  color: #fff;
  font-weight: 500
}

#dkv-la .ip-post:hover .ip-post-overlay {
  opacity: 1
}

@media (max-width: 720px) {
  #dkv-la .ip-posts-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  #dkv-la .ip-avatar {
    width: 56px;
    height: 56px
  }

  #dkv-la .ip-name {
    font-size: 14px
  }
}

#dkv-la .ig-scope-note {
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(10, 40, 206, 0.04);
  border-left: 2px solid #0A28CE;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55
}

#dkv-la .ig-scope-note strong {
  color: var(--text);
  font-weight: 500
}

#dkv-la .cat-card {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px
}

#dkv-la .cat-card.red {
  background: var(--red-bg);
  border-color: var(--red-bd)
}

#dkv-la .cat-card.ylw {
  background: var(--ylw-bg);
  border-color: var(--ylw-bd)
}

#dkv-la .cat-card.blu {
  background: var(--blu-bg);
  border-color: var(--blu-bd)
}

#dkv-la .cat-card.grn {
  background: rgba(22, 163, 74, 0.04);
  border-color: rgba(22, 163, 74, 0.14)
}

#dkv-la .cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px
}

#dkv-la .cat-name {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text)
}

#dkv-la .cat-score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300
}

#dkv-la .bar-t {
  background: rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  height: 4px;
  overflow: hidden;
  margin-bottom: 7px
}

#dkv-la .bar-f {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1s cubic-bezier(.76, 0, .24, 1)
}

#dkv-la .cat-issues {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted)
}

#dkv-la .cat-teaser {
  font-size: 11px;
  font-weight: 300;
  color: var(--text);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.5
}

#dkv-la .cat-pain {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.5;
  font-style: italic
}

/* Impact strip */
#dkv-la .impact-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 16px 0 0;
  background: rgba(220, 38, 38, 0.03);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: 12px;
  overflow: hidden
}

#dkv-la .impact-item {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px
}

#dkv-la .impact-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1
}

#dkv-la .impact-lbl {
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4
}

#dkv-la .impact-sep {
  width: 1px;
  background: rgba(220, 38, 38, 0.12);
  align-self: stretch;
  flex-shrink: 0
}

/* Stakes */
#dkv-la .stakes-box {
  margin: 20px 0 0;
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border)
}

#dkv-la .stakes-title {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 14px;
  color: var(--text)
}

#dkv-la .stakes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

#dkv-la .stakes-list li {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative
}

#dkv-la .stakes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dc)
}

/* Urgency banner */
#dkv-la .urgency-bar {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: #0d0d0b;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  text-align: center
}

/* CTA box */
#dkv-la .cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

#dkv-la .cta-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3
}

#dkv-la .cta-box h3 em {
  color: var(--blue);
  font-style: italic
}

#dkv-la .cta-box p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.7
}

#dkv-la .cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px
}

#dkv-la .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 13px 24px;
  border-radius: 12px;
  transition: filter .2s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

#dkv-la .btn-wa:hover {
  filter: brightness(.9);
  color: #fff
}

#dkv-la .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-md);
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  padding: 13px 24px;
  border-radius: 12px;
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

#dkv-la .btn-secondary:hover {
  border-color: rgba(10, 40, 206, .3);
  color: var(--blue);
  background: var(--blu-bg)
}

#dkv-la .btn-reset {
  display: block;
  width: 100%;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ccc;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color .2s;
  padding: 6px
}

#dkv-la .btn-reset:hover {
  color: var(--muted)
}

#dkv-la .fade-up {
  animation: la-fadeup .45s ease both
}

/* ── Mobile form section ── */
#dkv-la .mobile-form-sec {
  padding: 40px 20px;
  background: var(--bg)
}

#dkv-la .mobile-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06)
}

/* ── Responsive ── */
@media(max-width:900px) {
  #dkv-la .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  #dkv-la .hero-right .form-card {
    padding: 10px
  }

  #dkv-la .hero-mob-cta {
    display: none !important
  }

  #dkv-la .mobile-form-sec {
    display: none !important
  }

  #dkv-la .steps,
  #dkv-la .analyze-grid,
  #dkv-la .preview-grid {
    grid-template-columns: 1fr
  }

  #dkv-la .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  #dkv-la .cta-btns {
    flex-direction: column;
    align-items: stretch
  }

  #dkv-la .btn-wa,
  #dkv-la .btn-secondary {
    justify-content: center
  }
}

@media(min-width:901px) {
  #dkv-la .mobile-form-sec {
    display: none !important
  }
}

/* ── Animations ── */
@keyframes la-pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(10, 40, 206, .3)
  }

  50% {
    opacity: .8;
    box-shadow: 0 0 0 6px rgba(10, 40, 206, 0)
  }
}

@keyframes la-spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes la-fadeup {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes la-fadein {
  to {
    opacity: 1
  }
}
