/* ============================================================
   landing-v2.css — overrides puntuales SOLO para la v2 EN.
   Cargado DESPUÉS de landing-analisis-web-auditoria.css.
   No tocar este archivo si lo que querés es cambiar la v1.
   ============================================================ */

/* ---------- Hero: stat eyebrow + side-by-side preview ---------- */

.lp2v2-eyebrow-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 12px;
  background: rgba(255, 212, 0, 0.12);
  border: 2px solid rgba(255, 212, 0, 0.6);
  color: var(--brut-white);
  font-family: var(--font-display), 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.lp2v2-eyebrow-stat strong {
  color: var(--brut-yellow);
  font-weight: 800;
}
.lp2v2-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brut-yellow);
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.8);
  animation: lp2v2-pulse 2.4s infinite;
}
@keyframes lp2v2-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,212,0,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,212,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,212,0,0); }
}

/* Hero grid: mobile = stacked (form first, preview below per audit fix).
   Desktop ≥980px = 2 columns. */
.lp2v2-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 8px;
}
@media (min-width: 980px) {
  .lp2v2-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
    /* Columnas a la misma altura: el borde superior de la captura alinea
       con el del formulario y el inferior con el de .lp2-demo-escape. */
    align-items: stretch;
  }
}
.lp2v2-form-col { min-width: 0; }
.lp2v2-preview-col {
  min-width: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 980px) {
  .lp2v2-preview-col { align-items: stretch; }
  .lp2v2-preview-link {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  /* La imagen absorbe la altura sobrante (recorta abajo, ancla arriba)
     para que la caja mida EXACTO lo que mide la columna del formulario. */
  .lp2v2-preview-link img {
    flex: 1;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: top;
  }
}
.lp2v2-preview-link {
  display: block;
  position: relative;
  background: var(--brut-white);
  border: 3px solid var(--brut-yellow);
  box-shadow: 10px 10px 0 var(--brut-yellow);
  padding: 6px;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
  max-width: 100%;
}
.lp2v2-preview-link:hover {
  transform: translate(-3px, -3px);
  box-shadow: 13px 13px 0 var(--brut-yellow);
}
.lp2v2-preview-link img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--brut-black);
}
.lp2v2-preview-caption {
  display: block;
  background: var(--brut-black);
  color: var(--brut-white);
  font-family: var(--font-display), 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  margin-top: 6px;
  text-align: center;
}

/* ---------- Gallery section ---------- */

.lp2v2-gallery {
  padding: 64px 0;
  background: var(--brut-cream);
  border-top: 3px solid var(--brut-black);
}
.lp2v2-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 32px 0 28px;
}
@media (min-width: 700px) {
  .lp2v2-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp2v2-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.lp2v2-gallery-item {
  margin: 0;
  background: var(--brut-white);
  border: 3px solid var(--brut-black);
  box-shadow: 6px 6px 0 var(--brut-black);
  display: flex;
  flex-direction: column;
}
.lp2v2-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 3px solid var(--brut-black);
}
.lp2v2-gallery-item figcaption {
  font-family: var(--font-display), 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 16px;
  letter-spacing: 0.01em;
}
.lp2v2-gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.lp2v2-gallery-cta-meta {
  font-size: 0.86rem;
  opacity: 0.7;
  font-style: italic;
}

/* ---------- VS table ---------- */

