/* lead.css — Standalone styles for lead.html */
/* Warm dark theme + gold accent — matching original brand aesthetic */

/* ========== 1. Custom Properties ========== */
:root {
  --obsidiana: #0B0A0D;
  --obsidiana-light: #100c14;
  --obsidiana-surface: #1a1920;
  --dorado: #F7B500;
  --dorado-soft: #c8a96e;
  --dorado-texto: #E0C07B;
  --dorado-border: rgba(224, 192, 123, 0.55);
  --texto-claro: #FBF5E5;
  --texto-muted: rgba(251, 245, 229, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1100px;
  --section-padding: 6rem 1.5rem;
  --transition: 0.3s ease;
}

/* ========== 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: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.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(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}

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

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ========== 5. Hero ========== */
.lead-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Warm gradient overlay matching original hero */
.lead-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;
}

.lead-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;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-text .subheadline {
  color: var(--texto-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-trust {
  color: var(--texto-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

/* Mockup placeholder — premium preview */
.mockup-placeholder {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(224, 192, 123, 0.3);
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(247, 181, 0, 0.08);
  animation: floating 6s ease-in-out infinite;
}

.mockup-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.mockup-placeholder-text {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.mockup-placeholder-text span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dorado-texto);
  display: block;
  margin-bottom: 0.5rem;
}

.mockup-placeholder-text small {
  color: var(--texto-muted);
  font-size: 0.8rem;
}

/* Fake blurred report lines */
.mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 2.5rem;
  width: 100%;
  margin-top: 1.5rem;
}

.mockup-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(251, 245, 229, 0.08);
  filter: blur(1px);
}

.mockup-line:nth-child(1) { width: 85%; }
.mockup-line:nth-child(2) { width: 70%; }
.mockup-line:nth-child(3) { width: 90%; }
.mockup-line:nth-child(4) { width: 60%; }
.mockup-line:nth-child(5) { width: 75%; }
.mockup-line:nth-child(6) { width: 50%; }
.mockup-line:nth-child(7) { width: 80%; }

.mockup-watermark {
  position: absolute;
  bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: rgba(224, 192, 123, 0.2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== 6. CTA Button — Original Gold Gradient ========== */
.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-large {
  font-size: 1.1rem;
  padding: 1.15rem 3rem;
}

/* ========== 7. Value Prop ========== */
#value {
  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%);
}

.value-list {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.value-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  font-size: 1.02rem;
  color: var(--texto-claro);
  line-height: 1.6;
}

.value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background: var(--dorado);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(247, 181, 0, 0.4);
}

.value-note {
  text-align: center;
  color: var(--texto-muted);
  font-size: 0.85rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.value-tech {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.value-tech p {
  color: rgba(251, 245, 229, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.value-tech p strong {
  color: var(--dorado-texto);
  font-weight: 400;
}

/* ========== 8. How It Works ========== */
#how {
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 196, 119, 0.06), transparent 35%),
    linear-gradient(170deg, #0b0a0d 0%, #0e0c12 50%, #0b0a0d 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.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;
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(247, 181, 0, 0.2);
}

.step-card p {
  color: var(--texto-muted);
  font-size: 0.92rem;
}

/* ========== 9. Form Section ========== */
#form-section {
  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%);
}

.form-card {
  max-width: 520px;
  margin: 0 auto;
  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);
}

.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;
}

/* Upsell link between form and testimonials */
.form-upsell {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

.form-upsell a {
  color: var(--texto-muted);
  transition: color var(--transition);
}

.form-upsell a:hover {
  color: var(--dorado-texto);
}

/* Progress dots — larger */
.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;
}

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

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

/* Inputs */
.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="date"],
.form-step 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;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

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

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

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

/* Select arrow */
.form-step 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 */
.time-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Hints */
.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;
}

/* Consent checkbox */
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

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

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

/* 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.7rem 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;
  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: 1rem;
  font-size: 1.05rem;
}

/* Form status */
.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);
}

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

.lead-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.lead-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dorado-texto);
  margin-bottom: 1rem;
}

.lead-success p {
  color: var(--texto-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.lead-success .success-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--dorado-texto);
  font-size: 0.95rem;
}

/* ========== 10. Testimonials ========== */
#testimonials {
  background:
    radial-gradient(circle at 70% 30%, rgba(247, 181, 0, 0.08), transparent 35%),
    radial-gradient(circle at 20% 70%, rgba(120, 82, 32, 0.1), transparent 40%),
    linear-gradient(170deg, #0b0a0d 0%, #0e0c12 50%, #0b0a0d 100%);
}

.testimonial-featured {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: var(--obsidiana-surface);
}

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

