/* ============================================
   MENOPAUSA CELULAR — Complete Stylesheet
   ============================================ */

:root {
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --charcoal: #1C1C1C;
  --gold: #B8965A;
  --gold-light: #D4AF78;
  --text-main: #2A2A2A;
  --text-muted: #7A7A7A;
  --border: rgba(184, 150, 90, 0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-main);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* PARTICLES */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; background: var(--gold); border-radius: 50%; opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.35; }
  90%  { opacity: 0.12; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ANIMATIONS */
.animate-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.animate-fade { opacity: 0; transition: opacity 1s ease; }
.animate-up.visible, .animate-fade.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.40s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.70s; }
.delay-6 { transition-delay: 0.85s; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 55%, #2a1508 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 60px 60px 60px;
  margin-top: -2rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(184,150,90,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(184,150,90,0.07) 0%, transparent 50%);
}
.hero__bg-text {
  position: absolute; bottom: -4%; left: -1%;
  font-family: var(--font-display); font-size: clamp(80px, 17vw, 210px);
  font-weight: 300; color: rgba(255,255,255,0.025);
  letter-spacing: 0.05em; line-height: 1;
  pointer-events: none; white-space: nowrap; z-index: 0; user-select: none;
}

/* Desktop two-column grid */
.hero__content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: calc(100vh - 120px);
}

/* Left text column */
.hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding-right: 60px; padding-top: 20px; padding-bottom: 20px;
}

/* Right image column */
.hero__right {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: visible;
}

/* Doctor image */
.doctor-wrap {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
}
.doctor-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120%; height: 70%;
  background: radial-gradient(ellipse at center bottom, rgba(184,150,90,0.18) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.doctor-img {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px; height: auto; display: block;
  object-fit: contain; object-position: bottom center;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 16%);
  mask-image: linear-gradient(to top, transparent 0%, black 16%);
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.65));
}

/* Mobile-only elements: hidden on desktop */
.mobile-bottom { display: none; }
.scroll-down-hint { display: none; }

/* Desktop-only elements */
.desktop-only { display: block; }

/* Hero label */
.hero__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
}
.hero__label::before {
  content: ''; display: inline-block; width: 34px; height: 1px; background: var(--gold);
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 300; line-height: 0.93; color: var(--white);
  letter-spacing: -0.01em; margin-bottom: 20px;
  display: flex; flex-direction: column;
}
.title-line { display: block; }
.italic { font-style: italic; color: var(--gold-light); }

.hero__author {
  font-size: 12px; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 28px;
}
.hero__author strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.hero__tagline {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.85; margin-bottom: 44px; font-weight: 300; max-width: 440px;
}

/* COUNTDOWN */
.countdown { margin-bottom: 28px; }
.countdown__label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.countdown__timer { display: flex; align-items: flex-end; gap: 8px; flex-wrap: nowrap; }
.countdown__block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(184,150,90,0.25);
  border-radius: 4px; padding: 13px 16px 9px; min-width: 66px;
  backdrop-filter: blur(10px); flex-shrink: 0;
}
.countdown__num {
  font-family: var(--font-display); font-size: 38px; font-weight: 300;
  color: var(--white); line-height: 1; min-width: 2ch; text-align: center;
}
.countdown__unit {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 5px;
}
.countdown__sep {
  font-family: var(--font-display); font-size: 32px;
  color: var(--gold); padding-bottom: 15px; opacity: 0.55; flex-shrink: 0;
}

/* WAITLIST BADGE */
.waitlist-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.55); flex-wrap: wrap;
}
.badge__dot {
  width: 8px; height: 8px; background: #4CAF50;
  border-radius: 50%; box-shadow: 0 0 10px #4CAF50;
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.65; }
}
#waitlist-count, #waitlist-count-m {
  color: var(--gold-light); font-weight: 700;
  font-size: 20px; font-family: var(--font-display);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); z-index: 1; pointer-events: none;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,150,90,0.2);
  border-bottom: 1px solid rgba(184,150,90,0.2);
  padding: 30px 40px;
}
.features__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.feature {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.65); font-size: 13px;
  flex: 1; min-width: 160px;
}
.feature__icon { color: var(--gold); font-size: 10px; flex-shrink: 0; }
.feature__divider { width: 1px; height: 28px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ══════════════════════════════════════
   SHARED
══════════════════════════════════════ */
.section-label {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid var(--gold);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 54px);
  font-weight: 300; line-height: 1.1; color: var(--black); margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { background: var(--cream); padding: 100px 40px; }
.about__container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__text p { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; font-weight: 300; }
.about__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.check { color: var(--gold); font-size: 10px; margin-top: 5px; flex-shrink: 0; }

.about__quote {
  padding: 56px 48px; background: var(--black); border-radius: 2px;
  position: relative; overflow: hidden;
}
.about__quote::before {
  content: '\201C'; position: absolute; top: 10px; left: 32px;
  font-family: var(--font-display); font-size: 110px;
  color: rgba(184,150,90,0.12); line-height: 1; pointer-events: none;
}
.about__quote blockquote p {
  font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300; color: var(--white); line-height: 1.65;
  font-style: italic; position: relative; z-index: 1; margin-bottom: 22px;
}
.about__quote blockquote em { color: var(--gold-light); font-style: normal; }
.about__quote cite {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); font-style: normal;
}