.lp2v2-vs {
  padding: 64px 0;
  background: var(--brut-white);
  border-top: 3px solid var(--brut-black);
}
.lp2v2-vs-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 3px solid var(--brut-black);
  box-shadow: 6px 6px 0 var(--brut-black);
  background: var(--brut-white);
}
.lp2v2-vs-table {
  width: 100%;
  min-width: 720px; /* prevents text squish on narrow viewports — table scrolls horizontally */
  border-collapse: collapse;
  font-size: 0.95rem;
}
.lp2v2-vs-table thead th {
  background: var(--brut-black);
  color: var(--brut-white);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-display), 'Space Grotesk', sans-serif;
  font-weight: 800;
  vertical-align: top;
  border-right: 2px solid rgba(255,255,255,0.15);
}
.lp2v2-vs-table thead th:last-child { border-right: 0; }
.lp2v2-vs-table thead th small {
  display: block;
  font-weight: 500;
  opacity: 0.65;
  font-size: 0.78rem;
  margin-top: 3px;
}
.lp2v2-vs-table thead th.lp2v2-vs-us {
  background: var(--brut-yellow);
  color: var(--brut-black);
}
.lp2v2-vs-table tbody th {
  background: var(--brut-cream);
  text-align: left;
  font-family: var(--font-display), 'Space Grotesk', sans-serif;
  font-weight: 700;
  padding: 12px 16px;
  border-top: 2px solid var(--brut-black);
  border-right: 2px solid var(--brut-black);
  width: 28%;
}
.lp2v2-vs-table tbody td {
  padding: 12px 16px;
  border-top: 2px solid var(--brut-black);
  border-right: 1px dashed rgba(10,10,10,0.2);
  vertical-align: top;
}
.lp2v2-vs-table tbody td:last-child { border-right: 0; }
.lp2v2-vs-table tbody td.lp2v2-vs-us {
  background: rgba(255, 212, 0, 0.18);
  font-weight: 600;
}
.lp2v2-vs-foot {
  margin-top: 18px;
  font-size: 0.9rem;
  opacity: 0.78;
  font-style: italic;
  max-width: 760px;
}
/* Mobile: scroll hint on the table */
@media (max-width: 720px) {
  .lp2v2-vs-wrap::after {
    content: '← scroll →';
    display: block;
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.6;
    padding: 8px 0;
    border-top: 2px solid var(--brut-black);
    background: var(--brut-cream);
  }
}

/* ---------- Testimonials (3-col grid override) ---------- */

