@import url('./colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--shift-cream); }

:root {
  /* Tarja red urgency */
  --tarja: #D21404;
  --tarja-2: #D21404;
  --tarja-contrast: #FFFFFF;
  /* CTA/accent peach-gold (fixed, warm dourado) */
  --urg: #E8A060;           /* deeper peach for more contrast */
  --urg-2: #D98846;         /* shadow/accent deeper */
  --urg-ink: #3D342C;       /* text on peach */
  --urg-soft: #FCEDE1;      /* peach tint for soft bg */
  --urg-contrast: #3D342C;  /* text on peach button */
  --accent-coral: #D9624F;
  --accent-coral-soft: #FADFD8;
}

.lp-root {
  font-family: var(--font-sans);
  color: var(--shift-ink);
  background: var(--shift-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============ GRAIN ============ */
.grain {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ TARJA (top bar) ============ */
.lp-tarja {
  position: sticky; top: 0; z-index: 50;
  background: #D21404;
  color: var(--tarja-contrast);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(80,0,0,0.25);
  box-shadow: 0 5px 24px rgba(210,20,4,0.5);
}
.lp-tarja-label { display: inline-flex; align-items: center; gap: 8px; }
.lp-tarja-label::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
.lp-countdown {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  background: rgba(0,0,0,0.28);
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
.lp-tarja-start {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: #fff;
  color: #D21404;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 950;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.75), 0 0 18px rgba(255,255,255,0.32);
  animation: urgencyPulse 1.05s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.72), 0 0 16px rgba(255,255,255,0.28); }
  50% { transform: scale(1.045); box-shadow: 0 0 0 7px rgba(255,255,255,0), 0 0 28px rgba(255,255,255,0.5); }
}
.lp-count-unit {
  display: inline-flex; align-items: baseline; gap: 2px;
}
.lp-count-unit b {
  font-size: 16px; font-weight: 800;
  background: rgba(0,0,0,0.22);
  padding: 4px 8px; border-radius: 6px;
  min-width: 30px; text-align: center;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.lp-count-unit span { font-size: 11px; opacity: 0.85; font-weight: 500; }

/* ============ HERO ============ */
.lp-hero {
  position: relative;
  padding: 28px 24px 12px;
  text-align: center;
  background: var(--shift-cream);
}
.lp-hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.lp-hero::before {
  content: none;
}
.lp-kicker {
  display: inline-block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--shift-ink-2);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--shift-border);
  margin-bottom: 18px;
}
.lp-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--shift-ink);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.lp-hero h1 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-hero h1 strong { font-weight: 700; color: var(--shift-ink); font-style: normal; }
.lp-hero-sub {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--shift-ink-2);
  max-width: 620px;
  margin: 6px auto 20px;
}
.lp-hero-lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shift-muted);
  font-weight: 500;
  margin: 0 auto 4px;
  padding-top: 14px;
  border-top: 1px solid var(--shift-border);
  max-width: 440px;
  width: 100%;
}
.lp-hero-lead .strike { text-decoration: line-through; text-decoration-thickness: 1px; opacity: 0.55; }
.lp-hero-lead .dot { color: var(--shift-border); font-weight: 400; }
.lp-hero-lead .glow {
  color: var(--urg);
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* ============ VSL PLAYER (vertical 9:16) ============ */
.lp-vsl-wrap {
  display: flex; justify-content: center;
  padding: 0 16px;
  position: relative;
}
.lp-vsl-wrap vturb-smartplayer {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(61,52,44,0.45), 0 2px 8px rgba(61,52,44,0.08);
}
.lp-vsl {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #1A1713;
  box-shadow: 0 30px 80px -20px rgba(61,52,44,0.45), 0 2px 8px rgba(61,52,44,0.08);
  z-index: 1;
}
.lp-vsl-poster {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(245,197,163,0.35), transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(216,203,235,0.22), transparent 60%),
    linear-gradient(135deg, #2A2420 0%, #1A1713 100%);
}
.lp-vsl-poster::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  mix-blend-mode: overlay;
}
.lp-vsl-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(255,247,240,0.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--shift-ink);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 0 rgba(255,247,240,0.5);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out-soft);
  animation: playPulse 2.4s ease-in-out infinite;
  z-index: 2;
}
.lp-vsl-play:hover { transform: translate(-50%, -50%) scale(1.05); }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 0 rgba(255,247,240,0.5); }
  50% { box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 20px rgba(255,247,240,0); }
}
.lp-vsl-title {
  position: absolute; top: 22px; left: 24px; right: 24px;
  color: rgba(255,247,240,0.92);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.lp-vsl-title small {
  display: block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 6px;
}
.lp-vsl-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,247,240,0.92);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  z-index: 2;
}
.lp-vsl-progress {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(255,247,240,0.18);
  position: relative; overflow: hidden;
}
.lp-vsl-progress::after {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0;
  width: 12%; background: var(--urg); border-radius: 2px;
}
.lp-vsl-controls .lp-vsl-time { opacity: 0.8; }
.lp-vsl-mute {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,247,240,0.12);
  cursor: pointer;
}

