/* ==========================================================================
   LANDING.CSS · Landings de campaña (test A/B/C)
   ==========================================================================
   - Top bar minimal (logo + tel)
   - Variante B (hero ink + calculadora fiscal)
   - Variante C (hero paper + dolores operativos)
   - Form section común a B y C
   - Footer mínimo
   
   Cargado por: /lp/b/index.html y /lp/c/index.html
   La Variante A apunta a la home (carga home.css).
   ========================================================================== */

/* ============================================================
   LANDING PAGES · A/B Test
   ============================================================ */

/* Reset wrapper */
body.lp { background: var(--c-paper); }
.lp-wrap { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter); }

/* Top bar mínimo (solo logo + tel) */
.lp-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid rgba(3, 33, 40, .06);
}
.lp-topbar-logo {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-ink); text-decoration: none;
}
.lp-topbar-logo:hover { color: var(--c-mint-deep); }
.lp-topbar-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-ink); text-decoration: none;
  font-family: var(--ff-mono); font-size: 13px; font-weight: 500;
  padding: 8px 16px; border: 1px solid rgba(3, 33, 40, .15);
  border-radius: 24px; transition: all .2s ease;
}
.lp-topbar-phone:hover {
  border-color: var(--c-mint-deep); color: var(--c-mint-deep);
}
.lp-topbar-phone span { font-family: var(--ff-sans); font-weight: 600; }
@media (max-width: 480px) {
  .lp-topbar-phone span { display: none; }
}


/* ==========================================================================
   LANDING B v23 (FISCAL) · Reutiliza componentes home + extras propios
   ==========================================================================
   - Hero ratio card (visual del 41/59)
   - Services grid (4 cards qué hacemos)
   - Calculadora ampliada (deducción + automatización)
   - FAQ accordion
   ========================================================================== */

/* ---------- HERO B: ratio card ---------- */
.hero--lp-b .hero-grid {
  align-items: center;
}
.hero-ratio-card {
  background: linear-gradient(180deg, var(--c-ink-2) 0%, var(--c-ink) 100%);
  border: 1px solid rgba(148, 250, 166, .15);
  border-radius: var(--r-2xl);
  padding: 32px 28px 28px;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, .5),
    inset 0 1px 0 rgba(148, 250, 166, .08);
}
.hero-ratio-card::before {
  content: ''; position: absolute;
  top: -1px; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-mint) 50%, transparent);
  border-radius: 2px;
  opacity: .8;
}
.hero-ratio-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-mint); margin-bottom: 24px;
}
.hero-ratio-label strong { color: var(--c-bone); font-weight: 600; }

.hero-ratio-bar {
  display: flex;
  height: 96px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(148, 250, 166, .06);
  position: relative;
}
.hero-ratio-fill {
  width: 41%;
  background: linear-gradient(180deg, var(--c-grey-700), var(--c-ink-3));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  border-right: 1px solid rgba(148, 250, 166, .15);
}
.hero-ratio-rest {
  flex: 1;
  background: linear-gradient(180deg, var(--c-mint) 0%, var(--c-mint-deep) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
}
.hero-ratio-num {
  font-family: var(--ff-sans); font-weight: 800; font-size: 30px;
  letter-spacing: -.02em; line-height: 1;
}
.hero-ratio-fill .hero-ratio-num { color: var(--c-grey-100); }
.hero-ratio-rest .hero-ratio-num { color: var(--c-ink); }
.hero-ratio-sub {
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; margin-top: 4px;
}
.hero-ratio-fill .hero-ratio-sub { color: var(--c-grey-300); }
.hero-ratio-rest .hero-ratio-sub { color: rgba(3, 33, 40, .7); }

.hero-ratio-breakdown {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.hero-ratio-breakdown li {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(148, 250, 166, .1);
}
.hero-ratio-breakdown li:last-child { border-bottom: none; }
.hero-ratio-bullet {
  width: 6px; height: 6px;
  background: var(--c-mint);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-ratio-bullet-label {
  flex: 1;
  font-size: 13px; color: var(--c-grey-100);
}
.hero-ratio-bullet-value {
  font-family: var(--ff-mono); font-weight: 600; font-size: 13px;
  color: var(--c-mint);
}

.hero-ratio-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(148, 250, 166, .15);
  display: flex; justify-content: space-between; align-items: center;
}
.hero-ratio-foot-label {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-grey-300);
}
.hero-ratio-foot-value {
  font-family: var(--ff-sans); font-weight: 600; font-size: 13px;
  color: var(--c-mint);
}

/* Hero trust list bajo CTAs */
.hero-trust-list {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 250, 166, .1);
  list-style: none;
  padding-left: 0;
}
.hero-trust-list li {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-grey-100);
}
.hero-trust-list li svg {
  color: var(--c-mint); flex-shrink: 0;
}

/* ---------- NAV LP: variante simplificada ---------- */
.nav.nav--lp .nav-links { display: none; }
.nav-lp-actions {
  display: flex; align-items: center; gap: 12px;
}
.nav-lp-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-sans); font-weight: 500; font-size: 14px;
  color: var(--c-bone);
  padding: 8px 14px;
  border: 1px solid rgba(148, 250, 166, .15);
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s var(--ease-out);
}
.nav-lp-phone:hover {
  border-color: rgba(148, 250, 166, .4);
  color: var(--c-mint);
}
.nav-lp-phone svg {
  color: var(--c-mint);
}
@media (max-width: 720px) {
  .nav-lp-phone span { display: none; }
  .nav-lp-phone { padding: 8px 12px; }
}

/* ---------- SERVICIOS GRID (sección "Qué hacemos") ---------- */
.lp-b-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .lp-b-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-b-services-grid { grid-template-columns: 1fr; }
}

.lp-b-service-card {
  background: white;
  border: 1px solid rgba(3, 33, 40, .06);
  border-radius: var(--r-xl);
  padding: 28px 24px 26px;
  position: relative;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.lp-b-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(3, 33, 40, .12);
  border-color: rgba(79, 208, 106, .25);
}
.lp-b-service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(79, 208, 106, .1);
  border-radius: var(--r-md);
  color: var(--c-mint-deep);
  margin-bottom: 16px;
}
.lp-b-service-icon svg { width: 22px; height: 22px; }
.lp-b-service-tag {
  display: inline-block;
  font-family: var(--ff-mono); font-weight: 500; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-mint-deep);
  margin-bottom: 8px;
}
.lp-b-service-card h3 {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 18px; line-height: 1.2;
  color: var(--c-ink); letter-spacing: -.02em;
  margin-bottom: 10px;
}
.lp-b-service-card p {
  font-size: 14px; line-height: 1.55;
  color: var(--c-grey-700);
}
.lp-b-service-card p strong { color: var(--c-ink); font-weight: 600; }

.lp-b-services-cta {
  text-align: center;
}

/* ==========================================================================
   CALCULADORA INTERACTIVA AMPLIADA (deducción + automatización)
   ========================================================================== */
.lp-b-calc-section {
  background: var(--c-bone);
  position: relative;
}

.lp-b-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .lp-b-calc-grid { grid-template-columns: 1fr; gap: 24px; }
}

.lp-b-calc-inputs {
  background: white;
  border-radius: var(--r-2xl);
  padding: 8px;
  box-shadow:
    0 20px 50px -12px rgba(3, 33, 40, .08),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  border: 1px solid rgba(3, 33, 40, .06);
  display: flex; flex-direction: column;
  gap: 6px;
}

