/* ═══════════════════════════════════════════════════════════════════════════
   comprar.css — Complete styles for comprar.html (purchase/sales page)
   Warm dark theme + gold accent — luxury candle brand + Apple product page
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   1. CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --obsidiana: #0B0A0D;
  --obsidiana-light: #100c14;
  --obsidiana-surface: #1a1920;

  /* Gold Accent System */
  --dorado: #F7B500;
  --dorado-soft: #c8a96e;
  --dorado-texto: #E0C07B;
  --dorado-border: rgba(224, 192, 123, 0.55);

  /* Text */
  --texto-claro: #FBF5E5;
  --texto-muted: rgba(251, 245, 229, 0.6);

  /* Glass / Transparency */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --section-padding: 6rem 1.5rem;
  --transition: 0.3s ease;

  /* Light section tokens (hero, guarantee) */
  --bg-ivory: #f0e6ce;
  --bg-cream: #f5edd6;
  --text-dark: #1c1810;
  --text-muted-dark: rgba(28, 24, 16, 0.55);
  --gold-dark: #7a5e16;
}


/* ═══════════════════════════════════════════════════════════════════
   2. RESET
   ═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

a {
  color: var(--dorado-texto);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--dorado);
  opacity: 1;
}

ul, ol {
  list-style: none;
}


/* ═══════════════════════════════════════════════════════════════════
   3. BASE — WARM DARK THEME
   ═══════════════════════════════════════════════════════════════════ */
body {
  background-color: var(--obsidiana);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(247, 181, 0, 0.16), transparent 32%),
    radial-gradient(circle at 82% 74%, rgba(230, 168, 70, 0.22), transparent 42%),
    radial-gradient(circle at 50% 120%, rgba(114, 78, 26, 0.2), transparent 40%),
    linear-gradient(160deg, rgba(12, 8, 18, 0.97), rgba(15, 10, 18, 0.94));
  background-blend-mode: screen, screen, soft-light, normal;
  background-attachment: fixed;
  color: var(--texto-claro);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding);
}

.hidden {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════════════
   4. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dorado-texto);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 0.5rem;
}

/* Section labels — small uppercase with tracking */
.section-label {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dorado-soft);
  margin-bottom: 1rem;
}

/* Gold divider utility */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dorado-texto), transparent);
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════════
   5. SECTION BACKGROUNDS — ALTERNATING WARM GRADIENTS
   ═══════════════════════════════════════════════════════════════════ */
.section-dark-a {
  background:
    radial-gradient(circle at 30% 50%, rgba(247, 181, 0, 0.08), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(120, 82, 32, 0.12), transparent 35%),
    linear-gradient(170deg, #0e0c12 0%, #100c14 50%, #0b0a0d 100%);
}

.section-dark-b {
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 196, 119, 0.06), transparent 35%),
    linear-gradient(170deg, #0b0a0d 0%, #0e0c12 50%, #0b0a0d 100%);
}

.section-dark-c {
  background:
    radial-gradient(circle at 50% 20%, rgba(247, 181, 0, 0.1), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(120, 82, 32, 0.15), transparent 35%),
    linear-gradient(170deg, #100c14 0%, #0e0c12 50%, #0b0a0d 100%);
}


/* ═══════════════════════════════════════════════════════════════════
   6. GLASS CARD
   ═══════════════════════════════════════════════════════════════════ */
.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(224, 192, 123, 0.35);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow:
    0 0 60px rgba(247, 181, 0, 0.15),
    0 0 120px rgba(247, 181, 0, 0.06),
    0 0 20px rgba(200, 169, 110, 0.1);
}


/* ═══════════════════════════════════════════════════════════════════
   7. CTA BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.cta-btn {
  display: inline-block;
  background: linear-gradient(120deg, #ffd873, #f7b500);
  color: #0c0a0f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4px;
  padding: 1.05rem 2.8rem;
  border-radius: 999px;
  border: 1px solid var(--dorado-border);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28), 0 0 16px rgba(247, 181, 0, 0.08);
}

.cta-btn:hover {
  background: linear-gradient(120deg, #ffe7a3, #f7b500);
  border-color: rgba(224, 192, 123, 0.85);
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35), 0 0 22px rgba(247, 181, 0, 0.35);
  color: #0c0a0f;
  opacity: 1;
}

.cta-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.cta-large {
  font-size: 1.1rem;
  padding: 1.15rem 3rem;
}

/* Secondary / ghost CTA */
.cta-secondary {
  background: transparent;
  color: var(--dorado-texto);
  border: 2px solid rgba(224, 192, 123, 0.4);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  transition: all var(--transition);
  box-shadow: none;
}

.cta-secondary:hover {
  border-color: rgba(224, 192, 123, 0.65);
  background: rgba(224, 192, 123, 0.08);
  transform: translateY(-1px);
  color: var(--dorado-texto);
  box-shadow: none;
}


/* ═══════════════════════════════════════════════════════════════════
   8. LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════════════════ */
