/* =====================================================
   PHALOBOOST REVIEW PAGE — MAIN STYLESHEET
   best2buy.org/PhaloBoost/
   ===================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* --- VARIABLES --- */
:root {
  --red-dark:      #7b1313;
  --red-mid:       #c0392b;
  --red-light:     #e74c3c;
  --red-pale:      #fde8e8;
  --navy:          #0d1a2e;
  --navy-mid:      #1e3a5f;
  --navy-light:    #2c5282;
  --amber:         #e8a020;
  --amber-dark:    #c98010;
  --text-dark:     #1a1a1a;
  --text-mid:      #444;
  --text-light:    #666;
  --border:        #e8d5d5;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.16);
  --max-width:     1100px;
  --cta-bg:        #c0392b;
  --cta-hover:     #7b1313;
}

/* --- UTILITIES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-mid);
  background: var(--red-pale);
  border: 1px solid var(--red-light);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

/* --- CTA BUTTON --- */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px rgba(192,57,43,.35);
  transition: all .25s ease;
  letter-spacing: .02em;
  cursor: pointer;
  text-align: center;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(192,57,43,.5); background: linear-gradient(135deg, var(--red-mid) 0%, #4a0b0b 100%); }
.cta-btn.large { font-size: 19px; padding: 18px 44px; }
.cta-btn.small { font-size: 14px; padding: 12px 24px; }
.cta-btn.secondary { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%); box-shadow: 0 4px 16px rgba(200,120,0,.35); }
.cta-btn.secondary:hover { box-shadow: 0 6px 22px rgba(200,120,0,.45); }

/* --- STICKY TOP BAR --- */
#top-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
#top-bar .bar-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
#top-bar .bar-text { opacity: .95; }
#top-bar .bar-text strong { color: #ffd700; }
#top-bar .cta-btn { font-size: 13px; padding: 8px 20px; }

/* --- BREADCRUMB --- */
.breadcrumb { background: #fdf5f5; border-bottom: 1px solid var(--border); padding: 10px 0; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--red-mid); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span + span::before { content: " › "; margin: 0 6px; }

/* --- HERO SECTION --- */
#hero {
  background: linear-gradient(160deg, #fdf0f0 0%, #fae8e8 60%, #f5d5d5 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-left { text-align: left; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red-mid);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 18px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--red-light);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.35); opacity:.7; }
}
.hero-title { font-size: clamp(22px,3.5vw,36px); font-weight: 800; line-height: 1.25; color: var(--navy); margin-bottom: 18px; }
.hero-subtitle { font-size: 16px; color: var(--text-mid); margin-bottom: 20px; }
.hero-glance { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--red-mid); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.8; }
.hero-glance strong { color: var(--navy); }

