/* ============================================================
   MHT Glow Cream — Premium Landing Page CSS
   ============================================================ */

/* ---------- IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --primary:       #c31f7e;
  --primary-light: #e6409e;
  --primary-dark:  #9e1865;
  --accent:        #ec4899;
  --gold:          #f59e0b;
  --bg:            #ffffff;
  --bg-alt:        #0a0a0a;
  --surface:       #fcf8fa;
  --surface-2:     #f7ebf2;
  --text:          #1f2937;
  --text-muted:    #4b5563;
  --text-light:    #9ca3af;
  --border:        #f3e8ee;
  --radius:        1rem;
  --radius-lg:     1.75rem;
  --shadow-sm:     0 2px 8px rgba(195,31,126,.06);
  --shadow:        0 8px 24px rgba(195,31,126,.08);
  --shadow-lg:     0 16px 48px rgba(195,31,126,.12);
  --shadow-purple: 0 8px 32px rgba(195,31,126,.3);
  --max-w:         1160px;
  --section-pad:   6rem 1.5rem;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.1rem; }
p  { color: var(--text-muted); }
.icon-inline {
  display: inline-block;
  vertical-align: -0.125em;
  margin-right: 0.4rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
details summary { cursor: pointer; }

/* ---------- LAYOUT HELPERS ---------- */
.section-container { max-width: var(--max-w); margin: 0 auto; padding: var(--section-pad); }
.section-container.center { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---------- EYEBROW ---------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(195,31,126,0.1) 0%, rgba(236,72,153,0.1) 100%);
  padding: .4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(195,31,126,0.2);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  background-size: 200% auto;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-purple);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 16px 40px rgba(195,31,126,.4); 
  background-position: right center;
}
.btn-primary .btn-orig { opacity: .7; text-decoration: line-through; font-weight: 400; font-size: .85rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  border: 2px solid var(--primary-light);
  background: transparent;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: #f5f3ff; }
.btn-block { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1.05rem; }

/* ---------- NOTICE BAR ---------- */
#notice-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff !important;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
}
#notice-bar p { margin: 0; display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: #fff !important; }
#notice-bar .icon-inline { color: #fff !important; }

/* ---------- NAVBAR ---------- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand-dot {
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-light);
}
.btn-nav {
  background: var(--text);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .7rem 1.5rem;
  border-radius: 100px;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-nav:hover { transform: scale(1.05); background: var(--primary); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
@media (max-width: 480px) {
  .btn-nav { padding: .6rem 1.2rem; font-size: .75rem; }
  .btn-nav span { display: none; }
}

/* ---------- HERO ---------- */
#hero {
  background: radial-gradient(circle at 15% 50%, rgba(195,31,126,0.08), transparent 25%),
              radial-gradient(circle at 85% 30%, rgba(236,72,153,0.08), transparent 25%),
              linear-gradient(135deg, #ffffff 0%, #fdf5f9 50%, #faf0f5 100%);
  overflow: hidden;
  position: relative;
}
.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-text h1 { 
  margin-bottom: 1.5rem; 
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-text h1 span { 
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-light) 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
  display: inline-block;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-sub { 
  font-size: 1.15rem; 
  color: var(--text-muted); 
  max-width: 520px; 
  margin-bottom: 2.5rem; 
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust-pills {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-pills li {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-trust-pills li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
}
.hero-visual { position: relative; padding-right: 1.5rem; perspective: 1000px; }
.hero-img-wrap { 
  overflow: hidden; 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-lg);
  background: #fff;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.hero-img-wrap img { 
  width: 100%; height: auto; 
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.hero-img-wrap:hover img {
  transform: scale(1.06);
}
.hero-floating-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -2.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: 0 16px 40px rgba(195,31,126,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: floatBadge 5s ease-in-out infinite alternate;
}
@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(10px); }
}
.badge-num { font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.15rem; }
.badge-sub { font-size: .65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- PROOF BAR ---------- */
#proof-bar {
  background: var(--primary);
  color: #fff;
}
.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-item strong { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.proof-item span { font-size: .78rem; opacity: .8; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); }

/* ---------- PROBLEM ---------- */
#problem { background: var(--surface); }
.problem-visual { position: relative; perspective: 1000px; }
.problem-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 480px; object-fit: cover; transition: transform 0.5s ease, box-shadow 0.5s ease; border: 2px solid rgba(255,255,255,0.5); }
.problem-visual:hover img { transform: scale(1.03) rotate(-1deg); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.img-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}
.problem-text h2 { margin-bottom: 1rem; }
.problem-text > p { margin-bottom: 2rem; }
.problem-list { display: flex; flex-direction: column; gap: 1.5rem; }
.problem-list li { display: flex; gap: 1.25rem; align-items: flex-start; transition: transform 0.3s; }
.problem-list li:hover { transform: translateX(5px); }
.icon-wrap { font-size: 1.5rem; line-height: 1; padding-top: .1rem; flex-shrink: 0; }
.problem-list li strong { display: block; font-size: 1.05rem; color: var(--text); margin-bottom: .3rem; }

