/* ============================================================
   MÉTODO WAC — VISUAL SYSTEM
   Dark neon aesthetic · Mobile-first
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --bg:            #050505;
  --bg-2:          #07100a;
  --bg-card:       #0a1610;
  --bg-card-2:     #0e1d14;
  --accent:        #00F58A;
  --accent-dim:    rgba(0, 245, 138, 0.10);
  --accent-border: rgba(0, 245, 138, 0.20);
  --accent-glow:   rgba(0, 245, 138, 0.18);
  --red:           #FF4D5A;
  --red-dim:       rgba(255, 77, 90, 0.10);
  --red-border:    rgba(255, 77, 90, 0.20);
  --yellow:        #FFC62F;
  --white:         #FFFFFF;
  --off-white:     #E8EDE9;
  --gray-light:    #9CA3AF;
  --gray:          #6B7280;
  --gray-dim:      #374151;
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;

  /* Border radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Layout */
  --max-w:      840px;
  --max-w-wide: 1100px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

p, h1, h2, h3, h4, h5, span, li, td, th, a, div {
  overflow-wrap: break-word;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

s { color: var(--gray); }

ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}

.container--narrow {
  max-width: var(--max-w);
}

.section {
  padding-block: var(--sp-7);
}

.section--dark        { background-color: var(--bg-2); }
.section--s1          { background-color: #060c09; }
.section--s2          { background-color: #06080d; }
.section--s3          { background-color: #090909; }
.section--accent-top  { position: relative; }

.section--accent-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--r-pill);
}

.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}

.section-desc {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.section-callout {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-top: var(--sp-4);
  line-height: 1.65;
}

/* Color utilities */
.text--accent { color: var(--accent); }
.text--red    { color: var(--red); }
.text--white  { color: var(--white); }
.text--gray   { color: var(--gray-light); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Green (primary) */
.btn--green {
  background-color: var(--accent);
  color: #000000;
  box-shadow: 0 4px 24px var(--accent-glow);
  animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(0, 245, 138, 0.35); transform: scale(1); }
  50%       { box-shadow: 0 6px 40px rgba(0, 245, 138, 0.65); transform: scale(1.03); }
}
.btn--green:hover {
  background-color: #07ffac;
  box-shadow: 0 8px 40px rgba(0, 245, 138, 0.40);
  color: #000;
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-subtle);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Sizes */
.btn--sm  { font-size: 13px; padding: 10px 20px; border-radius: var(--r-sm); }
.btn--lg  { font-size: 17px; padding: 17px 36px; }
.btn--xl  { font-size: 19px; padding: 21px 48px; border-radius: var(--r-lg); }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

.badge--green {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.badge--accent {
  background: var(--accent);
  color: #000;
}

.badge--red {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid var(--red-border);
}

.badge--dark {
  background: rgba(255, 255, 255, 0.07);
  color: var(--gray-light);
  border: 1px solid var(--border-subtle);
}

.badge--outline {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
}

/* Pulsing dot inside badges */
.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ============================================================
   REVEAL ANIMATIONS (IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Defensive: if JS fails or is blocked, content still shows */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  display: flex;
  align-items: center;
  padding-block: var(--sp-5) var(--sp-5);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Radial glow behind hero text */
.hero__glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 245, 138, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__badge {
  margin-bottom: var(--sp-3);
}

.hero__headline {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-3);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}

.hero__cta {
  margin-bottom: var(--sp-4);
}

.hero__cta-note {
  margin-top: var(--sp-2);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.03em;
}

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.hero__proof-avatars {
  display: flex;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--bg-card);
  margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.hero__proof-text {
  font-size: 13px;
  color: var(--gray-light);
}

/* ============================================================
   2. PAIN LIST
   ============================================================ */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-block: var(--sp-4);
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 16px;
  color: var(--off-white);
  padding: var(--sp-2) var(--sp-3);
  background: var(--red-dim);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  line-height: 1.55;
}

.pain-item__icon {
  color: var(--red);
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1.55;
}

/* ============================================================
   3. AGITATION GRID
   ============================================================ */
.agit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-block: var(--sp-4);
}