.lp2v2-testimonials-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) {
  .lp2v2-testimonials-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.lp2v2-testimonials-foot {
  margin: 24px 0 0;
  font-size: 0.88rem;
  opacity: 0.7;
  font-style: italic;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Loss aversion list (reformulated) ---------- */

.lp2v2-loss .lp2v2-loss-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  color: var(--brut-white);
}
.lp2v2-loss .lp2v2-loss-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.lp2v2-loss .lp2v2-loss-list li:last-child { border-bottom: 0; }
.lp2v2-loss .lp2v2-loss-list li::before {
  content: '×';
  position: absolute;
  left: 0; top: 8px;
  color: var(--brut-yellow);
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}
.lp2v2-loss .lp2v2-loss-list strong { color: var(--brut-yellow); }
.lp2v2-loss-cta-text {
  margin: 22px 0 18px !important;
  font-size: 1.1rem !important;
}

/* ---------- Pricing anchor framing ---------- */

.lp2v2-pricing-anchor {
  max-width: 760px;
  margin: 0 auto 6px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.55;
  padding: 14px 18px;
  background: rgba(255, 212, 0, 0.18);
  border: 2px dashed var(--brut-black);
}
.lp2v2-pricing-anchor strong { font-weight: 800; }

/* ---------- Final CTA stat ---------- */

.lp2v2-cta-final-stat {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.96rem;
}
.lp2v2-cta-final-stat strong {
  color: var(--brut-yellow);
  font-weight: 800;
}

/* ════════════════════════════════════════════════════════════════════
   PRO CARDS START — Animación premium "Qué hay dentro del informe"
   ════════════════════════════════════════════════════════════════════
   Combina 4 efectos brutalist-friendly: tilt 3D, shadow chase (la sombra
   sigue al cursor como si fuera fuente de luz), border shimmer (brillo
   recorriendo el perímetro), y holographic glow (gradiente cónico sutil
   detrás de la card). GPU-acelerado vía transform + will-change.

   ROLLBACK: en index.php, set $__pro_cards_enabled = false. La clase
   .lp2v2-cards-pro deja de aplicarse y todas estas reglas son inertes.

   Mobile / touch (no fine pointer): solo el reveal stagger queda activo,
   el tilt + shadow chase + shimmer se desactivan (no hay cursor real).
   ════════════════════════════════════════════════════════════════════ */
.lp2v2-cards-pro {
  perspective: 1200px;
}
/* === Tech palette override === Dark slate bg + accent stripe + colored
   number digit. Reemplaza la paleta brutalist pastel (yellow/pink/cyan/
   violet/lime/orange) por un look "premium tech" (Linear/Vercel/Stripe).
   Solo aplica dentro de .lp2v2-cards-pro — el resto del sitio mantiene
   los colores originales. */
.lp2v2-cards-pro .lp2-card {
  /* Variables que JS interpola en mousemove */
  --rx: 0deg;
  --ry: 0deg;
  --sx: 6px;
  --sy: 6px;
  --tz: 0px;
  --mx: 50%;
  --my: 50%;
  /* Card base — dark slate gradient sutil */
  background: linear-gradient(165deg, #1a1f29 0%, #11141a 100%) !important;
  color: #e6e8ed !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-top: 2px solid var(--card-accent, #6b7280) !important;
  position: relative;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(var(--tz));
  transform-style: preserve-3d;
  box-shadow: var(--sx) var(--sy) 0 var(--brut-black);
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 200ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, box-shadow;
}
/* Accent color por card (border-top + número + glow holográfico) */
.lp2v2-cards-pro .lp2-card-yellow  { --card-accent: #ffd400; --card-accent-glow: rgba(255,212,0,0.55); }
.lp2v2-cards-pro .lp2-card-pink    { --card-accent: #ff6ec7; --card-accent-glow: rgba(255,110,199,0.55); }
.lp2v2-cards-pro .lp2-card-cyan    { --card-accent: #4adcff; --card-accent-glow: rgba(74,220,255,0.55); }
.lp2v2-cards-pro .lp2-card-violet  { --card-accent: #a585ff; --card-accent-glow: rgba(165,133,255,0.55); }
.lp2v2-cards-pro .lp2-card-lime    { --card-accent: #c8ff00; --card-accent-glow: rgba(200,255,0,0.55); }
.lp2v2-cards-pro .lp2-card-orange  { --card-accent: #ff8a3d; --card-accent-glow: rgba(255,138,61,0.55); }
/* Número del card: ahora coloreado con el accent + glow sutil */
.lp2v2-cards-pro .lp2-card-num {
  color: var(--card-accent) !important;
  opacity: 1 !important;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-shadow: 0 0 18px var(--card-accent-glow, transparent);
}
.lp2v2-cards-pro .lp2-card h3 {
  color: #f8f9fa !important;
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.lp2v2-cards-pro .lp2-card p {
  color: #aab0bb !important;
  font-size: 0.94rem;
}
.lp2v2-cards-pro .lp2-card:hover {
  z-index: 2;
}
/* Holographic glow: gradiente radial detrás de la card que se asoma por
   los bordes durante el hover. Aparece detrás del shadow para parecer
   una "fuente de luz" desde atrás. */
.lp2v2-cards-pro .lp2-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: -2;
  /* Glow tipo "accent del card" — un solo color que pulsa, no arcoiris.
     Sobrio + tech, no chillón. */
  background: radial-gradient(
    220px circle at var(--mx) var(--my),
    var(--card-accent-glow, rgba(255,255,255,0.3)),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 240ms ease-out;
  pointer-events: none;
  filter: blur(18px);
}
.lp2v2-cards-pro .lp2-card:hover::before {
  opacity: 1;
}
/* Border shimmer: línea fina que recorre el perímetro de la card durante
   el hover. Usa la técnica de mask-composite para emular un borde con
   gradient (no es posible con border directamente). */
.lp2v2-cards-pro .lp2-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from 0deg at var(--mx) var(--my),
    transparent 0deg,
    rgba(255, 255, 255, 0.85) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 240ms ease-out;
  pointer-events: none;
}
.lp2v2-cards-pro .lp2-card:hover::after {
  opacity: 1;
}
/* Las stats numéricas (01..06) flotan ligeramente al hacer hover. */
.lp2v2-cards-pro .lp2-card:hover .lp2-card-num {
  transform: translateZ(20px);
}
.lp2v2-cards-pro .lp2-card .lp2-card-num {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Reveal: entrada con stagger más dramática que la default === */
.lp2v2-cards-pro .lp2-card.lp2-reveal {
  opacity: 0;
  transform: perspective(900px) translateY(60px) rotateX(-8deg) scale(0.96);
  transition:
    opacity 580ms ease-out,
    transform 680ms cubic-bezier(0.18, 0.89, 0.32, 1.18);
}
.lp2v2-cards-pro .lp2-card.lp2-revealed {
  opacity: 1;
  transform: perspective(900px) rotateX(0) rotateY(0) translateY(0) scale(1);
}
/* Stagger via nth-child — sin necesidad de JS, 90ms entre cards. */
.lp2v2-cards-pro .lp2-card.lp2-reveal:nth-child(1) { transition-delay: 0ms; }
.lp2v2-cards-pro .lp2-card.lp2-reveal:nth-child(2) { transition-delay: 90ms; }
.lp2v2-cards-pro .lp2-card.lp2-reveal:nth-child(3) { transition-delay: 180ms; }
.lp2v2-cards-pro .lp2-card.lp2-reveal:nth-child(4) { transition-delay: 270ms; }
.lp2v2-cards-pro .lp2-card.lp2-reveal:nth-child(5) { transition-delay: 360ms; }
.lp2v2-cards-pro .lp2-card.lp2-reveal:nth-child(6) { transition-delay: 450ms; }

/* === Mobile / touch / reduced-motion: desactivamos los efectos pesados,
   dejamos solo el reveal stagger (que es suave y no requiere cursor). === */
@media (hover: none), (pointer: coarse) {
  .lp2v2-cards-pro .lp2-card {
    transform: none !important;
    box-shadow: 6px 6px 0 var(--brut-black) !important;
    transition: opacity 580ms ease-out, transform 680ms cubic-bezier(0.18, 0.89, 0.32, 1.18) !important;
  }
  .lp2v2-cards-pro .lp2-card::before,
  .lp2v2-cards-pro .lp2-card::after { display: none; }
  .lp2v2-cards-pro .lp2-card:hover .lp2-card-num { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lp2v2-cards-pro .lp2-card,
  .lp2v2-cards-pro .lp2-card * {
    transition: none !important;
    animation: none !important;
  }
  .lp2v2-cards-pro .lp2-card::before,
  .lp2v2-cards-pro .lp2-card::after { display: none; }
}
/* ════════════════════════════════════════════════════════════════════
   PRO CARDS END
   ════════════════════════════════════════════════════════════════════ */

/* ---------- Language switcher (footer) ---------- */
/* Minimalista, debajo del made-in line. El locale activo va en bold
   sin link clickeable; el otro idioma va como link discreto. */
.lp2v2-lang-switch {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
.lp2v2-lang-switch a {
  color: inherit;
  text-decoration: none;
  padding: 2px 6px;
  transition: opacity 120ms ease;
}
.lp2v2-lang-switch a:hover {
  color: var(--brut-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lp2v2-lang-switch .is-active {
  color: var(--brut-white);
  font-weight: 700;
  cursor: default;
}
.lp2v2-lang-switch .is-active:hover {
  text-decoration: none;
}
.lp2v2-lang-switch-sep {
  margin: 0 2px;
  opacity: 0.5;
}

/* ════════════════════════════════════════════════════════════════════════
   DIRECT-BUY BUTTONS — Standard + Lifetime pricing cards
   Reusa .buy-direct-* base styles de brutalist.css y los re-tematiza
   para vivir adentro de .lp2-pricing-card. Sobreescribe layout para
   que toggle + email + submit queden full-width y con jerarquía clara.
   ════════════════════════════════════════════════════════════════════════ */
.lp2-buy-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  /* Entrada sutil: fade + slide al entrar en viewport. La clase
     .lp2-buy-direct--in la inyecta el IntersectionObserver al final
     del archivo. Si JS falla, queda visible (estado base = visible). */
}
.lp2-buy-direct[data-buy-anim] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.lp2-buy-direct[data-buy-anim].lp2-buy-direct--in {
  opacity: 1;
  transform: translateY(0);
}

/* Primary CTA — full-width pink button (free audit first). */
.lp2-buy-direct .lp2-buy-primary {
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* Wrapper del bloque payment_gateway_direct_buy_block — full-width,
   sin margen extra arriba (la flexbox del padre ya separa). */
.lp2-buy-direct .buy-direct-wrap {
  margin: 0;
  width: 100%;
}

/* Toggle (collapsed): "O comprar el plan completo ahora ▾" */
.lp2-buy-direct .buy-direct-toggle {
  width: 100%;
  text-align: center;
  background: transparent;
  border: 2px solid #0a0a0a;
  color: #0a0a0a;
  font-weight: 700;
  padding: 12px 14px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.lp2-buy-direct .buy-direct-toggle:hover {
  background: #0a0a0a;
  color: #fff;
  transform: translateY(-1px);
}
.lp2-buy-direct .buy-direct-toggle[aria-expanded="true"] {
  background: #0a0a0a;
  color: #fff;
}

/* Form expandido — fondo sutil + animación de entrada cuando se abre. */
.lp2-buy-direct .buy-direct-form {
  background: #fafafa;
  border: 2px solid #0a0a0a;
  padding: 16px;
  animation: lp2BuyFormIn .35s ease-out;
}
@keyframes lp2BuyFormIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lp2-buy-direct .buy-direct-label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.lp2-buy-direct .buy-direct-email {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 2px solid #0a0a0a;
  background: #fff;
}
.lp2-buy-direct .buy-direct-email:focus {
  outline: 3px solid #ff3ea5;
  outline-offset: 1px;
}

.lp2-buy-direct .buy-direct-submit {
  width: 100%;
  text-align: center;
  background: #0a0a0a;
  color: #fff;
  font-weight: 800;
  padding: 14px 18px;
  border: 2px solid #0a0a0a;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp2-buy-direct .buy-direct-submit:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 #ff3ea5;
}
.lp2-buy-direct .buy-direct-hint {
  font-size: 0.78rem;
  opacity: 0.7;
  line-height: 1.4;
  margin: 0;
}

/* ── Lifetime variant: pink primary + gold accents on submit ─────────── */
.lp2-buy-direct--lifetime .buy-direct-submit {
  background: #ff3ea5;
  color: #fff;
  border-color: #ff3ea5;
}
.lp2-buy-direct--lifetime .buy-direct-submit:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  box-shadow: 4px 4px 0 #ff3ea5;
}
.lp2-buy-direct--lifetime .buy-direct-toggle {
  border-color: #ff3ea5;
  color: #ff3ea5;
}
.lp2-buy-direct--lifetime .buy-direct-toggle:hover,
.lp2-buy-direct--lifetime .buy-direct-toggle[aria-expanded="true"] {
  background: #ff3ea5;
  color: #fff;
}

/* Fallback (Paddle no configurado): renderiza solo un mailto button.
   Se ve consistente con el toggle. */
.lp2-buy-direct .buy-direct-fallback {
  width: 100%;
  text-align: center;
  display: inline-block;
}

/* ============================================================
 * Descuento promocional · v0.67 — overrides en pricing cards
 * Cuando el precio del card incluye strike + badge (vía
 * price_full_with_strike()), ajustamos proporciones para que se
 * vean coherentes dentro del display 2.6rem del card. Sin esto,
 * el badge "-X% OFF" termina casi tan grande como el precio.
 * ============================================================ */
.lp2-pricing-amount .price-with-strike {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  line-height: 1.05;
}
.lp2-pricing-amount .price-strike {
  font-size: 0.42em;
  font-weight: 600;
  opacity: 0.5;
  letter-spacing: 0.01em;
}
.lp2-pricing-amount .price-now {
  font-weight: 800;
}
.lp2-pricing-amount .price-discount-badge {
  font-size: 0.32em;
  font-weight: 800;
  padding: 4px 10px;
  border: 2px solid #0a0a0a;
  background: #FF3EA5;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  transform: translateY(-4px);
  white-space: nowrap;
  border-radius: 3px;
  box-shadow: 2px 2px 0 #0a0a0a;
}
@media (max-width: 480px) {
  .lp2-pricing-amount .price-with-strike { gap: 8px; }
  .lp2-pricing-amount .price-discount-badge { font-size: 0.36em; padding: 3px 8px; }
}

/* Tabla VS — strike inline, badge contraído porque el contexto es chico */
.lp2v2-vs-us .price-with-strike {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.lp2v2-vs-us .price-strike {
  font-size: 0.75em;
  opacity: 0.55;
  font-weight: 600;
}
.lp2v2-vs-us .price-discount-badge {
  font-size: 0.62em;
  padding: 2px 6px;
  font-weight: 800;
  background: #FF3EA5;
  color: #fff;
  border: 1.5px solid #0a0a0a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: 1.3;
  transform: translateY(-1px);
  white-space: nowrap;
}