/* ══════════════════════════════════════
   WAITLIST FORM
══════════════════════════════════════ */
.waitlist {
  background: linear-gradient(135deg, #1a0f08 0%, var(--black) 100%);
  padding: 100px 40px; position: relative; overflow: hidden;
}
.waitlist::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184,150,90,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.waitlist__container {
  max-width: 600px; margin: 0 auto; position: relative; z-index: 1; text-align: center;
}
.waitlist__intro .section-label { display: block; text-align: center; }
.waitlist__intro .section-title { color: var(--white); }
.waitlist__intro p { color: rgba(255,255,255,0.5); font-size: 15px; font-weight: 300; margin-bottom: 44px; }

.waitlist-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,90,0.18);
  border-radius: 4px; padding: 44px; backdrop-filter: blur(20px);
}
.form-group { text-align: left; margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px;
}
.form-group input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
  padding: 14px 18px; font-family: var(--font-body);
  font-size: 15px; font-weight: 300; color: var(--white);
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none; -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.22); }
.form-group input:focus { border-color: var(--gold); background: rgba(184,150,90,0.05); }
.form-group input.error { border-color: #e57373; }
.field-error { display: block; font-size: 12px; color: #e57373; margin-top: 6px; min-height: 18px; }

.btn-submit {
  width: 100%; background: var(--gold); color: var(--black); border: none;
  padding: 16px 40px; font-family: var(--font-body); font-size: 12px;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: all 0.3s ease; margin-bottom: 18px; -webkit-appearance: none;
}
.btn-submit:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(184,150,90,0.3);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-icon { font-size: 17px; transition: transform 0.25s ease; }
.btn-submit:hover .btn-icon { transform: translateX(4px); }
.form-privacy { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; }

.success-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,90,0.28);
  border-radius: 4px; padding: 52px 40px; text-align: center;
}
.success-icon {
  width: 62px; height: 62px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--black); margin: 0 auto 20px;
}
.success-card h3 {
  font-family: var(--font-display); font-size: 34px;
  font-weight: 300; color: var(--white); margin-bottom: 12px;
}
.success-card p { color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 14px; }
.success-bonus {
  background: rgba(184,150,90,0.1); border: 1px solid rgba(184,150,90,0.2);
  border-radius: 2px; padding: 14px 20px;
  color: var(--gold-light) !important; font-size: 14px !important;
}

/* ══════════════════════════════════════
   AUTHOR
══════════════════════════════════════ */
.author { background: var(--cream); padding: 100px 40px; border-top: 1px solid var(--border); }
.author__container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center;
}
.author__photo-wrap { position: relative; }
.author__photo-wrap::before {
  content: ''; position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold); border-radius: 2px; z-index: 0;
}
.author__photo { position: relative; width: 100%; border-radius: 2px; z-index: 1; display: block; }
.author__bio p { color: var(--text-muted); font-size: 15px; font-weight: 300; margin-bottom: 18px; }
.author__bio em { color: var(--gold); font-style: italic; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--black); padding: 48px 40px; border-top: 1px solid rgba(184,150,90,0.12); }
.footer__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer__brand {
  font-family: var(--font-display); font-size: 24px; font-weight: 300;
  color: var(--white); margin-bottom: 8px; letter-spacing: 0.1em;
}
.footer__sub { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ══════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 36px; right: 36px; z-index: 999;
  width: 48px; height: 48px; background: var(--gold); color: var(--black);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(184,150,90,0.4);
  opacity: 0; transform: translateY(20px) scale(0.85); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              background 0.25s ease, box-shadow 0.25s ease;
}
.scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.scroll-top:hover {
  background: var(--gold-light); transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 40px rgba(184,150,90,0.4);
}
.scroll-top:active { transform: translateY(0) scale(0.97); }
.scroll-top svg { display: block; transition: transform 0.25s ease; }
.scroll-top:hover svg { transform: translateY(-2px); }
.scroll-top.pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--gold); opacity: 0;
  animation: ringPulse 0.65s ease-out forwards;
}
@keyframes ringPulse {
  0%   { opacity: 0.7; transform: scale(0.9); }
  100% { opacity: 0;   transform: scale(1.45); }
}



