/* ============================================
   BOOSTARO.US - Main Stylesheet
   ============================================ */

:root {
  --navy: #0d1b2e;
  --navy-mid: #152640;
  --gold: #c9982a;
  --gold-light: #e8b84b;
  --gold-pale: #f5e6c0;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #1a2535;
  --text-muted: #5a6a7e;
  --red-urgency: #c0392b;
  --green-trust: #1e8c5a;
  --border: #dde2ea;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(13,27,46,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,46,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.btn-primary {
  display: inline-block; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); font-weight: 700; font-size: 1rem; padding: 16px 36px;
  border-radius: 50px; cursor: pointer; border: none; text-transform: uppercase;
  letter-spacing: 0.06em; box-shadow: 0 6px 24px rgba(201,152,42,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,152,42,0.55); }

.section-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; }

/* ── ANNOUNCEMENT BAR ── */
#announcement {
  background: linear-gradient(90deg, var(--navy) 0%, #1a3460 100%);
  color: var(--gold-light); text-align: center; padding: 11px 20px; font-size: 0.88rem; font-weight: 500;
}
#announcement strong { color: #fff; }
#announcement a { color: var(--gold-light); text-decoration: underline; }

/* ── STICKY HEADER ── */
#site-header {
  position: sticky; top: 0; z-index: 1000; background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1140px; margin: 0 auto; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold-light); font-weight: 900; letter-spacing: 0.04em; }
.logo span { color: #fff; }
.logo sup { font-size: 0.6rem; color: var(--gold); }
nav { display: flex; gap: 28px; }
nav a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.75); transition: color 0.2s; }
nav a:hover { color: var(--gold-light); }
.header-cta { background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.85rem; padding: 10px 22px; border-radius: 50px; letter-spacing: 0.04em; transition: background 0.2s; }
.header-cta:hover { background: var(--gold-light); }

/* ── HERO ── */
#hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3460 60%, #0d2440 100%);
  min-height: 88vh; display: flex; align-items: center; padding: 80px 0; position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(201,152,42,0.08) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,152,42,0.15); border: 1px solid rgba(201,152,42,0.35); border-radius: 50px; padding: 7px 16px; font-size: 0.82rem; color: var(--gold-light); font-weight: 600; margin-bottom: 22px; }