/* ---------- SOLUTION ---------- */
#solution { background: var(--bg); }
.solution-visual { position: relative; perspective: 1000px; }
.solution-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 480px; object-fit: cover; transition: transform 0.5s ease, box-shadow 0.5s ease; border: 2px solid rgba(255,255,255,0.5); }
.solution-visual:hover img { transform: scale(1.03) rotate(1deg); box-shadow: 0 20px 40px rgba(195,31,126,0.15); }
.solution-text h2 { margin-bottom: 1rem; }
.solution-text > p { margin-bottom: 2rem; }
.solution-features { display: flex; flex-direction: column; gap: 1.25rem; }
.solution-features li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--surface-2);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem;
}
.solution-features li strong { display: block; color: var(--text); margin-bottom: .2rem; }

/* ---------- COMPARISON ---------- */
#comparison { background: var(--bg); padding: 4rem 1.5rem; }
.comparison-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.comparison-img-box {
  position: relative;
  line-height: 0;
  max-height: 480px;
  overflow: hidden;
}
.comparison-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.comparison-labels {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.comparison-labels span {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
}
.comparison-message {
  padding: 1.5rem 2rem;
  text-align: left;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: #fff;
}
.msg-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.comparison-message p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.comparison-message strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.1rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  #comparison { padding: 3rem 1.25rem; }
  .comparison-message {
    padding: 1.5rem;
    gap: 1rem;
  }
}

/* ---------- RESULTS ---------- */
#results { background: var(--surface); }
.section-sub { color: var(--text-muted); max-width: 560px; margin: .5rem auto 3rem; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 3rem;
}
.result-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.result-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); }
.result-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); }
.result-img-wrap { overflow: hidden; position: relative; }
.result-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
  pointer-events: none;
}
.result-img-wrap img { width: 100%; height: auto; display: block; transform: scale(1.05); transform-origin: center; transition: transform 0.6s ease; }
.result-card:hover .result-img-wrap img { transform: scale(1.1); }
.result-card.featured .result-img-wrap img { height: auto; transform: scale(1.05); }
.result-info {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.result-info strong { font-size: 1.05rem; color: var(--text); }
.result-info span { font-size: .85rem; color: var(--text-muted); }
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.stars { color: var(--gold); font-size: 1.3rem; }
.rating-row strong { font-size: 1.1rem; }
.rating-row span { color: var(--text-muted); font-size: .9rem; }

/* ---------- TRUST ---------- */
#trust { background: var(--bg); }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}
.trust-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(195,31,126,0.05);
  transition: all .3s ease;
}
.trust-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(195,31,126,0.2); }
.trust-card { overflow: hidden; }
.trust-card img { width: 100%; height: auto; display: block; transform: scale(1.04); transform-origin: center; }
.trust-card-body { padding: 1.2rem; }
.trust-card-body h3 { font-size: 1rem; margin-bottom: .4rem; }
.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badges span {
  background: var(--surface-2);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 100px;
}

