/* =====================================================
   BRAINERGY REVIEW PAGE — MAIN STYLESHEET
   best2buy.org/Brainergy/
   ===================================================== */

/* --- 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 {
  --purple-dark:   #4C1D95;
  --purple-mid:    #6D28D9;
  --purple-light:  #7C3AED;
  --purple-pale:   #EDE9FE;
  --purple-accent: #8B5CF6;
  --amber:         #D97706;
  --amber-dark:    #B45309;
  --red:           #d33;
  --text-dark:     #1a1a1a;
  --text-mid:      #444;
  --text-light:    #666;
  --border:        #DDD6FE;
  --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:        #6D28D9;
  --cta-hover:     #4C1D95;
}

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

/* --- CTA BUTTON --- */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px rgba(180,83,9,.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(180,83,9,.45); background: linear-gradient(135deg, #F59E0B 0%, #92400E 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(--purple-light) 0%, var(--purple-dark) 100%); box-shadow: 0 4px 16px rgba(109,40,217,.35); }
.cta-btn.secondary:hover { box-shadow: 0 6px 22px rgba(109,40,217,.45); }

/* --- STICKY TOP BAR --- */
#top-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--purple-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: #F5F3FF; border-bottom: 1px solid var(--border); padding: 10px 0; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--purple-mid); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span + span::before { content: " › "; margin: 0 6px; }

/* --- HERO SECTION --- */
#hero {
  background: linear-gradient(160deg, #F5F3FF 0%, #EDE9FE 60%, #DDD6FE 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(--purple-pale);
  border: 1px solid var(--purple-accent);
  color: var(--purple-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple-accent); display: inline-block; }
.hero-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.2; color: var(--text-dark); margin-bottom: 16px; }
.hero-title em { font-style: normal; color: var(--purple-mid); }
.hero-intro { font-size: 16px; color: var(--text-mid); margin-bottom: 20px; max-width: 520px; }
.product-at-a-glance {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 22px;
  line-height: 1.8;
}
.product-at-a-glance strong { color: var(--text-dark); }

/* Score Block */
.score-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.score-header { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.score-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
  color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0;
}
.score-circle .num { font-size: 22px; line-height: 1; }
.score-circle .denom { font-size: 12px; opacity: .85; }
.score-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; }
.score-stars { color: #F59E0B; font-size: 18px; }
.score-count { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.score-bars { display: flex; flex-direction: column; gap: 8px; }
.score-bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.score-bar-label { width: 160px; color: var(--text-mid); flex-shrink: 0; }
.score-bar-track { flex: 1; height: 8px; background: var(--purple-pale); border-radius: 4px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--purple-accent), var(--purple-dark)); border-radius: 4px; }
.score-bar-val { width: 30px; text-align: right; font-weight: 700; color: var(--purple-mid); font-size: 13px; }

/* Hero badges / pills */
.hero-badge-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--text-mid);
  padding: 5px 12px; border-radius: 50px;
}
.hero-badge-pill svg { color: var(--purple-accent); }