/* --- SCORE BLOCK --- */
.score-block { display: flex; align-items: flex-start; gap: 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.score-circle { display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--red-light), var(--red-dark)); color: #fff; border-radius: 50%; width: 80px; height: 80px; flex-shrink: 0; }
.score-num { font-size: 26px; font-weight: 800; line-height: 1; }
.score-denom { font-size: 13px; opacity: .85; }
.score-details { flex: 1; }
.score-label { font-size: 13px; font-weight: 700; color: var(--text-mid); margin-bottom: 10px; }
.score-bars { display: flex; flex-direction: column; gap: 8px; }
.score-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.score-bar-row > span:first-child { width: 130px; color: var(--text-mid); flex-shrink: 0; }
.score-bar-track { flex: 1; height: 7px; background: #e9e9e9; border-radius: 99px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red-light), var(--red-dark)); border-radius: 99px; animation: fillBar .9s ease forwards; }
@keyframes fillBar { from { width: 0 !important; } }
.score-val { font-weight: 700; color: var(--red-mid); width: 28px; text-align: right; font-size: 12px; }

/* --- HERO STARS --- */
.hero-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.stars-img { display: inline-block; }
.star-text { font-size: 14px; color: var(--text-mid); }
.star-text strong { color: var(--navy); }

/* --- HERO BADGES --- */
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero-badge-pill { font-size: 12px; font-weight: 700; color: var(--navy); background: #fff; border: 1.5px solid var(--navy-light); border-radius: 50px; padding: 5px 14px; }

/* --- NOTICE BOX --- */
.notice-box { background: #fff8e1; border: 1px solid #ffe082; border-left: 4px solid #f59e0b; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; color: #5c3d00; }
.notice-box strong { color: #92400e; }

/* --- HERO RIGHT --- */
.hero-right { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-product-img { max-width: 320px; filter: drop-shadow(0 12px 30px rgba(0,0,0,.15)); transition: transform .3s ease; }
.hero-product-img:hover { transform: translateY(-6px); }
.hero-social { text-align: center; font-size: 13px; color: var(--text-light); }
.social-btns { display: flex; gap: 10px; margin-top: 8px; justify-content: center; }
.social-btn { font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 50px; color: #fff; }
.social-btn.fb { background: #1877f2; }
.social-btn.tw { background: #1da1f2; }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-title { font-size: clamp(20px,3vw,32px); font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--text-mid); max-width: 680px; margin: 0 auto; }

/* --- SECTIONS --- */
section { padding: 72px 0; }
.alt-bg { background: #f9f5f5; }

/* --- WHAT-IS BLOCK / AEO BOX --- */
.what-is-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.wib-answer-box { background: linear-gradient(135deg, #fdf0f0, #fce8e8); border-bottom: 1px solid var(--border); padding: 28px 32px; }
.wib-q { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.wib-a { font-size: 15px; color: var(--text-dark); line-height: 1.75; }
.wib-a strong { color: var(--navy); }
.wib-body { padding: 28px 32px; }
.wib-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; margin-top: 22px; }
.wib-body h3:first-child { margin-top: 0; }
.wib-body p { font-size: 15px; color: var(--text-mid); margin-bottom: 4px; line-height: 1.75; }
.wib-body em { color: var(--red-mid); font-style: italic; font-weight: 600; }
.wib-body strong { color: var(--navy); }

/* --- OVERVIEW GRID --- */
.overview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.overview-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.ov-icon { font-size: 36px; margin-bottom: 14px; }
.ov-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.ov-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* --- BENEFITS GRID --- */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.benefit-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: all .25s ease; color: inherit; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red-light); }
.benefit-icon { font-size: 38px; display: block; margin-bottom: 14px; }
.benefit-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.benefit-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* --- INGREDIENTS LIST --- */
.ingredients-list { display: flex; flex-direction: column; gap: 28px; }
.ingredient-row { display: flex; gap: 24px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.ing-left { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.ing-num { width: 32px; height: 32px; background: linear-gradient(135deg, var(--red-light), var(--red-dark)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.ing-img { width: 100px; height: 100px; object-fit: cover; border-radius: var(--radius-md); border: 2px solid var(--border); }
.ing-body { flex: 1; }
.ing-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ing-subtitle { font-size: 13px; font-weight: 600; color: var(--red-mid); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.ing-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }
.ing-desc em { color: var(--red-mid); font-style: italic; }
.ing-highlight { display: inline-block; background: #fde8e8; border-left: 3px solid var(--red-mid); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--red-dark); }

/* --- HOW TO USE --- */
.howto-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.howto-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.step-num { width: 48px; height: 48px; background: linear-gradient(135deg, var(--red-light), var(--red-dark)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin: 0 auto 16px; }
.step-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* --- TIMELINE --- */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 24px; bottom: 24px; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 28px; align-items: flex-start; position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.tl-dot { width: 40px; height: 40px; background: linear-gradient(135deg, var(--red-light), var(--red-dark)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; flex-shrink: 0; position: relative; z-index: 1; border: 3px solid #fff; box-shadow: 0 0 0 2px var(--red-light); }
.tl-content { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.tl-period { font-size: 12px; font-weight: 700; color: var(--red-mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.tl-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.tl-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* --- TESTIMONIALS GRID --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.tc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.tc-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.tc-avatar-init { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 19px; flex-shrink: 0; border: 2px solid var(--border); letter-spacing: -0.5px; }
.tc-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.tc-info { font-size: 12px; color: var(--text-light); }
.tc-stars { margin-bottom: 10px; }
.tc-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.tc-verified { font-size: 12px; color: var(--red-mid); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* --- COMPARISON TABLE --- */
.comparison-wrapper { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.comparison-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 14px; }
.comparison-table thead { background: var(--navy); color: #fff; }
.comparison-table th { padding: 14px 16px; text-align: center; font-size: 13px; font-weight: 700; }
.comparison-table th.col-feature { text-align: left; width: 22%; }
.comparison-table th.col-trimology { background: var(--red-mid); }
.comparison-table td { padding: 13px 16px; border-bottom: 1px solid #f0e8e8; text-align: center; color: var(--text-mid); }
.comparison-table td.col-feature { text-align: left; font-weight: 600; color: var(--navy); }
.comparison-table td.col-trimology { background: #fdf0f0; font-weight: 600; color: var(--red-dark); }
.comparison-table td.yes { color: #1a6b3a; font-weight: 700; }
.comparison-table td.no { color: #c0392b; }
.comparison-table td.partial { color: #c98010; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #fdf8f8; }
.comparison-table tr:hover td.col-trimology { background: #fce4e4; }

/* --- PRICING GRID --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; position: relative; box-shadow: var(--shadow-sm); transition: all .25s ease; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured { border-color: var(--red-mid); box-shadow: 0 8px 32px rgba(192,57,43,.2); transform: scale(1.03); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--red-light), var(--red-dark)); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 18px; border-radius: 50px; white-space: nowrap; }
.pricing-type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 6px; }
.pricing-title { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pricing-supply { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.pricing-img-wrap { margin: 0 auto 18px; max-width: 160px; }
.pricing-img { max-height: 180px; object-fit: contain; margin: 0 auto; }
.pricing-price { margin-bottom: 18px; }
.price-current { font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.price-per { font-size: 16px; font-weight: 600; color: var(--text-mid); }
.price-original { font-size: 14px; color: var(--text-light); text-decoration: line-through; margin-top: 4px; }
.price-save { font-size: 14px; font-weight: 700; color: var(--red-mid); margin-top: 4px; }
.pricing-features { list-style: none; text-align: left; font-size: 13px; color: var(--text-mid); margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li::before { content: '✓  '; color: var(--red-mid); font-weight: 700; }
.pricing-total { font-size: 14px; color: var(--text-mid); text-align: center; }

/* --- GUARANTEE --- */
#guarantee { background: #fdf0f0; }
.guarantee-inner { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.guarantee-image { text-align: center; }
.guarantee-seal { max-width: 200px; margin: 0 auto; filter: drop-shadow(0 4px 16px rgba(0,0,0,.15)); }
.guarantee-title { font-size: clamp(20px,3vw,30px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.guarantee-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.guarantee-text strong { color: var(--navy); }
.guarantee-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.guarantee-features li { font-size: 14px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.guarantee-features li::before { content: '✓'; width: 22px; height: 22px; background: var(--red-mid); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }

/* --- BONUSES --- */
.bonuses-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.bonus-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); }
.bonus-num { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red-mid); background: var(--red-pale); border-radius: 50px; padding: 4px 14px; display: inline-block; margin-bottom: 14px; }
.bonus-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.bonus-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.bonus-value { font-size: 14px; color: var(--text-mid); }
.bonus-value strong { color: var(--navy); }
.bonus-free { color: var(--red-mid); font-weight: 700; }

/* --- FAQ --- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item.active { border-color: var(--red-mid); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: transparent; font-size: 15px; font-weight: 600; color: var(--navy); text-align: left; }
.faq-question:hover { background: #fdf5f5; }
.faq-q-text { margin: 0; font-size: 15px; font-weight: 600; color: var(--navy); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--red-mid); flex-shrink: 0; transition: transform .25s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }
.faq-answer-inner strong { color: var(--navy); }

/* --- FINAL CTA --- */
#final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--red-dark) 50%, #1a0a0a 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-title { font-size: clamp(22px,3.5vw,40px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.cta-subtitle { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.cta-pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 18px; border-radius: 50px; }
#final-cta .cta-btn.large { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; box-shadow: 0 6px 24px rgba(245,158,11,.45); font-size: 20px; padding: 20px 50px; }
#final-cta .cta-btn.large:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(245,158,11,.6); }

/* --- FOOTER --- */
footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand h4 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.6); }
.footer-links h5 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-links ul li a:hover { color: #fff; text-decoration: underline; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.65; }
.footer-disclaimer a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* --- STICKY BOTTOM --- */
#sticky-bottom { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--navy); color: #fff; padding: 12px 20px; box-shadow: 0 -3px 16px rgba(0,0,0,.3); transform: translateY(110%); transition: transform .35s ease; }
#sticky-bottom.visible { transform: translateY(0); }
.sticky-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.sticky-text { font-size: 14px; font-weight: 600; }
.sticky-text strong { color: #ffd700; }
.sticky-close { background: transparent; color: rgba(255,255,255,.6); font-size: 22px; padding: 0 6px; line-height: 1; }
.sticky-close:hover { color: #fff; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero-product-img { max-width: 240px; }
  .overview-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .howto-steps { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 48px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .score-block { flex-direction: column; }
  .score-bar-row > span:first-child { width: 90px; }
  .ingredient-row { flex-direction: column; align-items: center; text-align: center; }
  .ing-highlight { text-align: left; }
  #top-bar .cta-btn { display: none; }
  .timeline::before { display: none; }
}