.lang-switcher {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.lang-switch-btn {
  background: none;
  border: none;
  color: var(--texto-muted);
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.lang-switch-btn:hover {
  color: var(--dorado-texto);
}

.lang-switch-btn.is-active {
  color: var(--dorado);
  font-weight: 600;
}

.lang-switch-sep {
  color: rgba(251, 245, 229, 0.25);
}

/* On light sections, override switcher colors */
.section-guarantee .lang-switcher {
  color: var(--text-dark);
}


/* ═══════════════════════════════════════════════════════════════════
   9. SECTION 01 — HERO (Dark gold premium finish)
   ═══════════════════════════════════════════════════════════════════ */
.section-hero {
  background-color: var(--obsidiana);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: -16% -6%;
  background:
    radial-gradient(circle at 48% 32%, rgba(255, 202, 120, 0.32), transparent 40%),
    radial-gradient(circle at 60% 60%, rgba(255, 174, 94, 0.3), transparent 42%),
    radial-gradient(circle at 40% 80%, rgba(247, 181, 0, 0.24), transparent 50%);
  filter: blur(4px) saturate(1.1);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.section-hero::after {
  content: '';
  position: absolute;
  inset: -16% -6%;
  background:
    radial-gradient(ellipse at 50% 95%, rgba(255, 202, 120, 0.3), transparent 48%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  z-index: 0;
  pointer-events: none;
}

.section-hero .section-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Hero text — dark text on ivory */
.hero-text {
  order: 1;
}

.hero-text h1 {
  color: var(--dorado-texto);
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-greeting {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--dorado-soft);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-sub {
  color: var(--texto-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.hero-trust {
  color: var(--texto-muted);
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* Discount banner */
.discount-banner {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--dorado-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--dorado-texto);
  line-height: 1.5;
}

/* Countdown timer */
.countdown-container {
  margin-bottom: 1.25rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--texto-muted);
}

.countdown-timer .countdown-label {
  margin-right: 0.25rem;
  font-weight: 500;
}

.countdown-digits {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dorado-border);
  border-radius: 6px;
  padding: 0.3rem 0.55rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dorado-texto);
  min-width: 2.5rem;
  text-align: center;
}

.countdown-sep {
  color: var(--dorado-texto);
  font-weight: 600;
  font-size: 1.1rem;
}

.countdown-expired {
  color: var(--texto-muted);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* Hero CTA */
.hero-cta-btn {
  font-size: clamp(1rem, 2vw, 1.15rem);
}

/* Hero visual */
.hero-visual {
  order: 2;
  text-align: center;
}

.hero-mockup {
  width: clamp(200px, 50vw, 380px);
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0px 20px 60px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(247, 181, 0, 0.08));
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-block;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--dorado-texto);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}


/* ═══════════════════════════════════════════════════════════════════
   10. SECTION 02 — SOCIAL PROOF STRIP
   ═══════════════════════════════════════════════════════════════════ */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--dorado);
  line-height: 1.1;
}

.stat-no-counter {
  /* Same styling, but JS skips counter animation */
}

.stat-label {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  color: var(--texto-muted);
  font-weight: 400;
}

.stat-divider {
  color: var(--dorado-soft);
  font-size: 1.8rem;
  opacity: 0.4;
  line-height: 1;
}

/* Etsy badge */
.etsy-badge-wrap {
  margin-left: 0.5rem;
}

.etsy-star-badge {
  display: inline-block;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dorado);
  background: rgba(247, 181, 0, 0.08);
  border: 1px solid rgba(247, 181, 0, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}


/* ═══════════════════════════════════════════════════════════════════
   11. SECTION 03 — WHAT IS THIS?
   ═══════════════════════════════════════════════════════════════════ */
.what-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.what-inner h2 {
  margin-bottom: 2rem;
}

.what-body {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.what-body p {
  color: rgba(251, 245, 229, 0.75);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.what-body p:last-child {
  margin-bottom: 0;
}

/* Pull quote */
.pull-quote {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  border-left: 3px solid var(--dorado);
  padding: 2rem 2.5rem;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--dorado-texto);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════════
   12. SECTION 04 — BENEFITS
   ═══════════════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 181, 0, 0.15), rgba(200, 169, 110, 0.08));
  border: 1px solid rgba(224, 192, 123, 0.3);
}

.benefit-icon span {
  color: var(--dorado);
  font-size: 1.2rem;
  line-height: 1;
}

.benefit-text h3 {
  font-family: var(--font-heading);
  color: var(--dorado-texto);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 0.4rem;
}

.benefit-text p {
  color: rgba(251, 245, 229, 0.65);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════════
   13. SECTION 05 — SAMPLE PEEK
   ═══════════════════════════════════════════════════════════════════ */
.sample-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sample-card {
  text-align: left;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem 3rem;
}

.sample-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sample-chapter-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dorado);
  background: rgba(247, 181, 0, 0.1);
  border: 1px solid rgba(247, 181, 0, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}

.sample-page {
  font-size: 0.82rem;
  color: var(--texto-muted);
  font-style: italic;
}

.sample-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 600;
  color: var(--dorado-texto);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.sample-body {
  position: relative;
}

.sample-body p {
  color: rgba(251, 245, 229, 0.75);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sample-callout {
  border-left: 3px solid var(--dorado);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  background: rgba(247, 181, 0, 0.04);
  border-radius: 0 8px 8px 0;
}

.sample-callout,
.sample-callout p {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-style: italic;
  color: var(--dorado-texto);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Fade overlay at bottom of sample */
.sample-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
    rgba(26, 25, 32, 0),
    rgba(26, 25, 32, 0.6) 40%,
    rgba(26, 25, 32, 0.95));
  pointer-events: none;
  z-index: 2;
}

.sample-continuation {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--texto-muted);
  font-size: 0.88rem;
  font-style: italic;
  margin-top: -0.5rem;
  padding-top: 0.5rem;
}