.lp-b-calc-block {
  background: var(--c-paper);
  border-radius: calc(var(--r-2xl) - 8px);
  padding: 24px 24px 22px;
  position: relative;
}
.lp-b-calc-block + .lp-b-calc-block {
  background: white;
  border-top: 1px dashed rgba(3, 33, 40, .08);
  padding-top: 26px;
  border-radius: 0 0 calc(var(--r-2xl) - 8px) calc(var(--r-2xl) - 8px);
}
.lp-b-calc-block-tag {
  display: inline-block;
  font-family: var(--ff-mono); font-weight: 500; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-mint-deep);
  background: rgba(79, 208, 106, .1);
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 18px;
}

.calc-field {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(3, 33, 40, .08);
}
.calc-field:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.calc-field-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.calc-field-label {
  font-family: var(--ff-sans); font-weight: 600; font-size: 14px;
  color: var(--c-ink);
  letter-spacing: -.005em;
}
.calc-field-label--standalone {
  display: block; margin-bottom: 12px;
}
.calc-field-output {
  font-family: var(--ff-mono); font-weight: 600; font-size: 16px;
  color: var(--c-mint-deep);
  letter-spacing: -.01em;
  background: rgba(79, 208, 106, .08);
  padding: 4px 10px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--c-mint-deep) 0%, var(--c-mint-deep) 50%, rgba(3, 33, 40, .08) 50%, rgba(3, 33, 40, .08) 100%);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--c-mint-deep);
  box-shadow: 0 4px 12px rgba(79, 208, 106, .3);
  cursor: pointer;
  transition: transform .15s var(--ease-out);
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--c-mint-deep);
  box-shadow: 0 4px 12px rgba(79, 208, 106, .3);
  cursor: pointer;
}
.calc-field-marks {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: .04em; color: var(--c-grey-500);
}
.calc-field-hint {
  font-size: 12px; line-height: 1.4;
  color: var(--c-grey-500);
  margin-top: 10px;
}

.calc-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.calc-toggle-btn {
  background: rgba(3, 33, 40, .03);
  border: 1px solid rgba(3, 33, 40, .08);
  border-radius: var(--r-md);
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px;
  transition: all .2s var(--ease-out);
}
.calc-toggle-btn strong {
  font-family: var(--ff-sans); font-weight: 600; font-size: 14px;
  color: var(--c-ink);
}
.calc-toggle-btn span {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--c-grey-500);
  letter-spacing: .04em;
}
.calc-toggle-btn:hover {
  border-color: rgba(79, 208, 106, .3);
  background: rgba(79, 208, 106, .03);
}
.calc-toggle-btn.is-active {
  background: var(--c-ink);
  border-color: var(--c-ink);
}
.calc-toggle-btn.is-active strong { color: var(--c-mint); }
.calc-toggle-btn.is-active span { color: var(--c-grey-100); }

/* ---------- Resultado ---------- */
.lp-b-calc-result {
  background: var(--c-ink);
  color: var(--c-bone);
  border-radius: var(--r-2xl);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(3, 33, 40, .25);
}
.lp-b-calc-result::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(148, 250, 166, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
}
.lp-b-calc-result > * { position: relative; z-index: 1; }

.lp-b-calc-result-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-weight: 500; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-mint);
}
.lp-b-calc-result-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-mint); box-shadow: 0 0 10px var(--c-mint);
  animation: pulse 2s ease-in-out infinite;
}

.lp-b-calc-result-main {
  display: flex; flex-direction: column;
  margin: 18px 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 250, 166, .1);
}
.lp-b-calc-result-num {
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(44px, 5.5vw, 70px); line-height: 1;
  letter-spacing: -.04em; color: var(--c-mint);
  text-shadow: 0 0 40px rgba(148, 250, 166, .35);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.lp-b-calc-result-foot {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: .04em; color: var(--c-grey-100);
}

.lp-b-calc-bar {
  position: relative;
  height: 10px;
  border-radius: 100px;
  background: rgba(148, 250, 166, .08);
  overflow: hidden;
  margin-bottom: 22px;
}
.lp-b-calc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-mint-deep), var(--c-mint));
  border-radius: 100px;
  transition: width .4s var(--ease-out);
  box-shadow: 0 0 20px var(--c-mint-glow);
}

/* Sección de breakdown (deducción / automatización) */
.lp-b-calc-result-section {
  margin-bottom: 18px;
  padding: 14px 16px;
  background: rgba(148, 250, 166, .04);
  border-radius: var(--r-md);
  border: 1px dashed rgba(148, 250, 166, .12);
}
.lp-b-calc-result-section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(148, 250, 166, .12);
}
.lp-b-calc-result-section-tag {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--c-mint);
}
.lp-b-calc-result-section-num {
  font-family: var(--ff-sans); font-weight: 700; font-size: 22px;
  color: var(--c-bone);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

.lp-b-calc-breakdown {
  list-style: none;
  margin: 0; padding: 0;
}
.lp-b-calc-breakdown li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  opacity: .5;
  transition: opacity .25s var(--ease-out);
}
.lp-b-calc-breakdown li.is-active { opacity: 1; }
.breakdown-label {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--c-grey-100); letter-spacing: .03em;
}
.breakdown-value {
  font-family: var(--ff-sans); font-weight: 600; font-size: 14px;
  color: var(--c-bone);
  font-variant-numeric: tabular-nums;
}
.lp-b-calc-breakdown li.is-active .breakdown-value {
  color: var(--c-mint);
}

.lp-b-calc-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--c-mint); color: var(--c-ink);
  padding: 16px 24px;
  border-radius: 100px;
  font-family: var(--ff-sans); font-weight: 700; font-size: 15px;
  letter-spacing: -.005em;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 0 0 0 var(--c-mint-glow);
  text-decoration: none;
}
.lp-b-calc-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px 0 var(--c-mint-glow);
}
.lp-b-calc-cta svg { transition: transform .25s; }
.lp-b-calc-cta:hover svg { transform: translateX(2px); }

.lp-b-calc-disclaimer {
  display: flex; gap: 10px; align-items: flex-start;
  max-width: 1000px; margin: 32px auto 0;
  font-size: 12px; line-height: 1.5;
  color: var(--c-grey-500);
  padding: 14px 18px;
  background: rgba(3, 33, 40, .03);
  border-radius: var(--r-md);
  border-left: 2px solid var(--c-mint-deep);
}
.lp-b-calc-disclaimer strong { color: var(--c-ink); font-weight: 600; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.lp-b-faq-list {
  max-width: 800px; margin: 0 auto;
}
.lp-b-faq-item {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid rgba(3, 33, 40, .06);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.lp-b-faq-item[open] {
  border-color: rgba(79, 208, 106, .3);
}
.lp-b-faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-sans); font-weight: 600; font-size: 16px;
  color: var(--c-ink);
  letter-spacing: -.01em;
  gap: 16px;
  transition: color .2s;
}
.lp-b-faq-item summary::-webkit-details-marker { display: none; }
.lp-b-faq-item summary:hover { color: var(--c-mint-deep); }
.lp-b-faq-item summary svg {
  width: 20px; height: 20px;
  color: var(--c-grey-500);
  flex-shrink: 0;
  transition: transform .25s var(--ease-out);
}
.lp-b-faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--c-mint-deep);
}
.lp-b-faq-content {
  padding: 0 22px 22px;
  font-size: 14px; line-height: 1.6;
  color: var(--c-grey-700);
}
.lp-b-faq-content p { margin: 0; }
.lp-b-faq-content strong { color: var(--c-ink); font-weight: 600; }


