 
/* CSS VARIABLES */
:root {
  --primary: #2d6b47;
  --primary-dark: #1e4a30;
  --primary-light: #7fb28f;
  --accent: #4db8b8;
  --accent-dark: #3a9a9a;
  --accent-gold: #f5c542;
  --bg-dark: #1a1a1a;
  --bg-mid: #f0f7f2;
  --text-body: #1a1a1a;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --green: #16a34a;
  --red: #dc2626;
  --white: #ffffff;
  --off-white: #f8fafc;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 20px rgba(45, 107, 71, 0.12);
  --shadow-lg: 0 12px 40px rgba(45, 107, 71, 0.18);
}

/* BASE RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { font-family: 'Poppins', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.6; overflow-x: hidden; }
p { font-family: 'Poppins', sans-serif; font-size: 18px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
li { font-family: 'Poppins', sans-serif; font-size: 18px; color: var(--text-body); line-height: 1.8; }
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; color: var(--text-body); }
h1 { font-size: 48px; }
h2 { font-size: 38px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 14px; }
h4 { font-size: 20px; margin-bottom: 10px; }
img { width: 100%; display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* BUTTONS */
.btn { display: inline-block; padding: 18px 40px; border-radius: 999px; font-weight: 700; font-size: 18px; text-align: center; cursor: pointer; border: none; transition: all 0.3s ease; font-family: 'Poppins', sans-serif; }
.btn-primary { background: var(--accent-dark); color: var(--dark); box-shadow: 0 8px 24px rgba(77, 184, 184, 0.35); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(77, 184, 184, 0.45); }
.btn-gold { background: linear-gradient(135deg, var(--accent-gold), #e0a92c); color: #1a1a1a; box-shadow: 0 8px 24px rgba(245, 197, 66, 0.4); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(245, 197, 66, 0.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* NAV + TOP BAR */
.nav-wrap { position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); }
.top-bar { background: var(--primary); color: var(--white); padding: 10px 0; text-align: center; font-size: 14px; font-weight: 500; }
.top-bar span { color: var(--accent-gold); font-weight: 700; }
.nav { background: var(--bg-dark); padding: 16px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.mnav-logo { display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: 1.5px; }
.mnav-logo .logo-white { color: var(--white); }
.mnav-logo .logo-accent { color: var(--accent); }
.mnav-links { display: flex; gap: 32px; list-style: none; }
.mnav-links a { color: var(--white); font-weight: 500; font-size: 16px; transition: color 0.3s; }
.mnav-links a:hover { color: var(--accent); }
.mnav-btn { background: var(--accent); color: var(--white); padding: 12px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; transition: all 0.3s; flex-shrink: 0; }
.mnav-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 70px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(77, 184, 184, 0.25), transparent 70%); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero h1 { color: var(--white); font-size: 52px; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .accent-word { color: var(--accent-gold); }
.hero-sub { color: rgba(255,255,255,0.9); font-size: 20px; line-height: 1.6; margin-bottom: 30px; }
.hero-pains { list-style: none; margin-bottom: 34px; }
.hero-pains li { display: flex; align-items: flex-start; gap: 12px; color: var(--white); font-size: 17px; margin-bottom: 12px; padding: 0; }
.hero-pains li::before { content: '✕'; color: var(--red); background: rgba(220, 38, 38, 0.15); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 900; font-size: 14px; margin-top: 3px; }
.hero-cta-row { display: flex; align-items: center; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.hero-trust-item::before { content: '✓'; color: var(--accent); font-weight: 900; font-size: 16px; }
.hero-image-wrap { position: relative; }
.hero-image-wrap::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(circle, rgba(77, 184, 184, 0.35), transparent 65%); border-radius: 50%; z-index: 0; }
.hero-image-wrap img { position: relative; z-index: 1; max-width: 90%; margin: 0 auto; }

/* SECTION HEADERS */
.sec-label { display: inline-block; background: rgba(45, 107, 71, 0.1); color: var(--primary); padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.sec-label-dark { background: rgba(77, 184, 184, 0.15); color: var(--accent); }
.sec-head-center { text-align: center; max-width: 820px; margin: 0 auto 50px; }

/* PAIN SECTION */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.pain-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s; }
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pain-emoji-box { height: 180px; background: linear-gradient(135deg, #fef3f2, #fee4e2); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.pain-card-body { padding: 24px; }
.pain-card-body p { font-weight: 600; color: var(--text-body); margin: 0; font-size: 17px; line-height: 1.6; }
.pain-close { background: var(--bg-mid); border-radius: var(--radius-lg); padding: 40px; margin-top: 50px; border-left: 6px solid var(--primary); }
.pain-close p { color: var(--text-body); }
.pain-close p:last-child { margin-bottom: 0; font-weight: 600; color: var(--primary); }

/* WHAT IS SECTION */
.what-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.what-img-wrap { position: relative; }
.what-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.stat-badge { position: absolute; bottom: -20px; right: -20px; background: var(--accent); color: var(--white); padding: 18px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; }
.stat-badge strong { display: block; font-size: 30px; font-weight: 800; }
.stat-badge span { font-size: 13px; opacity: 0.95; }
.what-check { list-style: none; margin: 24px 0; }
.what-check li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; padding: 0; }
.what-check li::before { content: '✓'; background: var(--green); color: var(--white); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 900; font-size: 14px; margin-top: 3px; }
.geo-line { background: var(--bg-mid); padding: 16px 20px; border-radius: var(--radius); font-weight: 600; color: var(--primary); margin: 20px 0; border-left: 4px solid var(--accent); }
.stat-boxes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.stat-box { background: var(--white); padding: 26px 20px; border-radius: var(--radius); text-align: center; border: 2px solid var(--border); transition: all 0.3s; }
.stat-box:hover { border-color: var(--primary); transform: translateY(-4px); }
.stat-box strong { display: block; font-size: 36px; color: var(--primary); font-weight: 800; margin-bottom: 6px; }
.stat-box span { color: var(--text-mid); font-size: 14px; font-weight: 500; }

/* INGREDIENTS SECTION */
.ingredients { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.ingredients h2, .ingredients .sec-head-center p { color: var(--white); }
.ingredients .sec-head-center p { color: rgba(255,255,255,0.85); }
.ingr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ingr-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 26px; transition: all 0.3s; }
.ingr-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: var(--accent); }
.ingr-img-wrap { width: 90px; height: 90px; background: rgba(255,255,255,0.1); border-radius: 50%; padding: 12px; margin-bottom: 18px; overflow: hidden; }
.ingr-img-wrap img { border-radius: 50%; object-fit: cover; height: 100%; }
.ingr-card h3 { color: var(--accent); font-size: 20px; margin-bottom: 10px; }
.ingr-card p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.ingr-tag { display: inline-block; background: rgba(22, 163, 74, 0.2); color: #6ee7b7; padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; }

/* HOW IT WORKS */
.how-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; position: relative; }
.how-timeline::before { content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary)); z-index: 0; opacity: 0.3; }
.phase-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 26px; text-align: center; border: 2px solid var(--border); position: relative; z-index: 1; transition: all 0.3s; }
.phase-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.phase-num { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; margin: 0 auto 20px; box-shadow: var(--shadow); }
.phase-time { color: var(--accent); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.phase-card h3 { margin-bottom: 14px; }
.phase-card p { font-size: 16px; margin-bottom: 0; }

/* BENEFITS */
.benefits { background: var(--off-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.benefit-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid var(--border); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-emoji-box { height: 180px; background: linear-gradient(135deg, #ecfdf5, #d1fae5); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.benefit-card-body { padding: 24px; }
.benefit-card-body p { font-weight: 600; margin: 0; font-size: 17px; line-height: 1.6; }

/* CTA STRIP */
.cta-strip { background: linear-gradient(90deg, var(--primary), var(--primary-dark)); color: var(--white); padding: 60px 0; }
.cta-strip-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center; }
.cta-strip h2 { color: var(--white); margin-bottom: 12px; font-size: 34px; }
.cta-strip .sec-label { background: rgba(77, 184, 184, 0.2); color: var(--accent); }
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 18px; }
.cta-strip-btn { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.cta-reassure { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.cta-reassure span { color: rgba(255,255,255,0.9); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.cta-reassure span::before { content: '✓'; color: var(--accent); font-weight: 900; }

/* TESTIMONIALS */
.rating-summary { display: flex; justify-content: center; align-items: center; gap: 24px; margin-bottom: 50px; padding: 24px; background: var(--bg-mid); border-radius: var(--radius); flex-wrap: wrap; }
.rating-stars { color: var(--accent-gold); font-size: 28px; letter-spacing: 3px; }
.rating-score { font-size: 30px; font-weight: 800; color: var(--primary); }
.rating-info { text-align: left; }
.rating-info span { display: block; color: var(--text-mid); font-size: 15px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: var(--accent-gold); font-size: 20px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-body { font-size: 16px; color: var(--text-body); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.testi-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; flex-shrink: 0; }
.testi-name strong { display: block; font-size: 15px; color: var(--text-body); }
.testi-name span { display: block; font-size: 13px; color: var(--text-mid); margin-top: 2px; }
.testi-verified { display: inline-block; background: rgba(22, 163, 74, 0.1); color: var(--green); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; margin-top: 6px; }

/* PRICING */
.pricing { background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark)); color: var(--white); }
.pricing h2 { color: var(--white); }
.pricing .sec-head-center p { color: rgba(255,255,255,0.85); }
.urgency-line { text-align: center; color: var(--accent-gold); font-weight: 700; margin-bottom: 30px; font-size: 16px; letter-spacing: 1px; text-transform: uppercase; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { background: var(--white); color: var(--text-body); border-radius: var(--radius-lg); padding: 32px 26px; position: relative; display: flex; flex-direction: column; transition: all 0.3s; }
.price-card:hover { transform: translateY(-6px); }
.price-featured { border: 3px solid var(--accent-gold); transform: scale(1.05); box-shadow: 0 20px 50px rgba(245, 197, 66, 0.35); }
.price-ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent-gold); color: #1a1a1a; padding: 8px 24px; border-radius: 999px; font-weight: 800; font-size: 13px; letter-spacing: 1px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.price-title { text-align: center; font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.price-supply { text-align: center; color: var(--text-mid); font-size: 14px; margin-bottom: 20px; }
.price-img { max-width: 200px; margin: 0 auto 20px; }
.price-per { text-align: center; font-size: 15px; color: var(--text-mid); margin-bottom: 4px; }
.price-per strong { font-size: 40px; color: var(--primary); font-weight: 800; }
.price-total { text-align: center; margin-bottom: 8px; }
.price-total .strike { text-decoration: line-through; color: var(--text-light); margin-right: 8px; font-size: 16px; }
.price-total .now { font-size: 26px; font-weight: 800; color: var(--text-body); }
.price-savings { text-align: center; background: rgba(22, 163, 74, 0.12); color: var(--green); padding: 8px; border-radius: 8px; font-weight: 700; font-size: 14px; margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 15px; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.price-cta { display: block; text-align: center; padding: 16px; border-radius: 999px; font-weight: 700; font-size: 16px; transition: all 0.3s; }
.price-cta-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.price-cta-outline:hover { background: var(--primary); color: var(--white); }
.price-cta-gold { background: linear-gradient(135deg, var(--accent-gold), #e0a92c); color: #1a1a1a; box-shadow: 0 8px 20px rgba(245, 197, 66, 0.4); }
.price-cta-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245, 197, 66, 0.5); }
.secure-note { text-align: center; margin-top: 30px; color: rgba(255,255,255,0.85); display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 15px; }
.secure-note span { display: flex; align-items: center; gap: 6px; }

/* BONUSES */
.bonuses { background: var(--off-white); }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.bonus-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s; }
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bonus-img-wrap { padding: 24px; background: linear-gradient(135deg, #f0f7f2, #e6f4ea); text-align: center; }
.bonus-img-wrap img { max-width: 220px; margin: 0 auto; }
.bonus-body { padding: 26px; }
.bonus-tag { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.bonus-body h3 { font-size: 20px; margin-bottom: 12px; color: var(--text-body); }
.bonus-body p { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.bonus-free { display: inline-block; background: rgba(22, 163, 74, 0.12); color: var(--green); padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 13px; }
.bonus-cta-wrap { text-align: center; }

/* GUARANTEE */
.guar-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; align-items: center; }
.guar-circle { width: 260px; height: 260px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: 50%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); text-align: center; box-shadow: var(--shadow-lg); border: 6px solid var(--white); position: relative; }
.guar-circle::before { content: ''; position: absolute; inset: -14px; border: 3px dashed var(--accent); border-radius: 50%; opacity: 0.4; }
.guar-circle strong { font-size: 72px; font-weight: 900; line-height: 1; }
.guar-circle span { font-size: 15px; font-weight: 600; margin-top: 6px; padding: 0 20px; }
.guar-cert-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.guar-cert-row span { display: flex; align-items: center; gap: 6px; color: var(--text-mid); font-size: 14px; font-weight: 500; }
.guar-cert-row span::before { content: '✓'; color: var(--green); font-weight: 900; }

/* OBJECTION KILLERS */
.objections { background: var(--bg-mid); }
.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.obj-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border-left: 5px solid var(--accent); transition: all 0.3s; }
.obj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.obj-icon { font-size: 36px; margin-bottom: 14px; }
.obj-card h4 { color: var(--primary); font-size: 18px; margin-bottom: 12px; font-style: italic; }
.obj-card p { font-size: 15px; line-height: 1.65; margin-bottom: 0; }

/* FAQ */
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: all 0.3s; }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-q { padding: 22px 26px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 17px; color: var(--text-body); background: var(--white); transition: all 0.3s; }
.faq-q:hover { background: var(--bg-mid); }
.faq-item.open .faq-q { color: var(--primary); background: var(--bg-mid); }
.faq-toggle { font-size: 24px; color: var(--primary); font-weight: 300; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 26px; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 26px 22px; }
.faq-a p { margin: 0; font-size: 16px; line-height: 1.75; }

/* FINAL CTA */
.final-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); text-align: center; }
.final-cta h2 { color: var(--white); font-size: 42px; margin-bottom: 20px; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 20px; max-width: 700px; margin: 0 auto 34px; }
.final-cta-btns { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.final-reassure { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.15); }
.final-reassure span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 14px; }
.final-reassure span::before { content: '✓'; color: var(--accent); font-weight: 900; font-size: 16px; }

/* FOOTER */
footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-logo { color: var(--white); font-size: 24px; font-weight: 800; letter-spacing: 1px; margin-bottom: 16px; display: block; }
.footer-logo .logo-accent { color: var(--accent); }
.footer p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.footer h4 { color: var(--white); margin-bottom: 20px; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { padding: 6px 0; font-size: 15px; }
.footer ul li a { color: rgba(255,255,255,0.7); font-size: 15px; transition: color 0.3s; }
.footer ul li a:hover { color: var(--accent); }
.footer-disclaimer { background: rgba(255,255,255,0.04); padding: 24px; border-radius: var(--radius); margin-bottom: 30px; border-left: 3px solid var(--accent); }
.footer-disclaimer p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.7; }
.copyright { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; color: rgba(255,255,255,0.5); }

/* STICKY BOTTOM BAR */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-dark); border-top: 3px solid var(--accent); padding: 14px 0; z-index: 999; transform: translateY(100%); transition: transform 0.4s ease; box-shadow: 0 -8px 30px rgba(0,0,0,0.15); }
.sticky-bar.visible { transform: translateY(0); }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-text { color: var(--white); font-size: 16px; }
.sticky-text strong { color: var(--accent-gold); font-weight: 700; }
.sticky-btn { background: var(--accent); color: var(--white); padding: 12px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; transition: all 0.3s; flex-shrink: 0; }
.sticky-btn:hover { background: var(--accent-dark); }

