/* ═══════════════════════════════════════════════════════════
   SEXO DE CALIDAD — V4 STYLES
   High-converting sales funnel CSS
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,400;1,600&display=swap');

/* ─── TOKENS ─── */
:root {
  /* Colors */
  --ink:        #0f0d0d;
  --ink-soft:   #1c1a1a;
  --wine-deep:  #3a0810;
  --wine:       #5c0f1e;
  --wine-mid:   #8b1a2a;
  --wine-light: #b52235;
  --gold-deep:  #8a6220;
  --gold:       #c9953b;
  --gold-mid:   #ddb05c;
  --gold-light: #f0cb80;
  --cream-dark: #ede5d8;
  --cream:      #f6f0e6;
  --cream-soft: #faf5ec;
  --white:      #ffffff;
  --muted:      #7a6e65;
  --muted-2:    #998c82;
  --line:       rgba(90, 60, 40, 0.14);
  --line-light: rgba(90, 60, 40, 0.08);

  /* Typography */
  --sans:  'Inter', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 28px rgba(0,0,0,.14);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.24);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.38);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow { max-width: 860px; margin-inline: auto; }
.section { padding: 100px 0; }

/* ─── REVEAL ANIMATIONS ─── */
[data-reveal], [data-reveal-delay] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
[data-reveal-delay] { transition-delay: .18s; }
[data-reveal].visible, [data-reveal-delay].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.05; letter-spacing: -.03em; }
h1 em, h2 em { color: var(--gold-mid); font-style: italic; font-weight: 600; }
.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-kicker.light { color: var(--gold-light); }

/* ─── BUTTONS / CTAs ─── */
.cta-hero, .cta-main, .cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.cta-hero:hover, .cta-main:hover { transform: translateY(-3px); filter: brightness(1.06); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.cta-secondary:hover { transform: translateY(-2px); filter: brightness(1.08); }

.cta-hero {
  max-width: 540px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #f0cb80, #c9953b 50%, #b07a25);
  color: #1a0d05;
  border: 1px solid rgba(255,220,120,.45);
  box-shadow: 0 12px 36px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.4);
  font-size: 14px;
}
.cta-hero .cta-icon { font-size: 20px; }
.cta-hero .cta-text { display: flex; flex-direction: column; align-items: flex-start; }
.cta-hero .cta-text strong { font-size: 13px; letter-spacing: .06em; }
.cta-hero .cta-text small { margin-top: 2px; font-size: 10px; font-weight: 500; letter-spacing: .04em; opacity: .8; }
.cta-hero .cta-arrow { font-size: 22px; margin-left: auto; }

.cta-main {
  width: 100%;
  flex-direction: column;
  padding: 20px 28px;
  background: linear-gradient(135deg, #f0cb80, #c9953b 50%, #b07a25);
  color: #1a0d05;
  border: 1px solid rgba(255,220,120,.45);
  box-shadow: 0 14px 40px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.4);
  font-size: 15px;
  border-radius: var(--r-lg);
}
.cta-main span:first-child { letter-spacing: .06em; }
.cta-sub-text { margin-top: 4px; font-size: 11px; font-weight: 500; letter-spacing: .03em; opacity: .75; }

.cta-secondary {
  display: inline-flex;
  padding: 16px 28px;
  background: linear-gradient(135deg, #8b1a2a, #5c0f1e);
  color: var(--gold-light);
  border: 1px solid rgba(200,120,80,.3);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-size: 13px;
  border-radius: var(--r-md);
}

/* Pulse animation for primary CTAs */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 36px rgba(0,0,0,.28), 0 0 0 0 rgba(201,149,59,.3); }
  50% { box-shadow: 0 16px 44px rgba(0,0,0,.32), 0 0 0 10px rgba(201,149,59,.0); }
}
.pulse-cta { animation: pulse-glow 2.4s ease-in-out infinite; }