/* ---------- INGREDIENTS ---------- */
#ingredients { background: var(--bg-alt); color: #fff; }
#ingredients .section-eyebrow { background: rgba(167,139,250,.15); }
#ingredients h2, #ingredients .section-sub { color: #fff; }
#ingredients .section-sub { color: rgba(255,255,255,.6); }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.ingredient-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: background .25s, border-color .25s;
}
.ingredient-card:hover { background: rgba(255,255,255,.09); border-color: var(--primary-light); }
.ing-icon { font-size: 1.8rem; color: var(--primary-light); margin-bottom: 1rem; }
.ingredient-card h3 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.ingredient-card p { color: rgba(255,255,255,.55); font-size: .88rem; }

/* ---------- HOW TO USE ---------- */
#how-to-use { background: var(--surface); }
.htu-visual { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.htu-visual img { width: 100%; height: auto; display: block; transform: scale(1.04); transform-origin: center; }
.htu-text h2 { margin-bottom: 1.5rem; }
.htu-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.htu-steps li { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  font-size: .72rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--surface-2);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.htu-steps li strong { display: block; font-size: 1rem; color: var(--text); margin-bottom: .2rem; }
.safety-note {
  margin-top: 2rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  border-radius: var(--radius);
  padding: .8rem 1rem;
  font-size: .85rem;
  font-weight: 500;
}

/* ---------- TIMELINE ---------- */
#timeline { background: var(--bg); }
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 3rem 0 1.5rem;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
}
.timeline-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1rem; }
.tl-week { font-size: .85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 1rem; }
.tl-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 3px solid var(--border);
  background: var(--bg);
  z-index: 1;
  margin-bottom: 1rem;
}
.tl-dot.active { border-color: var(--primary); background: var(--primary); }
@media (max-width: 768px) {
  .timeline-track { display: flex; flex-direction: column; gap: 2.5rem; align-items: flex-start; text-align: left; padding-left: 2rem; margin-left: 1rem; }
  .timeline-track::before { left: 8px; top: 0; bottom: 0; width: 2px; height: 100%; }
  .timeline-item { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.5rem; padding: 0; }
  .tl-week { margin-bottom: 0; min-width: 55px; font-size: .78rem; text-transform: uppercase; }
  .tl-dot { margin-bottom: 0; margin-top: 2px; }
}
.tl-desc { font-size: .87rem; color: var(--text-muted); }
.timeline-disclaimer { font-size: .78rem; color: var(--text-light); text-align: center; }

/* ---------- LIFESTYLE GALLERY ---------- */
#lifestyle { background: var(--surface); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
  margin-top: 3rem;
}
.lifestyle-img { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.lifestyle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.lifestyle-img:hover img { transform: scale(1.05); }
.lifestyle-img.lg { grid-row: span 2; }
.lifestyle-img:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.lifestyle-img:nth-child(5) { grid-column: 3; grid-row: 1 / 3; }
.ls-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  padding: 1.5rem .9rem .9rem;
  font-size: .82rem;
  font-weight: 600;
}