.agit-item {
  padding: var(--sp-3);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color 0.2s;
}

.agit-item:hover { border-color: var(--accent-border); }

.agit-item__emoji {
  font-size: 26px;
  display: block;
  margin-bottom: var(--sp-2);
}

.agit-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.agit-item p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ============================================================
   4. AUDIENCE GRID
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  margin-block: var(--sp-4);
}

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-2);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
}

.audience-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-2);
  transform: translateY(-3px);
}

.audience-card__emoji { font-size: 22px; }

.audience-checks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
}

.audience-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 16px;
  line-height: 1.55;
}

.check-icon {
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   5. MECHANISM STEPS
   ============================================================ */
.mechanism-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-block: var(--sp-5);
}

.mechanism-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
}

.mechanism-step {
  display: flex;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
  position: relative;
}

.mechanism-step__num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.mechanism-step__content { padding-top: 10px; }

.mechanism-step__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.mechanism-step__content p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* WAC Formula */
.mechanism-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  margin-top: var(--sp-5);
}

.formula-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-sm);
  min-width: 100px;
}

.formula-block--result {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}

.formula-block__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.formula-block__desc {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.formula-op, .formula-eq {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray);
}

.formula-eq { color: var(--accent); }

/* ============================================================
   6. VIDEO EMBED
   ============================================================ */
.video-embed {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  margin-top: var(--sp-4);
  border: 1px solid var(--border-subtle);
}

.video-embed__thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.2s;
}

.video-embed:hover .video-embed__overlay {
  background: rgba(0, 0, 0, 0.20);
}

.video-embed__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.video-embed:hover .video-embed__play { transform: scale(1.1); }

.video-embed:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.vturb-embed {
  margin-top: var(--sp-4);
  width: 100%;
  aspect-ratio: 16 / 9;
}

.vturb-embed vturb-smartplayer {
  display: block;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   7. MODULES GRID
   ============================================================ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.module-card {
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color 0.2s, transform 0.2s;
}

.module-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}

.module-card__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.module-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.module-card__desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ============================================================
   8. NO LIST
   ============================================================ */
.no-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-top: var(--sp-4);
}

.no-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 16px;
  color: var(--gray-light);
  padding: var(--sp-2) var(--sp-3);
  border-left: 2px solid rgba(255, 77, 90, 0.25);
  line-height: 1.55;
}

.no-item__icon {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   9. BONUSES GRID
   ============================================================ */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.bonus-card {
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: border-color 0.2s, transform 0.2s;
}

.bonus-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}

.bonus-card--highlight {
  border-color: var(--accent-border);
  background: var(--bg-card-2);
}

.bonus-card__badge  { align-self: flex-start; }
.bonus-card__emoji  { font-size: 30px; }

.bonus-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.bonus-card__desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
  flex: 1;
}

.bonus-card__value {
  font-size: 13px;
  color: var(--gray);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

/* ============================================================
   10. VALUE STACK
   ============================================================ */
.value-stack {
  display: flex;
  flex-direction: column;
  margin-top: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
  gap: var(--sp-2);
}

.value-item__name  { font-size: 15px; color: var(--gray-light); }
.value-item__price { font-size: 15px; font-weight: 600; color: var(--white); flex-shrink: 0; }

.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.value-total__label { font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.value-total__price { font-size: 18px; font-weight: 700; color: var(--gray); }

.value-today {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  background: var(--accent-dim);
}

.value-today__label { font-size: 15px; font-weight: 700; }
.value-today__price { font-family: var(--font-display); font-size: 26px; font-weight: 900; }

/* ============================================================
   11. PRICE REVEAL SECTION (Floating CTA trigger)
   ============================================================ */
.section--price-reveal {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.price-reveal {
  text-align: center;
  padding-block: var(--sp-5);
}

.price-reveal__headline {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-block: var(--sp-3);
}

.price-reveal__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  margin-block: var(--sp-4);
}

.price-reveal__old {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 15px;
  color: var(--gray);
}

.price-reveal__current {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}

.price-reveal__amount {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.price-reveal__currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-top: 14px;
}

.price-reveal__note {
  font-size: 13px;
  color: var(--gray);
  margin-top: var(--sp-1);
  letter-spacing: 0.03em;
}

.price-reveal__warning {
  margin-top: var(--sp-3);
  font-size: 13px;
  color: var(--gray-light);
}

/* ============================================================
   12. AUTHOR BIO
   ============================================================ */
.author-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
}

.author-block__photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-border);
  background: var(--bg-card-2);
}