/* Badges below sample card */
.sample-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.sample-badges span {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  color: var(--dorado-soft);
  font-weight: 500;
  letter-spacing: 0.03em;
}


/* ═══════════════════════════════════════════════════════════════════
   14. SECTION 06 — 28 CHAPTERS (Accordion)
   ═══════════════════════════════════════════════════════════════════ */
.chapters-accordion {
  max-width: 800px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.chapter-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition);
}

.chapter-accordion-item:last-child {
  border-bottom: none;
}

.chapter-accordion-item.is-open {
  border-left: 3px solid var(--dorado);
  padding-left: 0.75rem;
}

.chapter-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--texto-claro);
  padding: 1rem 2.5rem 1rem 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.chapter-accordion-btn:hover {
  color: var(--dorado-texto);
}

/* Chapter number badge */
.chapter-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 181, 0, 0.15), rgba(200, 169, 110, 0.08));
  border: 1px solid rgba(224, 192, 123, 0.3);
  color: var(--dorado);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.chapter-accordion-item.is-open .chapter-badge {
  background: linear-gradient(135deg, #ffd873, #f7b500);
  color: var(--obsidiana);
  box-shadow: 0 0 16px rgba(247, 181, 0, 0.25);
  border-color: transparent;
}

.chapter-accordion-btn span:not(.chapter-badge) {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 500;
  line-height: 1.35;
}

/* Plus/minus indicator */
.chapter-accordion-btn::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--dorado-soft);
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}

.chapter-accordion-item.is-open .chapter-accordion-btn::after {
  content: '\2212'; /* minus sign */
  color: var(--dorado);
}

.chapter-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 3.25rem;
}

.chapter-accordion-item.is-open .chapter-accordion-body {
  max-height: 300px;
  padding: 0 0 1rem 3.25rem;
}

.chapter-accordion-body p {
  color: rgba(251, 245, 229, 0.6);
  font-size: 0.92rem;
  line-height: 1.65;
}

.chapters-bottom {
  text-align: center;
  color: var(--dorado-soft);
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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


/* ═══════════════════════════════════════════════════════════════════
   15. SECTION 07 — THIS IS FOR YOU IF...
   ═══════════════════════════════════════════════════════════════════ */
.foryou-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.foryou-list {
  text-align: left;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.foryou-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  color: rgba(251, 245, 229, 0.8);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.foryou-list li:last-child {
  border-bottom: none;
}

.foryou-star {
  color: var(--dorado);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.6;
}

.foryou-quote {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.foryou-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  color: var(--dorado-texto);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════════
   16. SECTION 08 — VIDEO TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonial-featured {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  padding: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: var(--obsidiana-surface);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* YouTube Shorts — vertical video */
.video-container.video-short {
  aspect-ratio: 9 / 16;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

.testimonial-caption {
  text-align: center;
  padding: 0.5rem 0;
}

.testimonial-caption strong {
  display: block;
  color: var(--dorado-texto);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.testimonial-caption p {
  color: var(--texto-muted);
  font-size: 0.88rem;
  margin-top: 0.3rem;
  line-height: 1.5;
}

.testimonial-caption a {
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--dorado-texto);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonial-caption a:hover {
  color: var(--dorado);
}

.video-spanish-note {
  font-size: 0.8rem !important;
  color: var(--texto-muted) !important;
  font-style: italic;
  margin-top: 0.25rem !important;
}


/* ═══════════════════════════════════════════════════════════════════
   17. SECTION 09 — TESTIMONIALS VOLUME (Carousel + Etsy Reviews)
   ═══════════════════════════════════════════════════════════════════ */

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 840px;
  margin: 0 auto 2.5rem;
  padding: 0 3rem;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-page {
  display: none;
  animation: fadeStep 0.35s ease;
}

.carousel-page.is-active {
  display: block;
}

@keyframes fadeStep {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 192, 123, 0.3);
  color: var(--dorado-texto);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: rgba(247, 181, 0, 0.15);
  border-color: rgba(224, 192, 123, 0.6);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: -0.5rem; }
.carousel-next { right: -0.5rem; }

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.is-active {
  background: var(--dorado);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(247, 181, 0, 0.4);
}

/* Testimonial photo grids */
.testimonial-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-photos img {
  border-radius: 10px;
  width: 100%;
  object-fit: contain;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}

.testimonial-photos img:hover {
  transform: scale(1.02);
  border-color: rgba(224, 192, 123, 0.3);
}

/* Etsy Reviews grid */
.etsy-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.etsy-review-card {
  padding: 1.75rem 1.5rem;
}

.etsy-stars {
  color: var(--dorado);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.etsy-review-text {
  color: rgba(251, 245, 229, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.etsy-reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.etsy-reviewer-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dorado-texto);
}

.etsy-verified {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dorado-soft);
  background: rgba(247, 181, 0, 0.08);
  border: 1px solid rgba(247, 181, 0, 0.15);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.testimonials-cta {
  text-align: center;
  margin-top: 2.5rem;
}


/* ═══════════════════════════════════════════════════════════════════
   18. SECTION 10 — HOW IT WORKS (Steps)
   ═══════════════════════════════════════════════════════════════════ */
.steps-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 24px;
}

/* Vertical connector line */
.steps-connector {
  position: absolute;
  left: 47px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--dorado),
    rgba(224, 192, 123, 0.3) 50%,
    rgba(224, 192, 123, 0.1));
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd873, #f7b500);
  color: var(--obsidiana);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(247, 181, 0, 0.2);
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--dorado-texto);
  margin-bottom: 0.35rem;
}

.step-content p {
  color: rgba(251, 245, 229, 0.65);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════
   19. SECTION 11 — GUARANTEE (Ivory background, dark text)
   ═══════════════════════════════════════════════════════════════════ */
.section-guarantee {
  background-color: var(--bg-ivory);
  background-image:
    radial-gradient(circle at 50% 50%, rgba(200, 169, 110, 0.1), transparent 40%);
}

.guarantee-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-inner h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Guarantee seal */
.guarantee-seal {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: rgba(122, 94, 22, 0.06);
}

.guarantee-seal-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.guarantee-seal-text {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 0.15rem;
  line-height: 1.2;
  text-align: center;
}

.guarantee-body {
  color: var(--text-muted-dark);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-signature {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-dark);
}


/* ═══════════════════════════════════════════════════════════════════
   20. SECTION 12 — PURCHASE FORM
   ═══════════════════════════════════════════════════════════════════ */
.section-form .section-inner {
  max-width: 640px;
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
}

.form-card h2 {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
}

.form-subtitle {
  color: var(--texto-muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Lead summary card (pre-filled data) */
.lead-summary-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(224, 192, 123, 0.25);
  border-left: 3px solid var(--dorado);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.lead-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lead-summary-row:last-child {
  border-bottom: none;
}

.lead-summary-label {
  color: var(--texto-muted);
  font-size: 0.85rem;
}

.lead-summary-value {
  color: var(--texto-claro);
  font-size: 0.92rem;
  font-weight: 400;
}

.lead-summary-edit {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--dorado-texto);
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: var(--font-body);
}

.lead-summary-edit:hover {
  color: var(--dorado);
}

/* Tier pricing — anchor price */
.tier-anchor-price {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--texto-muted);
  font-size: 1rem;
}

.tier-anchor-amount {
  text-decoration: line-through;
  margin-left: 0.4rem;
}

/* Tier pricing — card grid */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* Individual tier card */
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  color: var(--texto-claro);
  font-family: inherit;
  font-size: inherit;
}

.tier-card:hover {
  border-color: rgba(224, 192, 123, 0.4);
  background: rgba(247, 181, 0, 0.06);
}

.tier-card.is-selected {
  border-color: var(--dorado);
  background: rgba(247, 181, 0, 0.1);
  box-shadow: 0 0 20px rgba(247, 181, 0, 0.15), 0 0 40px rgba(247, 181, 0, 0.06);
  transform: scale(1.02);
}

.tier-qty {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dorado-texto);
}

.tier-total {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--dorado);
}