/* ---------- CONSULT CTA ---------- */
#consult {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}
.consult-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.consult-visual { overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.consult-visual img { width: 100%; height: auto; display: block; transform: scale(1.04); transform-origin: center; }
.consult-text .section-eyebrow { background: rgba(255,255,255,.15); color: #fff; }
.consult-text h2 { color: #fff; margin-bottom: 1rem; }
.consult-text p { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 1.8rem;
  border-radius: 100px;
  transition: background .2s, transform .2s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ---------- FAQ ---------- */
#faq { background: var(--surface); }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .75rem; text-align: left; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .2s;
}
.faq-list details[open] { box-shadow: var(--shadow); }
.faq-list summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: .97rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-list summary::after { content: '+'; font-size: 1.3rem; color: var(--primary); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 1.4rem 1.2rem; font-size: .9rem; }

/* ---------- PURCHASE ---------- */
#purchase { background: var(--bg); }
.purchase-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}
.purchase-img-col { overflow: hidden; }
.purchase-img-col img { width: 100%; height: auto; display: block; transform: scale(1.04); transform-origin: center; }
.purchase-name { margin-bottom: .3rem; }
.purchase-desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.price-row { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.5rem; }
.price-main { font-size: 2.5rem; font-weight: 800; color: var(--text); }
.price-orig { font-size: 1.1rem; color: var(--text-light); text-decoration: line-through; }
.price-save { background: #dcfce7; color: #16a34a; font-size: .8rem; font-weight: 700; padding: .25rem .65rem; border-radius: 100px; }
.purchase-highlights { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.purchase-highlights li { font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.purchase-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.purchase-trust-row span { font-size: .78rem; color: var(--text-muted); }
.fallback-msg { font-size: .85rem; color: var(--text-muted); margin-top: .75rem; }
.fallback-msg a { color: var(--primary); font-weight: 600; }

/* ---------- FOOTER ---------- */
#footer {
  background: var(--bg-alt);
  color: rgba(255,255,255,.6);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 3rem 1.5rem 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.footer-brand strong { display: block; font-size: 1.1rem; color: #fff; margin-bottom: .25rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-info { font-size: .82rem; margin-bottom: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; }
.footer-info a { color: var(--primary-light); }
.footer-regulatory { font-size: .75rem; color: rgba(255,255,255,.35); margin-bottom: .75rem; line-height: 1.7; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ---------- WA FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }

/* ---------- REELS SLIDER ---------- */
#reels-slider { background: var(--surface); padding-bottom: 2rem; }
.reels-swiper { padding: 3rem 1rem 5rem; max-width: 1200px; margin: 0 auto; position: relative; }
.reels-swiper .swiper-slide {
  height: 380px; /* Locked height for the video core */
  max-width: 280px; 
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease;
  position: relative; /* Anchor for the absolute crop */
}
.reels-swiper .swiper-slide:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.reels-swiper .instagram-media {
  position: absolute !important;
  top: -115px !important; /* Fixed offset to hide header */
  left: 50% !important;
  transform: translateX(-50%) scale(1.05) !important; /* Perfect centering and micro-zoom */
  min-width: 326px !important; 
  margin: 0 !important;
  pointer-events: auto;
}

/* Custom Swiper Controls */
.reels-swiper .swiper-button-next,
.reels-swiper .swiper-button-prev {
  color: var(--primary);
  background: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  top: 45%;
}
.reels-swiper .swiper-button-next::after,
.reels-swiper .swiper-button-prev::after { font-size: 1.1rem; font-weight: 800; }
.reels-swiper .swiper-pagination-bullet-active { background: var(--primary); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { grid-template-columns: 1fr 1fr; }
  .timeline-track::before { display: none; }
}

@media (max-width: 768px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .hero-container { grid-template-columns: 1fr; padding: 3rem 1.25rem; }
  .hero-img-wrap img { height: 320px; }
  .hero-floating-badge { display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card.featured .result-img-wrap img { height: 280px; }
  .trust-cards { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .lifestyle-img.lg { grid-row: auto; grid-column: auto; }
  .lifestyle-img:nth-child(1), .lifestyle-img:nth-child(5) { grid-column: auto; grid-row: auto; }
  .consult-inner { grid-template-columns: 1fr; }
  .purchase-card { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .nav-links { display: none; }
  .proof-inner { gap: 1.25rem; }
  .proof-divider { display: none; }
}

@media (max-width: 480px) {
  .ingredients-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .hero-ctas { flex-direction: column; }
}

/* ---------- STICKY MOBILE BUY ---------- */
#sticky-mobile-buy {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
}
.sticky-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }
.sticky-text { display: flex; flex-direction: column; }
.sticky-text strong { font-size: 0.9rem; color: var(--text); }
.sticky-text span { font-size: 0.85rem; color: var(--primary); font-weight: 700; }
#sticky-mobile-buy .btn-primary { padding: 0.6rem 1.2rem; font-size: 0.85rem; margin: 0; }

#sticky-mobile-buy.active { transform: translateY(0); }

@media (min-width: 769px) { #sticky-mobile-buy { display: none !important; } }

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