/* === Landing C (dolor): Hero paper humano === */
.lp-c-hero {
  background: var(--c-paper);
  padding: clamp(60px, 8vh, 110px) 0 clamp(40px, 6vh, 80px);
  position: relative;
}
.lp-c-hero-content {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.lp-c-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 11px; color: var(--c-mint-deep);
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; background: rgba(79, 208, 106, .1);
  border-radius: 100px; margin-bottom: 28px; font-weight: 600;
}
.lp-c-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-mint-deep);
}
.lp-c-h1 {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: clamp(34px, 5.5vw, 64px); line-height: 1.05;
  letter-spacing: -.035em; color: var(--c-ink); margin-bottom: 24px;
}
.lp-c-h1 .italic {
  font-style: italic; color: var(--c-mint-deep); font-weight: 600;
}
.lp-c-h1 .strike {
  position: relative; display: inline-block; color: var(--c-grey-500);
  font-weight: 600;
}
.lp-c-h1 .strike::after {
  content: ''; position: absolute;
  left: -2%; right: -2%; top: 52%;
  height: 4px; background: var(--c-mint-deep);
  border-radius: 2px; transform: rotate(-1deg);
}
.lp-c-lede {
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55;
  color: var(--c-grey-700); max-width: 680px; margin: 0 auto 32px;
}
.lp-c-lede strong { color: var(--c-ink); font-weight: 600; }

/* Lista de "dolores" Landing C */
.lp-c-pains {
  background: white; padding: clamp(50px, 7vh, 90px) 0;
}
.lp-c-pains-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin-top: 40px;
}
@media (max-width: 760px) {
  .lp-c-pains-grid { grid-template-columns: 1fr; }
}
.lp-c-pain {
  background: var(--c-paper); padding: 22px 26px;
  border-radius: 14px; border-left: 3px solid var(--c-mint-deep);
  display: flex; align-items: flex-start; gap: 14px;
}
.lp-c-pain-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: white; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-mint-deep);
}
.lp-c-pain-icon svg { width: 20px; height: 20px; }
.lp-c-pain-content h3 {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 16px; color: var(--c-ink); margin-bottom: 4px;
}
.lp-c-pain-content p {
  font-size: 14.5px; line-height: 1.5; color: var(--c-grey-700);
}

/* Quote/testimonial Landing C */
.lp-c-quote {
  background: var(--c-paper); padding: clamp(60px, 8vh, 100px) 0;
}
.lp-c-quote-content {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: clamp(32px, 4vw, 56px); background: white;
  border-radius: 22px; border: 1px solid rgba(3, 33, 40, .06);
  position: relative;
}
.lp-c-quote-mark {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px; background: var(--c-mint);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans); font-weight: 800; font-size: 36px;
  color: var(--c-ink); line-height: 1;
}
.lp-c-quote-text {
  font-family: var(--ff-sans); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.4;
  color: var(--c-ink); letter-spacing: -.015em;
  font-style: italic; margin: 16px 0 24px;
}
.lp-c-quote-text strong { font-weight: 700; color: var(--c-mint-deep); font-style: normal; }
.lp-c-quote-author {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--c-grey-500); letter-spacing: .04em; text-transform: uppercase;
}
.lp-c-quote-author-line {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--c-mint-deep);
  margin-right: 10px;
  vertical-align: middle;
}

/* ==========================================================================
   LANDING C v22 · Hero grid + cronómetro + comparador + wizard
   ========================================================================== */

/* ---------- Hero grid (overrides del hero antiguo) ---------- */
.lp-c-hero {
  overflow: hidden;
}
.lp-c-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .lp-c-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.lp-c-hero-text {
  text-align: left;
}

.lp-c-hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin: 32px 0 28px;
}

.btn-mint-deep-glow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-mint-deep); color: white;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--ff-sans); font-weight: 700; font-size: 15px;
  letter-spacing: -.005em;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  box-shadow: 0 4px 20px -4px rgba(79, 208, 106, .4);
  text-decoration: none;
}
.btn-mint-deep-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px -4px rgba(79, 208, 106, .55);
}
.btn-mint-deep-glow svg { transition: transform .25s var(--ease-out); }
.btn-mint-deep-glow:hover svg { transform: translateX(2px); }

.btn-ghost-ink {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-ink);
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--ff-sans); font-weight: 600; font-size: 14px;
  border: 1px solid rgba(3, 33, 40, .15);
  background: transparent;
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.btn-ghost-ink:hover {
  background: rgba(3, 33, 40, .04);
  border-color: rgba(3, 33, 40, .3);
}

.lp-c-hero-trust {
  display: flex; flex-wrap: wrap; gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(3, 33, 40, .08);
  list-style: none;
}
.lp-c-hero-trust li {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-grey-700);
}
.lp-c-hero-trust li svg {
  color: var(--c-mint-deep); flex-shrink: 0;
}

/* ---------- Cronómetro hero ---------- */
.lp-c-hero-counter {
  position: relative;
}
.counter-card {
  background: white;
  border-radius: var(--r-2xl);
  padding: 28px 28px 24px;
  box-shadow:
    0 30px 60px -20px rgba(3, 33, 40, .12),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  border: 1px solid rgba(3, 33, 40, .06);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute; top: -1px; left: 30%; right: 30%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-mint-deep), transparent);
  border-radius: 2px;
}

.counter-card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  color: var(--c-mint-deep);
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(79, 208, 106, .08);
  padding: 6px 12px; border-radius: 100px;
  margin-bottom: 22px;
}
.counter-pulse {
  width: 8px; height: 8px;
  background: var(--c-mint-deep);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.counter-pulse::before {
  content: '';
  position: absolute; inset: -4px;
  border: 2px solid var(--c-mint-deep);
  border-radius: 50%;
  animation: counter-pulse-ring 1.5s ease-out infinite;
  opacity: 0;
}
@keyframes counter-pulse-ring {
  0% { transform: scale(0.6); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.counter-display {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(3, 33, 40, .1);
}
.counter-num {
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(56px, 7vw, 88px); line-height: 1;
  letter-spacing: -.04em; color: var(--c-ink);
  font-variant-numeric: tabular-nums;
  /* Sutil glow para el 0,00 */
  text-shadow: 0 0 30px rgba(79, 208, 106, .15);
}
.counter-unit {
  font-family: var(--ff-mono); font-size: 13px;
  color: var(--c-grey-500); letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.counter-meta-text {
  font-size: 13px; line-height: 1.5;
  color: var(--c-grey-500);
  margin-bottom: 16px;
}

.counter-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.counter-meta-item {
  background: var(--c-paper);
  padding: 12px 14px;
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
}
.counter-meta-num {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 22px; color: var(--c-ink);
  letter-spacing: -.02em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.counter-meta-label {
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--c-grey-500); letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 4px;
}

.counter-card-foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(3, 33, 40, .08);
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--c-grey-500); letter-spacing: .04em;
}
.counter-card-foot svg {
  flex-shrink: 0; color: var(--c-mint-deep);
}

/* ==========================================================================
   COMPARADOR ANTES/DESPUÉS POR SECTOR
   ========================================================================== */
.lp-c-compare-section {
  background: white;
  padding: clamp(80px, 11vh, 130px) 0;
  position: relative;
}

.lp-c-compare-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.lp-c-compare-header .eyebrow {
  color: var(--c-mint-deep);
}
.lp-c-compare-header .eyebrow .dot {
  background: var(--c-mint-deep); box-shadow: 0 0 8px var(--c-mint-deep);
}
.lp-c-compare-title {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 64px); line-height: 1.02;
  letter-spacing: -.035em; color: var(--c-ink);
  margin-top: 14px; margin-bottom: 16px;
}
.lp-c-compare-title .italic {
  font-style: italic; font-weight: 600; color: var(--c-mint-deep);
}
.lp-c-compare-lede {
  font-size: 16px; line-height: 1.55;
  color: var(--c-grey-700);
  max-width: 580px; margin: 0 auto;
}

/* Sector toggle */
.sector-toggle {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 8px;
  background: var(--c-paper);
  border-radius: 100px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) {
  .sector-toggle {
    border-radius: var(--r-md);
    padding: 10px;
  }
}
.sector-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--ff-sans); font-weight: 600; font-size: 13px;
  color: var(--c-grey-700);
  cursor: pointer;
  transition: all .2s var(--ease-out);
  letter-spacing: -.005em;
}
.sector-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.sector-btn:hover {
  color: var(--c-ink);
  background: rgba(255, 255, 255, .6);
}
.sector-btn.is-active {
  background: var(--c-ink);
  color: var(--c-mint);
  box-shadow: 0 4px 14px -2px rgba(3, 33, 40, .25);
}