.author-block__name {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
}

.author-block__tagline {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.author-block__desc {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.author-block__stats {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.author-stat { display: flex; flex-direction: column; gap: 2px; }
.author-stat__num   { font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.author-stat__label { font-size: 12px; color: var(--gray); }

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.testimonial-card {
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color 0.2s;
}

.testimonial-card--featured {
  border-color: var(--accent-border);
  background: var(--bg-card-2);
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border-subtle);
}

.testimonial-card__avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-card-2);
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card__author span {
  display: block;
  font-size: 12px;
  color: var(--gray);
}

/* ============================================================
   14. COMPARISON
   ============================================================ */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-block: var(--sp-4);
}

.comparison__col {
  padding: var(--sp-4);
  border-radius: var(--r-md);
}

.comparison__col--before {
  background: var(--red-dim);
  border: 1px solid var(--red-border);
}

.comparison__col--after {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}

.comparison__label { margin-bottom: var(--sp-2); }

.comparison__col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.comparison__item--no  { color: var(--gray-light); }
.comparison__item--yes { color: var(--off-white); }

.comparison__item--no  span { color: var(--red);    font-weight: 700; flex-shrink: 0; }
.comparison__item--yes span { color: var(--accent);  font-weight: 700; flex-shrink: 0; }

/* ============================================================
   15. FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-5);
  margin-top: var(--sp-5);
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: var(--sp-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: background 0.15s;
  gap: var(--sp-3);
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
  content: '+';
  font-size: 24px;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question:hover { background: rgba(255, 255, 255, 0.03); }

.faq-item__answer {
  padding: 0 var(--sp-4) var(--sp-3);
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ============================================================
   16. GUARANTEE
   ============================================================ */
.guarantee-block {
  text-align: center;
  padding: var(--sp-6) var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: 0 0 60px var(--accent-glow);
}

.guarantee-block__icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

.guarantee-block__title {
  font-size: 30px;
  font-weight: 800;
}

.guarantee-block__desc {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 480px;
}

.guarantee-block__badges {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   17. URGENCY
   ============================================================ */
.section--urgency {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 77, 90, 0.03) 50%, var(--bg) 100%);
}

.urgency-block { text-align: center; }

.urgency-block__dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 auto var(--sp-3);
  animation: pulseDot 1.5s ease-in-out infinite;
}

.urgency-block__title {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 800;
  margin-bottom: var(--sp-2);
}

.urgency-block__desc {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}

.price-history {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
}

.price-history__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
}

.price-history__item--past { opacity: 0.45; }
.price-history__item--past span:first-child {
  font-size: 20px;
  font-weight: 700;
  text-decoration: line-through;
  color: var(--gray);
}

.price-history__item--current {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}
.price-history__item--current span:first-child {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
}

.price-history__item--future {
  background: var(--red-dim);
  border: 1px solid var(--red-border);
}
.price-history__item--future span:first-child {
  font-size: 20px;
  font-weight: 700;
}

.price-history__stage {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
}

.price-history__arrow {
  font-size: 18px;
  color: var(--gray-dim);
}

/* ============================================================
   18. FINAL CTA
   ============================================================ */
.section--final-cta {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.final-cta {
  text-align: center;
  padding-block: var(--sp-5);
}

.final-cta__headline {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-block: var(--sp-2) var(--sp-3);
}

.final-cta__sub {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.65;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}

.final-cta__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--sp-4);
}