/* Vertical (Shorts / 9:16) */
.video-container.video-short {
  padding-bottom: 0;
  height: auto;
  aspect-ratio: 9 / 16;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-caption strong {
  color: var(--dorado-texto);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

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

.testimonial-caption a {
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 0.3rem;
}

.testimonial-skeptic {
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* 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;
}

/* 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.25rem;
}

.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);
}

/* 3x1 grid (3 columns on desktop, 1 column on mobile) */
.testimonial-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .testimonial-photos {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

.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);
}

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

/* ========== 11. Differentiator ========== */
#differentiator {
  background:
    radial-gradient(circle at 40% 40%, rgba(230, 168, 70, 0.08), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(114, 78, 26, 0.1), transparent 35%),
    linear-gradient(170deg, #100c14 0%, #0e0c12 50%, #0b0a0d 100%);
}

.differentiator-text {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.differentiator-text p {
  color: rgba(251, 245, 229, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Single column for own examples only */
.comparison-showcase {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.comparison-showcase h3 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--dorado-texto);
  font-family: var(--font-heading);
}

.comparison-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.comparison-item img {
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  width: 100%;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}

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

.comparison-item span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--texto-muted);
}

/* ========== 12. About ========== */
#about {
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 181, 0, 0.06), transparent 35%),
    linear-gradient(170deg, #0b0a0d 0%, #0e0c12 50%, #0b0a0d 100%);
}

#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 — stacked mobile, side-by-side desktop */
.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;
}

@media (min-width: 768px) {
  .about-videos {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== 13. Final CTA ========== */
#final-cta {
  background:
    radial-gradient(circle at 50% 80%, rgba(247, 181, 0, 0.12), transparent 40%),
    radial-gradient(circle at 30% 20%, rgba(120, 82, 32, 0.1), transparent 35%),
    linear-gradient(170deg, #100c14 0%, #0e0c12 50%, #0b0a0d 100%);
}

.final-cta-inner {
  text-align: center;
  padding: 6rem 1.5rem;
}

.final-cta-inner h2 {
  margin-bottom: 1.5rem;
}

.final-cta-inner .cta-btn {
  margin-bottom: 1rem;
}

.final-cta-sub {
  color: var(--texto-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ========== 14. Footer ========== */
.lead-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: 1rem;
  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.8rem;
  transition: color var(--transition);
}

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

.footer-upsell {
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

/* ========== 15. Send Link Modal ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-card {
  background: linear-gradient(145deg, #1a1920, #100c14);
  border: 1px solid rgba(224, 192, 123, 0.3);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 60px rgba(247, 181, 0, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--texto-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: var(--texto-claro);
}

.modal-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dorado-texto);
  margin-bottom: 0.75rem;
}

.modal-card p {
  color: var(--texto-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal-card input[type="email"] {
  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;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-card input[type="email"]:focus {
  outline: none;
  border-color: var(--dorado);
  box-shadow: 0 0 0 3px rgba(247, 181, 0, 0.15);
}

.modal-card input[type="email"]::placeholder {
  color: rgba(251, 245, 229, 0.35);
}

.modal-card .success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

body.modal-open {
  overflow: hidden;
}

/* ========== 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;
}

/* ========== 16. Lightbox ========== */
.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;
}

.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;
}

/* ========== 16. Responsive ========== */
@media (min-width: 768px) {
  .hero-grid {
    padding: 4rem 2rem;
    align-items: center;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    flex-direction: row;
    text-align: left;
  }

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

  .testimonial-photos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  :root {
    --section-padding: 8rem 2rem;
  }

  .hero-grid {
    padding: 0 2rem;
  }

  .form-card {
    padding: 3rem 2.5rem;
  }
}

/* ========== 17. reCAPTCHA badge hide ========== */
.grecaptcha-badge {
  visibility: hidden;
}

/* ══════════════════════════════════════════════════════════════
   18. ADDITIVE STYLES — New sections & i18n components
   (added for lead page transformation — DO NOT modify above)
   ══════════════════════════════════════════════════════════════ */

/* ── 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); }

/* ── Section Label ── */
.section-label {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dorado-soft);
  margin-bottom: 1rem;
}

/* ── Fascination Bullets ── */
#fascination {
  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%);
}

.fascination-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .fascination-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.fascination-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
}

.fascination-icon {
  color: var(--dorado);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.75rem;
}

.fascination-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dorado-texto);
  margin-bottom: 0.75rem;
}

.fascination-card p {
  color: var(--texto-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Why Birth Data ── */
#why-birth {
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 196, 119, 0.06), transparent 35%),
    linear-gradient(170deg, #0b0a0d 0%, #0e0c12 50%, #0b0a0d 100%);
}

.why-birth-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.why-birth-inner h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-birth-inner p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: rgba(251, 245, 229, 0.75);
  font-size: 0.98rem;
}

/* ── Social Proof Mini Strip ── */
#social-proof-mini {
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 181, 0, 0.06), transparent 35%),
    linear-gradient(170deg, #100c14 0%, #0e0c12 50%, #0b0a0d 100%);
}

.social-proof-mini-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.social-proof-stat {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--dorado-texto);
  margin-bottom: 2rem;
}