/* Compare grid */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 32px;
  transition: opacity .25s var(--ease-out);
}
.compare-grid.is-changing { opacity: .3; }

@media (max-width: 760px) {
  .compare-grid { grid-template-columns: 1fr; }
}

.compare-side {
  background: white;
  border-radius: var(--r-2xl);
  padding: 28px 24px 24px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(3, 33, 40, .06);
}
.compare-side--before {
  background: var(--c-paper);
  border-color: rgba(3, 33, 40, .08);
}
.compare-side--after {
  background: white;
  border: 2px solid var(--c-mint-deep);
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(79, 208, 106, .15);
}
.compare-side--after::before {
  content: '';
  position: absolute; top: -1px; left: 30%; right: 30%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-mint-deep), transparent);
}

.compare-side-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(3, 33, 40, .1);
}
.compare-side-tag {
  display: inline-block;
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 6px;
}
.compare-side--before .compare-side-tag {
  color: var(--c-grey-500);
}
.compare-side--after .compare-side-tag {
  color: var(--c-mint-deep);
}
.compare-side-title {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 22px; color: var(--c-ink);
  letter-spacing: -.02em;
}

.compare-list {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}
.compare-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(3, 33, 40, .06);
  font-size: 14px; line-height: 1.45;
  color: var(--c-grey-700);
}
.compare-item:last-child { border-bottom: none; }
.compare-item-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.compare-item-icon svg {
  width: 12px; height: 12px;
}
.compare-item--bad .compare-item-icon {
  background: rgba(220, 38, 38, .08);
  color: #dc2626;
}
.compare-item--good .compare-item-icon {
  background: rgba(79, 208, 106, .12);
  color: var(--c-mint-deep);
}
.compare-item-text {
  flex: 1;
}
.compare-item-cost {
  flex-shrink: 0;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600;
  color: #dc2626; letter-spacing: .02em;
  background: rgba(220, 38, 38, .06);
  padding: 2px 8px; border-radius: 6px;
}

.compare-side-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-radius: var(--r-md);
  margin-top: auto;
}
.compare-side-foot--bad {
  background: rgba(220, 38, 38, .06);
}
.compare-side-foot--good {
  background: rgba(79, 208, 106, .08);
}
.compare-side-foot-label {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: .04em; text-transform: uppercase;
}
.compare-side-foot--bad .compare-side-foot-label { color: #991b1b; }
.compare-side-foot--good .compare-side-foot-label { color: var(--c-mint-deep); }
.compare-side-foot-value {
  font-family: var(--ff-sans); font-weight: 700; font-size: 20px;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.compare-side-foot--bad .compare-side-foot-value { color: #dc2626; }
.compare-side-foot--good .compare-side-foot-value { color: var(--c-mint-deep); }

/* Stats grandes */
.compare-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 32px auto 0;
}
@media (max-width: 760px) {
  .compare-stats { grid-template-columns: 1fr; }
}
.compare-stat {
  background: var(--c-paper);
  border-radius: var(--r-xl);
  padding: 24px 20px 20px;
  text-align: center;
  border: 1px solid rgba(3, 33, 40, .06);
}
.compare-stat--accent {
  background: var(--c-ink);
  border-color: var(--c-ink);
}
.compare-stat--accent .compare-stat-num { color: var(--c-mint); }
.compare-stat--accent .compare-stat-label { color: var(--c-grey-100); }
.compare-stat-num {
  display: block;
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(36px, 4vw, 52px); line-height: 1;
  letter-spacing: -.04em; color: var(--c-mint-deep);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.compare-stat-label {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--c-grey-500); letter-spacing: .04em;
  text-transform: uppercase;
}

/* ==========================================================================
   PAINS HEADER + SECTION
   ========================================================================== */
.lp-c-pains-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.lp-c-pains-header .eyebrow {
  color: var(--c-mint-deep);
}
.lp-c-pains-header .eyebrow .dot {
  background: var(--c-mint-deep); box-shadow: 0 0 8px var(--c-mint-deep);
}
.lp-c-pains-title {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 60px); line-height: 1.05;
  letter-spacing: -.035em; color: var(--c-ink);
  margin-top: 14px; margin-bottom: 16px;
}
.lp-c-pains-title .italic {
  font-style: italic; font-weight: 600; color: var(--c-mint-deep);
}
.lp-c-pains-lede {
  font-size: 16px; line-height: 1.55;
  color: var(--c-grey-700);
  max-width: 580px; margin: 0 auto;
}

/* ==========================================================================
   WIZARD
   ========================================================================== */
.lp-c-wizard-section {
  background: var(--c-ink);
  color: var(--c-bone);
  padding: clamp(80px, 11vh, 130px) 0;
  position: relative;
  overflow: hidden;
}
.lp-c-wizard-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(148, 250, 166, .06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask: radial-gradient(ellipse at 50% 50%, black, transparent 70%);
  -webkit-mask: radial-gradient(ellipse at 50% 50%, black, transparent 70%);
}
.lp-c-wizard-section > .lp-wrap { position: relative; z-index: 2; }

.lp-c-wizard-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.lp-c-wizard-header .eyebrow { color: var(--c-mint); }
.lp-c-wizard-header .eyebrow .dot { background: var(--c-mint); box-shadow: 0 0 10px var(--c-mint); }
.lp-c-wizard-title {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 60px); line-height: 1.02;
  letter-spacing: -.035em; color: var(--c-bone);
  margin-top: 14px; margin-bottom: 16px;
}
.lp-c-wizard-title .italic {
  font-style: italic; font-weight: 600; color: var(--c-mint);
}
.lp-c-wizard-lede {
  font-size: 16px; line-height: 1.55;
  color: var(--c-grey-100);
  max-width: 600px; margin: 0 auto;
}