.final-cta__old-price {
  font-size: 15px;
  color: var(--gray);
}

.final-cta__new-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}

.final-cta__amount {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.final-cta__currency {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-top: 12px;
}

.final-cta__pago {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.final-cta__security {
  margin-top: var(--sp-2);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.final-cta__included {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  text-align: left;
}

.final-cta__included p {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-2);
}

.final-cta__included ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.final-cta__included li {
  font-size: 14px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  padding-block: var(--sp-6);
  padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.footer__tagline {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.footer__nav {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 14px;
  color: var(--gray-light);
  transition: color 0.15s;
}

.footer__nav a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__bottom p { font-size: 12px; color: var(--gray); line-height: 1.6; }

.footer__bottom a {
  color: var(--gray-light);
  transition: color 0.15s;
}

.footer__bottom a:hover { color: var(--accent); }

.footer__disclaimer {
  font-size: 11px !important;
  max-width: 640px;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.floating-wa.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.floating-wa:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--accent-border);
  padding: var(--sp-2) var(--sp-3);
  padding-bottom: calc(var(--sp-2) + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.floating-cta.is-active {
  transform: translateY(0);
}

.floating-cta__inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.floating-cta__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.floating-cta__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.floating-cta__price {
  font-size: 15px;
  color: var(--white);
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-cta__price strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
}

.floating-cta__close {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 14px;
  padding: 8px;
  transition: color 0.15s;
  flex-shrink: 0;
  line-height: 1;
}

.floating-cta__close:hover { color: var(--white); }

/* ============================================================
   HERO — Preheader (exclusivo para...)
   ============================================================ */
.hero__preheader {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-pill);
  padding: 8px 20px;
  margin-bottom: var(--sp-3);
  max-width: min(680px, 100%);
  line-height: 1.5;
}

/* ============================================================
   WHATSAPP PROOF SCREENSHOTS
   ============================================================ */
.whatsapp-proof {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-4);
}

.wp-screenshot {
  border-radius: var(--r-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  max-width: 300px;
  flex: 1 1 240px;
}

.wp-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}

/* ============================================================
   TE DIRÉ ALGO CLARAMENTE — Bio + Checklist
   ============================================================ */
.te-dire-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-5);
  align-items: start;
  padding: var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
}

.te-dire-block__photo img {
  width: 100%;
  max-width: 220px;
  border-radius: var(--r-md);
  object-fit: cover;
  border: 1px solid var(--accent-border);
}

.te-dire-block__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: var(--sp-3);
}

.te-dire-block__text {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.te-dire-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
}

.te-dire-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.55;
}

/* ============================================================
   PRODUCTO — "VENDE SOLO CON AUDIOS"
   ============================================================ */
.section--product {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.product-tagline {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: var(--sp-3) auto;
  max-width: 640px;
  line-height: 1.6;
}

.product-mockup {
  display: flex;
  justify-content: center;
  margin: var(--sp-4) auto;
}

.product-mockup img {
  border-radius: var(--r-lg);
  border: 1px solid var(--accent-border);
  max-width: 480px;
  width: 100%;
}


.product-desc {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.75;
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-5);
}

/* ============================================================
   MÓDULOS — Lista vertical (3 módulos WAC)
   ============================================================ */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.module-item {
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color 0.2s;
}

.module-item:hover { border-color: var(--accent-border); }

.module-item__img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.module-item__img img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 180px;
  object-fit: contain;
  display: block;
  border-radius: var(--r-md);
}

.bonus-card__img {
  display: flex;
  justify-content: center;
  margin: var(--sp-2) auto;
}

.bonus-card__img img {
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
  display: block;
  border-radius: var(--r-sm);
}

.module-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
  flex-wrap: wrap;
  gap: var(--sp-1);
}

.module-item__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
}

.module-item__value {
  font-size: 13px;
  color: var(--gray);
}

.module-item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  line-height: 1.3;
}

.module-item__desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ============================================================
   BONOS — Lista de 3 bonus cards vertical
   ============================================================ */
.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

/* ============================================================
   PRICE REVEAL — Offer box dentro de la section
   ============================================================ */
