/* ===== TOKENS ===== */
:root {
  --navy: #1A1A2E;
  --navy-mid: #16213E;
  --navy-light: #0F3460;
  --gold: #C9A84C;
  --gold-light: #E0C070;
  --gold-dim: #957830;
  --violet: #7B5EA7;
  --violet-light: #A07CC5;
  --white: #F5F0E8;
  --gray: #A8A0B4;
  --dark-card: #1E1E3A;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Raleway', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  line-height: 1.8;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== UTILITY ===== */
.gold { color: var(--gold); }
.violet { color: var(--violet); }
.gold-italic { color: var(--gold); font-style: italic; font-family: var(--font-serif); font-size: 1.25rem; }
.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.label-light { color: var(--gold-light); }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
h3 { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; margin-bottom: 8px; }
p { color: var(--gray); font-size: 1.05rem; }
strong { color: var(--white); }
em { color: var(--violet-light); font-style: normal; }
.section-subtitle { font-size: 1.1rem; color: var(--gray); margin-bottom: 48px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,168,67,0.35);
}
.btn-lg { font-size: 1.15rem; padding: 18px 48px; }
.btn-xl { font-size: 1.25rem; padding: 22px 56px; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.5); }
  50% { box-shadow: 0 0 0 16px rgba(212,168,67,0); }
}
.pulse { animation: pulse-glow 2.5s infinite; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(18,18,42,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 48px; width: auto; }
.nav-cta { font-size: 0.9rem; padding: 10px 28px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,30,0.85) 0%,
    rgba(18,18,42,0.7) 50%,
    rgba(26,26,62,0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.hero-logo-big {
  width: clamp(200px, 35vw, 360px);
  height: auto;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at center, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at center, black 40%, transparent 100%);
  filter: brightness(1.1);
}
.badge {
  display: inline-block;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(245,243,239,0.8);
  margin-bottom: 16px;
  line-height: 1.7;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--violet-light);
  font-style: italic;
  margin-bottom: 36px;
}
.hero-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); }
}

/* ===== AUTHORITY ===== */
.authority {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0F1B3C 60%, var(--navy-mid) 100%);
}
.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.authority-img-wrap { position: relative; }
.authority-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212,168,67,0.25);
  box-shadow: var(--shadow), var(--shadow-gold);
  aspect-ratio: 3/4;
}
.authority-photo { width: 100%; height: 100%; object-fit: cover; }
.authority-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1A1A2E;
  padding: 18px 22px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  box-shadow: var(--shadow), 0 0 20px rgba(201,168,76,0.4);
  letter-spacing: 0.01em;
}
.authority-title-tag {
  color: var(--violet-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.authority-desc { margin-bottom: 36px; font-size: 1.05rem; }
.authority-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* ===== PROMISE ===== */
.promise {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213E 0%, #1a1a2e 50%, #0D1B38 100%);
  text-align: center;
}
.promise-title { max-width: 700px; margin: 0 auto 56px; }
.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.promise-card {
  background: var(--dark-card);
  border: 1px solid rgba(155,127,196,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.promise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,67,0.4);
  box-shadow: var(--shadow-gold);
}
.promise-icon { font-size: 2.5rem; margin-bottom: 20px; }
.promise-card h3 { color: var(--white); margin-bottom: 12px; }
.promise-bottom {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, #1A1A2E 0%, #12112A 100%);
  text-align: center;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: left;
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  min-width: 64px;
  line-height: 1;
}
.step-content h3 { color: var(--white); }
.step-content p { font-size: 1rem; }
.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-left: 31px;
  opacity: 0.4;
}
.process-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.process-footer p { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }
.gold-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ===== PAIN ===== */
.pain {
  padding: 100px 0;
  background: linear-gradient(135deg, #0e0e28 0%, #1a1040 100%);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.pain-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--white);
}
.pain-icon { font-size: 1.4rem; }
.pain-symptoms { margin-bottom: 28px; }
.pain-symptoms p { margin-bottom: 8px; font-size: 1rem; }
.pain-highlight {
  background: rgba(155,127,196,0.1);
  border-left: 3px solid var(--violet);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white);
  font-size: 0.95rem;
}
.pain-counter {
  background: var(--dark-card);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.counter-item { padding: 20px 0; }
.counter-prefix {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
}
.counter-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  display: inline-block;
}
.counter-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 6px;
}
.counter-divider {
  height: 1px;
  background: rgba(212,168,67,0.15);
  margin: 0 16px;
}