/* ============ CTA DELAY BOX ============ */
.lp-cta-delay {
  max-width: 680px; margin: 24px auto 0;
  text-align: center;
  padding: 0 24px 40px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.lp-cta-delay.visible { opacity: 1; transform: translateY(0); }
.lp-btn-urg {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 16px;
  padding: 18px 28px;
  border-radius: 14px;
  white-space: nowrap;
  background: linear-gradient(180deg, #F0B075 0%, var(--urg) 100%);
  color: var(--urg-contrast);
  border: none; cursor: pointer;
  letter-spacing: 0.005em;
  box-shadow: 0 0 0 3px rgba(217,98,79,0.12), 0 18px 44px -10px rgba(217,98,79,0.5), 0 4px 12px rgba(61,52,44,0.1);
  transition: transform var(--dur-base) var(--ease-out-soft), box-shadow var(--dur-base) var(--ease-out-soft);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(217,98,79,0.12), 0 18px 44px -10px rgba(217,98,79,0.5), 0 4px 12px rgba(61,52,44,0.1); }
  50% { box-shadow: 0 0 0 8px rgba(217,98,79,0.18), 0 22px 50px -8px rgba(217,98,79,0.6), 0 4px 12px rgba(61,52,44,0.1); }
}
.lp-btn-urg:hover { transform: translateY(-2px); animation: none; }
.lp-btn-urg::after {
  content: ""; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.8s ease;
}
.lp-btn-urg:hover::after { left: 100%; }
.lp-btn-urg-lg {
  font-size: 18px; padding: 20px 32px;
}
.lp-cta-meta {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 16px;
  font-size: 12.5px; color: var(--shift-ink-2);
  flex-wrap: wrap;
}
.lp-cta-meta span { display: inline-flex; align-items: center; gap: 6px; }
.lp-cta-meta span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--shift-ink-2); opacity: 0.4;
}
.lp-cta-meta span:first-child::before { display: none; }

/* ============ RETIRADA / SOFT CTA ============ */
.lp-retirada {
  position: relative;
  padding: 80px 24px 56px;
  text-align: center;
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(245,228,210,0.7), transparent 70%),
    var(--shift-cream);
  overflow: hidden;
}
.lp-retirada::before,
.lp-retirada::after {
  content: "";
  position: absolute; left: 50%;
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,52,44,0.18), transparent);
  transform: translateX(-50%);
}
.lp-retirada::before { top: 0; }
.lp-retirada::after  { bottom: 0; }
.lp-retirada-inner {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.lp-retirada-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--shift-ink-2);
  opacity: 0.85;
}
.lp-retirada-quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.3;
  color: var(--shift-ink);
  margin: 0;
  text-wrap: balance;
}
.lp-retirada-quote em {
  font-style: italic;
  color: var(--urg);
  font-weight: 500;
}
.lp-retirada-cta {
  margin-top: 8px;
  width: 100%;
  max-width: 380px;
}
.lp-retirada-meta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--shift-ink-2);
  font-family: var(--font-sans);
  opacity: 0.85;
}
.lp-retirada-meta span[aria-hidden] { opacity: 0.4; }
@media (max-width: 640px) {
  .lp-retirada { padding: 56px 20px 44px; }
}

/* ============ SECTION CHROME ============ */
.lp-section {
  padding: 48px 24px;
  position: relative;
}
.lp-section-sand { background: var(--shift-sand); }
.lp-section-ink  { background: var(--shift-ink); color: var(--shift-cream); }
.lp-section-ink h2, .lp-section-ink h3, .lp-section-ink p { color: inherit; }
.lp-container { max-width: 1080px; margin: 0 auto; }
.lp-container-sm { max-width: 780px; margin: 0 auto; }

.lp-eyebrow {
  display: inline-block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--urg);
  margin-bottom: 16px;
}
.lp-h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.1; letter-spacing: -0.025em;
  margin: 0 0 40px;
  text-wrap: balance;
}
.lp-h2 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-h2 strong { font-weight: 700; color: var(--shift-ink); font-style: normal; }

/* ============ OFFER v2 — single fluid section ============ */
.lp-offer-v2 {
  background: #FADFC9;
  padding: 56px 20px 64px;
  position: relative;
}
.lp-offer-v2 > * { position: relative; z-index: 2; }
.lp-offer-v2-inner {
  max-width: 780px; margin: 0 auto;
}

/* HEAD */
.lp-offer-v2-head {
  text-align: center;
  margin-bottom: 28px;
}
.lp-tag-pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--urg-2);
  background: var(--urg-soft);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.lp-offer-v2-h {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--shift-ink);
  text-wrap: balance;
}
.lp-offer-v2-h em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-offer-v2-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.5;
  color: var(--shift-ink-2);
  max-width: 540px; margin: 0 auto;
  text-wrap: pretty;
}

/* MOCKUP */
.lp-offer-v2-mockup {
  position: relative;
  max-width: 640px;
  margin: 32px auto 8px;
}
.lp-offer-v2-glow {
  position: absolute; inset: -10% -5%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(216,203,235,0.55), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(245,197,163,0.5), transparent 60%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}
.lp-offer-v2-mockup img {
  position: relative; z-index: 1;
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 26px 36px rgba(61,52,44,0.2));
}

/* GROUPS */
.lp-offer-v2-groups {
  display: grid;
  gap: 36px;
  margin-top: 24px;
}
.lp-offer-v2-group-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.lp-offer-v2-group-num {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  color: var(--urg-2);
  background: var(--urg-soft);
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0;
  flex-shrink: 0;
}
.lp-offer-v2-group-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--shift-ink);
  margin: 0;
}
.lp-offer-v2-group-hr {
  flex: 1; height: 1px;
  background: var(--shift-border);
  min-width: 20px;
}
.lp-offer-v2-group-sum {
  font-family: var(--font-serif);
  font-size: 22px; color: var(--shift-ink);
  font-weight: 500;
  letter-spacing: -0.015em;
  background: var(--urg);
  color: #FFF7ED;
  padding: 4px 14px;
  border-radius: 999px;
  line-height: 1.2;
  box-shadow: 0 6px 18px -6px rgba(217,98,79,0.5);
}
.lp-offer-v2-group-sum b { font-weight: 700; font-size: 24px; }

/* LIST */
.lp-offer-v2-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 2px;
  background: #fff;
  border: 1px solid var(--shift-border);
  border-radius: 16px;
  overflow: hidden;
}
.lp-offer-v2-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: center;
  padding: 18px 24px;
  background: #fff;
  border-bottom: 1px solid var(--shift-border);
}
.lp-offer-v2-list li:last-child { border-bottom: none; }