.price-reveal__offer-box {
  padding: var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: 0 0 80px rgba(0, 245, 138, 0.08);
}

.price-reveal__offer-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-4);
  line-height: 1.3;
}

.price-reveal__stack {
  text-align: left;
  padding: var(--sp-3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
}

.price-reveal__stack-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: var(--sp-2);
}

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--off-white);
  gap: var(--sp-2);
}

.stack-item:last-of-type { border-bottom: none; }

.stack-item--bonus {
  color: var(--gray-light);
  font-size: 13px;
}

.stack-divider {
  height: 1px;
  background: var(--accent-border);
  margin: var(--sp-2) 0;
}

.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-2) 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   TESTIMONIOS — Video thumbnails grid
   ============================================================ */
.testimonials-video-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.testimonials-row {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
}

.testimonials-row--2 .testimonial-video {
  flex: 0 1 420px;
}

.testimonials-row--3 .testimonial-video {
  flex: 0 1 300px;
}

.testimonial-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-video:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}

.testimonial-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: var(--accent);
  font-size: 22px;
  transition: background 0.2s;
}

.testimonial-video:hover .testimonial-video__play {
  background: rgba(0, 0, 0, 0.3);
}

/* ============================================================
   COMUNIDAD — Community block
   ============================================================ */
.comunidad-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-5);
  align-items: center;
  padding: var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  margin-top: var(--sp-4);
}

.comunidad-block__preview img {
  border-radius: var(--r-md);
  border: 1px solid var(--border-subtle);
  max-width: 200px;
  width: 100%;
  margin-inline: auto;
}

.comunidad-block__title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}

.comunidad-block__desc {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ============================================================
   PLATAFORMA — Preview screenshot
   ============================================================ */
.platform-preview {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-4);
}

.platform-preview img {
  border-radius: var(--r-lg);
  border: 1px solid var(--accent-border);
  box-shadow: 0 0 60px rgba(0, 245, 138, 0.06);
  max-width: 740px;
  width: 100%;
}

/* ============================================================
   STEPS GRID — "Este es tu momento de decidir"
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-border));
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  position: relative;
  z-index: 1;
  transition: border-color 0.2s;
}

.step-item:hover { border-color: var(--accent-border); }

.step-item__num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto var(--sp-3);
}

.step-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.step-item p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ============================================================
   WHATSAPP CONTACT BUTTON
   ============================================================ */
.whatsapp-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.whatsapp-contact__label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn--whatsapp {
  background-color: #25D366;
  color: #000;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s;
  gap: var(--sp-1);
}

.btn--whatsapp:hover {
  background-color: #20bc5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.30);
  color: #000;
}

/* ============================================================
   SHIMMER — Sweep futurista en botones verdes
   ============================================================ */
.btn--green {
  position: relative;
  overflow: hidden;
}
.btn--green::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -120%;
  width: 60%;
  height: 120%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btnShimmer 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%, 20%  { left: -120%; }
  60%, 100% { left: 170%; }
}

/* ============================================================
   HERO OFFER GRID — "Hasta hoy no sabías..."
   2 columns: texto+captura | caja de oferta
   ============================================================ */
.hero-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: start;
}

.offer-cta-box {
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
}