/* === Form section (común a ambas, con leves variaciones) === */
.lp-form-sec {
  background: var(--c-ink); color: var(--c-bone);
  padding: clamp(60px, 8vh, 110px) 0;
  position: relative; overflow: hidden;
}
.lp-form-sec::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(148, 250, 166, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask: radial-gradient(ellipse at 30% 50%, black, transparent 75%);
  -webkit-mask: radial-gradient(ellipse at 30% 50%, black, transparent 75%);
}
.lp-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) {
  .lp-form-grid { grid-template-columns: 1fr; }
}
.lp-form-aside h2 {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05;
  letter-spacing: -.035em; color: var(--c-bone); margin-bottom: 20px;
}
.lp-form-aside h2 .italic { color: var(--c-mint); font-style: italic; font-weight: 600; }
.lp-form-aside p {
  font-size: 16px; line-height: 1.6; color: var(--c-grey-100); margin-bottom: 24px;
}
.lp-form-aside .lp-promises {
  list-style: none; padding: 0; margin: 0;
}
.lp-form-aside .lp-promises li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 14.5px; color: var(--c-grey-100);
}
.lp-form-aside .lp-promises svg {
  flex-shrink: 0; color: var(--c-mint); margin-top: 3px;
}

.lp-form {
  background: rgba(255, 255, 255, .04); padding: clamp(28px, 3.5vw, 40px);
  border-radius: 20px; border: 1px solid rgba(148, 250, 166, .12);
  backdrop-filter: blur(8px);
}
.lp-form-title {
  font-family: var(--ff-mono); font-size: 11px; color: var(--c-mint);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.lp-form-title-big {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 22px; color: var(--c-bone);
  margin-bottom: 24px; letter-spacing: -.015em;
}
.lp-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;
}
@media (max-width: 540px) { .lp-form-row { grid-template-columns: 1fr; } }
.lp-form-field { display: flex; flex-direction: column; }
.lp-form-field label {
  font-family: var(--ff-mono); font-size: 10.5px;
  color: var(--c-grey-300); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.lp-form-field label .req { color: var(--c-mint); margin-left: 2px; }
.lp-form-field input,
.lp-form-field select {
  font-family: var(--ff-sans); font-size: 15px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(148, 250, 166, .15);
  border-radius: 10px; color: var(--c-bone);
  transition: all .2s ease;
}
.lp-form-field input::placeholder { color: rgba(232, 238, 233, .35); }
.lp-form-field input:focus,
.lp-form-field select:focus {
  outline: none;
  border-color: var(--c-mint);
  background: rgba(0, 0, 0, .4);
  box-shadow: 0 0 0 4px rgba(148, 250, 166, .1);
}
.lp-form-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394faa6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.lp-form-field select option { background: var(--c-ink); color: var(--c-bone); }

.lp-form-submit {
  width: 100%; margin-top: 18px;
  background: var(--c-mint); color: var(--c-ink);
  border: 0; padding: 16px 24px; border-radius: 100px;
  font-family: var(--ff-sans); font-weight: 700; font-size: 16px;
  letter-spacing: -.01em; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s ease;
}
.lp-form-submit:hover {
  background: #b6ffc4; transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(148, 250, 166, .25);
}
.lp-form-submit svg { transition: transform .2s ease; }
.lp-form-submit:hover svg { transform: translate(2px, -2px); }

.lp-form-fineprint {
  font-family: var(--ff-mono); font-size: 10.5px;
  color: var(--c-grey-300); letter-spacing: .02em;
  margin-top: 16px; line-height: 1.5;
}
.lp-form-fineprint a { color: var(--c-mint); }

/* Footer mínimo landings */
.lp-footer {
  background: var(--c-paper); padding: 28px 0;
  border-top: 1px solid rgba(3, 33, 40, .06);
}
.lp-footer-content {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--c-grey-500); letter-spacing: .04em;
}
.lp-footer-links { display: flex; gap: 18px; }
.lp-footer-links a { color: var(--c-grey-500); text-decoration: none; }
.lp-footer-links a:hover { color: var(--c-ink); }

/* ==========================================================================
   LANDING C v23 · Adaptaciones hero paper + secciones
   ========================================================================== */

/* Hero Landing C: paper en lugar de ink */
.hero--lp-c {
  background: var(--c-paper);
  color: var(--c-ink);
}
.hero--lp-c .hero-grid {
  align-items: center;
}
.hero--lp-c .lp-c-h1 {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--c-ink);
  margin-bottom: 22px;
}
.hero--lp-c .lp-c-h1 .italic {
  font-style: italic;
  color: var(--c-mint-deep);
  font-weight: 700;
}
.hero--lp-c .lp-c-h1 .strike {
  position: relative;
  display: inline-block;
  color: var(--c-grey-500);
  font-weight: 700;
}
.hero--lp-c .lp-c-h1 .strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; top: 52%;
  height: 5px;
  background: var(--c-mint-deep);
  border-radius: 3px;
  transform: rotate(-1deg);
}
.hero--lp-c .hero-sub {
  color: var(--c-grey-700);
}
.hero--lp-c .hero-sub strong {
  color: var(--c-ink);
}

/* Hero trust list: variante paper */
.hero-trust-list--paper li {
  color: var(--c-grey-700);
}
.hero-trust-list--paper li svg {
  color: var(--c-mint-deep);
}
.hero-trust-list--paper {
  border-top-color: rgba(3, 33, 40, .08);
}

/* Counter card en hero paper (override del ink existente) */
.hero--lp-c .counter-card {
  background: white;
  border: 1px solid rgba(3, 33, 40, .06);
  box-shadow:
    0 30px 60px -20px rgba(3, 33, 40, .12),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}
.hero--lp-c .counter-card::before {
  background: linear-gradient(90deg, transparent, var(--c-mint-deep), transparent);
}
.hero--lp-c .counter-card-tag {
  color: var(--c-mint-deep);
  background: rgba(79, 208, 106, .08);
}
.hero--lp-c .counter-pulse {
  background: var(--c-mint-deep);
}
.hero--lp-c .counter-pulse::before {
  border-color: var(--c-mint-deep);
}
.hero--lp-c .counter-num {
  color: var(--c-ink);
  text-shadow: 0 0 30px rgba(79, 208, 106, .15);
}
.hero--lp-c .counter-unit {
  color: var(--c-grey-500);
}
.hero--lp-c .counter-display {
  border-bottom-color: rgba(3, 33, 40, .1);
}
.hero--lp-c .counter-meta-text {
  color: var(--c-grey-500);
}
.hero--lp-c .counter-meta-text strong {
  color: var(--c-ink);
  font-weight: 600;
}
.hero--lp-c .counter-meta-item {
  background: var(--c-paper);
}
.hero--lp-c .counter-meta-num {
  color: var(--c-ink);
}
.hero--lp-c .counter-meta-label {
  color: var(--c-grey-500);
}
.hero--lp-c .counter-card-foot {
  border-top-color: rgba(3, 33, 40, .08);
  color: var(--c-grey-500);
}
.hero--lp-c .counter-card-foot svg {
  color: var(--c-mint-deep);
}

/* ---------- Quote section (sección oscura ink) ---------- */
.section--ink {
  background: var(--c-ink);
  color: var(--c-bone);
}
.section--ink .lp-c-quote-content {
  background: transparent;
  border: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.section--ink .lp-c-quote-mark {
  background: var(--c-mint);
  position: relative;
  top: 0; left: 50%; transform: translateX(-50%);
  margin-bottom: 24px;
}
.section--ink .lp-c-quote-text {
  color: var(--c-bone);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.4;
  font-weight: 500;
  font-style: italic;
  margin: 16px 0 32px;
}
.section--ink .lp-c-quote-text strong {
  color: var(--c-mint);
  font-weight: 700;
  font-style: normal;
}
.section--ink .lp-c-quote-author {
  color: var(--c-grey-100);
}

/* ---------- Pains grid (overrides para 3 columnas) ---------- */
.section--bone .lp-c-pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  .section--bone .lp-c-pains-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .section--bone .lp-c-pains-grid { grid-template-columns: 1fr; }
}
.section--bone .lp-c-pain {
  background: white;
  padding: 22px 26px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(3, 33, 40, .06);
  border-left: 3px solid var(--c-mint-deep);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.section--bone .lp-c-pain:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(3, 33, 40, .12);
}