.tier-per-unit {
  font-size: 0.78rem;
  color: var(--texto-muted);
}

.tier-savings {
  font-size: 0.75rem;
  color: #6ecf8e;
  font-weight: 500;
}

/* "Most Popular" badge */
.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dorado);
  color: #0f0f0f;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Credits note */
.tier-credits-note {
  text-align: center;
  color: var(--texto-muted);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Multi-manual choice panel (above dots, below tier cards) */
.multi-choice-panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.multi-choice-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.25s ease;
}

.multi-choice-option:hover {
  border-color: rgba(224, 192, 123, 0.35);
  background: rgba(247, 181, 0, 0.04);
}

.multi-choice-option.is-selected {
  border-color: var(--dorado);
  background: rgba(247, 181, 0, 0.08);
  box-shadow: 0 0 14px rgba(247, 181, 0, 0.08);
}

.multi-choice-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.multi-choice-option strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dorado-texto);
  margin-bottom: 2px;
}

.multi-choice-option p {
  font-size: 0.78rem;
  color: var(--texto-muted);
  line-height: 1.4;
  margin: 0;
}

/* Multi-person header */
.multi-person-header {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dorado-soft);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(224, 192, 123, 0.15);
}

/* Per-person language toggle */
.person-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
}
.person-lang-label {
  color: var(--texto-muted);
  font-weight: 400;
}
.person-lang-btns {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.person-lang-btn {
  background: none;
  border: none;
  color: var(--texto-muted);
  cursor: pointer;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s, background 0.2s;
}
.person-lang-btn:hover {
  color: var(--dorado-texto);
}
.person-lang-btn.is-active {
  color: var(--dorado);
  font-weight: 600;
}
.person-lang-sep {
  color: rgba(251, 245, 229, 0.25);
}

/* Step progress dots */
.step-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  justify-content: center;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background var(--transition), transform var(--transition);
}

.step-dot.active {
  background: var(--dorado);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(247, 181, 0, 0.4);
}

.step-dot.completed {
  background: rgba(224, 192, 123, 0.5);
}

/* Form steps */
.form-step {
  display: none;
  animation: fadeStep 0.3s ease;
}

.form-step.is-active {
  display: block;
}

.form-step label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dorado-texto);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Form inputs */
.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step input[type="date"],
.form-step select,
.form-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--texto-claro);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-step input:focus,
.form-step select:focus,
input:focus,
select:focus {
  outline: none;
  border-color: var(--dorado);
  box-shadow: 0 0 0 3px rgba(247, 181, 0, 0.15);
}

.form-step input::placeholder,
input::placeholder {
  color: rgba(251, 245, 229, 0.35);
}

/* Date picker indicator on dark bg */
.form-step input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