/* Doctor image — mobile float fallback */
@keyframes mobileDoctorFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}


/* ══════════════════════════════════════
   PHONE INPUT WITH COUNTRY SELECTOR
══════════════════════════════════════ */
.field-optional {
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-left: 8px; font-weight: 400;
}

.phone-input-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Country trigger button */
.country-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(184,150,90,0.2);
  border-radius: 2px 0 0 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  min-width: 96px;
  -webkit-appearance: none;
}
.country-trigger:hover {
  background: rgba(184,150,90,0.1);
  border-color: rgba(184,150,90,0.35);
}
.country-trigger:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(184,150,90,0.08);
}
.country-flag { font-size: 18px; line-height: 1; }
.country-dial {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.02em;
}
.country-chevron {
  color: rgba(255,255,255,0.35);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.country-trigger[aria-expanded="true"] .country-chevron {
  transform: rotate(180deg);
}

/* Phone number input */
.phone-number-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: none;
  border-radius: 0 2px 2px 0;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 300; color: var(--white);
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none; -webkit-appearance: none;
  min-width: 0;
}
.phone-number-input::placeholder { color: rgba(255,255,255,0.22); }
.phone-number-input:focus {
  border-color: var(--gold);
  background: rgba(184,150,90,0.05);
}
/* When trigger is focused/open, keep border cohesion */
.country-trigger:focus + input,
.country-trigger[aria-expanded="true"] ~ .phone-number-input {
  border-left: 1px solid rgba(184,150,90,0.2);
}

/* Dropdown */
.country-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 240px;
  background: #1a1a1a;
  border: 1px solid rgba(184,150,90,0.25);
  border-radius: 4px;
  list-style: none;
  z-index: 100;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  animation: dropdownIn 0.2s var(--ease) forwards;
}
.country-dropdown.open { display: block; }

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.country-option:last-child { border-bottom: none; }
.country-option:hover, .country-option:focus {
  background: rgba(184,150,90,0.12);
  outline: none;
}
.country-option.selected { background: rgba(184,150,90,0.08); }