/* Full-width header row (bonos) */
.lp-offer-v2-list li.lp-offer-v2-head-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--urg) 0%, #E07A5F 100%);
  color: #FFF7ED;
  padding: 20px 24px;
  border-bottom: none;
  box-shadow: 0 4px 12px -6px rgba(217,98,79,0.4);
  text-align: center;
}
.lp-offer-v2-head-row-txt {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.015em;
}
.lp-offer-v2-head-row-txt b {
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.02em;
}
@media (max-width: 520px) {
  .lp-offer-v2-list li.lp-offer-v2-head-row { padding: 16px 16px; }
  .lp-offer-v2-head-row-txt { font-size: 22px; }
  .lp-offer-v2-head-row-txt b { font-size: 26px; }
}
.lp-offer-v2-list li.is-main {
  background: linear-gradient(90deg, rgba(217,98,79,0.06), rgba(217,98,79,0.02));
}
.lp-offer-v2-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--urg-soft); color: var(--urg-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-offer-v2-list li.is-main .lp-offer-v2-check {
  background: var(--urg); color: #FFF7ED;
}
.lp-offer-v2-name {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.35;
  color: var(--shift-ink);
  font-weight: 500;
}
.lp-offer-v2-list li.is-main .lp-offer-v2-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.lp-offer-v2-val {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--shift-ink-3);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}
.lp-offer-v2-val s {
  font-weight: 500;
  opacity: 0.85;
}
.lp-offer-v2-list li.is-main .lp-offer-v2-val {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--shift-ink);
  font-weight: 500;
}
.lp-offer-v2-list li.is-main .lp-offer-v2-val s {
  text-decoration: line-through;
  text-decoration-color: var(--urg);
  text-decoration-thickness: 3px;
}

/* PRICE BLOCK */
.lp-offer-v2-price {
  margin-top: 44px;
  background: var(--shift-ink);
  color: #FFF7ED;
  border: none;
  border-radius: 24px;
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: 0 30px 60px -24px rgba(61,52,44,0.5);
}
.lp-offer-v2-price-from s {
  font-family: var(--font-serif);
  font-size: 30px;
  color: rgba(255,247,237,0.65);
  font-variant-numeric: tabular-nums;
  text-decoration: line-through;
  text-decoration-color: var(--urg);
  text-decoration-thickness: 3px;
  font-weight: 500;
}
.lp-offer-v2-price-from-lbl {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,247,237,0.5);
}
.lp-offer-v2-price-today-lbl {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--urg);
  margin-top: 4px;
}
.lp-offer-v2-price-big {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(88px, 20vw, 140px);
  line-height: 0.9; letter-spacing: -0.045em;
  color: #FFF7ED;
  margin: 4px 0 4px;
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: flex-start; gap: 4px;
}
.lp-offer-v2-price-big .lp-offer-v2-price-dollar {
  color: var(--urg);
}
.lp-offer-v2-price-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15.5px; line-height: 1.45;
  color: rgba(255,247,237,0.98);
  max-width: 360px; margin: 4px auto 24px;
}
.lp-offer-v2-price-note b { font-style: normal; font-weight: 700; color: #FFF7ED; }
.lp-offer-v2-price .lp-btn-urg { width: 100%; max-width: 380px; justify-content: center; }
.lp-offer-v2-price .lp-cta-meta { margin-top: 18px; }

@media (max-width: 520px) {
  .lp-offer-v2 { padding: 40px 16px 56px; }
  .lp-offer-v2-list li { padding: 14px 16px; gap: 10px; }
  .lp-offer-v2-name { font-size: 14.5px; }
  .lp-offer-v2-list li.is-main .lp-offer-v2-name { font-size: 16px; }
  .lp-offer-v2-val { font-size: 12.5px; }
  .lp-offer-v2-list li.is-main .lp-offer-v2-val { font-size: 19px; }
  .lp-offer-v2-price { padding: 28px 20px; }
}

/* LAYOUT A: CHECKLIST */
.lp-bonus-checklist {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--shift-border);
  border-radius: 24px;
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
}
.lp-bonus-group-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--shift-border);
}
.lp-bonus-group-title + .lp-bonus-group-title { margin-top: 36px; }
.lp-bonus-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(61,52,44,0.1);
}
.lp-bonus-row:last-child { border-bottom: none; }
.lp-bonus-check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--urg-soft); color: var(--urg);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.lp-bonus-name {
  flex: 1; font-size: 15px; line-height: 1.5;
  color: var(--shift-ink);
}
.lp-bonus-val {
  font-variant-numeric: tabular-nums;
  font-size: 13.5px; color: var(--shift-ink-3);
  text-decoration: line-through;
  white-space: nowrap;
}
.lp-bonus-total {
  margin-top: 36px; padding-top: 24px;
  border-top: 2px solid var(--shift-ink);
  display: grid; gap: 8px;
  text-align: center;
}
.lp-bonus-from {
  font-size: 14px; color: var(--shift-ink-3);
}
.lp-bonus-from b { font-variant-numeric: tabular-nums; text-decoration: line-through; font-weight: 500; }
.lp-bonus-price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 64px; line-height: 1;
  letter-spacing: -0.03em;
  color: var(--shift-ink);
  font-variant-numeric: tabular-nums;
}
.lp-bonus-price em { color: var(--urg); font-style: normal; font-weight: 400; }
.lp-bonus-note {
  font-size: 14px; color: var(--shift-ink-2);
  font-style: italic;
  max-width: 420px; margin: 0 auto;
  line-height: 1.5;
}