.offer-cta-box__product-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.offer-cta-box__pricing {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

.urgency-banner {
  width: 100%;
  background: var(--yellow);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sp-5: 36px;
    --sp-6: 48px;
    --sp-7: 52px;
    --sp-8: 72px;
  }

  .hero {
    min-height: auto;
    padding-block: 32px var(--sp-5);
  }

  .hero-offer-grid         { grid-template-columns: 1fr; }
  .agit-grid               { grid-template-columns: 1fr; }
  .audience-grid           { grid-template-columns: repeat(2, 1fr); }
  .modules-grid            { grid-template-columns: 1fr; }
  .bonuses-grid            { grid-template-columns: 1fr; }
  .testimonials-grid       { grid-template-columns: 1fr; }
  .testimonials-row { flex-wrap: wrap; }
  .testimonials-row--2 .testimonial-video { flex: 0 1 calc(50% - var(--sp-3)/2); }
  .testimonials-row--3 .testimonial-video { flex: 0 1 calc(33% - var(--sp-3)); }
  .comparison              { grid-template-columns: 1fr; }
  .steps-grid              { grid-template-columns: 1fr; }
  .steps-grid::before      { display: none; }

  .te-dire-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .te-dire-block__photo { display: flex; justify-content: center; }
  .te-dire-block__photo img { max-width: 160px; border-radius: 50%; }

  .te-dire-list li { text-align: left; }

  .author-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-block__photo {
    display: flex;
    justify-content: center;
  }

  .author-block__stats {
    justify-content: center;
  }

  .comunidad-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .comunidad-block__preview {
    display: flex;
    justify-content: center;
  }

  .mechanism-steps::before { display: none; }

  .mechanism-formula {
    flex-direction: column;
    gap: var(--sp-1);
  }

  .formula-op, .formula-eq {
    transform: rotate(90deg);
  }

  .price-history {
    gap: var(--sp-1);
  }

  .price-history__arrow { display: none; }

  .footer__nav { gap: var(--sp-2); }

  .btn--xl { font-size: 16px; padding: 18px 28px; }
  .btn--lg { font-size: 15px; padding: 15px 26px; }

  .floating-cta__price { font-size: 13px; }
}

@media (max-width: 540px) {
  /* Floating CTA: centrado, compacto, sin overflow */
  .floating-cta {
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .floating-cta__inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
  }

  .floating-cta__text {
    text-align: center;
    align-items: center;
  }

  .floating-cta__label { display: none; }

  .floating-cta__price {
    font-size: 12px;
    text-align: center;
  }

  #floating-cta-btn {
    width: 100%;
    max-width: 280px;
    font-size: 13px;
    padding: 12px 16px;
    text-align: center;
  }

  .floating-cta__close {
    position: absolute;
    top: -8px;
    right: -4px;
    padding: 4px 6px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .whatsapp-proof { flex-direction: column; align-items: center; }
  .wp-screenshot { width: 100%; max-width: 360px; flex: none; }
}

@media (max-width: 480px) {
  :root {
    --sp-4: 20px;
    --sp-5: 28px;
    --sp-6: 40px;
    --sp-7: 44px;
  }

  .container { padding-inline: 14px; }

  .audience-grid           { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row { flex-direction: column; align-items: center; }
  .testimonials-row--2 .testimonial-video,
  .testimonials-row--3 .testimonial-video { flex: 0 0 auto; width: 100%; max-width: 320px; }
  .whatsapp-proof          { flex-direction: column; align-items: center; }
  .wp-screenshot           { max-width: 280px; width: 100%; }

  .hero__proof {
    flex-direction: column;
    gap: var(--sp-1);
  }

  .hero__preheader {
    font-size: 11px;
    padding: 8px 12px;
    white-space: normal;
    text-align: center;
  }

  .mechanism-step  { gap: var(--sp-2); }
  .value-item      { padding: 12px var(--sp-2); }
  .guarantee-block { padding: var(--sp-3); }

  .price-reveal__offer-box { padding: var(--sp-3) var(--sp-2); }

  .stack-item { font-size: 12px; }

  /* Offer box sizing on small screens */
  .offer-cta-box {
    padding: var(--sp-3) var(--sp-2);
  }

  .offer-cta-box__product-title {
    font-size: 22px;
    letter-spacing: 0.03em;
  }

  .urgency-banner {
    font-size: 12px;
    padding: 10px 12px;
    word-break: break-word;
  }

  .btn--xl {
    font-size: 15px;
    padding: 16px 20px;
    word-break: break-word;
  }

  /* Badge text wrapping */
  .badge {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(24px, 7vw, 36px);
  }
}

/* ============================================================
   PRINT (keep structure, hide animations)
   ============================================================ */
@media print {
  .floating-cta,
  .hero__glow,
  .video-embed__play { display: none; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