.country-option .country-flag { font-size: 20px; flex-shrink: 0; }
.country-name {
  flex: 1;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
}
.country-dial-label {
  font-size: 12px; color: var(--gold); font-weight: 500;
  font-family: var(--font-body); letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet ≤ 900px
══════════════════════════════════════ */
@media (max-width: 900px) {

  .hero { padding: 36px 20px 28px; min-height: auto; justify-content: flex-start; }
  .hero__content { grid-template-columns: 1fr; min-height: auto; gap: 0; }

  /* 1. Text */
  .hero__left {
    order: 1; padding-right: 0; text-align: center;
    align-items: center; padding-bottom: 12px;
  }

  /* 2. Image — hard height cap so countdown always visible below */
  .hero__right { order: 2; justify-content: center; align-items: flex-end; }
  .doctor-wrap {
    width: 100%; height: auto; min-height: auto;
    display: flex; justify-content: center; align-items: flex-end;
  }
  .doctor-img {
    width: auto;
    max-width: 72%;
    height: 38vh;
    max-height: 320px;
    object-fit: contain;
    object-position: top center;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 10%);
    mask-image: linear-gradient(to top, transparent 0%, black 10%);
  }

  /* 3. Bouncing arrow hint */
  .scroll-down-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0 2px;
    color: rgba(255, 255, 255, 0.28);
    position: relative; z-index: 1;
    animation: hintBounce 2s ease-in-out infinite;
  }
  @keyframes hintBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
  }

  /* 4. Countdown + badge */
  .desktop-only { display: none !important; }
  .mobile-bottom {
    display: flex; flex-direction: column; align-items: center;
    gap: 14px; padding: 12px 16px 8px;
    position: relative; z-index: 1;
    width: 100%; max-width: 480px; margin: 0 auto;
  }
  .mobile-bottom .countdown { margin-bottom: 0; }
  .mobile-bottom .countdown__timer { justify-content: center; }
  .mobile-bottom .waitlist-badge { justify-content: center; }

  /* Text */
  .hero__label { justify-content: center; }
  .hero__label::before { display: none; }
  .hero__title { font-size: clamp(42px, 11vw, 70px); align-items: center; }
  .hero__tagline { max-width: 480px; margin: 0 auto 20px; text-align: center; }
  .scroll-indicator { display: none; }

  /* Sections */
  .about__container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about__list li { justify-content: center; }
  .author__container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .author__photo-wrap { max-width: 260px; margin: 0 auto; }
  .author__photo-wrap::before { display: none; }
  .features__inner { flex-direction: column; align-items: center; gap: 14px; }
  .feature { justify-content: center; min-width: unset; text-align: center; }
  .feature__divider { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile ≤ 520px
══════════════════════════════════════ */
@media (max-width: 520px) {
  .hero { padding: 32px 16px 24px; }
  .hero__title { font-size: clamp(34px, 11vw, 50px); }

  .doctor-img {
    height: 34vh;
    max-height: 360px;
    max-width: 78%;
  }

  .about, .waitlist, .author { padding: 56px 16px; }
  .features { padding: 22px 16px; }
  .waitlist-form { padding: 24px 16px; }
  .success-card { padding: 32px 16px; }

  .countdown__block { min-width: 50px; padding: 8px 8px 6px; }
  .countdown__num { font-size: 24px; }
  .countdown__unit { font-size: 7px; }
  .countdown__sep { font-size: 20px; padding-bottom: 10px; }
  .countdown__timer { gap: 3px; }

  .about__quote { padding: 30px 16px; }
  .section-title { font-size: clamp(26px, 8vw, 38px); }
  .scroll-top { bottom: 18px; right: 14px; width: 40px; height: 40px; }
}

/* ══════════════════════════════════════
   COOKIE CONSENT BANNER — Bottom Bar
══════════════════════════════════════ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid rgba(184, 150, 90, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}
.cookie-bar.visible { transform: translateY(0); }

.cookie-bar__text {
  flex: 1; min-width: 220px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  font-weight: 300; line-height: 1.6;
}
.cookie-bar__text strong { color: #D4AF78; font-weight: 600; }
.cookie-bar__text a {
  color: #B8965A; text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.2s ease;
}
.cookie-bar__text a:hover { color: #D4AF78; }

.cookie-bar__actions {
  display: flex; align-items: center;
  gap: 10px; flex-shrink: 0; flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 22px; border-radius: 2px;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; cursor: pointer;
  border: none; transition: all 0.25s ease;
  -webkit-appearance: none;
}
.cookie-btn--accept { background: #B8965A; color: #0A0A0A; }
.cookie-btn--accept:hover {
  background: #D4AF78;
  box-shadow: 0 6px 24px rgba(184,150,90,0.35);
  transform: translateY(-1px);
}
.cookie-btn--necessary {
  background: transparent; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}
.cookie-btn--necessary:hover {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}
.cookie-btn--manage {
  background: transparent; color: rgba(255,255,255,0.3);
  font-size: 10px; letter-spacing: 0.15em; padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.07);
}
.cookie-btn--manage:hover {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.18);
}

/* Preferences Modal */
.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: #141414; border: 1px solid rgba(184,150,90,0.25);
  border-radius: 4px; padding: 40px; max-width: 480px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: translateY(16px);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.cookie-modal-overlay.open .cookie-modal { transform: translateY(0); }
.cookie-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: #fff; margin-bottom: 8px;
}
.cookie-modal__subtitle {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 28px; font-weight: 300;
}
.cookie-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 16px;
}
.cookie-toggle-row:last-of-type { border-bottom: none; margin-bottom: 24px; }
.cookie-toggle-info strong {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: 3px;
}
.cookie-toggle-info span { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; }