.pain-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.pain-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== FAILED ===== */
.failed {
  padding: 100px 0;
  background: linear-gradient(160deg, #16213E 0%, #1A1A2E 100%);
  text-align: center;
}
.failed-inner { max-width: 760px; margin: 0 auto; }
.failed-desc { font-size: 1.1rem; margin-bottom: 40px; }
.failed-methods {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.failed-method {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.2);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--white);
}
.x-icon { color: #ff6060; font-weight: 700; font-size: 1.1rem; }
.failed-solution {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.6;
}

/* ===== METHOD ===== */
.method {
  padding: 100px 0;
  background: linear-gradient(135deg, #12112A 0%, #1A1A2E 50%, #0D1B38 100%);
}
.method-header { text-align: center; margin-bottom: 56px; }
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.method-text p { margin-bottom: 16px; font-size: 1.05rem; }
.method-tagline { margin: 24px 0 !important; }
.method-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.feature { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 0.95rem; }
.feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  flex-shrink: 0;
}
.method-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(155,127,196,0.25);
  box-shadow: var(--shadow);
}
.method-img { width: 100%; }

/* Before/After */
.before-after {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  border: 1px solid rgba(212,168,67,0.1);
}
.ba-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 36px;
  color: var(--white);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}
.ba-col { padding: 28px; border-radius: var(--radius); }
.ba-before { background: rgba(255,80,80,0.06); border: 1px solid rgba(255,80,80,0.15); }
.ba-after { background: rgba(80,200,120,0.06); border: 1px solid rgba(80,200,120,0.2); }
.ba-header { font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; color: var(--white); }
.ba-col ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  color: var(--gray);
}
.ba-col ul li:last-child { border-bottom: none; }
.ba-img-wrap { width: 200px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; }
.ba-img { width: 100%; border-radius: var(--radius); }
.ba-img-full-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto 28px;
  border: 2px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow);
}
.ba-img-full { width: 100%; display: block; }
.ba-tagline { text-align: center; font-family: var(--font-serif); font-size: 1.2rem; color: var(--gray); }