/* MOBILE RESPONSIVE */
@media (max-width: 960px) {
  .mnav-links { display: none; }
  .hamburger { display: block; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 17px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-image-wrap { order: -1; margin-bottom: 10px; }
  .hero-image-wrap img { max-width: 280px; }
  .pain-grid, .benefits-grid, .ingr-grid, .testi-grid, .pricing-grid, .bonus-grid, .obj-grid { grid-template-columns: 1fr; gap: 20px; }
  .what-grid, .guar-grid, .cta-strip-grid { grid-template-columns: 1fr; gap: 30px; }
  .how-timeline { grid-template-columns: 1fr; gap: 20px; }
  .how-timeline::before { display: none; }
  .stat-boxes { grid-template-columns: repeat(2, 1fr); }
  .price-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-strip-btn { align-items: flex-start; }
  .sticky-inner { flex-direction: row; gap: 10px; }
  .sticky-text { font-size: 13px; }
  .sticky-btn { padding: 10px 18px; font-size: 13px; }
  .btn { padding: 15px 30px; font-size: 16px; }
  .final-cta h2 { font-size: 30px; }
  .final-cta p { font-size: 17px; }
  .rating-summary { flex-direction: column; text-align: center; gap: 12px; }
  .rating-info { text-align: center; }
  .guar-circle { width: 200px; height: 200px; }
  .guar-circle strong { font-size: 56px; }
  .stat-badge { position: static; margin: 20px auto 0; display: inline-block; }
  .container { padding: 0 18px; }
}

@media (min-width: 961px) and (max-width: 1200px) {
  .pain-grid, .benefits-grid, .ingr-grid, .testi-grid, .obj-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .price-featured { transform: none; }
}
 