/* Margin top para grid posiciones */
.lp-c-pains-grid {
  margin-top: 40px;
}
.compare-grid + .compare-stats {
  margin-top: 32px;
}


/* Fix: h2 de la calc en paper debe ser ink */
.lp-b-calc-section .section-head h2,
.lp-b-calc-section .section-head h2.h2-2lines {
  color: var(--c-ink);
}
.lp-b-calc-section .section-head .lede {
  color: var(--c-grey-700);
}

/* Fix: contener tamaño de h2 en landings cuando hay text largo */
.lp-c .process h2,
.lp-c .process h2.h2-2lines {
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.05;
}
.lp-b .lp-b-calc-section h2,
.lp-b .lp-b-calc-section h2.h2-2lines {
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.05;
}

/* ---------- Bonus deducción microbloque ---------- */
.lp-b-services-bonus {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 32px auto 36px;
  padding: 22px 26px;
  background: rgba(79, 208, 106, .06);
  border: 1px dashed rgba(79, 208, 106, .35);
  border-radius: var(--r-xl);
}
.lp-b-services-bonus-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--c-mint-deep);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.lp-b-services-bonus-icon svg {
  width: 22px; height: 22px;
}
.lp-b-services-bonus-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-grey-700);
}
.lp-b-services-bonus-text strong {
  color: var(--c-mint-deep);
  font-weight: 700;
  font-size: 16px;
}

/* Fix tamaño eyebrow para que se lea bien */
.section-head .eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 600;
}

/* ==========================================================================
   LANDING C v24 · Deliverables + Wizard
   ========================================================================== */

/* Eyebrow más visible para hero paper */
.eyebrow--lp-c {
  background: rgba(79, 208, 106, .12);
  border: 1px solid rgba(79, 208, 106, .25);
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--c-mint-deep) !important;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .12em;
}
.eyebrow--lp-c .dot {
  background: var(--c-mint-deep);
  box-shadow: 0 0 10px var(--c-mint-deep);
}

/* H1 strike fix: que se cuadre bien */
.hero--lp-c .lp-c-h1 .strike {
  white-space: nowrap;
  display: inline-block;
}

/* Deliverables grid */
.lp-c-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
@media (max-width: 760px) {
  .lp-c-deliverables { grid-template-columns: 1fr; gap: 16px; }
}

.lp-c-deliverable {
  background: white;
  border: 1px solid rgba(3, 33, 40, .06);
  border-radius: var(--r-2xl);
  padding: 28px 28px 26px;
  display: flex;
  gap: 20px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s;
}
.lp-c-deliverable:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(3, 33, 40, .12);
  border-color: rgba(79, 208, 106, .25);
}

.lp-c-deliverable-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--c-mint-deep);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.02em;
}
.lp-c-deliverable-content {
  flex: 1;
}
.lp-c-deliverable-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-mint-deep);
  background: rgba(79, 208, 106, .08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.lp-c-deliverable h3 {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--c-ink);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.lp-c-deliverable p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-grey-700);
  margin-bottom: 12px;
}
.lp-c-deliverable p strong {
  color: var(--c-ink);
  font-weight: 600;
}
.lp-c-deliverable ul {
  list-style: none;
  padding: 0;
  border-top: 1px dashed rgba(3, 33, 40, .1);
  padding-top: 12px;
  margin: 0;
}
.lp-c-deliverable ul li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-grey-700);
  padding: 4px 0 4px 18px;
  position: relative;
}
.lp-c-deliverable ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--c-mint-deep);
}

/* Foot promesa */
.lp-c-deliverables-foot {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 22px 26px;
  background: var(--c-ink);
  color: var(--c-bone);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.lp-c-deliverables-foot::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-mint), transparent);
  border-radius: 2px;
}
.lp-c-deliverables-foot-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--c-mint);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
}
.lp-c-deliverables-foot-icon svg {
  width: 22px;
  height: 22px;
}
.lp-c-deliverables-foot-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-grey-100);
}
.lp-c-deliverables-foot-text strong {
  color: var(--c-mint);
  font-weight: 600;
}

/* ==========================================================================
   WIZARD (caja oscura ink, paleta Nexoo, llama la atención)
   ========================================================================== */
.lp-c-wizard {
  background: linear-gradient(180deg, var(--c-ink-2) 0%, var(--c-ink) 100%);
  color: var(--c-bone);
  border: 1px solid rgba(148, 250, 166, .15);
  border-radius: var(--r-2xl);
  padding: 32px 32px 26px;
  position: relative;
  box-shadow:
    0 40px 80px -20px rgba(3, 33, 40, .35),
    inset 0 1px 0 rgba(148, 250, 166, .08);
  overflow: hidden;
}
.lp-c-wizard::before {
  /* Halo top mint */
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-mint) 50%, transparent);
  border-radius: 2px;
  z-index: 2;
}
.lp-c-wizard::after {
  /* Patrón de puntos sutil */
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 250, 166, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask: radial-gradient(ellipse at 50% 50%, black, transparent 80%);
  -webkit-mask: radial-gradient(ellipse at 50% 50%, black, transparent 80%);
  pointer-events: none;
}
.lp-c-wizard > * { position: relative; z-index: 1; }

/* Badge "CALCULA TU PLAN" en mint sobre fondo oscuro */
.lp-c-wizard .final-v3-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(148, 250, 166, .1);
  border: 1px solid rgba(148, 250, 166, .25);
  color: var(--c-mint);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.lp-c-wizard .final-v3-form-badge .dot {
  width: 6px; height: 6px;
  background: var(--c-mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c-mint);
  animation: pulse 2s ease-in-out infinite;
}

/* Progress bar */
.lp-c-wizard-progress {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(148, 250, 166, .12);
}
.lp-c-wizard-progress-bar {
  height: 6px;
  background: rgba(148, 250, 166, .1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.lp-c-wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-mint-deep), var(--c-mint));
  border-radius: 100px;
  transition: width .4s var(--ease-out);
  box-shadow: 0 0 16px var(--c-mint-glow);
}
.lp-c-wizard-progress-text {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--c-grey-100);
}
.lp-c-wizard-progress-text strong {
  color: var(--c-mint);
  font-weight: 600;
}

/* Steps */
.lp-c-wizard-steps {
  position: relative;
  min-height: 320px;
}
.lp-c-wizard-step {
  display: none;
}
.lp-c-wizard-step.is-active {
  display: block;
  animation: wizFadeIn .35s var(--ease-out);
}
@keyframes wizFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-c-wizard-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-mint);
  background: rgba(148, 250, 166, .1);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.lp-c-wizard-q {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.2;
  color: var(--c-bone);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.lp-c-wizard-help {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-grey-100);
  margin-bottom: 20px;
}

.lp-c-wizard-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lp-c-wizard-options--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) {
  .lp-c-wizard-options { grid-template-columns: 1fr; }
  .lp-c-wizard-options--3col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .lp-c-wizard-options--3col { grid-template-columns: 1fr; }
}