/* LAYOUT B: GRID */
.lp-bonus-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.lp-bonus-card {
  background: #fff;
  border: 1px solid var(--shift-border);
  border-radius: 16px;
  padding: 20px;
  display: grid; gap: 10px;
  transition: transform var(--dur-base) var(--ease-out-soft), box-shadow var(--dur-base) var(--ease-out-soft);
}
.lp-bonus-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-bonus-card-tag {
  font-family: var(--font-mono, monospace);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--urg);
}
.lp-bonus-card-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 17px; line-height: 1.25;
  letter-spacing: -0.01em;
  flex: 1;
}
.lp-bonus-card-val {
  font-family: var(--font-mono, monospace);
  font-size: 13px; color: var(--shift-ink-2);
  padding-top: 10px;
  border-top: 1px solid var(--shift-border);
}
.lp-bonus-card-val s { opacity: 0.6; }
.lp-bonus-grid-main {
  grid-column: 1 / -1;
  background: var(--shift-ink); color: var(--shift-cream);
  border: none;
  padding: 28px 32px;
}
.lp-bonus-grid-main .lp-bonus-card-name { color: var(--shift-cream); font-size: 22px; }
.lp-bonus-grid-main .lp-bonus-card-val { color: rgba(250,243,232,0.6); border-top-color: rgba(250,243,232,0.15); }
.lp-bonus-grid-main .lp-bonus-card-tag { color: var(--urg); }

.lp-bonus-price-card {
  max-width: 520px; margin: 40px auto 0;
  background: #fff;
  border: 2px solid var(--urg);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px -16px rgba(216,98,79,0.25);
}
.lp-bonus-price-card::before {
  content: "Oferta de hoy"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--urg); color: var(--urg-contrast);
  font-family: var(--font-mono, monospace);
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}

/* LAYOUT C: STACK */
.lp-bonus-stack {
  max-width: 680px; margin: 0 auto;
  display: grid; gap: 3px;
}
.lp-bonus-stack-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border: 1px solid var(--shift-border);
  transition: background var(--dur-base) var(--ease-out-soft);
}
.lp-bonus-stack-item:first-child { border-radius: 16px 16px 0 0; }
.lp-bonus-stack-item:last-of-type { border-radius: 0 0 16px 16px; }
.lp-bonus-stack-item:hover { background: var(--shift-cream); }
.lp-bonus-stack-header {
  background: var(--shift-ink);
  color: var(--shift-cream);
  padding: 16px 28px;
  font-family: var(--font-mono, monospace);
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 16px 16px 0 0;
}
.lp-bonus-stack-header + .lp-bonus-stack-item { border-radius: 0; border-top: none; }
.lp-bonus-stack-item + .lp-bonus-stack-header { margin-top: 18px; border-radius: 16px 16px 0 0; }
.lp-bonus-stack-name {
  font-size: 15.5px; line-height: 1.4;
}
.lp-bonus-stack-val {
  font-family: var(--font-mono, monospace);
  font-variant-numeric: tabular-nums;
  font-size: 13.5px;
  color: var(--shift-ink-3);
  white-space: nowrap;
}
.lp-bonus-stack-val b { color: var(--urg); font-weight: 600; }
.lp-bonus-stack-total {
  margin-top: 18px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 20px;
  padding: 28px 32px;
  background: var(--urg);
  color: var(--urg-contrast);
  border-radius: 16px;
  box-shadow: 0 14px 40px -12px rgba(216,98,79,0.5);
}
.lp-root[data-urg="peach"] .lp-bonus-stack-total { color: var(--shift-ink); }
.lp-bonus-stack-total-label {
  font-family: var(--font-mono, monospace);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 4px;
  opacity: 0.75;
}
.lp-bonus-stack-total-from {
  font-size: 14.5px; opacity: 0.85;
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.lp-bonus-stack-total-price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px; line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.lp-offer-cta {
  text-align: center; margin-top: 48px;
}

/* ============ GUARANTEE ============ */
.lp-guar-sec {
  background: var(--shift-cream);
  padding: 40px 20px 40px;
  position: relative;
}
.lp-guar-sec > * { position: relative; }
.lp-guar {
  background: #fff;
  border: 1px solid var(--shift-border);
  border-radius: 28px;
  max-width: 720px; margin: 0 auto;
  padding: 48px 40px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(61,52,44,0.2);
}
.lp-guar::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,176,117,0.12), transparent 60%);
  pointer-events: none;
}
.lp-guar-seal {
  position: relative;
  width: 112px; height: 112px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 10px 22px rgba(217,98,79,0.25));
}
.lp-guar-seal svg {
  width: 100%; height: 100%;
}
.lp-guar-days {
  position: absolute; bottom: -6px; right: -6px;
  background: var(--shift-ink);
  color: #FFF7ED;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600;
  line-height: 1;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(61,52,44,0.3);
}
.lp-guar-days small {
  font-family: var(--font-sans);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 1px;
  opacity: 0.85;
}
.lp-guar-head { text-align: center; position: relative; }
.lp-guar-head .lp-tag-pill { margin-bottom: 14px; }
.lp-guar-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15; letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--shift-ink);
}
.lp-guar-title em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-guar-body {
  max-width: 500px; margin: 0 auto;
  font-size: 16px; line-height: 1.55;
  color: var(--shift-ink-2);
  text-align: center;
  position: relative;
}
.lp-guar-body p { margin: 0 0 10px; }
.lp-guar-body p:last-of-type { margin: 0; }
.lp-guar-kicker {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--urg);
  margin-top: 18px;
}

/* ============ TESTIMONIALS ============ */
.lp-test-head { text-align: center; margin-bottom: 40px; }
.lp-test-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
.lp-test-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--shift-border);
  margin: 0;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out-soft), box-shadow var(--dur-base) var(--ease-out-soft);
}
.lp-test-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -12px rgba(61,52,44,0.15); }
.lp-test-metric-tag {
  display: inline-flex; flex-direction: column;
  align-self: flex-start;
  background: var(--urg-soft);
  color: var(--shift-ink);
  padding: 8px 14px;
  border-radius: 10px;
  line-height: 1.1;
}
.lp-test-metric-v {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--urg-2);
  font-variant-numeric: tabular-nums;
}
.lp-test-metric-l {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--shift-ink-2);
  margin-top: 2px;
  text-transform: uppercase;
}
.lp-test-photo {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--shift-ink);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.lp-test-photo::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/></svg>");
  mix-blend-mode: overlay;
}
.lp-test-quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 17px; line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--shift-ink);
  margin: 0;
  flex: 1;
}
.lp-test-figcap {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--shift-border);
}
.lp-test-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--shift-ink);
  margin: 0;
}
.lp-test-sub {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--shift-ink-3);
  margin-top: 1px;
}