.hero-h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 520px; }
.hero-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-bullets { list-style: none; margin: 0 0 32px 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.88); font-size: 0.97rem; font-weight: 500; }
.hero-bullets li svg { flex-shrink: 0; }
.hero-proof { display: flex; gap: 24px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.proof-item svg { flex-shrink: 0; }
.hero-img-wrap { position: relative; text-align: center; }
.hero-img-wrap img { max-height: 520px; width: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); margin: 0 auto; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-rating { margin-top: 16px; color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.stars { color: var(--gold-light); font-size: 1.1rem; letter-spacing: 2px; }

/* ── TRUST STRIP ── */
#trust-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.trust-icon { width: 36px; height: 36px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

/* ── WHY CHOOSE ── */
#why-choose { padding: 90px 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(135deg, #fff, var(--gold-pale)); padding: 30px; }
.why-img img { margin: 0 auto; }
.why-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; }
.why-check { width: 24px; height: 24px; background: linear-gradient(135deg,var(--gold),var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check::after { content: '✓'; color: var(--navy); font-size: 0.72rem; font-weight: 800; }
.why-text strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
.why-text span { font-size: 0.92rem; color: var(--text-muted); }

/* ── AI ANSWER BLOCK ── */
.ai-answer-block {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
  border-left: 4px solid #2563eb; border-radius: 0 12px 12px 0;
  padding: 18px 22px; margin: 28px 0; font-size: 0.95rem; color: var(--text);
}
.ai-answer-block strong { color: #1e40af; }
.ai-answer-block.dark { background: rgba(37,99,235,0.1); border-color: #60a5fa; color: rgba(255,255,255,0.8); }
.ai-answer-block.dark strong { color: #93c5fd; }

/* ── PROBLEM SECTION ── */
#problem { padding: 90px 0; background: var(--navy); }
#problem .section-title { color: #fff; }
#problem .section-sub { color: rgba(255,255,255,0.65); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.pain-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; }
.pain-icon { font-size: 2rem; margin-bottom: 12px; }
.pain-card h4 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.pain-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ── WHAT IS BOOSTARO ── */
#what-is { padding: 90px 0; background: #fff; }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 40px; }
.what-is-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.what-is-img img { width: 100%; height: 420px; object-fit: contain; background: var(--cream); padding: 30px; }

/* ── HOW IT WORKS ── */
#how-it-works { padding: 90px 0; background: var(--cream); }
.mechanism-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.mechanism-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); transition: transform 0.2s; }
.mechanism-card:hover { transform: translateY(-4px); }
.mechanism-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold-pale); line-height: 1; margin-bottom: 10px; }
.mechanism-card h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.mechanism-card p { font-size: 0.91rem; color: var(--text-muted); }

/* ── SVG DIAGRAM ── */
#no-pathway { padding: 70px 0; background: var(--navy); }
#no-pathway .section-title { color: #fff; }
#no-pathway .section-sub { color: rgba(255,255,255,0.6); }
.diagram-wrap { margin-top: 40px; display: flex; justify-content: center; }

/* ── TIMELINE ── */
#timeline { padding: 90px 0; background: #fff; }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 50px; position: relative; }
.timeline-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.timeline-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.timeline-dot { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Playfair Display', serif; font-weight: 900; color: var(--navy); font-size: 0.82rem; text-align: center; line-height: 1.1; box-shadow: 0 6px 20px rgba(201,152,42,0.4); }
.timeline-item h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.timeline-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ── PRICING ── */
#pricing { padding: 90px 0; background: var(--navy); }
#pricing .section-title { color: #fff; }
#pricing .section-sub { color: rgba(255,255,255,0.65); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 20px; margin-top: 48px; align-items: stretch; }
.price-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 30px 24px; text-align: center; display: flex; flex-direction: column; }
.price-card.best-value {
  background: #fff; border: 2px solid var(--gold);
  transform: scale(1.05); box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.best-badge { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 16px; border-radius: 50px; display: inline-block; margin-bottom: 14px; }
.price-card .bottles { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.price-card.best-value .bottles { color: var(--navy); }
.price-card:not(.best-value) .bottles { color: rgba(255,255,255,0.85); }
.price-card .supply { font-size: 0.85rem; margin-bottom: 20px; }
.price-card.best-value .supply { color: var(--text-muted); }
.price-card:not(.best-value) .supply { color: rgba(255,255,255,0.5); }
.price-card img { width: 100%; max-width: 220px; height: 220px; object-fit: contain; margin: 0 auto 20px; display: block; }
.price-card.best-value img { max-width: 240px; height: 240px; }
.price-main { margin-bottom: 6px; }
.price-card.best-value .price-main { color: var(--navy); }
.price-card:not(.best-value) .price-main { color: #fff; }
.price-card:not(.best-value) .price-per { color: #fff; }
.price-card.best-value .price-per { color: var(--navy); }
.price-per { font-size: 2.4rem; font-weight: 900; font-family: 'Playfair Display', serif; }
.price-per span { font-size: 1.1rem; font-weight: 400; opacity: 0.7; }
.price-total { font-size: 0.85rem; opacity: 0.7; margin-bottom: 18px; }
.price-card.best-value .price-total { color: var(--text-muted); }
.price-card:not(.best-value) .price-total { color: rgba(255,255,255,0.55); }
.price-features { list-style: none; margin-bottom: 24px; text-align: left; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.price-features li { font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.price-card.best-value .price-features li { color: var(--text); }
.price-card:not(.best-value) .price-features li { color: rgba(255,255,255,0.7); }
.price-features li::before { content: '✓'; color: var(--green-trust); font-weight: 700; }
.price-guarantee { font-size: 0.82rem; margin-top: 12px; opacity: 0.7; }
.price-card.best-value .price-guarantee { color: var(--text-muted); }
.price-card:not(.best-value) .price-guarantee { color: rgba(255,255,255,0.5); }
.pricing-note { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.84rem; margin-top: 28px; }

/* ── INGREDIENTS ── */
#ingredients { padding: 90px 0; background: var(--cream); }
.ingredients-intro { max-width: 700px; }
.ingredient-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.ingredient-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; gap: 18px; }
.ingr-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--gold-pale), #fdf3d8); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.ingr-body h4 { color: var(--navy); font-size: 1.05rem; font-weight: 700; font-family: 'DM Sans', sans-serif; margin-bottom: 6px; }
.ingr-body p { font-size: 0.91rem; color: var(--text-muted); }
.ingr-body .mechanism-tag { display: inline-block; background: var(--gold-pale); color: #7a5c10; font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; }

/* ── BENEFITS ── */
#benefits { padding: 90px 0; background: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.benefit-card { background: var(--cream); border-radius: var(--radius); padding: 24px 20px; text-align: center; border-bottom: 3px solid var(--gold); transition: transform 0.2s, box-shadow 0.2s; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 12px; }
.benefit-card h4 { color: var(--navy); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.benefit-card p { font-size: 0.84rem; color: var(--text-muted); }

/* ── COMPARISON ── */
#comparison { padding: 90px 0; background: var(--cream); }
.comp-table-wrap { overflow-x: auto; margin-top: 36px; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.comp-table th { background: var(--navy); color: #fff; padding: 14px 18px; text-align: left; font-weight: 600; }
.comp-table th.highlight { background: var(--gold); color: var(--navy); }
.comp-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--text); }
.comp-table tr:nth-child(even) td { background: #f9faff; }
.comp-table td.highlight { font-weight: 600; color: var(--green-trust); background: #f0faf3 !important; }
.check-yes { color: var(--green-trust); font-weight: 700; }
.check-no { color: #c0392b; }

/* ── REVIEWS ── */
#reviews { padding: 90px 0; background: var(--navy); }
#reviews .section-title { color: #fff; }
#reviews .section-sub { color: rgba(255,255,255,0.65); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.review-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; }
.review-stars { color: var(--gold-light); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { color: rgba(255,255,255,0.8); font-size: 0.91rem; line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.review-meta { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 0.8rem; flex-shrink: 0; }
.review-name { font-weight: 600; color: #fff; font-size: 0.9rem; }
.review-location { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.verified-badge { font-size: 0.7rem; color: var(--gold-light); border: 1px solid rgba(201,152,42,0.4); border-radius: 50px; padding: 2px 8px; margin-left: auto; }

/* ── GUARANTEE ── */
#guarantee { padding: 90px 0; background: #fff; }
.guarantee-inner { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; max-width: 900px; margin: 0 auto; }
.guarantee-seal {
  width: 180px; height: 180px; border-radius: 50%;
  background: conic-gradient(var(--gold) 0deg, var(--gold-light) 90deg, var(--gold) 180deg, var(--gold-light) 270deg, var(--gold) 360deg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(201,152,42,0.4);
}
.seal-inner { width: 148px; height: 148px; background: var(--navy); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.seal-days { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.seal-text { color: rgba(255,255,255,0.8); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.guarantee-content h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 14px; }
.guarantee-content p { color: var(--text-muted); margin-bottom: 16px; }
.guarantee-content .btn-primary { margin-top: 8px; }

/* ── CONTRAINDICATIONS ── */
#contraindications { padding: 70px 0; background: var(--cream); border-top: 1px solid var(--border); }
.contra-box { background: #fff; border-left: 4px solid #c0392b; border-radius: 0 12px 12px 0; padding: 28px; margin-top: 28px; box-shadow: var(--shadow); }
.contra-box ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contra-box li { font-size: 0.94rem; color: var(--text); line-height: 1.6; }
.contra-box strong { color: var(--navy); }

/* ── FAQ ── */
#faq { padding: 90px 0; background: var(--cream); }
.faq-list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.faq-question { padding: 20px 24px; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 0.97rem; }
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold); transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; border-top: 1px solid var(--border); padding-top: 16px; }

/* ── MEDICAL REVIEWER ── */
#reviewer { padding: 70px 0; background: #fff; }
.reviewer-card { background: var(--cream); border-radius: 20px; padding: 40px; display: flex; gap: 32px; align-items: center; max-width: 820px; margin: 0 auto; border: 1px solid var(--border); }
.reviewer-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #1a3460, var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; flex-shrink: 0; }
.reviewer-info h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.reviewer-cred { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.reviewer-info p { font-size: 0.91rem; color: var(--text-muted); }

/* ── REFERENCES ── */
#references { padding: 70px 0; background: var(--cream); }
.ref-list { list-style: none; max-width: 800px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 10px; }
.ref-list li { font-size: 0.85rem; color: var(--text-muted); padding: 12px 16px; background: #fff; border-radius: 8px; border-left: 3px solid var(--gold); }
.ref-list a { color: #2563eb; word-break: break-all; }

/* ── FINAL CTA ── */
#final-cta { padding: 100px 0; background: linear-gradient(135deg, var(--navy) 0%, #1a3460 100%); text-align: center; }
#final-cta h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
#final-cta p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }
.cta-bottle { width: 220px; height: auto; margin: 0 auto 36px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.trust-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.trust-badge { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 8px 16px; font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ── FOOTER ── */
#footer { background: #080f1c; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.65; }
.footer-col h5 { color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer-disclaimer { font-size: 0.76rem; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 900px; }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.25); margin-top: 12px; }

/* ============================================
   LEGAL PAGES SHARED STYLES
   ============================================ */
.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3460 100%);
  padding: 80px 0 60px; color: #fff; text-align: center;
}
.legal-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.legal-hero .updated { color: var(--gold-light); font-size: 0.88rem; }
.breadcrumb { padding: 16px 0; background: var(--cream); border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); margin: 0 8px; }
.legal-content { padding: 60px 0 80px; max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; color: var(--navy); margin: 36px 0 14px; }
.legal-content h3 { font-size: 1.2rem; color: var(--navy); margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; color: var(--text); line-height: 1.75; }
.legal-content ul { margin: 12px 0 14px 28px; }
.legal-content li { margin-bottom: 8px; color: var(--text); }
.legal-content strong { color: var(--navy); }
.contact-block { background: var(--cream); padding: 24px; border-radius: 12px; border-left: 4px solid var(--gold); margin: 24px 0; }
.contact-block p { margin-bottom: 6px; }
.mini-cta {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff 100%);
  padding: 40px 24px; text-align: center; border-radius: 16px; margin: 40px auto;
  max-width: 700px; border: 1px solid var(--gold-pale);
}
.mini-cta h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 10px; }
.mini-cta p { color: var(--text-muted); margin-bottom: 20px; }

/* Contact form styles */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; }
.contact-card { background: var(--cream); padding: 28px; border-radius: 12px; }
.contact-card h3 { color: var(--navy); margin-bottom: 14px; font-size: 1.2rem; }
.contact-card p { margin-bottom: 6px; }
.contact-card .ic { font-size: 1.4rem; margin-right: 8px; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .why-grid, .what-is-grid, .guarantee-inner, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  
  /* Hero mobile reordering: H1 → para → bullets → IMAGE → CTA → trust */
  .hero-grid { display: flex; flex-direction: column; }
  .hero-content { display: flex; flex-direction: column; }
  .hero-content .hero-badge { order: 1; }
  .hero-content .hero-h1 { order: 2; }
  .hero-content .hero-sub { order: 3; }
  .hero-content .hero-bullets { order: 4; margin-bottom: 24px; }
  .hero-img-wrap { order: 5; display: block; margin: 10px auto 24px; }
  .hero-img-wrap img { max-height: 360px; animation: none; }
  .hero-content .hero-cta-row { order: 6; justify-content: center; margin-bottom: 28px; }
  .hero-content .hero-proof { order: 7; justify-content: center; }
  .hero-rating { display: none; }
  
  .mechanism-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.best-value { transform: scale(1); order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .guarantee-inner { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .timeline-grid::before { display: none; }
  .ingredient-list { grid-template-columns: 1fr; }
  .reviewer-card { flex-direction: column; text-align: center; }
  nav { display: none; }
  .header-inner { padding: 12px 16px; }
  .bonus-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-cta { padding: 8px 16px; font-size: 0.8rem; }
  .logo { font-size: 1.2rem; }
  #hero { padding: 60px 0; min-height: auto; }
  section { padding: 60px 0 !important; }
  .container { padding: 0 16px; }
}

/* ============================================
   SOCIAL PROOF POPUP (bottom-left corner)
   ============================================ */
#social-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 320px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.06);
  padding: 16px 18px;
  z-index: 9999;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid #e6e9ef;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}
.social-proof-hidden {
  transform: translateX(-150%);
  opacity: 0;
  pointer-events: none;
}
.social-proof-show {
  transform: translateX(0);
  opacity: 1;
}
.sp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #f0f2f6;
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.sp-close:hover { background: #e4e7ed; color: #1a2535; }
.sp-header {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.sp-header strong { color: var(--navy); font-weight: 700; }
.sp-body p { margin: 0 0 3px; font-size: 0.84rem; color: var(--text); line-height: 1.4; }
.sp-name strong { color: var(--navy); }
.sp-action strong { color: var(--gold); font-weight: 600; }
.sp-time { color: var(--text-muted); font-size: 0.74rem !important; margin-top: 4px !important; }

@media (max-width: 560px) {
  #social-proof { width: calc(100% - 32px); left: 16px; bottom: 16px; padding: 14px; }
  #social-proof .sp-body p { font-size: 0.8rem; }
}

/* ============================================
   MOBILE HERO IMAGE (after H1)
   ============================================ */
.hero-img-mobile { display: none; }

@media (max-width: 900px) {
  .hero-img-mobile { 
    display: block; 
    margin: 18px auto 24px; 
    text-align: center; 
  }
  .hero-img-mobile img { 
    max-width: 280px; 
    width: 100%; 
    height: auto; 
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  }
  .hero-img-wrap { display: none; }
}