.social-proof-quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-proof-quotes blockquote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--texto-muted);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid rgba(224, 192, 123, 0.3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
}

/* ── FAQ Accordion ── */
#faq {
  background:
    radial-gradient(circle at 40% 40%, rgba(230, 168, 70, 0.06), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(114, 78, 26, 0.08), transparent 35%),
    linear-gradient(170deg, #100c14 0%, #0e0c12 50%, #0b0a0d 100%);
}

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

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

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dorado-texto);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dorado-soft);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question::after {
  content: '\2212';
  transform: translateY(-50%);
}

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

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

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

.faq-answer p {
  color: var(--texto-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  padding-right: 2.5rem;
}

/* ── Reveal Animations ── */
[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-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; }

/* ── Footer Language Switcher ── */
.footer-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

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

/* ── Hero Mockup Inline ── */
.hero-mockup-inline {
  margin: 1.5rem auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-mockup-inline .mockup-placeholder {
  max-width: 160px;
  aspect-ratio: 3 / 4;
  font-size: 0.7rem;
}

.hero-mockup-inline .mockup-placeholder-text span {
  font-size: 0.85rem;
}

.hero-mockup-inline .mockup-placeholder-text small {
  font-size: 0.6rem;
}

.hero-mockup-inline .mockup-lines {
  padding: 0 1.5rem;
  margin-top: 0.75rem;
  gap: 4px;
}

.hero-mockup-inline .mockup-line {
  height: 4px;
}

.hero-mockup-inline .mockup-watermark {
  font-size: 0.5rem;
  bottom: 0.75rem;
}

@media (min-width: 768px) {
  .hero-mockup-inline .mockup-placeholder {
    max-width: 240px;
  }
  .hero-mockup-inline .mockup-placeholder-text span {
    font-size: 1.1rem;
  }
  .hero-mockup-inline .mockup-placeholder-text small {
    font-size: 0.7rem;
  }
  .hero-mockup-inline .mockup-lines {
    gap: 6px;
    margin-top: 1rem;
    padding: 0 2rem;
  }
  .hero-mockup-inline .mockup-line {
    height: 5px;
  }
  .hero-mockup-inline .mockup-watermark {
    font-size: 0.6rem;
    bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-mockup-inline .mockup-placeholder {
    max-width: 280px;
  }
}

/* ── Hero CTA Pulse Glow ── */
.lead-hero .cta-btn {
  animation: cta-glow 3s ease-in-out infinite;
}
.lead-hero .cta-btn:hover {
  animation: none;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 16px 38px rgba(0,0,0,0.28), 0 0 16px rgba(247,181,0,0.08); }
  50% { box-shadow: 0 16px 38px rgba(0,0,0,0.28), 0 0 32px rgba(247,181,0,0.28); }
}

/* ── Glass Card Glow on Fascination Cards ── */
.fascination-card {
  box-shadow:
    0 0 30px rgba(247, 181, 0, 0.06),
    0 0 60px rgba(247, 181, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fascination-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 192, 123, 0.4);
  box-shadow:
    0 0 40px rgba(247, 181, 0, 0.12),
    0 0 80px rgba(247, 181, 0, 0.06),
    0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ── Step Cards Glow + Hover ── */
.step-card {
  box-shadow: 0 0 20px rgba(247, 181, 0, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 192, 123, 0.3);
  box-shadow:
    0 0 30px rgba(247, 181, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Form Card Enhanced Glow ── */
.form-card {
  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);
}

/* ── Social Proof Quotes Subtle Glow ── */
.social-proof-quotes blockquote {
  box-shadow: 0 0 20px rgba(247, 181, 0, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-proof-quotes blockquote:hover {
  border-left-color: rgba(224, 192, 123, 0.5);
  box-shadow: 0 0 30px rgba(247, 181, 0, 0.08);
}

/* ── FAQ Item Glow on Open ── */
.faq-item.is-open .faq-question {
  text-shadow: 0 0 20px rgba(247, 181, 0, 0.15);
}

/* ── Testimonial Cards Subtle Glow ── */
.testimonial-featured,
.testimonial-skeptic {
  transition: box-shadow 0.3s ease;
}

.video-container {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(247, 181, 0, 0.05);
}

/* ── "Learn More" CTA (outline style) ── */
.cta-outline {
  display: inline-block;
  background: transparent;
  border: 1.5px solid rgba(224, 192, 123, 0.4);
  color: var(--dorado-texto);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.cta-outline:hover {
  background: rgba(212, 168, 85, 0.1);
  border-color: rgba(224, 192, 123, 0.65);
  color: var(--dorado);
  transform: translateY(-2px);
}

/* ── Upsell Block (after form / after FAQ) ── */
.upsell-block {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.upsell-block p {
  color: var(--texto-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ── 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);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mockup-placeholder,
  .lead-hero .cta-btn {
    animation: none;
  }
}

/* Gender radios */
.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);
}
