/* =====================================================
   VIVALIS REVIEW PAGE — MAIN STYLESHEET
   best2buy.org/vivalis/
   ===================================================== */

/* --- 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 {
  --navy-dark:     #0d2650;
  --navy-mid:      #1E3F88;
  --navy-light:    #4a7cc7;
  --navy-pale:     #e8eef8;
  --navy-accent:   #6a9fd8;
  --amber:         #e8a020;
  --amber-dark:    #c98010;
  --red:           #d33;
  --text-dark:     #1a1a1a;
  --text-mid:      #444;
  --text-light:    #666;
  --border:        #d5dff0;
  --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:        #1E3F88;
  --cta-hover:     #0d2650;
}

/* --- 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(--navy-mid);
  background: var(--navy-pale);
  border: 1px solid var(--navy-light);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

/* --- CTA BUTTON --- */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px rgba(30,63,136,.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(30,63,136,.45); background: linear-gradient(135deg, var(--navy-mid) 0%, #061630 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-dark);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
#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: #f0f4fb; border-bottom: 1px solid var(--border); padding: 10px 0; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--navy-mid); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span + span::before { content: " › "; margin: 0 6px; }

/* --- HERO SECTION --- */
#hero {
  background: linear-gradient(160deg, #eef3fb 0%, #e8eef8 60%, #d5e2f5 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;
  background: var(--navy-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-badge .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #7fb8ff; }
h1.hero-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 22px;
  line-height: 1.6;
}
.hero-glance {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.hero-glance strong { color: var(--text-dark); }

/* Score Block */
.score-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 2px solid var(--navy-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.score-circle {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.score-circle .score-num { font-size: 26px; font-weight: 800; line-height: 1; }
.score-circle .score-denom { font-size: 12px; opacity: .8; }
.score-details { flex: 1; }
.score-label { font-size: 13px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.score-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.score-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.score-bar-row span:first-child { min-width: 72px; color: var(--text-mid); }
.score-bar-track { flex: 1; height: 6px; background: #e0e0e0; border-radius: 3px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--navy-light), var(--navy-dark)); border-radius: 3px; }
.score-bar-row .score-val { font-weight: 700; color: var(--navy-dark); min-width: 28px; text-align: right; }

.hero-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars-img { height: 22px; width: auto; }
.hero-stars .star-text { font-size: 14px; color: var(--text-mid); }
.hero-stars .star-text strong { color: var(--text-dark); }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badge-pill {
  font-size: 12px; font-weight: 600; color: var(--navy-dark);
  background: var(--navy-pale); border: 1px solid var(--navy-light);
  border-radius: 50px; padding: 5px 12px;
}
.hero-badge-pill::before { content: "✓ "; }

.hero-right { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-product-img {
  max-width: 340px;
  width: 100%;
  cursor: pointer;
  transition: transform .3s ease;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.18));
}
.hero-product-img:hover { transform: scale(1.04); }
.hero-social { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); }
.social-btns { display: flex; gap: 8px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0f0f0; border-radius: 50px;
  padding: 5px 12px; font-size: 12px; font-weight: 600;
  color: var(--text-mid); transition: background .2s;
}
.social-btn:hover { background: #e0e0e0; }
.social-btn.fb { background: #e8f0fe; color: #1877f2; }
.social-btn.tw { background: #e7f3fd; color: #1da1f2; }

/* --- SECTIONS SHARED --- */
section { padding: 72px 0; }
section.alt-bg { background: #f4f7fb; }
section.dark-bg { background: var(--navy-dark); color: #fff; }

.section-header { text-align: center; margin-bottom: 48px; }
h2.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.dark-bg h2.section-title { color: #fff; }
.section-desc { font-size: 17px; color: var(--text-mid); max-width: 680px; margin: 0 auto; }
.dark-bg .section-desc { color: rgba(255,255,255,.8); }

/* --- WHAT IS VIVALIS EDITORIAL BLOCK --- */
.what-is-block { margin-bottom: 12px; }

.wib-answer-box {
  background: #fff;
  border: 2px solid var(--navy-light);
  border-left: 5px solid var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
h3.wib-q {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.wib-a {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}

.wib-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.wib-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy-pale);
}
.wib-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}
.wib-body h3:first-child, .wib-body h3:first-child + p { grid-column: span 2; }

@media (max-width: 768px) {
  .wib-body { grid-template-columns: 1fr; }
  .wib-body h3:first-child, .wib-body h3:first-child + p { grid-column: span 1; }
  .wib-answer-box { padding: 20px; }
}

/* --- OVERVIEW / AT A GLANCE --- */
.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: 28px 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.overview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ov-icon { font-size: 36px; margin-bottom: 12px; }
.ov-title { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.ov-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* --- BENEFITS --- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--navy-light); }
.benefit-icon { font-size: 48px; margin-bottom: 16px; display: block; }
h3.benefit-title { font-size: 18px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.benefit-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* --- INGREDIENTS --- */
.ingredients-list { display: flex; flex-direction: column; gap: 32px; }
.ingredient-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 28px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; align-items: start; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.ingredient-row:hover { box-shadow: var(--shadow-md); }
.ing-left {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.ing-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.ing-img {
  width: 100px; height: 100px; border-radius: var(--radius-md);
  object-fit: cover; border: 2px solid var(--navy-pale);
  box-shadow: var(--shadow-sm);
}
h3.ing-name { font-size: 20px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.ing-subtitle { font-size: 13px; color: var(--navy-mid); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.ing-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.ing-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-pale); border: 1px solid var(--navy-light);
  border-radius: var(--radius-sm); padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: var(--navy-dark);
  margin-top: 12px;
}
.ing-highlight::before { content: "⚡"; }

/* --- 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: 28px 20px; text-align: center; box-shadow: var(--shadow-sm);
}
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy-dark); color: #fff;
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
h3.step-title { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* --- RESULTS TIMELINE --- */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 48px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--navy-light), var(--navy-dark)); opacity: .3;
}
.timeline-item { display: flex; gap: 28px; align-items: flex-start; padding: 24px 0; position: relative; }
.tl-dot {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 28px; color: #fff; font-size: 16px; font-weight: 800;
  box-shadow: 0 0 0 4px rgba(30,63,136,.15);
  position: relative; z-index: 1;
}
.tl-content { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.tl-period { font-size: 12px; font-weight: 700; color: var(--navy-mid); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
h3.tl-title { font-size: 18px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.tl-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.tc-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--navy-light); }
.tc-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.tc-info { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.tc-stars { margin-bottom: 12px; }
.tc-stars img { height: 18px; }
.tc-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; }
.tc-verified {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--navy-mid); font-weight: 600; margin-top: 12px;
}
.tc-verified img { height: 16px; }

/* --- COMPARISON TABLE --- */
.comparison-wrapper { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
table.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 15px;
}
.comparison-table th {
  background: var(--navy-dark); color: #fff; padding: 16px 20px;
  text-align: center; font-size: 14px; font-weight: 700; letter-spacing: .04em;
}
.comparison-table th.col-feature { text-align: left; }
.comparison-table th.col-vivalis { background: var(--navy-light); }
.comparison-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border); text-align: center;
}
.comparison-table td.col-feature { text-align: left; font-weight: 600; color: var(--text-dark); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #f4f7fb; }
.comparison-table .yes { color: var(--navy-mid); font-weight: 700; font-size: 18px; }
.comparison-table .no { color: #c00; font-weight: 700; font-size: 18px; }
.comparison-table .partial { color: var(--amber-dark); font-weight: 600; }
.comparison-table td.col-vivalis { background: var(--navy-pale) !important; color: var(--navy-dark); font-weight: 600; }

/* --- PRICING --- */
#pricing { background: linear-gradient(160deg, #eef3fb 0%, #e8eef8 100%); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 24px; align-items: start; }
.pricing-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--navy-light); box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 18px; border-radius: 50px;
  white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.pricing-type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--navy-mid); margin-bottom: 6px; }
.pricing-title { font-size: 22px; font-weight: 800; color: var(--navy-dark); margin-bottom: 4px; }
.pricing-supply { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.pricing-img-wrap { margin: 0 auto 20px; max-width: 200px; cursor: pointer; }
.pricing-img { transition: transform .3s; }
.pricing-img:hover { transform: scale(1.06); }
.pricing-price { margin-bottom: 6px; }
.price-current { font-size: 36px; font-weight: 800; color: var(--navy-dark); }
.price-per { font-size: 14px; color: var(--text-light); }
.price-original { font-size: 14px; color: #999; text-decoration: line-through; margin-bottom: 6px; }
.price-save { font-size: 14px; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.pricing-features { list-style: none; margin-bottom: 24px; text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-mid); padding: 5px 0; }
.pricing-features li::before { content: "✓"; color: var(--navy-mid); font-weight: 700; flex-shrink: 0; }
.pricing-total { font-size: 13px; color: var(--text-light); margin-top: 10px; }
.pricing-total strong { color: var(--text-dark); }

/* --- GUARANTEE --- */
#guarantee { background: #fff; }
.guarantee-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.guarantee-image { text-align: center; }
.guarantee-seal { max-width: 220px; margin: 0 auto; cursor: pointer; filter: drop-shadow(0 8px 20px rgba(0,0,0,.15)); transition: transform .3s; }
.guarantee-seal:hover { transform: scale(1.06); }
h2.guarantee-title { font-size: 30px; font-weight: 800; color: var(--navy-dark); margin-bottom: 16px; }
.guarantee-text { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.guarantee-features { list-style: none; margin-bottom: 28px; }
.guarantee-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-mid); padding: 7px 0; border-bottom: 1px solid var(--border); }
.guarantee-features li:last-child { border-bottom: none; }
.guarantee-features li::before { content: "✅"; flex-shrink: 0; }

/* --- FAQ --- */
#faq { background: #f4f7fb; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; gap: 16px;
  transition: background .2s;
}
.faq-question:hover { background: var(--navy-pale); }
h3.faq-q-text { font-size: 16px; font-weight: 700; color: var(--navy-dark); flex: 1; }
.faq-icon { font-size: 20px; color: var(--navy-mid); font-weight: 700; flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-mid); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 16px; }
.faq-item.active .faq-answer { max-height: 600px; }

/* --- FINAL CTA BANNER --- */
#final-cta { background: linear-gradient(135deg, var(--navy-dark) 0%, #061630 100%); color: #fff; padding: 80px 0; }
h2.cta-title { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; }
.cta-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 36px; }
.cta-pill {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 8px 18px; font-size: 14px; color: #fff; font-weight: 600;
}
.cta-pill::before { content: "✓ "; }

/* --- FOOTER --- */
footer {
  background: #07182e; color: rgba(255,255,255,.7); font-size: 13px;
  padding: 40px 0 24px;
}
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand h4 { color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.footer-brand p { line-height: 1.65; }
.footer-links h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.footer-links ul { list-style: none; }
.footer-links li { padding: 4px 0; }
.footer-links a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; line-height: 1.6; }

/* --- STICKY BOTTOM BAR --- */
#sticky-bottom {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--navy-dark); color: #fff; padding: 12px 20px;
  transform: translateY(100%); transition: transform .4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
#sticky-bottom.visible { transform: translateY(0); }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sticky-text { font-size: 15px; font-weight: 600; }
.sticky-text strong { color: #ffd700; }
.sticky-close { background: none; border: none; color: rgba(255,255,255,.6); font-size: 22px; cursor: pointer; padding: 0 8px; }

/* --- INLINE NOTICE --- */
.notice-box {
  background: #fffbf0; border: 1px solid #f0d070; border-radius: var(--radius-sm);
  padding: 12px 18px; font-size: 13px; color: #705010; text-align: center;
  margin-top: 16px;
}
.notice-box strong { color: #504000; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-stars { justify-content: center; }
  .hero-badges { justify-content: center; }
  .score-block { flex-direction: column; text-align: center; }
  .score-bars { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .howto-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-image { order: -1; }
  .footer-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 48px 0; }
  .overview-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 28px; }
  .tl-dot { margin: 0 10px; width: 32px; height: 32px; font-size: 13px; }
  .ingredient-row { grid-template-columns: 1fr; }
  .ing-left { flex-direction: row; justify-content: flex-start; gap: 16px; }
  .ing-num { margin: 0; }
  h3.ing-name { text-align: left; }
  .comparison-table th, .comparison-table td { font-size: 13px; padding: 10px 12px; }
  .pricing-grid { max-width: 100%; }
  #top-bar .bar-inner { flex-direction: column; gap: 8px; }
  .sticky-inner { justify-content: center; }
  .sticky-text { text-align: center; }
}

@media (max-width: 480px) {
  h1.hero-title { font-size: 24px; }
  h2.section-title { font-size: 22px; }
  .score-bars { grid-template-columns: 1fr; }
  .cta-btn.large { font-size: 16px; padding: 15px 30px; }
  .pricing-grid { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* --- PROGRESS BAR ANIMATION --- */
@keyframes fillBar { from { width: 0; } to { width: var(--fill); } }
.score-bar-fill { animation: fillBar 1.2s ease-out forwards; }