.lp-c-wizard-option {
  background: rgba(148, 250, 166, .04);
  border: 1px solid rgba(148, 250, 166, .15);
  border-radius: var(--r-md);
  padding: 13px 14px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: all .2s var(--ease-out);
}
.lp-c-wizard-option strong {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--c-bone);
  letter-spacing: -.005em;
}
.lp-c-wizard-option span {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-grey-100);
  letter-spacing: .02em;
}
.lp-c-wizard-option:hover {
  background: rgba(148, 250, 166, .08);
  border-color: var(--c-mint);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px var(--c-mint-glow);
}
.lp-c-wizard-option.is-pulse {
  background: var(--c-mint);
  border-color: var(--c-mint);
}
.lp-c-wizard-option.is-pulse strong {
  color: var(--c-ink);
}
.lp-c-wizard-option.is-pulse span {
  color: rgba(3, 33, 40, .7);
}

/* Form dentro del wizard (step 5): adaptado a fondo oscuro */
.lp-c-wizard-form {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  margin-top: 0;
}
.lp-c-wizard-form .final-v3-field label {
  color: var(--c-grey-100);
}
.lp-c-wizard-form .final-v3-field input,
.lp-c-wizard-form .final-v3-field select,
.lp-c-wizard-form .final-v3-field textarea {
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(148, 250, 166, .15);
  color: var(--c-bone);
  font-family: var(--ff-sans);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.lp-c-wizard-form .final-v3-field input::placeholder,
.lp-c-wizard-form .final-v3-field textarea::placeholder {
  color: rgba(232, 238, 233, .35);
}
.lp-c-wizard-form .final-v3-field input:focus,
.lp-c-wizard-form .final-v3-field select:focus,
.lp-c-wizard-form .final-v3-field textarea:focus {
  outline: none;
  border-color: var(--c-mint);
  background: rgba(0, 0, 0, .4);
  box-shadow: 0 0 0 4px rgba(148, 250, 166, .1);
}

/* Botón submit del wizard: mint sobre ink (CTA principal) */
.lp-c-wizard-form .btn--ink {
  background: var(--c-mint);
  color: var(--c-ink);
  box-shadow: 0 0 0 0 var(--c-mint-glow);
  transition: transform .25s, box-shadow .25s;
}
.lp-c-wizard-form .btn--ink:hover {
  background: var(--c-mint);
  transform: translateY(-1px);
  box-shadow: 0 0 32px 0 var(--c-mint-glow);
}

.lp-c-wizard-form .final-v3-trust {
  color: var(--c-grey-100);
}
.lp-c-wizard-form .final-v3-trust span {
  color: var(--c-grey-100);
}
.lp-c-wizard-form .final-v3-trust svg {
  color: var(--c-mint);
}

/* Wizard nav (footer del card) */
.lp-c-wizard-nav {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(148, 250, 166, .12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.lp-c-wizard-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(148, 250, 166, .15);
  color: var(--c-grey-100);
  padding: 7px 14px;
  border-radius: 100px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.lp-c-wizard-back:hover:not([disabled]) {
  border-color: var(--c-mint);
  color: var(--c-mint);
}
.lp-c-wizard-back[disabled] {
  opacity: .3;
  cursor: not-allowed;
}
.lp-c-wizard-info {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-grey-300);
  letter-spacing: .04em;
  text-align: right;
}
@media (max-width: 480px) {
  .lp-c-wizard {
    padding: 24px 22px 20px;
  }
  .lp-c-wizard-info {
    display: none;
  }
}

/* ==========================================================================
   LP-B: SECCIÓN CASOS POR SECTOR (entre calc y proceso)
   ========================================================================== */
.lp-b-cases {
  position: relative;
}
.lp-b-cases-cross {
  top: 80px;
  right: 80px;
  color: var(--c-mint-deep);
  opacity: .35;
}
.lp-b-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .lp-b-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-b-cases-grid { grid-template-columns: 1fr; }
}

.lp-b-case {
  background: white;
  border: 1px solid rgba(3, 33, 40, .06);
  border-radius: var(--r-xl);
  padding: 24px 22px 22px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s;
  display: flex;
  flex-direction: column;
}
.lp-b-case:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(3, 33, 40, .12);
  border-color: rgba(79, 208, 106, .25);
}
.lp-b-case-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(3, 33, 40, .08);
}
.lp-b-case-sector {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-mint-deep);
}
.lp-b-case-id {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-grey-300);
  font-weight: 500;
}
.lp-b-case h4 {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--c-ink);
  letter-spacing: -.015em;
  margin-bottom: 16px;
  flex: 1;
}
.lp-b-case h4 .italic {
  font-style: italic;
  color: var(--c-mint-deep);
}
.lp-b-case-result {
  background: var(--c-paper);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.lp-b-case-num {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--c-mint-deep);
  font-variant-numeric: tabular-nums;
}
.lp-b-case-label {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--c-grey-700);
}
.lp-b-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lp-b-case-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--c-grey-700);
  background: var(--c-paper);
  padding: 4px 8px;
  border-radius: 6px;
}
.lp-b-cases-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: white;
  border: 1px dashed rgba(3, 33, 40, .12);
  border-radius: var(--r-xl);
  max-width: 800px;
  margin: 0 auto;
}
.lp-b-cases-foot-text {
  font-size: 14px;
  color: var(--c-grey-700);
}
.lp-b-cases-foot-text strong {
  color: var(--c-ink);
  font-weight: 600;
}
.btn--ghost-ink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-ink);
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(3, 33, 40, .15);
  background: transparent;
  transition: all .2s;
  text-decoration: none;
}
.btn--ghost-ink:hover {
  background: var(--c-ink);
  color: var(--c-mint);
  border-color: var(--c-ink);
}

/* ==========================================================================
   LP-C: SECCIÓN DOLORES sobre fondo oscuro
   ========================================================================== */
.lp-c-pains-section {
  position: relative;
  overflow: hidden;
}
.lp-c-pains-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(148, 250, 166, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask: radial-gradient(ellipse at 50% 50%, black, transparent 75%);
  -webkit-mask: radial-gradient(ellipse at 50% 50%, black, transparent 75%);
  pointer-events: none;
}
.lp-c-pains-section > .container { position: relative; z-index: 2; }
.lp-c-pains-cross-1 {
  top: 80px;
  right: 80px;
  color: var(--c-mint);
  opacity: .35;
}
.lp-c-pains-cross-2 {
  bottom: 60px;
  left: 60px;
  color: var(--c-mint);
  opacity: .25;
}

/* Header sobre ink */
.lp-c-pains-section .section-head h2 {
  color: var(--c-bone);
}
.lp-c-pains-section .section-head h2 .italic {
  color: var(--c-mint);
}
.lp-c-pains-section .section-head .lede {
  color: var(--c-grey-100);
}
.lp-c-pains-section .section-head .eyebrow {
  color: var(--c-mint);
}
.lp-c-pains-section .section-head .eyebrow .dot {
  background: var(--c-mint);
  box-shadow: 0 0 10px var(--c-mint);
}

/* Cards de dolores oscuros */
.lp-c-pains-section .lp-c-pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  .lp-c-pains-section .lp-c-pains-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-c-pains-section .lp-c-pains-grid { grid-template-columns: 1fr; }
}