/* Custom select dropdown arrow */
.form-step select,
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E0C07B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Time group — two selects side by side */
.time-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-hint {
  color: var(--texto-muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.form-hint a {
  color: var(--dorado-texto);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Skip-credit checkbox */
.credit-skip-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--dorado-texto, #c8a96e);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--dorado-texto, #c8a96e);
  background: rgba(200, 169, 110, 0.06);
  transition: background 0.2s;
}
.credit-skip-label:hover {
  background: rgba(200, 169, 110, 0.12);
}
.credit-skip-label input[type="checkbox"] {
  accent-color: var(--dorado-texto, #c8a96e);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Gender radio buttons */
.gender-radios {
  display: flex;
  gap: 0.6rem;
}

.gender-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gender-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gender-option span {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--texto-muted);
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.gender-option:hover span {
  border-color: rgba(224, 192, 123, 0.35);
  color: var(--dorado-texto);
}

.gender-option input[type="radio"]:checked + span {
  border-color: var(--dorado);
  background: rgba(247, 181, 0, 0.1);
  color: var(--dorado-texto);
  box-shadow: 0 0 12px rgba(247, 181, 0, 0.1);
}

/* Payment methods */
.payment-methods {
  margin-bottom: 2rem;
}

.payment-methods-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dorado-texto);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.payment-method-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.payment-method-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  transition: all var(--transition);
}

.payment-method-option:hover {
  border-color: rgba(224, 192, 123, 0.4);
  background: rgba(247, 181, 0, 0.06);
}

.payment-method-option input[type="radio"] {
  accent-color: var(--dorado);
  width: 16px;
  height: 16px;
}

.payment-method-option.is-selected {
  border-color: var(--dorado);
  background: rgba(247, 181, 0, 0.1);
}

/* Consent checkboxes */
.captcha-row {
  margin-bottom: 1rem;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.checkbox-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--dorado);
  cursor: pointer;
}

.checkbox-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--texto-muted);
  line-height: 1.5;
}

.terms-link {
  background: none;
  border: none;
  color: var(--dorado-texto);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.terms-link:hover {
  color: var(--dorado);
}

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.step-prev,
.step-next {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 192, 123, 0.4);
  background: rgba(255, 255, 255, 0.03);
  color: var(--dorado-texto);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
}

.step-prev:hover,
.step-next:hover {
  border-color: rgba(224, 192, 123, 0.65);
  background: rgba(224, 192, 123, 0.08);
  transform: translateY(-1px);
}

.step-submit {
  width: 100%;
  padding: 1.05rem;
  font-size: 1.05rem;
}

.form-status {
  text-align: center;
  font-size: 0.88rem;
  margin-top: 1rem;
  min-height: 1.4rem;
}

.form-status.error {
  color: #e74c3c;
}

.form-status.loading {
  color: var(--dorado-texto);
}

/* Privacy note */
.privacy-note {
  color: var(--texto-muted);
  font-size: 0.78rem;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* Success state */
.purchase-success {
  text-align: center;
  padding: 2.5rem 0;
}

.purchase-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.purchase-success h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--dorado-texto);
  margin-bottom: 1rem;
}

.purchase-success p {
  color: var(--texto-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════
   21. SECTION 13 — FAQ
   ═══════════════════════════════════════════════════════════════════ */
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.is-open {
  border-left: 3px solid var(--dorado);
  padding-left: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--dorado-texto);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--dorado);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--dorado-soft);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.is-open .faq-question::after {
  content: '\2212';
  color: var(--dorado);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding: 0 0 1.25rem;
}

.faq-answer p {
  color: rgba(251, 245, 229, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--dorado-texto);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--dorado);
}


/* ═══════════════════════════════════════════════════════════════════
   22. SECTION 14 — ABOUT
   ═══════════════════════════════════════════════════════════════════ */