.lp-test-head .lp-test-sub {
  margin-top: 14px;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--urg);
}

/* Typographic variant */
.lp-test-typo {
  max-width: 880px; margin: 0 auto;
  display: grid; gap: 48px;
}
.lp-test-typo-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: baseline;
  border-bottom: 1px solid var(--shift-border);
  padding-bottom: 48px;
}
.lp-test-typo-row:last-child { border-bottom: none; }
.lp-test-typo-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px; letter-spacing: -0.015em;
  margin: 0;
}
.lp-test-typo-name small {
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--urg);
  margin-top: 8px;
}
.lp-test-typo-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35; letter-spacing: -0.01em;
  color: var(--shift-ink);
  margin: 0;
}

/* Carousel variant */
.lp-test-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 24px 24px;
  margin: 0 -24px;
  scrollbar-width: none;
}
.lp-test-carousel::-webkit-scrollbar { display: none; }
.lp-test-carousel-inner {
  display: flex; gap: 20px; padding: 0 24px;
}
.lp-test-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--shift-cream);
  border: 1px solid var(--shift-border);
  border-radius: 24px;
  padding: 32px;
  display: grid; gap: 18px;
}
.lp-test-metric {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--urg);
  font-variant-numeric: tabular-nums;
}
.lp-test-metric-label {
  font-size: 13px; color: var(--shift-ink-2);
  line-height: 1.4;
}
.lp-test-slide-name {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--shift-border);
  font-family: var(--font-serif);
  font-size: 17px;
}

.lp-test-stat {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3; letter-spacing: -0.015em;
  color: var(--shift-ink);
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.lp-test-stat b { color: var(--urg); font-weight: 400; font-variant-numeric: tabular-nums; }

/* ============ FINAL CTA ============ */
.lp-final {
  background: linear-gradient(180deg, var(--shift-cream) 0%, var(--urg-soft) 100%);
  text-align: center;
  padding: 80px 20px 96px;
  position: relative;
  overflow: hidden;
}
.lp-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 30% 100%, rgba(216,203,235,0.25), transparent 60%),
    radial-gradient(ellipse 500px 300px at 80% 0%, rgba(198,212,191,0.18), transparent 60%);
  pointer-events: none;
}
.lp-final-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.lp-final-lightning {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--urg);
}
.lp-final .lp-btn-urg {
  width: 100%;
  max-width: 380px;
  justify-content: center;
}
.lp-final-urgency {
  margin-top: 24px;
  font-family: var(--font-mono, monospace);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--shift-ink-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.lp-final-urgency::before {
  content: "⚡"; font-family: sans-serif;
  color: var(--urg); letter-spacing: 0;
}

/* ============ FOOTER ============ */
.lp-footer {
  background: var(--shift-ink); color: rgba(250,243,232,0.7);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
}
.lp-footer-logo {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--shift-cream);
  margin-bottom: 12px;
}
.lp-footer-logo img { height: 18px; filter: invert(1) brightness(1.2); }
.lp-footer-logo span {
  font-family: var(--font-serif); font-size: 18px; font-weight: 400;
}

/* ============ TWEAKS PANEL ============ */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 280px;
  background: #fff;
  border: 1px solid var(--shift-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 24px 60px -12px rgba(61,52,44,0.25);
  font-size: 13px;
  color: var(--shift-ink);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.tweaks-panel h4 span {
  font-family: var(--font-mono, monospace);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--shift-ink-3);
}
.tweaks-group + .tweaks-group { margin-top: 16px; }
.tweaks-group-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--shift-ink-3);
  margin-bottom: 8px;
}
.tweaks-opts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
.tweaks-btn {
  padding: 8px 6px;
  font-size: 11.5px;
  border: 1px solid var(--shift-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-transform: capitalize;
  transition: all var(--dur-base) var(--ease-out-soft);
  font-family: var(--font-sans);
  color: var(--shift-ink-2);
}
.tweaks-btn.active {
  background: var(--shift-ink); color: var(--shift-cream);
  border-color: var(--shift-ink);
}
.tweaks-btn:hover:not(.active) { background: var(--shift-cream); }

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .lp-tarja { flex-direction: column; gap: 8px; padding: 10px 16px; font-size: 12.5px; }
  .lp-hero { padding: 20px 20px 12px; }
  .lp-kicker { margin-bottom: 14px; }
  .lp-section { padding: 36px 20px; }
  .lp-pain { padding: 36px 20px; }
  .lp-pain-head { margin-bottom: 20px; }
  .lp-pain-break { margin: 4px auto; gap: 10px; }
  .lp-theta { padding: 40px 20px !important; }
  .lp-theta-head { margin-bottom: 24px !important; }
  .lp-shift { padding: 36px 20px; }
  .lp-live { padding: 36px 20px; }
  .lp-bios { padding: 44px 20px; }
  .lp-bonus-checklist { padding: 28px 24px; }
  .lp-test-typo-row { grid-template-columns: 1fr; gap: 12px; }
  .lp-guar { padding: 40px 28px 48px; border-radius: 24px; }
  .lp-vsl-play { width: 68px; height: 68px; }
}

/* ============ DENSITY TWEAK ============ */.lp-root[data-density="compact"] .lp-section,
.lp-root[data-density="compact"] .lp-offer-v2 { padding-top: 40px; padding-bottom: 56px; }
.lp-root[data-density="compact"] .lp-final { padding-top: 80px; padding-bottom: 90px; }
.lp-root[data-density="compact"] .lp-hero { padding-top: 48px; padding-bottom: 40px; }