/* ─── URGENCY BAR ─── */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #1a0508, #2e0a10, #1a0508);
  border-bottom: 1px solid rgba(201,149,59,.4);
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 10px 20px;
  font-size: 12px;
  color: #f0dbc5;
  font-weight: 600;
}
.urgency-fire { font-size: 16px; }
.urgency-text strong { color: var(--gold-light); }
.countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 38px;
  padding: 4px 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
}
.countdown-unit span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.countdown-unit small { font-size: 8px; color: #9c8878; letter-spacing: .06em; margin-top: 1px; }
.countdown-sep { color: var(--gold); font-size: 16px; font-weight: 800; }
.urgency-cta {
  padding: 7px 16px;
  background: var(--gold);
  color: #1a0d05;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: filter .2s;
}
.urgency-cta:hover { filter: brightness(1.1); }

/* ─── HEADER ─── */
.site-header {
  height: 70px;
  padding: 0 max(20px, calc((100vw - 1160px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #130e0e;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 99;
}
.wordmark {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .07em;
}
.wordmark span { color: var(--wine-light); }
.wordmark em { margin: 0 4px; font-family: var(--serif); font-size: 15px; font-weight: 400; font-style: italic; color: #c7b8a8; }
.wordmark strong { color: var(--gold-light); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-secure { font-size: 11px; color: #8c8078; font-weight: 600; }
.header-cta {
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  color: #1a0d05;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  transition: filter .2s;
}
.header-cta:hover { filter: brightness(1.08); }

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background: radial-gradient(ellipse at 75% 20%, rgba(110,20,32,.5) 0%, transparent 40%),
              radial-gradient(ellipse at 20% 80%, rgba(50,10,15,.4) 0%, transparent 35%),
              linear-gradient(160deg, #130a0a 0%, #1e1010 45%, #0e0909 100%);
  color: white;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,149,59,.5) 40%, rgba(201,149,59,.5) 60%, transparent);
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.glow-1 { width: 500px; height: 500px; right: 5%; top: -10%; background: rgba(140,26,42,.28); }
.glow-2 { width: 300px; height: 300px; left: -5%; bottom: 0; background: rgba(100,70,20,.15); }
.glow-3 { width: 200px; height: 200px; right: 30%; top: 40%; background: rgba(201,149,59,.08); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

/* Eyebrow pill */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,149,59,.3);
  border-radius: 50px;
  margin-bottom: 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--gold-mid);
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* Hero headline */
.hero h1 {
  font-size: clamp(50px, 5.5vw, 78px);
  line-height: .96;
  letter-spacing: -.045em;
  margin-bottom: 22px;
}
.hero-sub {
  max-width: 560px;
  color: #d4c8bb;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-sub strong { color: white; }

/* Mini proof */
.mini-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  max-width: 420px;
}
.mini-avatars {
  display: flex;
  gap: -4px;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,.2);
  margin-left: -6px;
  color: white;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: #7c1c28; }
.av2 { background: #5a4410; }
.av3 { background: #1a4a6a; }
.av4 { background: #2a5a2a; }
.av5 { background: rgba(201,149,59,.4); color: var(--gold-light); font-size: 10px; }
.mini-proof-text { line-height: 1.3; }
.mini-proof-text strong { display: block; font-size: 13px; color: white; }
.stars { font-size: 11px; color: var(--gold); margin-top: 2px; }
.stars span { color: #8a7a6a; margin-left: 4px; }

/* Hero price */
.hero-price-block {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  max-width: 480px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 18px;
}
.price-was { display: flex; flex-direction: column; gap: 2px; }
.was-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; color: #7a6e65; text-transform: uppercase; }
.was-price s { font-size: 18px; color: #6a5c53; font-family: var(--serif); }
.price-now { display: flex; flex-direction: column; }
.now-label { font-size: 9px; font-weight: 800; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; margin-bottom: 2px; }
.now-amount { display: flex; align-items: flex-start; gap: 4px; }
.now-amount sup { font-size: 14px; font-weight: 800; color: var(--gold-light); margin-top: 4px; }
.now-amount strong { font-family: var(--serif); font-size: 52px; line-height: .88; color: white; font-weight: 700; }
.now-sub { font-size: 10px; color: #8a7a6a; margin-top: 3px; }

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  font-size: 11px;
  color: #b0a398;
  font-weight: 600;
}
.badge-icon { color: var(--gold); margin-right: 3px; }

/* ─── HERO VISUAL ─── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}
.book-stage {
  position: relative;
  width: 520px;
  height: 510px;
  perspective: 1200px;
}
.book-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,149,59,.18), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}
.main-book, .side-book {
  position: absolute;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
}
.main-book {
  z-index: 4;
  width: 278px;
  height: auto;
  left: 118px;
  top: 8px;
  transform: rotateY(-7deg) rotateZ(-1.5deg);
  transition: transform .4s ease;
}
.main-book:hover { transform: rotateY(-3deg) rotateZ(0deg) scale(1.02); }
.side-book { width: 155px; height: 208px; object-fit: cover; top: 250px; border: 2px solid rgba(255,255,255,.08); }
.side-one { left: 2px; z-index: 2; transform: rotate(-9deg); }
.side-two { left: 183px; z-index: 3; transform: rotate(-1.5deg); }
.side-three { right: 2px; z-index: 1; transform: rotate(9deg); }

/* Floating badges */
.floating-badges { position: absolute; top: 0; right: 0; display: flex; flex-direction: column; gap: 10px; }
.f-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  background: rgba(20,14,14,.9);
  border: 1px solid rgba(201,149,59,.4);
  border-radius: var(--r-md);
  backdrop-filter: blur(12px);
  text-align: center;
  min-width: 68px;
}
.f-badge strong { font-family: var(--serif); font-size: 22px; color: var(--gold-light); line-height: 1; }
.f-badge span { font-size: 9px; color: #9a8878; font-weight: 700; letter-spacing: .06em; margin-top: 2px; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: #1a1010;
  border-bottom: 1px solid rgba(201,149,59,.15);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 26px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.stat-item:last-child { border-right: 0; }
.stat-item strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item span {
  font-size: 10px;
  color: #7a6e65;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  background: var(--cream-soft);
  text-align: center;
}
.problem-section h2 { font-size: clamp(40px, 4.8vw, 66px); margin-bottom: 48px; }
.pain-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: left;
}
.pain-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pain-card-num {
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--wine-mid);
  letter-spacing: -.02em;
  user-select: none;
}
.pain-card-body {
  padding: 22px 20px;
}
.pain-card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.pain-card p strong { color: var(--ink); font-weight: 700; }

.problem-truth {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 720px;
  margin: 0 auto 32px;
  background: rgba(92,15,30,.04);
  border: 1px solid rgba(92,15,30,.18);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: left;
}
.truth-bar {
  flex: 0 0 4px;
  background: linear-gradient(180deg, var(--wine-mid), var(--wine-light));
  border-radius: var(--r-md) 0 0 var(--r-md);
}
.truth-body {
  padding: 20px 22px;
}
.truth-label {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--wine-mid);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.problem-truth p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }
.problem-truth strong { color: var(--ink); font-weight: 700; }

.bridge-statement {
  max-width: 600px;
  margin: 0 auto;
}
.bridge-statement p {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--wine);
  line-height: 1.3;
}
.bridge-statement p em { color: var(--wine-light); }

/* ─── SOLUTION SECTION ─── */
.solution-section {
  background: radial-gradient(ellipse at 20% 50%, rgba(50,10,18,.25), transparent 40%),
              linear-gradient(160deg, #1a1010 0%, #241515 100%);
  color: white;
}
.solution-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.solution-header h2 { font-size: clamp(40px, 4.5vw, 62px); }
.solution-sub { margin-top: 20px; color: #c0b3a8; font-size: 16px; line-height: 1.7; }

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.transform-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
}
.transform-before, .transform-after {
  padding: 16px;
  border-radius: var(--r-md);
  font-size: 13px;
  line-height: 1.55;
}
.transform-before {
  background: rgba(180,30,30,.12);
  border: 1px solid rgba(180,30,30,.2);
  color: #c8a8a8;
}
.transform-after {
  background: rgba(40,140,60,.1);
  border: 1px solid rgba(40,140,60,.2);
  color: #a8c8a8;
}
.transform-label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.transform-before .transform-label { color: #c05050; }
.transform-after .transform-label { color: #50b050; }
.transform-arrow {
  text-align: center;
  font-size: 20px;
  color: var(--gold);
  font-weight: 800;
  padding: 4px 0;
}

/* ─── PRODUCT SECTION ─── */
.product-section {
  background: radial-gradient(ellipse at 10% 60%, rgba(92,15,30,.35), transparent 35%),
              #120d0d;
  color: white;
  overflow: hidden;
}
.product-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.product-visual { position: relative; min-height: 580px; display: flex; align-items: center; justify-content: center; }
.product-img-wrap { position: relative; }
.product-ring {
  position: absolute;
  width: 450px;
  height: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201,149,59,.2);
  border-radius: 50%;
}
.product-img-wrap img {
  position: relative;
  z-index: 2;
  width: 320px;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  transform: rotate(-2.5deg);
}
.product-badge-pages {
  position: absolute;
  z-index: 4;
  bottom: 70px;
  right: -10px;
  padding: 14px 18px;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.product-badge-pages strong { display: block; font-family: var(--serif); font-size: 36px; line-height: 1; color: var(--wine); }
.product-badge-pages span { font-size: 9px; font-weight: 800; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.product-badge-main {
  position: absolute;
  z-index: 3;
  top: 60px;
  left: -10px;
  padding: 8px 14px;
  background: var(--gold);
  color: #1a0d05;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  border-radius: var(--r-sm);
}

.product-copy h2 { font-size: clamp(50px, 5vw, 68px); }
.product-tagline {
  margin: 16px 0 28px;
  color: #d8ccc0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  font-style: italic;
}
.product-benefits { display: grid; gap: 14px; margin-bottom: 28px; }
.product-benefits li { display: flex; gap: 12px; align-items: flex-start; }
.benefit-check {
  flex: 0 0 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: rgba(201,149,59,.2);
  border: 1px solid rgba(201,149,59,.4);
  border-radius: 50%;
  font-size: 11px;
  color: var(--gold-light);
  margin-top: 1px;
}
.product-benefits li div { font-size: 14px; line-height: 1.55; color: #d0c4ba; }
.product-benefits li strong { color: var(--gold-light); }

.product-value-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,149,59,.2);
  border-radius: var(--r-md);
  margin-bottom: 24px;
  font-size: 13px;
  color: #b0a095;
  line-height: 1.5;
}
.product-value-note strong { color: var(--gold-light); }

.product-note { margin-top: 10px; font-size: 10px; color: #6a5e56; }

/* ─── BONUSES SECTION ─── */
.bonuses-section { background: var(--cream-dark); }
.bonuses-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.bonuses-header h2 { font-size: clamp(40px, 4.5vw, 60px); }
.bonuses-sub { margin-top: 16px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.bonus-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.bonus-tag-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--ink-soft);
}
.bonus-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold-light);
}
.bonus-value {
  font-size: 9px;
  font-weight: 700;
  color: #6a5e56;
  letter-spacing: .04em;
}

.bonus-img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 20px 0;
  min-height: 280px;
  background: linear-gradient(180deg, #1e1414, #130d0d);
}
.bonus-img-wrap img {
  width: 160px;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.5));
}
.bonus-copy { padding: 24px 22px 26px; }
.bonus-copy h3 { font-size: 28px; line-height: .95; margin-bottom: 4px; }
.bonus-copy h3 em { color: var(--wine-mid); }
.bonus-pages { font-size: 10px; font-weight: 700; color: var(--muted-2); letter-spacing: .08em; margin-bottom: 12px; text-transform: uppercase; }
.bonus-copy > p { font-size: 13px; line-height: 1.6; color: var(--muted); margin-bottom: 16px; }
.bonus-bullets { display: grid; gap: 8px; }
.bonus-bullets li { font-size: 12px; color: var(--muted); font-weight: 500; }
.bonus-bullets li::before { content: none; }

/* Value Stack */
.value-stack {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: #1a1010;
  border: 1px solid rgba(201,149,59,.35);
  border-radius: var(--r-xl);
  color: white;
  text-align: center;
}
.value-stack h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.value-rows { display: grid; gap: 10px; margin-bottom: 32px; text-align: left; }
.value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.value-name { color: #c4b8ae; }
.value-price { font-weight: 700; color: #6a5e56; }
.value-price.crossed { text-decoration: line-through; }
.value-total-row { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.value-total-row .value-name strong { color: #d8d0c8; }
.total-crossed { color: #8a7a6a; }
.value-today-row {
  background: rgba(201,149,59,.1);
  border: 1px solid rgba(201,149,59,.3);
  padding: 16px;
}
.value-today-row .value-name strong { color: var(--gold-light); font-size: 15px; }
.today-price { font-family: var(--serif); font-size: 28px; color: var(--gold-light); }

.checkout-note {
  margin-top: 12px;
  font-size: 11px;
  color: #6a6060;
  font-weight: 600;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--cream-soft); }
.testimonials-section h2 { font-size: clamp(38px, 4.2vw, 58px); text-align: center; margin-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.testimonial-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card.featured {
  grid-column: 1 / -1;
  background: radial-gradient(ellipse at top right, rgba(92,15,30,.05), transparent),
              white;
  border-color: rgba(201,149,59,.3);
}
.test-stars { font-size: 16px; color: var(--gold); margin-bottom: 14px; }
.test-quote {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  color: #4a3f38;
  font-style: italic;
  margin-bottom: 20px;
}
.featured .test-quote { font-size: 17px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--wine-mid));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  flex: 0 0 40px;
}
.test-author strong { display: block; font-size: 14px; color: var(--ink); }
.test-author span { font-size: 11px; color: var(--muted-2); }

.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px;
  background: var(--ink-soft);
  border-radius: var(--r-lg);
  color: white;
}
.proof-bar-item { text-align: center; }
.proof-bar-item strong { display: block; font-family: var(--serif); font-size: 30px; color: var(--gold-light); }
.proof-bar-item span { font-size: 11px; color: #7a6e65; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.proof-bar-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ─── FOR WHOM ─── */
.forwhom-section { background: var(--cream-dark); }
.forwhom-section h2 { font-size: clamp(38px, 4.2vw, 58px); text-align: center; margin-bottom: 48px; }
.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.forwhom-col {
  padding: 32px;
  border-radius: var(--r-lg);
}
.yes-col {
  background: rgba(30,100,50,.06);
  border: 1px solid rgba(30,100,50,.2);
}
.no-col {
  background: rgba(160,30,30,.05);
  border: 1px solid rgba(160,30,30,.15);
}
.forwhom-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
.yes-col h4 { color: #2a8040; }
.no-col h4 { color: #a03030; }
.forwhom-col ul { display: grid; gap: 12px; }
.forwhom-col li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  padding-left: 4px;
}

/* ─── OFFER SECTION ─── */
.offer-section {
  background: linear-gradient(160deg, #ede4d2, #e0d4be);
}
.offer-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.offer-books-visual {
  position: relative;
  min-height: 560px;
}
.offer-books-visual img {
  position: absolute;
  width: 220px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
}
.ob-1 { left: 4%; top: 110px; transform: rotate(-9deg); width: 195px; }
.ob-2 { z-index: 4; left: 27%; top: 40px; width: 255px; transform: rotate(-1.5deg); }
.ob-3 { z-index: 3; right: 4%; top: 110px; transform: rotate(8deg); width: 195px; }
.ob-4 { z-index: 2; right: 2%; bottom: 10px; width: 165px; transform: rotate(5deg); }

.offer-copy h2 { font-size: clamp(44px, 4.6vw, 60px); margin-bottom: 28px; }

.offer-includes-list { display: grid; gap: 10px; margin-bottom: 28px; }
.oi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: #4a3f38;
  font-weight: 500;
}
.oi-check {
  font-size: 14px;
  font-weight: 800;
  color: var(--wine);
  flex: 0 0 auto;
}
.highlight-item { background: rgba(92,15,30,.06); border-color: rgba(92,15,30,.2); }
.highlight-item .oi-check { color: var(--gold-deep); }

.big-price-block {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
}
.bpb-was { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.bpb-was span { font-size: 12px; color: var(--muted-2); }
.bpb-was strong s { font-family: var(--serif); font-size: 24px; color: #a09080; }
.bpb-now small { font-size: 10px; font-weight: 800; letter-spacing: .12em; color: var(--wine); text-transform: uppercase; display: block; margin-bottom: 4px; }
.bpb-amount { display: flex; align-items: flex-start; gap: 5px; }
.bpb-amount sup { font-size: 16px; font-weight: 800; color: var(--wine); margin-top: 6px; }
.bpb-amount strong { font-family: var(--serif); font-size: 64px; line-height: .88; color: var(--wine); font-weight: 700; }

.local-currency-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 18px;
  background: white;
  border: 1px solid rgba(201,149,59,.4);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.lcb-icon { font-size: 24px; flex: 0 0 auto; margin-top: 2px; }
.lcb-text strong { display: block; font-size: 13px; color: var(--wine); margin-bottom: 3px; }
.lcb-text p { margin: 0; font-size: 12px; line-height: 1.5; color: var(--muted); }

.offer-micro-trust { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px; font-size: 11px; color: var(--muted); font-weight: 600; }
.currency-note { margin-top: 12px; font-size: 10px; color: var(--muted-2); line-height: 1.5; max-width: 480px; }

/* ─── GUARANTEE ─── */
.guarantee-section { background: var(--cream-soft); }
.guarantee-box {
  max-width: 900px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 52px;
  background: white;
  border: 1px solid rgba(201,149,59,.5);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201,149,59,.1);
  margin: 0 auto;
}
.guarantee-seal-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.guarantee-seal {
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  outline: 2px solid rgba(201,149,59,.3);
  outline-offset: -10px;
  border-radius: 50%;
  color: var(--wine);
}
.gs-number { font-family: var(--serif); font-size: 52px; line-height: .8; }
.gs-label { font-size: 16px; font-weight: 900; letter-spacing: .08em; }
.gs-sub { font-size: 9px; font-weight: 900; letter-spacing: .14em; color: var(--gold-deep); margin-top: 4px; }
.guarantee-caption { font-size: 11px; font-weight: 700; color: var(--muted-2); letter-spacing: .08em; text-align: center; }

.guarantee-text h2 { font-size: clamp(32px, 3.5vw, 44px); margin-bottom: 16px; }
.guarantee-text h2 em { color: var(--wine-mid); }
.guarantee-text > p { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.guarantee-features { display: flex; flex-wrap: wrap; gap: 10px; }
.guarantee-features span {
  padding: 7px 14px;
  background: rgba(40,140,60,.07);
  border: 1px solid rgba(40,140,60,.2);
  border-radius: 50px;
  font-size: 12px;
  color: #2a7040;
  font-weight: 600;
}

/* ─── FAQ ─── */
.faq-section { background: var(--cream-dark); }
.faq-shell { max-width: 860px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-header h2 { font-size: clamp(38px, 4vw, 54px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  min-height: 68px;
  color: var(--ink);
  text-align: left;
}
.faq-item button span { font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.3; }
.faq-item button i {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(90,60,40,.25);
  border-radius: 50%;
  font-style: normal;
  font-size: 18px;
  color: var(--wine);
  transition: background .2s, color .2s;
}
.faq-item.open button i { background: var(--wine); color: white; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 0 52px 20px 4px; }

/* ─── FINAL CTA ─── */
.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(140,20,40,.5), transparent 45%),
              linear-gradient(160deg, #130a0a, #1e1010);
  color: white;
  text-align: center;
}
.final-bg-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(140,20,40,.15), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.final-cta-box { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.final-cta-box h2 { font-size: clamp(44px, 5.2vw, 70px); margin-bottom: 20px; }
.final-sub { color: #a09890; font-size: 14px; margin-bottom: 28px; }
.final-price-reminder {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,149,59,.3);
  border-radius: 50px;
  margin-bottom: 32px;
  font-size: 16px;
}
.fpr-was { color: #6a5e56; }
.fpr-was s { font-family: var(--serif); font-size: 18px; }
.fpr-arrow { color: var(--gold); font-size: 18px; }
.fpr-now { font-family: var(--serif); font-size: 28px; color: var(--gold-light); font-weight: 700; }
.fpr-label {
  padding: 3px 10px;
  background: var(--wine);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}
.final-cta-box .cta-main { max-width: 580px; margin: 0 auto; }
.final-note { display: block; margin-top: 16px; font-size: 11px; color: #5a5050; }

/* ─── FOOTER ─── */
footer {
  padding: 40px 0 100px;
  background: #0e0a0a;
  color: #6a6260;
}
.footer-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 24px 70px; align-items: start; }
.footer-mark { color: white; }
.footer-grid p { max-width: 660px; font-size: 10px; line-height: 1.75; }
.copyright { grid-column: 2; font-size: 10px; }

/* ─── MOBILE STICKY ─── */
.mobile-sticky {
  display: none;
}
@media (max-width: 640px) {
  .mobile-sticky {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    z-index: 200;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px 10px 16px;
    background: rgba(20,14,14,.97);
    border: 1px solid rgba(201,149,59,.6);
    border-radius: var(--r-md);
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(120%);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .mobile-sticky.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .ms-left { display: flex; flex-direction: column; }
  .ms-left small { font-size: 8px; font-weight: 700; letter-spacing: .08em; color: #7a6e65; text-transform: uppercase; }
  .ms-left strong { font-family: var(--serif); font-size: 22px; color: var(--gold-light); line-height: 1.1; }
  .ms-btn {
    padding: 13px 16px;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
    color: #1a0d05;
    border-radius: var(--r-sm);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    white-space: nowrap;
    text-transform: uppercase;
  }
}

/* ─── RESPONSIVE: TABLET ─── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 48px; }
  .hero-visual { min-height: 420px; }
  .book-stage { transform: scale(.78); transform-origin: top center; }
  .floating-badges { top: auto; right: auto; bottom: 0; left: 0; flex-direction: row; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(3) { border-bottom: 0; }

  .pain-cards { grid-template-columns: 1fr; max-width: 600px; }

  .transformation-grid { grid-template-columns: 1fr; }
  .transform-item { flex-direction: row; align-items: center; gap: 12px; }
  .transform-before, .transform-after { flex: 1; }
  .transform-arrow { padding: 0; }

  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-visual { min-height: 460px; }

  .bonus-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { grid-column: 1; }

  .forwhom-grid { grid-template-columns: 1fr; max-width: 600px; }

  .offer-shell { grid-template-columns: 1fr; gap: 40px; }
  .offer-books-visual { min-height: 440px; max-width: 560px; margin-inline: auto; }

  .guarantee-box { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .guarantee-seal-wrap { flex-direction: column; }
  .guarantee-features { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
}

/* ─── RESPONSIVE: MOBILE ─── */
@media (max-width: 640px) {
  .shell { width: calc(100% - 28px); }

  /* Urgency bar */
  .urgency-inner { padding: 8px 14px; font-size: 10px; gap: 8px 12px; }
  .countdown-unit span { font-size: 15px; }
  .urgency-cta { font-size: 9px; padding: 6px 12px; }

  /* Header */
  .site-header { height: 58px; padding-inline: 14px; }
  .wordmark { font-size: 13px; }
  .header-secure { display: none; }
  .header-cta { font-size: 9px; padding: 8px 12px; }

  /* Hero */
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: clamp(44px, 13.5vw, 60px); }
  .eyebrow-pill { font-size: 9px; padding: 6px 12px; }
  .hero-sub { font-size: 15px; }
  .mini-proof { max-width: 100%; }
  .now-amount strong { font-size: 46px; }
  .cta-hero { padding: 15px 18px; font-size: 12px; max-width: 100%; }
  .hero-visual { min-height: 320px; }
  .book-stage { width: 500px; height: 430px; transform: scale(.62); transform-origin: top center; }
  .floating-badges { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 18px 10px; }
  .stat-item strong { font-size: 26px; }

  /* Section headings */
  .section { padding: 72px 0; }
  .section-kicker { font-size: 9px; letter-spacing: .14em; }

  /* Problem */
  .problem-section h2 { font-size: 40px; margin-bottom: 32px; }

  /* Bonuses */
  .bonuses-header h2 { font-size: 40px; }
  .value-stack { padding: 28px 22px; }

  /* Testimonials */
  .testimonials-section h2 { font-size: 38px; }
  .proof-bar { flex-direction: column; gap: 18px; }
  .proof-bar-sep { width: 60px; height: 1px; }

  /* Offer */
  .offer-books-visual { min-height: 340px; transform: scale(.8); transform-origin: center top; margin-bottom: -30px; }
  .bpb-amount strong { font-size: 54px; }

  /* Guarantee */
  .guarantee-box { padding: 30px 22px; }
  .guarantee-box h2 { font-size: 30px; }

  /* FAQ */
  .faq-header h2 { font-size: 38px; }
  .faq-item button span { font-size: 16px; }

  /* Final CTA */
  .final-cta-section { padding: 80px 0 100px; }
  .final-cta-box h2 { font-size: 42px; }
  .final-price-reminder { font-size: 14px; flex-wrap: wrap; justify-content: center; }

  /* Footer */
  footer { padding-bottom: 120px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal], [data-reveal-delay] { opacity: 1; transform: none; }
}

/* ─── FOCUS ─── */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