#about .section-inner {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(224, 192, 123, 0.4);
  box-shadow: 0 0 30px rgba(247, 181, 0, 0.1);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-bio {
  color: rgba(251, 245, 229, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-supporting {
  color: var(--texto-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  font-style: italic;
}

.about-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 780px;
  margin: 3rem auto 0;
}

.about-video-item {
  text-align: center;
}

.about-video-caption {
  color: var(--texto-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  line-height: 1.5;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}


/* ═══════════════════════════════════════════════════════════════════
   23. SECTION 15 — FINAL CTA
   ═══════════════════════════════════════════════════════════════════ */
.section-final-cta {
  background:
    radial-gradient(circle at 50% 40%, rgba(247, 181, 0, 0.12), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(120, 82, 32, 0.1), transparent 35%),
    linear-gradient(170deg, #0e0c12 0%, #100c14 50%, #0b0a0d 100%);
}

.final-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-badge {
  display: inline-block;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dorado);
  background: rgba(247, 181, 0, 0.08);
  border: 1px solid rgba(247, 181, 0, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.final-cta-inner h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  margin-bottom: 1.25rem;
}

.final-sub {
  color: var(--texto-muted);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.final-trust {
  color: var(--texto-muted);
  font-size: clamp(0.78rem, 1.2vw, 0.85rem);
  margin-top: 1.25rem;
  letter-spacing: 0.03em;
}


/* ═══════════════════════════════════════════════════════════════════
   23. SECTION 15 — FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.comprar-footer {
  border-top: 1px solid rgba(224, 192, 123, 0.15);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--texto-muted);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dorado-texto);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--texto-muted);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--dorado-texto);
}

.footer-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.footer-lang .lang-switch-btn {
  font-size: 0.78rem;
}


/* ═══════════════════════════════════════════════════════════════════
   24. STICKY BOTTOM BAR
   ═══════════════════════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(145deg, #0f0c14, #0b0a0d);
  border-top: 1px solid rgba(224, 192, 123, 0.25);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 60px;
}

.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-bar-discount,
.sticky-bar-normal {
  color: var(--dorado-texto);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  white-space: nowrap;
}

.sticky-bar .countdown-unit {
  font-size: 0.88rem;
  padding: 0.2rem 0.4rem;
  min-width: 2rem;
  background: rgba(247, 181, 0, 0.12);
  border: 1px solid rgba(224, 192, 123, 0.25);
}

.sticky-bar .countdown-sep {
  font-size: 0.88rem;
}

.sticky-bar-cta {
  padding: 0.6rem 1.5rem !important;
  font-size: 0.88rem !important;
  box-shadow: none !important;
  white-space: nowrap;
}

body.has-sticky-bar {
  padding-bottom: 60px;
}


/* ═══════════════════════════════════════════════════════════════════
   25. LIGHTBOX (Single image)
   ═══════════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
  z-index: 10000;
}

.lightbox-close:hover {
  color: #fff;
}

body.lightbox-open {
  overflow: hidden;
}


/* ═══════════════════════════════════════════════════════════════════
   26. CHAPTER LIGHTBOX (Carousel)
   ═══════════════════════════════════════════════════════════════════ */
.chapter-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.chapter-lightbox-inner {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.chapter-lightbox-img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chapter-lightbox .carousel-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  z-index: 10;
}

.chapter-lightbox .carousel-prev { left: -3.5rem; }
.chapter-lightbox .carousel-next { right: -3.5rem; }

.chapter-lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.chapter-lightbox-close:hover {
  color: #fff;
}

.chapter-lightbox-counter {
  text-align: center;
  color: var(--texto-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}


/* ═══════════════════════════════════════════════════════════════════
   27. PLACE AUTOCOMPLETE
   ═══════════════════════════════════════════════════════════════════ */
.place-autocomplete-wrap {
  position: relative;
}

.place-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  margin-top: 4px;
  padding: 0;
  background: linear-gradient(145deg, #1a1920, #141218);
  border: 1px solid rgba(224, 192, 123, 0.3);
  border-radius: 8px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(247, 181, 0, 0.06);
  list-style: none;
}

.place-suggestions li {
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  color: var(--texto-claro);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.place-suggestions li:last-child {
  border-bottom: none;
}

.place-suggestions li:hover,
.place-suggestions li.is-highlighted {
  background: rgba(247, 181, 0, 0.12);
  color: var(--dorado-texto);
}

.place-suggestions li .place-secondary {
  display: block;
  font-size: 0.78rem;
  color: var(--texto-muted);
  margin-top: 2px;
}

.place-suggestions li:hover .place-secondary,
.place-suggestions li.is-highlighted .place-secondary {
  color: rgba(224, 192, 123, 0.6);
}

.place-attribution {
  padding: 0.35rem 1rem;
  font-size: 0.65rem;
  color: var(--texto-muted);
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.place-attribution a {
  color: var(--texto-muted);
  text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════════════
   28. ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.float {
  animation: float 6s ease-in-out infinite;
}

/* Legacy floating keyframes (referenced by JS) */
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* CTA pulse — draws attention */
@keyframes pulse-once {
  0%   { box-shadow: 0 4px 30px rgba(247, 181, 0, 0.25); }
  50%  { box-shadow: 0 4px 50px rgba(247, 181, 0, 0.5); }
  100% { box-shadow: 0 4px 30px rgba(247, 181, 0, 0.25); }
}

/* Reveal animation system */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-60px);
}

[data-reveal="left"].is-revealed {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(60px);
}

[data-reveal="right"].is-revealed {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(0.9);
}

[data-reveal="scale"].is-revealed {
  transform: scale(1);
}

/* Stagger delays */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* Typewriter cursor for section labels */
[data-typewriter]::after {
  content: '|';
  animation: blink-cursor 0.7s step-end infinite;
  color: var(--dorado);
  margin-left: 2px;
}

@keyframes blink-cursor {
  50% { opacity: 0; }
}

/* Counter roll-up animation helper */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════════════════
   29. RECAPTCHA BADGE
   ═══════════════════════════════════════════════════════════════════ */
.grecaptcha-badge {
  visibility: hidden;
}


/* ═══════════════════════════════════════════════════════════════════
   30. RESPONSIVE — TABLET (min-width: 768px)
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  /* Hero — two column */
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-mockup {
    width: clamp(260px, 45vw, 380px);
  }

  /* Stats strip */
  .stats-strip {
    gap: 2rem;
    flex-wrap: nowrap;
  }

  /* Benefits — 2 columns */
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Chapters accordion — 2 columns */
  .chapters-accordion {
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }

  .chapter-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  /* Testimonial photos */
  .testimonial-photos {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  /* Etsy reviews */
  .etsy-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Payment methods — 2 columns */
  .payment-method-options {
    grid-template-columns: 1fr 1fr;
  }

  /* Carousel arrows more visible */
  .carousel-prev { left: -0.25rem; }
  .carousel-next { right: -0.25rem; }

  /* Chapter lightbox arrows */
  .chapter-lightbox .carousel-prev { left: -3.5rem; }
  .chapter-lightbox .carousel-next { right: -3.5rem; }

  /* About — side-by-side layout */
  .about-grid {
    flex-direction: row;
    text-align: left;
  }

  .about-photo {
    min-width: 160px;
  }

  .about-videos {
    grid-template-columns: 1fr 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   31. RESPONSIVE — DESKTOP (min-width: 1024px)
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

  :root {
    --section-padding: 8rem 2rem;
  }

  .section-hero .section-inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-grid {
    gap: 4rem;
  }

  .hero-mockup {
    width: 380px;
  }

  /* Stats — larger numbers */
  .stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
  }

  /* Benefits grid — maintain 2-col but wider */
  .benefits-grid {
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 2rem 1.75rem;
  }

  /* Steps connector positioning */
  .steps-container {
    padding-left: 0;
  }

  .steps-connector {
    left: 23px;
  }

  /* Form card spacing */
  .form-card {
    padding: 3rem 2.5rem;
  }

  /* Etsy reviews — 3 columns */
  .etsy-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Video testimonials — wider */
  .testimonial-featured {
    max-width: 750px;
  }

  /* Chapters — wider */
  .chapters-accordion {
    max-width: 900px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   32. RESPONSIVE — LARGE DESKTOP (min-width: 1440px)
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 1440px) {

  .section-inner {
    max-width: 1280px;
  }

  .hero-grid {
    gap: 5rem;
  }

  .hero-mockup {
    width: 420px;
  }

  .benefits-grid {
    max-width: 1000px;
  }

  .chapters-accordion {
    max-width: 1000px;
  }

  .what-inner,
  .foryou-inner {
    max-width: 860px;
  }

  .sample-inner {
    max-width: 880px;
  }

  .testimonial-featured {
    max-width: 800px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   33. RESPONSIVE — SMALL MOBILE OVERRIDES (max-width: 480px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .section-hero .section-inner {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .hero-mockup {
    width: 55vw;
    max-width: 240px;
  }

  .hero-badges {
    gap: 0.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
  }

  /* Tier cards — keep 3-col on all sizes, just tighten padding */
  .tier-card {
    padding: 1rem 0.5rem;
  }

  /* Stats strip compact */
  .stats-strip {
    gap: 0.75rem;
    padding: 2.5rem 1rem;
  }

  .stat-divider {
    font-size: 1rem;
  }

  /* Benefits full width */
  .benefit-card {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
  }

  /* Sample card compact */
  .sample-card {
    padding: 1.75rem 1.25rem 2.5rem;
  }

  .sample-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Carousel arrows tighter */
  .testimonial-carousel {
    padding: 0 2.5rem;
  }

  .carousel-prev { left: -0.25rem; }
  .carousel-next { right: -0.25rem; }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  /* Form compact */
  .form-card {
    padding: 1.75rem 1.25rem;
  }

  .glass-card {
    padding: 1.75rem 1.25rem;
  }

  /* Sticky bar compact */
  .sticky-bar {
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }

  .sticky-bar-discount,
  .sticky-bar-normal {
    font-size: 0.78rem;
  }

  .sticky-bar-cta {
    padding: 0.5rem 1rem !important;
    font-size: 0.82rem !important;
  }

  /* Steps */
  .step-row {
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .steps-connector {
    left: 19px;
  }

  /* Guarantee seal */
  .guarantee-seal {
    width: 100px;
    height: 100px;
  }

  .guarantee-seal-number {
    font-size: 1.6rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.98rem;
    padding-right: 2rem;
  }

  /* Final CTA */
  .final-cta-inner h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  /* Lightbox — mobile overlay arrows */
  .chapter-lightbox .carousel-prev { left: 0.25rem; }
  .chapter-lightbox .carousel-next { right: 0.25rem; }
  .chapter-lightbox .carousel-arrow {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(224, 192, 123, 0.4);
  }
}


/* ═══════════════════════════════════════════════════════════════════
   34. REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .float,
  .hero-mockup {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .carousel-page {
    animation: none !important;
  }

  .faq-answer {
    transition: none !important;
  }

  .chapter-accordion-body {
    transition: none !important;
  }

  .sticky-bar {
    transition: none !important;
  }

  .cta-btn,
  .cta-secondary,
  .step-prev,
  .step-next {
    transition: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   35. PRINT STYLES
   ═══════════════════════════════════════════════════════════════════ */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
  }

  .sticky-bar,
  .lang-switcher,
  .lightbox,
  .chapter-lightbox {
    display: none !important;
  }

  .section-dark-a,
  .section-dark-b,
  .section-dark-c {
    background: #fff !important;
  }

  .glass-card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   36. UTILITY & MISC
   ═══════════════════════════════════════════════════════════════════ */

/* Smooth scroll anchor offset for sticky bar */
[id] {
  scroll-margin-top: 80px;
}

/* Selection styling */
::selection {
  background: rgba(247, 181, 0, 0.25);
  color: var(--texto-claro);
}

::-moz-selection {
  background: rgba(247, 181, 0, 0.25);
  color: var(--texto-claro);
}

/* Focus-visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--dorado);
  outline-offset: 3px;
}

/* Touch targets — minimum 48px */
button,
.cta-btn,
.carousel-arrow,
.faq-question,
.chapter-accordion-btn {
  min-height: 48px;
}

/* Scrollbar styling for place suggestions */
.place-suggestions::-webkit-scrollbar {
  width: 6px;
}

.place-suggestions::-webkit-scrollbar-track {
  background: transparent;
}

.place-suggestions::-webkit-scrollbar-thumb {
  background: rgba(224, 192, 123, 0.3);
  border-radius: 3px;
}

.place-suggestions::-webkit-scrollbar-thumb:hover {
  background: rgba(224, 192, 123, 0.5);
}

/* Honeypot field — hidden */
input[name="_honey"] {
  display: none !important;
}

/* Ensure video containers never overflow */
.video-container iframe {
  border: 0;
}

/* Language-conditional visibility (managed by JS) */
[data-lang-en],
[data-lang-es] {
  /* JS toggles display via .hidden class */
}

/* ═══════════════════════════════════════════════════════════════════
   STAGE 1B: THE PROBLEM SECTION
   ═══════════════════════════════════════════════════════════════════ */
.problem-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.problem-body p {
  text-align: left;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.problem-transition {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dorado-texto);
  margin-top: 2rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   STAGE 1D: WHAT SYSTEMS & NEUTRINOS CALLOUTS
   ═══════════════════════════════════════════════════════════════════ */
.what-systems-callout {
  border-left: 3px solid var(--dorado);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.what-systems-callout p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.what-neutrinos-callout {
  margin: 1.5rem 0;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(224, 192, 123, 0.15);
}

.what-neutrinos-callout p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════
   STAGE 1E: NOT FOR YOU SUB-SECTION
   ═══════════════════════════════════════════════════════════════════ */
.notforyou-block {
  margin-top: 3rem;
  opacity: 0.7;
}

.notforyou-headline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.notforyou-list {
  list-style: none;
  padding: 0;
}

.notforyou-list li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.notforyou-x {
  color: #e74c3c;
  margin-right: 0.5rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   STAGE 1G: FINAL P.S. LINE
   ═══════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════
   GUARANTEE SECTION — subtle lighter dark override
   ═══════════════════════════════════════════════════════════════════ */
.section-guarantee {
  background-color: #161418;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(200, 169, 110, 0.1), transparent 50%);
}

.guarantee-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado-soft);
  margin-bottom: 1.5rem;
}

.guarantee-inner h2 {
  color: var(--texto-claro);
  font-style: italic;
}

.guarantee-body {
  color: rgba(255, 255, 255, 0.7);
}

.guarantee-seal {
  border-color: var(--dorado-soft);
  background: rgba(200, 169, 110, 0.06);
}

.guarantee-seal-number {
  color: var(--dorado-texto);
}

.guarantee-seal-text {
  display: none;
}

.guarantee-seal-days {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dorado-soft);
  margin-top: 0.1rem;
  line-height: 1;
}

.guarantee-signature {
  color: var(--dorado-soft);
}

.final-ps {
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.65;
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — ALL PHONES (max-width: 767px)
   ═══════════════════════════════════════════════════════════════════ */

/* Hero CTA wrapper — order: text → mockup → CTA on mobile */
.hero-cta-wrap {
  order: 3;
  text-align: center;
}

@media (max-width: 767px) {
  :root { --section-padding: 4rem 1.5rem; }

  /* Hero: natural height, not forced 100vh */
  .section-hero { min-height: auto; }
  .section-hero .section-inner {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  /* Hero layout: text → mockup → CTA */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .hero-text { order: 1; text-align: center; }
  .hero-text h1 { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-trust { text-align: center; }
  .hero-visual { order: 2; }
  .hero-cta-wrap {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-mockup {
    width: 42vw;
    max-width: 200px;
  }

  /* Smaller, subtler CTA on mobile */
  .hero-cta-btn {
    font-size: 0.92rem !important;
    padding: 0.8rem 2rem;
  }

  /* Stats strip */
  .stats-strip { gap: 1rem; padding: 2.5rem 1.5rem; }
  .stat-divider { font-size: 1.2rem; }

  /* Glass cards breathing room */
  .glass-card { padding: 2rem 1.5rem; }

  /* Discount/countdown center on mobile */
  .discount-banner { text-align: center; }
  .countdown-timer { justify-content: center; }

  /* Sticky bar — fix button text vertical alignment */
  .sticky-bar-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0.55rem 1.2rem !important;
    font-size: 0.82rem !important;
  }
}

/* Desktop hero grid — restore 2-col with CTA under text */
@media (min-width: 768px) {
  .hero-cta-wrap {
    grid-column: 1;
    grid-row: 2;
    order: unset;
  }
  .hero-grid {
    grid-template-rows: auto auto;
  }
  .hero-text { grid-column: 1; grid-row: 1; }
  .hero-visual { grid-column: 2; grid-row: 1 / 3; }
}

/* ── Apodo Toast ── */
.apodo-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  z-index: 9999;
  max-width: 420px;
  width: calc(100% - 2rem);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.apodo-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.apodo-toast-warning {
  background: linear-gradient(145deg, #3a2a10, #2a1e0a);
  border: 1px solid rgba(247, 181, 0, 0.5);
  color: var(--dorado-texto);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(247, 181, 0, 0.1);
}

.apodo-toast-info {
  background: linear-gradient(145deg, #1a1920, #100c14);
  border: 1px solid rgba(224, 192, 123, 0.25);
  color: var(--texto-claro);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 10px rgba(247, 181, 0, 0.06);
}
