/* =====================================================
   LIPOSLEND REVIEW PAGE — MAIN STYLESHEET
   best2buy.org/liposlend/
   ===================================================== */

/* --- 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 {
  --green-dark:    #0d4d3b;
  --green-mid:     #1B7A5E;
  --green-light:   #3aaa83;
  --green-pale:    #e6f7f2;
  --green-accent:  #52c49a;
  --amber:         #e8a020;
  --amber-dark:    #c98010;
  --red:           #d33;
  --text-dark:     #1a1a1a;
  --text-mid:      #444;
  --text-light:    #666;
  --border:        #b8ddd4;
  --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:        #1B7A5E;
  --cta-hover:     #0d4d3b;
}

/* --- 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; }
.alt-bg { background: var(--green-pale); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

/* --- CTA BUTTON --- */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px rgba(27,122,94,.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(27,122,94,.45); background: linear-gradient(135deg, var(--green-mid) 0%, #061f18 100%); }
.cta-btn.large { font-size: 19px; padding: 18px 44px; }
.cta-btn.small { font-size: 14px; padding: 10px 22px; }

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 44px; }
.section-title { font-size: 30px; font-weight: 800; color: var(--text-dark); line-height: 1.25; margin-bottom: 12px; }
.section-desc { font-size: 16px; color: var(--text-mid); max-width: 660px; margin: 0 auto; }

/* ========================
   STICKY TOP HEADER BAR
========================= */
#top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-dark);
  color: #fff;
  padding: 11px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
#top-bar .bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
#top-bar .bar-text { font-size: 14px; font-weight: 500; }
#top-bar .bar-text strong { color: var(--amber); }

/* ========================
   BREADCRUMB
========================= */
.breadcrumb {
  background: #f5faf8;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb .container { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--green-mid); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span:not(:last-child)::after { content: ' ›'; margin-left: 6px; opacity: .5; }

/* ========================
   HERO
========================= */
#hero {
  padding: 56px 0 48px;
  background: linear-gradient(160deg, #f0faf6 0%, #e6f7f2 50%, #f8fdfb 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.badge-dot { width: 7px; height: 7px; background: var(--green-light); border-radius: 50%; }
.hero-title { font-size: 34px; font-weight: 800; color: #0d2d22; line-height: 1.22; margin-bottom: 14px; }
.hero-subtitle { font-size: 17px; color: var(--text-mid); margin-bottom: 22px; }

.hero-glance {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

/* Score block */
.score-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.score-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: #fff;
  flex-shrink: 0;
}
.score-num { font-size: 26px; font-weight: 900; line-height: 1; }
.score-denom { font-size: 13px; opacity: .8; }
.score-details { flex: 1; }
.score-label { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.score-bars { display: flex; flex-direction: column; gap: 6px; }
.score-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.score-bar-row > span:first-child { width: 110px; flex-shrink: 0; color: var(--text-mid); }
.score-bar-track { flex: 1; height: 7px; background: #e0ede9; border-radius: 4px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--green-light), var(--green-dark)); border-radius: 4px; }
.score-val { font-weight: 700; color: var(--green-mid); font-size: 12px; }

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

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero-badge-pill {
  background: var(--green-pale);
  border: 1px solid var(--border);
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.notice-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: #5d4037;
}

/* Hero right */
.hero-right { text-align: center; }
.hero-product-img { max-height: 400px; margin: 0 auto; filter: drop-shadow(0 12px 32px rgba(27,122,94,.2)); }
.hero-social { margin-top: 24px; display: flex; align-items: center; gap: 10px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: var(--text-light); }
.social-btns { display: flex; gap: 8px; }
.social-btn { padding: 7px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; color: #fff; }
.social-btn.fb { background: #1877f2; }
.social-btn.tw { background: #1da1f2; }

/* ========================
   OVERVIEW / WHAT IS
========================= */
#overview { padding: 64px 0; }
.what-is-block { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px 40px; margin-bottom: 8px; box-shadow: var(--shadow-sm); }
.wib-answer-box {
  background: linear-gradient(135deg, #f0faf6 0%, #e6f7f2 100%);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 28px;
}
.wib-q { font-size: 18px; font-weight: 800; color: var(--green-dark); margin-bottom: 10px; }
.wib-a { font-size: 16px; color: var(--text-dark); line-height: 1.75; }
.wib-body h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 22px 0 8px; }
.wib-body p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.overview-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.ov-icon { font-size: 28px; margin-bottom: 10px; }
.ov-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.ov-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ========================
   KEY BENEFITS
========================= */
#benefits { padding: 64px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  display: block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  color: inherit;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
.benefit-icon { font-size: 30px; margin-bottom: 10px; display: block; }
.benefit-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.benefit-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ========================
   INGREDIENTS
========================= */
#ingredients { padding: 64px 0; }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ingredient-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.ingredient-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ingredient-img-wrap {
  width: 100px; height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-pale);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.ingredient-img-wrap img { width: 88px; height: 88px; object-fit: contain; }
.ingredient-name { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.ingredient-role {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.ingredient-text { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ========================
   HOW TO USE
========================= */
#how-to-use { padding: 64px 0; }
.howto-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.howto-step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.howto-step .step-num {
  width: 44px; height: 44px;
  background: var(--green-mid);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  margin: 0 auto 14px;
}
.step-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ========================
   RESULTS TIMELINE
========================= */
#timeline { padding: 64px 0; }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-light), var(--green-dark));
}
.timeline-item { display: flex; gap: 28px; align-items: flex-start; padding: 0 0 32px 0; position: relative; }
.tl-dot {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--green-mid);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--green-pale);
}
.tl-content { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 22px 26px; flex: 1; box-shadow: var(--shadow-sm); }
.tl-period { font-size: 12px; font-weight: 700; color: var(--green-mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.tl-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.tl-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ========================
   TESTIMONIALS
========================= */
#testimonials { padding: 64px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testi-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); background: var(--green-pale); }
.testi-info .tname { font-weight: 700; font-size: 15px; color: var(--text-dark); }
.testi-info .tdetail { font-size: 12px; color: var(--text-light); }
.testi-stars { height: 18px; margin-bottom: 10px; }
.testi-card blockquote { font-size: 14px; font-style: italic; color: var(--text-mid); line-height: 1.75; }
.testi-card blockquote::before { content: '\201C'; color: var(--green-light); font-size: 2rem; line-height: 0; vertical-align: -0.5em; margin-right: 3px; }
.testi-result { margin-top: 12px; padding: 7px 14px; background: var(--green-pale); border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--green-mid); }
.testi-featured {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.testi-featured blockquote { font-size: 17px; font-style: italic; opacity: .95; line-height: 1.8; margin-bottom: 12px; }
.testi-featured .fname { font-weight: 700; opacity: .85; font-size: 14px; }

/* ========================
   COMPARISON TABLE
========================= */
#comparison { padding: 64px 0; }
.comparison-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.comparison-table thead th {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: #f5f5f5;
  border-bottom: 2px solid #ddd;
}
.comparison-table .col-feature { text-align: left; width: 34%; }
.comparison-table .col-liposlend {
  background: var(--green-pale);
  color: var(--green-dark);
  border-left: 2px solid var(--green-mid);
  border-right: 2px solid var(--green-mid);
}
.comparison-table thead .col-liposlend { background: var(--green-mid); color: #fff; }
.comparison-table tbody tr:nth-child(even) td { background: #fafafa; }
.comparison-table tbody tr:nth-child(even) .col-liposlend { background: #d4ede5; }
.comparison-table tbody td { padding: 13px 18px; border-bottom: 1px solid #eee; text-align: center; color: var(--text-mid); }
.comparison-table tbody .col-feature { text-align: left; font-weight: 500; color: var(--text-dark); }
.yes { color: var(--green-mid); font-weight: 700; font-size: 16px; }
.no { color: var(--red); font-weight: 700; font-size: 16px; }
.partial { color: #e67e22; font-weight: 600; font-size: 13px; }

/* ========================
   PRICING
========================= */
#pricing { padding: 64px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.popular {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(27,122,94,.12), var(--shadow-md);
  transform: scale(1.04);
}
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-mid);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-type { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.pricing-title { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.pricing-supply { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.pricing-img-wrap { margin-bottom: 18px; }
.pricing-img-wrap img { max-height: 150px; margin: 0 auto; object-fit: contain; }
.pricing-price { margin-bottom: 4px; }
.pricing-price .per-bottle-price { font-size: 42px; font-weight: 900; color: var(--green-dark); line-height: 1; }
.pricing-price .currency { font-size: 22px; vertical-align: super; }
.pricing-per { font-size: 13px; color: var(--text-light); margin-bottom: 6px; }
.pricing-total { font-size: 15px; font-weight: 600; color: var(--text-mid); margin-bottom: 10px; }
.pricing-savings { display: inline-block; background: #fff3cd; color: #8a5700; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 18px; }
.pricing-features { list-style: none; margin-bottom: 22px; display: flex; flex-direction: column; gap: 7px; text-align: left; }
.pricing-features li { font-size: 13px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.pricing-card.popular .cta-btn { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%); box-shadow: 0 4px 14px rgba(232,160,32,.35); }
.pricing-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--text-light); }

/* ========================
   GUARANTEE
========================= */
#guarantee { padding: 64px 0; }
.guarantee-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.guarantee-seal { width: 140px; }
.guarantee-title { font-size: 26px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.guarantee-text { font-size: 15px; color: var(--text-mid); margin-bottom: 10px; line-height: 1.75; }

/* ========================
   BONUSES
========================= */
#bonuses { padding: 64px 0; }
.bonuses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bonus-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.bonus-img { width: 110px; flex-shrink: 0; border-radius: 6px; }
.bonus-tag { font-size: 11px; font-weight: 700; color: var(--green-mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
.bonus-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; }
.bonus-text { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.bonus-price { margin-top: 10px; font-size: 13px; }
.bonus-price .orig { text-decoration: line-through; color: var(--text-light); }
.bonus-price .free { color: var(--green-mid); font-weight: 700; margin-left: 8px; }

/* ========================
   FAQ
========================= */
#faq { padding: 64px 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: background .15s;
}
.faq-question:hover { background: var(--green-pale); }
.faq-q-text { font-size: 15px; font-weight: 700; color: var(--text-dark); margin: 0; }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--green-mid); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ========================
   FINAL CTA
========================= */
#final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #061f18 100%);
  color: #fff;
  text-align: center;
}
.cta-title { font-size: 34px; font-weight: 800; margin-bottom: 16px; }
.cta-subtitle { font-size: 17px; opacity: .85; max-width: 580px; margin: 0 auto 28px; }
.cta-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.cta-pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 50px; }
#final-cta .cta-btn { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%); box-shadow: 0 6px 24px rgba(232,160,32,.4); }

/* ========================
   FOOTER
========================= */
footer {
  background: #071a12;
  color: rgba(255,255,255,.55);
  padding: 52px 0 32px;
  font-size: 13px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand h4 { color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-links h5 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--green-accent); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; font-size: 12px; line-height: 1.7; opacity: .55; }
.footer-disclaimer a { color: var(--green-accent); }

/* ========================
   STICKY BOTTOM BAR
========================= */
#sticky-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--green-dark);
  color: #fff;
  border-top: 2px solid var(--green-light);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#sticky-bottom.show { transform: translateY(0); }
#sticky-bottom .sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-text { font-size: 14px; font-weight: 500; }
.sticky-text strong { color: var(--amber); }
.sticky-close {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* ========================
   RESPONSIVE
========================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero-title { font-size: 27px; }
  .overview-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .guarantee-box { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .guarantee-seal { margin: 0 auto; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .section-title { font-size: 22px; }
  .hero-title { font-size: 22px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .score-bar-row > span:first-child { width: 80px; }
  .cta-title { font-size: 24px; }
  .what-is-block { padding: 22px 20px; }
}