/* Hero CTA */
.hero-cta-wrap { margin-bottom: 16px; }
.stock-warning {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FEF3C7; border: 1px solid #FCD34D;
  color: #92400E; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; margin-top: 10px;
}
.share-bar { display: flex; gap: 10px; margin-top: 12px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 7px 14px;
  border-radius: 6px; cursor: pointer; border: none;
}
.share-btn.fb { background: #1877F2; color: #fff; }
.share-btn.tw { background: #1DA1F2; color: #fff; }

/* Hero Right (product image) */
.hero-right { text-align: center; }
.hero-product-link { display: inline-block; }
.hero-img-frame {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #1a0533 0%, #0d0222 60%, #050012 100%);
  box-shadow:
    0 0 0 1px rgba(139,92,246,.25),
    0 0 40px rgba(109,40,217,.35),
    0 0 80px rgba(76,29,149,.2),
    0 20px 60px rgba(0,0,0,.5);
  padding: 8px;
  transition: box-shadow .3s ease;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,170,255,.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-img-frame:hover {
  box-shadow:
    0 0 0 1px rgba(139,92,246,.4),
    0 0 60px rgba(109,40,217,.5),
    0 0 100px rgba(76,29,149,.3),
    0 24px 70px rgba(0,0,0,.55);
}
.hero-product-img { max-width: 320px; width: 100%; margin: 0 auto; border-radius: 18px; display: block; position: relative; z-index: 2; }

/* --- SECTION SHARED --- */
.section-title { font-size: clamp(22px, 3.5vw, 32px); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.section-desc { font-size: 16px; color: var(--text-mid); max-width: 720px; margin: 0 auto 32px; }
section { padding: 64px 0; }
section.alt-bg { background: #F5F3FF; }

/* --- AEO / WIB ANSWER BOX --- */
.wib-answer-box {
  background: #fff;
  border: 2px solid var(--purple-mid);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.wib-answer-box h2 { font-size: 18px; font-weight: 800; color: var(--purple-dark); margin-bottom: 8px; }
.wib-answer-box p { color: var(--text-mid); font-size: 15px; }
.overview-content h3 { font-size: 17px; font-weight: 700; color: var(--purple-dark); margin: 22px 0 6px; }
.overview-content p { color: var(--text-mid); margin-bottom: 4px; }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.overview-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; text-align: center; box-shadow: var(--shadow-sm); }
.overview-card .icon { font-size: 32px; margin-bottom: 10px; }
.overview-card h4 { font-size: 15px; font-weight: 700; color: var(--purple-dark); margin-bottom: 6px; }
.overview-card p { font-size: 13px; color: var(--text-light); }

/* --- BENEFITS --- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: block;
  color: inherit;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon { font-size: 36px; margin-bottom: 12px; }
.benefit-title { font-size: 16px; font-weight: 700; color: var(--purple-dark); margin-bottom: 8px; }
.benefit-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* --- INGREDIENTS --- */
.ingredients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ingredient-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.ingredient-img-link { flex-shrink: 0; }
.ingredient-img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.ingredient-body {}
.ingredient-name { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.ingredient-role {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple-mid);
  font-size: 11px; font-weight: 700;
  padding: 2px 10px; border-radius: 50px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.ingredient-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* --- HOW TO USE --- */
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.how-step { text-align: center; padding: 24px 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.how-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-accent), var(--purple-dark));
  color: #fff; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.how-step h3 { font-size: 14px; font-weight: 700; color: var(--purple-dark); margin-bottom: 6px; }
.how-step p { font-size: 13px; color: var(--text-light); }

/* --- TIMELINE --- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, var(--purple-pale), var(--purple-accent)); z-index: 0; }
.timeline-item { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-accent), var(--purple-dark));
  color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--purple-accent);
}
.timeline-title { font-size: 14px; font-weight: 700; color: var(--purple-dark); margin-bottom: 6px; }
.timeline-desc { font-size: 12px; color: var(--text-light); }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.testi-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-accent), var(--purple-dark)); color: #fff; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.testi-location { font-size: 12px; color: var(--text-light); }
.testi-stars { color: #F59E0B; font-size: 14px; }
.testi-quote { font-size: 14px; color: var(--text-mid); font-style: italic; line-height: 1.7; }
.testi-badge { display: inline-block; margin-top: 10px; background: var(--purple-pale); border: 1px solid var(--border); color: var(--purple-mid); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.featured-testi { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border: 2px solid var(--purple-mid); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.featured-testi .testi-quote { font-size: 17px; }

/* --- COMPARISON TABLE --- */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-table th { background: var(--purple-dark); color: #fff; padding: 14px 18px; text-align: center; font-size: 14px; font-weight: 700; }
.comparison-table th:first-child { text-align: left; }
.comparison-table td { padding: 13px 18px; font-size: 14px; border-bottom: 1px solid var(--border); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #F5F3FF; }
.comparison-table td:first-child { font-weight: 600; color: var(--text-dark); }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table .yes { color: #16a34a; font-weight: 700; }
.comparison-table .no { color: #dc2626; font-weight: 700; }
.comparison-table .maybe { color: #D97706; font-weight: 700; }
.comparison-table tr.highlight-row td { background: #EDE9FE !important; font-weight: 700; }
.comparison-table tr.highlight-row td:first-child { color: var(--purple-mid); }

/* --- PRICING --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.popular { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(217,119,6,.15); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 50px;
  white-space: nowrap;
}
.pricing-bottles-img { max-width: 140px; width: 100%; margin: 0 auto 16px; }
.pricing-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.pricing-price { font-size: 38px; font-weight: 800; color: var(--purple-dark); }
.pricing-per { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.pricing-total { font-size: 14px; color: var(--text-mid); margin-bottom: 8px; }
.pricing-shipping { font-size: 12px; color: var(--purple-mid); font-weight: 600; margin-bottom: 20px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 20px; }
.pricing-features li { font-size: 13px; color: var(--text-mid); padding: 4px 0; }
.pricing-features li::before { content: "✓ "; color: var(--purple-mid); font-weight: 700; }

/* --- GUARANTEE --- */
#guarantee { background: #fff; }
.guarantee-inner { display: flex; gap: 48px; align-items: center; }
.guarantee-seal-link { flex-shrink: 0; }
.guarantee-seal { width: 160px; }
.guarantee-text h2 { font-size: 28px; font-weight: 800; color: var(--purple-dark); margin-bottom: 12px; }
.guarantee-text p { color: var(--text-mid); margin-bottom: 20px; }

/* --- BONUSES --- */
.bonuses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bonus-card { background: #fff; border: 2px dashed var(--purple-accent); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 20px; align-items: flex-start; }
.bonus-icon { font-size: 40px; flex-shrink: 0; }
.bonus-badge { display: inline-block; background: var(--amber); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-bottom: 8px; }
.bonus-title { font-size: 17px; font-weight: 700; color: var(--purple-dark); margin-bottom: 6px; }
.bonus-desc { font-size: 14px; color: var(--text-mid); }
.bonus-value { font-size: 13px; color: var(--text-light); margin-top: 8px; }
.bonus-value s { color: #dc2626; }
.bonus-value strong { color: var(--purple-mid); }

/* --- FAQ ACCORDION --- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; font-size: 15px; font-weight: 600;
  color: var(--text-dark); cursor: pointer;
  background: #fff; transition: background .15s;
}
.faq-question:hover { background: #F5F3FF; }
.faq-question.open { background: var(--purple-pale); color: var(--purple-dark); }
.faq-arrow { font-size: 18px; transition: transform .25s; color: var(--purple-mid); }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.7; background: #fff; }
.faq-answer.open { display: block; }

/* --- FINAL CTA --- */
#final-cta { background: linear-gradient(135deg, #4C1D95 0%, #6D28D9 100%); color: #fff; text-align: center; }
#final-cta .section-title { color: #fff; }
#final-cta .section-desc { color: rgba(255,255,255,.85); }
.trust-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.trust-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 50px; }

/* --- STICKY BOTTOM --- */
#sticky-bottom {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--purple-dark); color: #fff;
  padding: 12px 20px; z-index: 8888;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%); transition: transform .4s ease;
}
#sticky-bottom.visible { transform: translateY(0); }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 900px; margin: 0 auto; }
.sticky-text { font-size: 14px; font-weight: 600; }
.sticky-text strong { color: #ffd700; }
#sticky-close { background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 20px; cursor: pointer; line-height: 1; padding: 2px 8px; border-radius: 4px; margin-left: auto; }

/* --- FOOTER --- */
footer { background: var(--purple-dark); color: rgba(255,255,255,.8); padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 10px; }
.footer-brand strong { font-size: 20px; color: #fff; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,.5); }
.footer-disclaimer { margin-top: 12px; font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.7; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero-product-img { max-width: 240px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .guarantee-inner { flex-direction: column; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .score-bar-label { width: 120px; font-size: 12px; }
  .how-steps { grid-template-columns: 1fr 1fr; }
}