.lp-root[data-density="airy"] .lp-section,
.lp-root[data-density="airy"] .lp-offer-v2 { padding-top: 88px; padding-bottom: 112px; }
.lp-root[data-density="airy"] .lp-final { padding-top: 160px; padding-bottom: 180px; }
.lp-root[data-density="airy"] .lp-hero { padding-top: 96px; padding-bottom: 80px; }

/* ============ TESTIMONIALS: screenshots ============ */
.lp-section.lp-section-sand {
  background: #FAEDE3;
  position: relative;
}
.lp-section.lp-section-sand::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(217,98,79,0.18);
}
.lp-section.lp-section-sand::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(217,98,79,0.18);
}
.lp-test-head {
  text-align: center;
  margin-bottom: 48px;
}

/* Desktop: masonry via CSS columns */
.lp-test-shots {
  column-count: 2;
  column-gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.lp-test-shot {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 32px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.05);
  background: #fff;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.lp-test-stat {
  text-align: center;
  margin: 56px auto 0;
  max-width: 520px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--shift-ink-2);
  letter-spacing: 0.01em;
}
.lp-test-stat b { color: var(--shift-ink); font-weight: 600; }

/* Mobile: single column stack */
@media (max-width: 720px) {
  .lp-test-shots {
    column-count: 1;
    max-width: 100%;
  }
  .lp-test-shot { margin-bottom: 24px; }
}

/* ============================================================
   V1 — LONG PAGE specific sections
   ============================================================ */

/* PRE-HEADLINE — small italic line above main H1 */
.lp-preheadline {
  display: block;
  max-width: 680px;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.45;
  color: var(--shift-ink-2);
  text-wrap: balance;
}
.lp-preheadline strong {
  color: var(--urg-2);
  font-weight: 500;
  font-style: italic;
}

/* PAIN-LIST — "¿Alguna de estas situaciones…" */
.lp-pain {
  background: #EFE9F2;
  padding: 56px 24px;
  position: relative;
}
.lp-pain::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,143,216,0.3) 30%, rgba(158,143,216,0.3) 70%, transparent);
}
.lp-pain::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,143,216,0.3) 30%, rgba(158,143,216,0.3) 70%, transparent);
}
.lp-pain-inner { max-width: 760px; margin: 0 auto; }
.lp-pain-head { text-align: center; margin-bottom: 28px; }
.lp-pain-break {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px auto 4px;
  max-width: 520px;
}
.lp-pain-break-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,143,216,0.5), transparent);
}
.lp-pain-break-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #7C6CA8;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.lp-pain h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--shift-ink);
  text-wrap: balance;
}
.lp-pain h2 em { font-style: italic; color: var(--urg); font-weight: 400; }
/* PAIN LIST — variant-aware list (styles toggled by [data-pain-style]) */
.lp-pain-list {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: grid; gap: 0;
  counter-reset: painCount;
}
.lp-pain-item {
  position: relative;
  color: var(--shift-ink);
  counter-increment: painCount;
}
.lp-pain-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--urg);
  opacity: 0.85;
}
.lp-pain-icon {
  color: var(--urg);
  flex-shrink: 0;
}
.lp-pain-kw {
  font-style: inherit;
  color: inherit;
  font-weight: inherit;
}

/* ===== Variant B — ICONS (default) ===== */
.lp-pain[data-pain-style="icons"] .lp-pain-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 4px;
  border-bottom: 1px dashed rgba(61,52,44,0.14);
  font-size: 16.5px;
  line-height: 1.5;
}
.lp-pain[data-pain-style="icons"] .lp-pain-item:last-child { border-bottom: none; }
.lp-pain[data-pain-style="icons"] .lp-pain-num { display: none; }
.lp-pain[data-pain-style="icons"] .lp-pain-icon {
  width: 40px; height: 40px;
  margin-top: -4px;
}
.lp-pain[data-pain-style="icons"] .lp-pain-kw {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--urg);
}

/* ===== Variant A — CHAT bubbles ===== */
.lp-pain[data-pain-style="chat"] .lp-pain-list {
  gap: 14px;
  max-width: 600px;
  margin: 0 auto 40px;
}
.lp-pain[data-pain-style="chat"] .lp-pain-item {
  display: flex;
  max-width: 82%;
}
.lp-pain[data-pain-style="chat"] .lp-pain-item[data-side="l"] { align-self: flex-start; margin-right: auto; }
.lp-pain[data-pain-style="chat"] .lp-pain-item[data-side="r"] { align-self: flex-end; margin-left: auto; }
.lp-pain[data-pain-style="chat"] .lp-pain-num,
.lp-pain[data-pain-style="chat"] .lp-pain-icon { display: none; }
.lp-pain[data-pain-style="chat"] .lp-pain-text {
  display: block;
  padding: 14px 18px;
  border-radius: 18px;
  background: #FFF7ED;
  border: 1px solid rgba(61,52,44,0.08);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--shift-ink);
  box-shadow: 0 1px 0 rgba(61,52,44,0.04);
  position: relative;
}
.lp-pain[data-pain-style="chat"] .lp-pain-item[data-side="l"] .lp-pain-text {
  border-bottom-left-radius: 4px;
}
.lp-pain[data-pain-style="chat"] .lp-pain-item[data-side="r"] .lp-pain-text {
  background: #EFE5F3;
  border-color: rgba(158,143,216,0.28);
  border-bottom-right-radius: 4px;
}
.lp-pain[data-pain-style="chat"] .lp-pain-kw {
  color: var(--urg);
  font-style: italic;
}

/* ===== Variant C — SCENES (numbered) ===== */
.lp-pain[data-pain-style="scenes"] .lp-pain-list {
  gap: 28px;
}
.lp-pain[data-pain-style="scenes"] .lp-pain-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(61,52,44,0.1);
}
.lp-pain[data-pain-style="scenes"] .lp-pain-item:last-child { border-bottom: none; }
.lp-pain[data-pain-style="scenes"] .lp-pain-icon { display: none; }
.lp-pain[data-pain-style="scenes"] .lp-pain-num {
  display: block;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
}
.lp-pain[data-pain-style="scenes"] .lp-pain-text {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.4;
  color: var(--shift-ink);
  text-wrap: pretty;
}
.lp-pain[data-pain-style="scenes"] .lp-pain-kw {
  font-style: italic;
  color: var(--urg);
}