.toggle-switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: rgba(255,255,255,0.1);
  border-radius: 22px; cursor: pointer; transition: background 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.toggle-slider::before {
  content: ''; position: absolute; width: 14px; height: 14px;
  background: rgba(255,255,255,0.5); border-radius: 50%;
  left: 3px; top: 3px; transition: transform 0.3s ease, background 0.3s ease;
}
.toggle-switch input:checked + .toggle-slider { background: rgba(184,150,90,0.4); border-color: #B8965A; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); background: #B8965A; }
.toggle-switch input:disabled + .toggle-slider { cursor: not-allowed; opacity: 0.6; }

.cookie-modal__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-modal__actions .cookie-btn { flex: 1; text-align: center; padding: 12px 16px; }

@media (max-width: 600px) {
  .cookie-bar { padding: 14px 16px; }
  .cookie-bar__text { font-size: 12px; }
  .cookie-btn { padding: 8px 14px; font-size: 10px; }
  .cookie-modal { padding: 24px 20px; }
}




/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 300; color: #fff;
  letter-spacing: 0.08em; margin-bottom: 28px;
}
.preloader__logo em { font-style: italic; color: #B8965A; }
.preloader__bar {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px; overflow: hidden; margin: 0 auto;
}
.preloader__fill {
  height: 100%; width: 0%;
  background: linear-gradient(to right, #B8965A, #D4AF78);
  border-radius: 1px;
  transition: width 0.3s ease;
}

/* ══════════════════════════════════════
   CONFETTI CANVAS
══════════════════════════════════════ */
#confettiCanvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
}

/* ══════════════════════════════════════
   SHARE BUTTONS
══════════════════════════════════════ */
.share-section {
  margin-top: 32px;
  text-align: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.share-section.visible { opacity: 1; transform: translateY(0); }
.share-label {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}
.share-buttons {
  display: flex; align-items: center;
  justify-content: center; gap: 10px; flex-wrap: wrap;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease; -webkit-appearance: none;
  background: transparent;
}
.share-btn:hover { transform: translateY(-2px); }

.share-btn--whatsapp {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.06);
}
.share-btn--whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 6px 20px rgba(37,211,102,0.15);
}
.share-btn--instagram {
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.25);
  background: rgba(225, 48, 108, 0.06);
}
.share-btn--instagram:hover {
  background: rgba(225, 48, 108, 0.15);
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 6px 20px rgba(225,48,108,0.15);
}
.share-btn--linkedin {
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.3);
  background: rgba(10, 102, 194, 0.07);
}
.share-btn--linkedin:hover {
  background: rgba(10, 102, 194, 0.18);
  border-color: rgba(10, 102, 194, 0.5);
  box-shadow: 0 6px 20px rgba(10,102,194,0.15);
}
.share-btn--copy {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.share-btn--copy:hover {
  color: #B8965A;
  border-color: rgba(184,150,90,0.35);
  background: rgba(184,150,90,0.08);
}
.share-btn--copy.copied {
  color: #4CAF50;
  border-color: rgba(76,175,80,0.4);
  background: rgba(76,175,80,0.08);
}

@media (max-width: 520px) {
  .share-buttons { gap: 8px; }
  .share-btn { padding: 9px 13px; font-size: 11px; }
  .share-btn span { display: none; }
  .share-btn svg { width: 18px; height: 18px; }
}




/* ══════════════════════════════════════
   MOMENTUM PROGRESS BAR
══════════════════════════════════════ */
.momentum-wrap {
  margin-bottom: 44px;
}
.momentum-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
.momentum-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #B8965A, #D4AF78, #e8c97e);
  border-radius: 3px;
  transition: width 1.8s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.momentum-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35));
  border-radius: 3px;
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
.momentum-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.momentum-count {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.momentum-count span {
  color: #D4AF78;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
}
.momentum-heat {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}


/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.faq {
  background: var(--cream);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.faq__container {
  max-width: 760px;
  margin: 0 auto;
}
.faq__intro {
  text-align: center;
  margin-bottom: 56px;
}
.faq__intro .section-label {
  display: block;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
  transition: color 0.2s ease;
  -webkit-appearance: none;
}
.faq__question:hover {
  color: var(--gold);
}
.faq__question[aria-expanded="true"] {
  color: var(--gold);
}

/* Animated +/× icon */
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.35s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
/* Horizontal bar */
.faq__icon::before {
  width: 10px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* Vertical bar */
.faq__icon::after {
  width: 1.5px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__question[aria-expanded="true"] .faq__icon {
  background: rgba(184,150,90,0.1);
  border-color: var(--gold);
  transform: rotate(45deg);
}

/* Answer panel */
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              padding 0.35s ease;
}
.faq__answer.open {
  max-height: 300px;
}
.faq__answer p {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
}
.faq__answer p em {
  color: var(--gold);
  font-style: italic;
}
.faq__answer p strong {
  color: var(--text-main);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .faq { padding: 72px 24px; }
  .faq__question { font-size: 14px; padding: 18px 0; }
}
@media (max-width: 520px) {
  .faq { padding: 56px 16px; }
  .faq__question { font-size: 13px; gap: 16px; }
  .momentum-meta { flex-direction: column; align-items: flex-start; }
}




.social-proof {
  margin-top: 12px;
}
.social-proof__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 14px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.social-proof__badge:hover {
  background: rgba(184,150,90,0.12);
  border-color: rgba(184,150,90,0.3);
  color: #D4AF78;
}
.social-proof__badge svg {
  color: #D4AF78;
  flex-shrink: 0;
}


.countdown__available {
  font-size: 28px;
  font-weight: 300;
  color: #D4AF78;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}