.lp-c-pains-section .lp-c-pain {
  background: var(--c-ink-2);
  border: 1px solid rgba(148, 250, 166, .12);
  border-left: 3px solid var(--c-mint);
  padding: 22px 24px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform .25s var(--ease-out), border-color .25s;
}
.lp-c-pains-section .lp-c-pain:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 250, 166, .3);
}
.lp-c-pains-section .lp-c-pain-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(148, 250, 166, .1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-mint);
}
.lp-c-pains-section .lp-c-pain-icon svg { width: 20px; height: 20px; }
.lp-c-pains-section .lp-c-pain-content h3 {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-bone);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.lp-c-pains-section .lp-c-pain-content p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-grey-100);
}

/* ==========================================================================
   LP-C: TESTIMONIAL CARD (rediseñada)
   ========================================================================== */
.lp-c-testi {
  position: relative;
}
.lp-c-testi-cross {
  top: 60px;
  right: 60px;
  color: var(--c-mint-deep);
  opacity: .35;
}

.lp-c-testi-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(3, 33, 40, .15),
    0 4px 12px rgba(3, 33, 40, .04);
  border: 1px solid rgba(3, 33, 40, .06);
}
@media (max-width: 860px) {
  .lp-c-testi-card { grid-template-columns: 1fr; }
}

.lp-c-testi-side {
  background: var(--c-ink);
  color: var(--c-bone);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.lp-c-testi-side::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(148, 250, 166, .06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.lp-c-testi-side > * { position: relative; z-index: 1; }

.lp-c-testi-side .eyebrow {
  color: var(--c-mint);
  margin-bottom: 24px;
}
.lp-c-testi-side .eyebrow .dot {
  background: var(--c-mint);
  box-shadow: 0 0 10px var(--c-mint);
}

.lp-c-testi-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  flex: 1;
}
.lp-c-testi-metric {
  background: rgba(148, 250, 166, .04);
  border: 1px solid rgba(148, 250, 166, .15);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.lp-c-testi-metric--accent {
  background: rgba(148, 250, 166, .1);
  border-color: rgba(148, 250, 166, .35);
}
.lp-c-testi-metric-num {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--c-mint);
  font-variant-numeric: tabular-nums;
  min-width: 80px;
}
.lp-c-testi-metric-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .04em;
  line-height: 1.3;
  color: var(--c-grey-100);
  text-transform: uppercase;
}

.lp-c-testi-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.lp-c-testi-tags li {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--c-grey-100);
  background: rgba(148, 250, 166, .06);
  padding: 4px 10px;
  border-radius: 6px;
}

.lp-c-testi-content {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 600px) {
  .lp-c-testi-content { padding: 32px 26px 28px; }
  .lp-c-testi-side { padding: 28px 26px; }
}

.lp-c-testi-mark {
  position: absolute;
  top: 18px;
  left: 36px;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  color: var(--c-mint);
  opacity: .25;
  pointer-events: none;
  user-select: none;
}
.lp-c-testi-text {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.5;
  color: var(--c-ink);
  letter-spacing: -.01em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.lp-c-testi-text strong {
  color: var(--c-mint-deep);
  font-weight: 700;
}

.lp-c-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed rgba(3, 33, 40, .12);
}
.lp-c-testi-author-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--c-paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-mint-deep);
  border: 1px solid rgba(3, 33, 40, .08);
}
.lp-c-testi-author-meta {
  display: flex;
  flex-direction: column;
}
.lp-c-testi-author-role {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-ink);
  letter-spacing: -.01em;
}
.lp-c-testi-author-company {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-grey-500);
  letter-spacing: .04em;
}

/* ==========================================================================
   FIXES RESPONSIVE
   ========================================================================== */

/* Calc ROI: evitar solapamiento label/output en móvil */
@media (max-width: 480px) {
  .roi-control-head {
    flex-wrap: wrap;
    gap: 4px 12px;
  }
  .roi-control-label {
    flex: 1 1 100%;
    font-size: 11px;
  }
  .roi-control-value {
    font-size: 22px;
  }
  /* Más padding en roi-controls móvil */
  .roi-controls { padding: 24px 20px; }
  .roi-result-card { padding: 28px 22px; }
  .roi-mini { padding: 18px 18px; }
  .roi-result-num { font-size: clamp(40px, 10vw, 60px); }
}

/* Hero B: ratio card más pequeña en móvil */
@media (max-width: 600px) {
  .hero-ratio-bar { height: 80px; }
  .hero-ratio-num { font-size: 24px; }
  .hero-ratio-card { padding: 24px 20px; }
}

/* H1 hero B no tan grande en móvil */
@media (max-width: 600px) {
  .hero--lp-b h1 {
    font-size: clamp(36px, 8vw, 48px);
    line-height: 1.05;
  }
}

/* H1 hero C: fix tamaño y wrap del strike en móvil */
@media (max-width: 600px) {
  .hero--lp-c .lp-c-h1 {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.1;
  }
  .hero--lp-c .lp-c-h1 br { display: inline; }
}

/* Brand cross decorativos: ocultar en móvil para evitar solapamientos */
@media (max-width: 600px) {
  .lp-b-cases-cross,
  .platform-cross-1,
  .platform-cross-2,
  .lp-c-pains-cross-1,
  .lp-c-pains-cross-2,
  .lp-c-testi-cross,
  .process-cross-1,
  .process-cross-2,
  .final-v3-cross-1,
  .final-v3-cross-2 { display: none; }
}

/* Wizard mobile: ajustes finos */
@media (max-width: 480px) {
  .lp-c-wizard {
    padding: 24px 20px 18px;
  }
  .lp-c-wizard-q {
    font-size: 18px;
  }
  .lp-c-wizard-progress-text {
    font-size: 10px;
  }
}

/* Final-v3 grid mobile: stack sin overflow */
@media (max-width: 900px) {
  .final-v3-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
}

/* Section padding reducido en mobile para no abusar de espacio */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .h2-2lines, h2 { font-size: clamp(28px, 7vw, 40px); }
  .lede { font-size: 15px; }
}

/* Hero CTA buttons: stack en móvil */
@media (max-width: 480px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}

/* Trust list mobile: stack */
@media (max-width: 480px) {
  .hero-trust-list {
    flex-direction: column;
    gap: 8px;
  }
}

/* Counter card mobile */
@media (max-width: 480px) {
  .counter-card { padding: 24px 20px; }
  .counter-num { font-size: clamp(40px, 12vw, 64px); }
  .counter-meta-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* Compare grid mobile */
@media (max-width: 720px) {
  .compare-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  .sector-toggle {
    flex-wrap: wrap;
    gap: 6px;
  }
  .sector-btn {
    flex: 1 1 calc(50% - 4px);
    font-size: 12px;
    padding: 8px 10px;
  }
}

/* Topbar mobile: cuidar que no se rompa */
@media (max-width: 480px) {
  .nav-lp-actions { gap: 8px; }
  .nav-lp-phone {
    padding: 8px 10px;
    width: auto;
    min-width: 36px;
    justify-content: center;
  }
  .nav-lp-phone svg {
    width: 16px;
    height: 16px;
    display: block;
  }
  .nav-cta { padding: 6px 12px; font-size: 12px; }
}

/* Announce bar mobile: scroll horizontal en lugar de wrap caos */
@media (max-width: 600px) {
  .announce {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 16px;
    font-size: 11.5px;
    gap: 10px;
  }
  .announce::-webkit-scrollbar { display: none; }
  .announce > * { flex-shrink: 0; }
  .announce a {
    margin-left: auto;
    padding: 4px 12px;
    font-size: 11px;
  }
}