/* ===== Variant D — HIGHLIGHT (editorial) ===== */
.lp-pain[data-pain-style="highlight"] .lp-pain-list {
  gap: 22px;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.lp-pain[data-pain-style="highlight"] .lp-pain-item {
  padding: 6px 0;
}
.lp-pain[data-pain-style="highlight"] .lp-pain-icon,
.lp-pain[data-pain-style="highlight"] .lp-pain-num { display: none; }
.lp-pain[data-pain-style="highlight"] .lp-pain-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.35;
  color: var(--shift-ink);
  font-weight: 400;
  text-wrap: balance;
}
.lp-pain[data-pain-style="highlight"] .lp-pain-kw {
  font-style: italic;
  color: var(--urg);
  font-weight: 500;
  background: linear-gradient(180deg, transparent 65%, rgba(217,127,100,0.16) 65%);
  padding: 0 2px;
}
.lp-pain-close {
  text-align: center;
  max-width: 580px;
  margin: 32px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--shift-border);
}
.lp-pain-close p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--shift-ink-2);
  margin: 0 0 10px;
  text-wrap: pretty;
}
.lp-pain-close-kicker {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  color: var(--urg);
  font-weight: 500;
}

/* THETA SECTION — iceberg / 5% vs 95% */
.lp-theta {
  background: var(--shift-ink);
  color: #FFF7ED;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.lp-theta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(240,176,117,0.15), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(199,184,232,0.1), transparent 55%);
  pointer-events: none;
}
.lp-theta-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.lp-theta-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.lp-theta-head .lp-eyebrow { margin-bottom: 14px; }
.lp-theta-head h2 { margin: 0; }
.lp-theta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-theta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #FFF7ED;
  text-wrap: balance;
}
.lp-theta h2 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-theta-body p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,247,237,0.82);
  margin: 0 0 14px;
}
.lp-theta-body p strong {
  color: #FFF7ED;
  font-weight: 600;
}
.lp-theta-callout {
  margin: 28px 0;
  padding: 20px 22px;
  background: rgba(255,247,237,0.04);
  border-left: 3px solid var(--urg);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.45;
  color: #FFF7ED;
}

/* Iceberg visual (SVG) */
.lp-iceberg {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 1 / 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-iceberg svg { width: 100%; height: auto; }
.lp-iceberg-label {
  position: absolute;
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,247,237,0.5);
}
.lp-iceberg-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.lp-iceberg-stat-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.lp-iceberg-stat-lbl {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,247,237,0.6);
}
.lp-iceberg-stat.top { top: 6%; right: -12px; }
.lp-iceberg-stat.top .lp-iceberg-stat-num { color: rgba(255,247,237,0.95); }
.lp-iceberg-stat.bot { bottom: 10%; left: -12px; }
.lp-iceberg-stat.bot .lp-iceberg-stat-num { color: var(--urg); }

@media (max-width: 800px) {
  .lp-theta-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-theta-head { margin-bottom: 40px; }
  .lp-theta { padding: 72px 20px; }
  .lp-iceberg { max-width: 280px; }
}

/* SHIFT ACRONYM BLOCK — "¿Qué es el Reto SHIFT?" */
.lp-shift {
  background: var(--shift-cream);
  padding: 48px 24px;
}
.lp-shift-inner { max-width: 860px; margin: 0 auto; }
.lp-shift-head { text-align: center; margin-bottom: 32px; }
.lp-shift h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--shift-ink);
  text-wrap: balance;
}
.lp-shift h2 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-acronym {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid var(--shift-border);
  border-radius: 20px;
}
.lp-acronym-letter {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--shift-border);
}
.lp-acronym-letter:last-child { border-right: none; }
.lp-acronym-letter b {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  color: var(--urg);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.lp-acronym-letter span {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.35;
  color: var(--shift-ink-2);
  text-wrap: balance;
}
.lp-shift-body {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: var(--shift-ink-2);
  text-align: center;
}
.lp-shift-body p { margin: 0 0 14px; }
.lp-shift-body p strong { color: var(--shift-ink); font-weight: 600; }

@media (max-width: 640px) {
  .lp-shift { padding: 40px 20px; }
  .lp-shift-head { margin-bottom: 24px; }
  .lp-acronym { grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 20px 8px; }
  .lp-acronym-letter { padding: 0 2px; }
  .lp-acronym-letter b { font-size: 26px; margin-bottom: 6px; }
  .lp-acronym-letter span { font-size: 9.5px; }
}

/* LO QUE VIVES — 8-8-8 breakdown */
.lp-live {
  background: #FADFC9;
  padding: 48px 24px;
  position: relative;
}
.lp-live-inner { max-width: 860px; margin: 0 auto; }
.lp-live-head { text-align: center; margin-bottom: 36px; }
.lp-live h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: var(--shift-ink);
  text-wrap: balance;
}
.lp-live h2 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-live-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--shift-ink-2);
  max-width: 520px;
  margin: 0 auto;
}
.lp-live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.lp-live-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(217,98,79,0.15);
  position: relative;
}
.lp-live-item-num {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--urg);
  margin-bottom: 14px;
}
.lp-live-item-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--shift-ink);
  margin: 0 0 12px;
}
.lp-live-item-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--shift-ink-2);
  margin: 0;
}
.lp-live-closing {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.65;
  color: var(--shift-ink-2);
}
.lp-live-closing p { margin: 0 0 10px; }
.lp-live-closing p strong { color: var(--shift-ink); font-weight: 600; }