/* ===== PERSONAL STORY ===== */
.personal-story {
  padding: 100px 0;
  background: linear-gradient(135deg, #0F3460 0%, #16213E 50%, #1A1A2E 100%);
  text-align: center;
}
.story-inner { max-width: 680px; margin: 0 auto; }
.story-quote {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  flex: 1;
  text-align: center;
}
.story-body {
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: var(--gray);
}
.story-sig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.story-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.story-sig > div {
  display: flex; flex-direction: column; text-align: left;
}
.story-sig span { font-size: 0.8rem; color: var(--gray); }

/* ===== SUPPORT ===== */
.support {
  padding: 100px 0;
  background: linear-gradient(180deg, #1A1A2E 0%, #0D1428 100%);
  text-align: center;
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 36px;
}
.support-card {
  background: var(--dark-card);
  border: 1px solid rgba(155,127,196,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.support-card:hover { transform: translateY(-4px); border-color: var(--violet); }
.support-icon { font-size: 2.2rem; margin-bottom: 16px; }
.support-card h3 { color: var(--white); margin-bottom: 10px; }
.support-footer {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(160deg, #16213E 0%, #1A1A2E 100%);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonials-2col {
  grid-template-columns: 1fr 1fr;
}
.testimonial-video-card {
  padding: 0;
  overflow: hidden;
}
.testimonial-video {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.testimonial-img-wrap { height: 200px; overflow: hidden; }
.testimonial-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.testimonial-img-right { object-position: top right; }
.testimonial-content { padding: 28px; }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-author strong { display: block; color: var(--gold); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray); }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #12112A 0%, #1A1A2E 100%);
}
.faq h2 { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 1rem; }

/* ===== EMOTIONAL CLOSE ===== */
.emotional-close {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a20 0%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emotional-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.06) 0%, transparent 70%);
}
.ec-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  position: relative;
}
.ec-body {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.ec-img-wrap {
  max-width: 380px;
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-gold);
  border: 1px solid rgba(201,168,76,0.2);
}
.ec-img { width: 100%; display: block; }
/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F3460 0%, #0A0A1E 100%);
}
.cta-inner { text-align: center; }
.cta-logo {
  height: 80px;
  margin: 0 auto 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at center, black 50%, transparent 100%);
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}
.cta-subtitle { font-size: 1.1rem; max-width: 540px; margin: 0 auto 40px; }
.cta-disclaimer { margin-top: 20px; font-size: 0.8rem; color: var(--gray); }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: #080818;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner { text-align: center; }
.footer-logo {
  height: 44px;
  margin: 0 auto 20px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at center, black 50%, transparent 100%);
}
.footer-text { font-size: 0.85rem; color: var(--gray); margin-bottom: 6px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 16px; flex-wrap: wrap; }
.footer-link { font-size: 0.85rem; color: var(--gold); opacity: 0.8; transition: opacity 0.2s; }
.footer-link:hover { opacity: 1; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .authority-grid,
  .pain-grid,
  .method-grid { grid-template-columns: 1fr; }
  .promise-cards,
  .support-cards,
  .testimonials-grid { grid-template-columns: 1fr; }
  .authority-badge-float { bottom: 16px; right: 16px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .process-steps { padding: 0; }
  .before-after { padding: 32px 20px; }
  .failed-methods { flex-direction: column; align-items: center; }
  .btn-xl { font-size: 1rem; padding: 18px 32px; }
}


/* ===== FORMULARIO ===== */
.contact-form {
  padding: 100px 0;
  background: var(--navy-mid);
  text-align: center;
}
.form-subtitle {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.05rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.lead-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--gray); }
.lead-form .btn { width: 100%; text-align: center; margin-top: 8px; }

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

/* ===== UBICACIONES ===== */
.locations {
  padding: 100px 0;
  background: var(--navy);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.location-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.location-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.location-main {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, #1E1E3A, #16213E);
}
.location-coming {
  border-color: rgba(123,94,167,0.3);
}
.location-icon { font-size: 2rem; margin-bottom: 12px; }
.location-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.location-place {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--white);
}
.location-detail {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}
.location-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
}

/* ===== INVERSIÓN ===== */
.investment {
  padding: 100px 0;
  background: var(--navy-mid);
  text-align: center;
}
.investment-inner { max-width: 700px; margin: 0 auto; }
.investment-box {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin: 40px 0;
}
.investment-price {
  margin-bottom: 32px;
}
.price-amount {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.price-note {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 10px;
  letter-spacing: 0.05em;
}
.investment-divider {
  width: 60px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 0 auto 32px;
}
.investment-roi p {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.investment-close {
  color: var(--gray) !important;
  font-style: italic;
  font-size: 0.95rem !important;
}
.investment-inner .btn { margin-top: 8px; }

/* ===== TESTI LABEL ===== */
.testi-label {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-label strong {
  color: var(--gold);
  font-size: 1rem;
}
.testi-label span {
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ===== BEFORE / AFTER COMPARE ===== */
.ba-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
  text-align: left;
}
.ba-col {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
}
.ba-before {
  background: rgba(123,94,167,0.1);
  border: 1px solid rgba(123,94,167,0.25);
}
.ba-after {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
}
.ba-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.ba-before h4 { color: var(--violet-light); }
.ba-after h4 { color: var(--gold); }
.ba-col ul { display: flex; flex-direction: column; gap: 10px; }
.ba-col ul li {
  font-size: 0.92rem;
  color: var(--white);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.ba-before ul li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--violet-light);
  font-weight: 700;
}
.ba-after ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 640px) {
  .ba-compare { grid-template-columns: 1fr; }
}