@media (max-width: 720px) {
  .lp-live-grid { grid-template-columns: 1fr; gap: 12px; }
  .lp-live { padding: 48px 20px; }
  .lp-live-head { margin-bottom: 28px; }
  .lp-live-item-num { font-size: 11.5px; }
}

/* BIOS — Ale y Emma */
.lp-bios {
  background: var(--shift-cream);
  padding: 56px 24px;
}
.lp-bios-inner { max-width: 920px; margin: 0 auto; }
.lp-bios-head { text-align: center; margin-bottom: 44px; }
.lp-bios h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--shift-ink);
  text-wrap: balance;
}
.lp-bios h2 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-bios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.lp-bio-card {
  background: #fff;
  border: 1px solid var(--shift-border);
  border-radius: 20px;
  padding: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.lp-bio-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--shift-peach-200);
}
.lp-bio-meta {
  padding: 20px 28px 0;
}
.lp-bio-text {
  padding: 0 28px;
}
.lp-bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shift-peach-200), var(--shift-lavender-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--shift-ink);
  position: relative;
  overflow: hidden;
}
.lp-bio-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/></svg>");
  mix-blend-mode: overlay;
}
.lp-bio-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--shift-ink);
  margin: 0;
}
.lp-bio-role {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--urg);
  margin-top: 4px;
}
.lp-bio-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--shift-ink-2);
  margin: 0;
}
.lp-bio-closing {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--shift-ink-2);
  text-wrap: pretty;
}
.lp-bio-closing p { margin: 0 0 10px; }
.lp-bio-closing strong {
  font-style: normal;
  color: var(--urg);
  font-weight: 500;
}

/* TV social proof */
.lp-bio-tv {
  margin: 40px auto 32px;
  max-width: 1080px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(61,52,44,0.35), 0 12px 24px -12px rgba(61,52,44,0.2);
}
.lp-bio-tv img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 35%;
}
.lp-bio-tv figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(22,15,10,0) 0%, rgba(22,15,10,0.78) 70%, rgba(22,15,10,0.88) 100%);
  color: #FFF7ED;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.lp-bio-tv-lbl { padding-top: 18px; }
@media (max-width: 640px) {
  .lp-bio-tv { margin: 28px -4px 24px; border-radius: 16px; }
  .lp-bio-tv img { aspect-ratio: 4 / 3; }
  .lp-bio-tv figcaption { padding: 12px 16px; font-size: 10.5px; letter-spacing: 0.18em; }
  .lp-bio-tv-lbl { padding-top: 14px; }
}
.lp-bio-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--shift-border);
  color: var(--shift-ink-2);
}
.lp-bio-brands img,
.lp-bio-brands svg {
  height: 22px;
  width: auto;
  max-height: 22px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.lp-bio-brand-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--shift-ink);
  opacity: 0.7;
}
.lp-bio-brand-wm {
  height: 26px !important;
  max-height: 26px;
  width: auto;
}
@media (max-width: 640px) {
  .lp-bio-brand-wm { height: 22px !important; max-height: 22px; }
}
.lp-bio-brands img:hover,
.lp-bio-brands svg:hover { opacity: 0.9; }
@media (max-width: 640px) {
  .lp-bio-brands { gap: 18px 22px; }
  .lp-bio-brands img,
  .lp-bio-brands svg { height: 18px; max-width: 88px; }
}
.lp-bio-highlight {
  max-width: 500px;
  margin: 28px auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--shift-ink);
}
.lp-bio-highlight em { color: var(--urg); font-style: italic; }

@media (max-width: 720px) {
  .lp-bios-grid { grid-template-columns: 1fr; }
  .lp-bios { padding: 72px 20px; }
}

/* TEXT TESTIMONIALS */
.lp-test-text {
  background: #FAEDE3;
  padding: 64px 24px;
  position: relative;
}
.lp-test-text-inner { max-width: 920px; margin: 0 auto; }
.lp-test-text h2 {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  color: var(--shift-ink);
  text-wrap: balance;
}
.lp-test-text h2 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-test-text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp-test-text-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 28px;
  border: 1px solid rgba(217,98,79,0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-test-text-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--urg);
  margin: 0;
}
.lp-test-text-name::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--urg);
  opacity: 0.5;
  margin-top: 12px;
}
.lp-test-text-body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--shift-ink);
  margin: 0;
}
.lp-test-text-body strong {
  color: var(--shift-ink);
  font-weight: 600;
}

@media (max-width: 720px) {
  .lp-test-text-grid { grid-template-columns: 1fr; }
  .lp-test-text { padding: 44px 20px; }
}

/* WHY 9.99 — price rationale (inside offer or between offer and guarantee) */
.lp-why {
  background: var(--shift-cream);
  padding: 72px 24px;
  text-align: center;
}
.lp-why-inner { max-width: 560px; margin: 0 auto; }
.lp-why h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--shift-ink);
}
.lp-why h3 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-why p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--shift-ink-2);
  margin: 0;
  text-wrap: pretty;
}

/* FAQ */
.lp-faq {
  background: var(--shift-cream);
  padding: 96px 24px;
}
.lp-faq-inner { max-width: 780px; margin: 0 auto; }
.lp-faq-head { text-align: center; margin-bottom: 44px; }
.lp-faq h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--shift-ink);
}
.lp-faq h2 em { font-style: italic; color: var(--urg); font-weight: 400; }
.lp-faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--shift-border);
}
.lp-faq-item {
  border-bottom: 1px solid var(--shift-border);
}
.lp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--shift-ink);
  transition: color var(--dur-base) var(--ease-out-soft);
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  color: var(--urg);
  transition: transform var(--dur-base) var(--ease-out-soft);
  flex-shrink: 0;
}
.lp-faq-item[open] summary::after {
  content: "−";
}
.lp-faq-item summary:hover { color: var(--urg); }
.lp-faq-body {
  padding: 0 4px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--shift-ink-2);
}
.lp-faq-body p { margin: 0; }
