/* ===================================================
   HeroUP — style.css
   =================================================== */

/* ---------- Reset + Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a2a1a; background: #fff; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --green:   #1a5c2a;
  --green-d: #0e3d1a;
  --green-m: #2a7a3f;
  --green-l: #e8f5ec;
  --gold:    #c8922a;
  --gold-l:  #f5e6c8;
  --gold-b:  #f0a830;
  --red:     #c0392b;
  --gray:    #f4f6f4;
  --text:    #1a2a1a;
  --text-m:  #3d5a3d;
  --border:  #d4e8d4;
  --white:   #ffffff;
  --shadow:  0 4px 24px rgba(26,92,42,.12);
  --radius:  12px;
  --radius-s: 8px;
  --transition: 0.25s ease;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem,4vw,3rem); }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); }
h3 { font-size: 1.25rem; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.sec-tag { display: inline-block; background: var(--green-l); color: var(--green); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
.sec-h  { color: var(--green-d); margin-bottom: 12px; }
.sec-sub { color: var(--text-m); font-size: 1.05rem; max-width: 640px; margin: 0 auto 40px; text-align: center; line-height: 1.7; }
.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }
section { padding: 80px 0; }

/* ---------- Buttons ---------- */
.btn-green, .btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; letter-spacing: .04em; border-radius: 50px;
  padding: 16px 36px; cursor: pointer; border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: 'Inter', sans-serif; font-size: 1rem;
}
.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 18px rgba(26,92,42,.3); }
.btn-green:hover { background: var(--green-m); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,92,42,.4); }
.btn-gold  { background: linear-gradient(135deg, var(--gold-b), var(--gold)); color: #fff; box-shadow: 0 4px 18px rgba(200,146,42,.35); }
.btn-gold:hover  { background: linear-gradient(135deg, #f5b840, var(--gold-b)); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,146,42,.45); }
.btn-large { padding: 20px 48px; font-size: 1.15rem; }

/* ---------- Topbar ---------- */
#topbar {
  background: var(--green-d);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  z-index: 1000;
  position: relative;
}
#topbar span { color: var(--gold-b); }

/* ---------- Header ---------- */
#site-header {
  position: sticky; top: 0; z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1160px; margin: 0 auto;
}
.h-logo { display: flex; align-items: center; gap: 10px; }
.h-logo-icon { width: 40px; height: 40px; background: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.h-logo-icon svg { fill: #fff; width: 24px; height: 24px; }
.h-logo-text { display: flex; flex-direction: column; }
.h-logo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-d); font-weight: 700; line-height: 1; }
.h-logo-tag  { font-size: .68rem; color: var(--green-m); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.h-nav { display: flex; align-items: center; gap: 24px; }
.h-nav a { font-size: .88rem; font-weight: 600; color: var(--text-m); transition: color var(--transition); white-space: nowrap; }
.h-nav a:hover { color: var(--green); }
.h-email { font-size: .82rem; color: var(--text-m); display: flex; align-items: center; gap: 5px; }
.h-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; font-weight: 700; font-size: .88rem;
  padding: 10px 22px; border-radius: 50px; white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.h-btn:hover { background: var(--green-m); transform: translateY(-1px); }
.h-btn .pulse-dot {
  width: 8px; height: 8px; background: #6eff8a; border-radius: 50%;
  animation: pulse-anim 1.4s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--green-d); border-radius: 2px; transition: var(--transition); }
.hamburger.o span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.o span:nth-child(2) { opacity: 0; }
.hamburger.o span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mob-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  position: absolute; top: 100%; left: 0; right: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 998;
}
.mob-menu.show { display: flex; }
.mob-menu a { padding: 11px 0; font-weight: 600; font-size: .95rem; color: var(--text); border-bottom: 1px solid var(--border); }
.mob-menu a:last-of-type { border-bottom: none; }
.mob-menu .mob-cta { margin-top: 14px; background: var(--green); color: #fff; text-align: center; padding: 13px; border-radius: 50px; font-weight: 700; }

/* ---------- HERO ---------- */
#hero {
  background: linear-gradient(160deg, #f0faf2 0%, #ffffff 55%, #f5fef6 100%);
  padding: 70px 0 60px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,122,63,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-img-col { order: 1; }
.hero-text-col { order: 2; }
.hero-img-wrap {
  position: relative; display: inline-block; width: 100%; max-width: 480px;
  animation: float-hero 4s ease-in-out infinite;
  filter: drop-shadow(0 16px 48px rgba(26,92,42,.18));
}
@keyframes float-hero {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-img-wrap img { border-radius: var(--radius); width: 100%; }
.hero-badge {
  position: absolute; bottom: 20px; right: -14px;
  background: var(--green-d); color: #fff; border-radius: var(--radius-s);
  padding: 10px 16px; box-shadow: 0 6px 20px rgba(0,0,0,.2);
  font-size: .8rem; font-weight: 700; text-align: center; min-width: 120px;
}
.hero-badge .badge-num { font-size: 1.5rem; display: block; color: var(--gold-b); font-family: 'Playfair Display', serif; }
.official-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-l); border: 1px solid var(--gold);
  color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; text-transform: uppercase;
}
.official-pill::before { content: '★'; }
.hero-h1 { margin-bottom: 16px; }
.hero-h1 em { font-style: italic; color: var(--green-m); }
.hero-h1 strong { color: var(--green-d); }
.hero-desc { font-size: 1.05rem; color: var(--text-m); margin-bottom: 20px; line-height: 1.75; }
.hero-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.stars { color: var(--gold-b); font-size: 1.2rem; letter-spacing: 2px; }
.star-text { font-size: .88rem; color: var(--text-m); font-weight: 600; }
.hero-cta { margin-bottom: 28px; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  display: flex; align-items: center; gap: 5px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 12px; font-size: .78rem; font-weight: 600;
  color: var(--text-m); box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.trust-pill span { font-size: .85rem; }

/* ---------- Reviews Section ---------- */
#reviews { background: var(--gray); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.review-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.rv-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rv-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--green-l); }
.rv-meta {}
.rv-name { font-weight: 700; font-size: .95rem; }
.rv-loc  { font-size: .78rem; color: var(--text-m); }
.rv-stars { color: var(--gold-b); font-size: .95rem; margin-bottom: 6px; }
.rv-verified { display: inline-flex; align-items: center; gap: 4px; background: var(--green-l); color: var(--green); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }
.rv-headline { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 8px; color: var(--green-d); }
.rv-body { font-size: .9rem; color: var(--text-m); line-height: 1.7; }

/* ---------- Why Choose ---------- */
#why-choose {}
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 32px 20px;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon { font-size: 2.5rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--green-d); }
.why-card p { font-size: .88rem; color: var(--text-m); }

/* ---------- Pricing Sections ---------- */
.pricing-bg { background: linear-gradient(160deg, var(--green-d) 0%, #1a4a24 100%); color: #fff; }
.pricing-bg .sec-h { color: #fff; }
.pricing-bg .sec-sub { color: rgba(255,255,255,.8); }
.pricing-bg .sec-tag { background: rgba(255,255,255,.12); color: #b8f5c8; }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.pricing-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform var(--transition);
  cursor: pointer; display: block;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured { transform: scale(1.03); border: 3px solid var(--gold-b); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-card img { width: 100%; object-fit: cover; }
.pricing-card-body { padding: 20px; text-align: center; }
.pc-label { font-size: .75rem; font-weight: 700; color: var(--text-m); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.pc-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--green-d); font-weight: 700; }
.pc-note  { font-size: .82rem; color: var(--text-m); margin-top: 4px; }
.pc-cta   { display: block; background: var(--green); color: #fff; padding: 12px; border-radius: 50px; font-weight: 700; font-size: .9rem; margin-top: 14px; transition: background var(--transition); }
.pc-cta:hover { background: var(--green-m); }
.featured .pc-cta { background: linear-gradient(135deg, var(--gold-b), var(--gold)); }
.featured .pc-cta:hover { background: linear-gradient(135deg, #f5b840, var(--gold-b)); }
.bonus-badge {
  background: var(--gold-l); border: 2px solid var(--gold-b); border-radius: var(--radius);
  padding: 20px 28px; text-align: center; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.bonus-badge h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 6px; }
.bonus-badge p  { font-size: .9rem; color: var(--text-m); }

/* ---------- What Is Section ---------- */
#what-is-heroup { background: #fff; }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.what-text p { font-size: 1rem; color: var(--text-m); margin-bottom: 18px; line-height: 1.8; }
.what-text h2 { margin-bottom: 20px; }

/* ---------- How It Works ---------- */
#how-does-heroup-work { background: var(--gray); }
.steps-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.step-card {
  background: #fff; border-radius: var(--radius); padding: 28px 18px 24px;
  text-align: center; border: 1px solid var(--border); position: relative;
  transition: box-shadow var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); }
.step-icon { font-size: 2.2rem; margin-bottom: 10px; }
.step-arrow {
  position: absolute; top: 20px; right: -20px; z-index: 2;
  width: 36px; height: 36px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem;
}
.step-card:last-child .step-arrow { display: none; }
.step-num { font-size: .72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.step-card h3 { font-size: .95rem; margin-bottom: 8px; color: var(--green-d); }
.step-card p { font-size: .82rem; color: var(--text-m); line-height: 1.6; }

/* ---------- Advantage Section ---------- */
#advantage { background: #fff; }
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.adv-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; border-radius: var(--radius-s);
  border: 1px solid var(--border); background: #fafcfa;
}
.adv-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.adv-item h4 { font-size: .95rem; color: var(--green-d); margin-bottom: 4px; }
.adv-item p  { font-size: .88rem; color: var(--text-m); line-height: 1.6; }

/* ---------- Ingredients ---------- */
#heroup-ingredients { background: var(--gray); }
.ing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
.ing-card {
  background: #fff; border-radius: var(--radius); padding: 24px 18px;
  border: 1px solid var(--border); transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.ing-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ing-num {
  width: 38px; height: 38px; background: var(--green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; margin-bottom: 12px;
  transition: transform var(--transition);
}
.ing-card:hover .ing-num { transform: scale(1.15); }
.ing-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--green-d); margin-bottom: 8px; }
.ing-desc { font-size: .85rem; color: var(--text-m); line-height: 1.65; margin-bottom: 10px; }
.ing-tag  { display: inline-block; background: var(--green-l); color: var(--green); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.science-boxes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.science-box {
  background: var(--green-d); color: #fff; border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
}
.science-box .sb-icon { font-size: 2rem; margin-bottom: 10px; }
.science-box h4 { font-size: 1rem; margin-bottom: 8px; }
.science-box p  { font-size: .85rem; line-height: 1.6; opacity: .85; }

/* ---------- Benefits ---------- */
#heroup-benefits {
  background: linear-gradient(135deg, var(--green-d) 0%, #1e5c30 50%, #0d3015 100%);
  color: #fff;
}
#heroup-benefits .sec-tag { background: rgba(255,255,255,.12); color: #b8f5c8; }
#heroup-benefits .sec-h { color: #fff; }
#heroup-benefits .sec-sub { color: rgba(255,255,255,.8); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 10px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.07); border-radius: var(--radius-s);
  padding: 16px 18px; border: 1px solid rgba(255,255,255,.1);
}
.ben-check { color: var(--gold-b); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.benefit-item p { font-size: .92rem; line-height: 1.6; opacity: .92; }

/* ---------- Guarantee ---------- */
#heroup-guarantee { background: #fff; }
.guar-grid { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.guar-badge img { width: 220px; }
.guar-text h2 { margin-bottom: 18px; }
.guar-text p { font-size: .98rem; color: var(--text-m); margin-bottom: 16px; line-height: 1.75; }
.guar-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.guar-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--green-l); border: 1px solid var(--border);
  border-radius: 50px; padding: 7px 14px; font-size: .82rem; font-weight: 600; color: var(--green);
}

/* ---------- FAQ ---------- */
#heroup-faq { background: var(--gray); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius-s); border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; cursor: pointer; font-weight: 600; font-size: .98rem;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--green-l); }
.faq-icon { color: var(--green); font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 20px; font-size: .92rem; color: var(--text-m); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ---------- Final CTA ---------- */
#heroup-official-website {
  background: linear-gradient(135deg, var(--green-d) 0%, #163d1e 100%); color: #fff; text-align: center;
}
.final-urgency {
  background: rgba(200,146,42,.15); border: 1px solid rgba(200,146,42,.4);
  border-radius: var(--radius); padding: 16px 28px; margin-bottom: 36px; display: inline-block;
}
.final-urgency p { font-size: .9rem; color: var(--gold-l); font-weight: 600; }
.final-order-img { max-width: 360px; margin: 0 auto 28px; display: block; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.3); transition: transform var(--transition); }
.final-order-img:hover { transform: scale(1.02); }
.final-price-note { font-size: .88rem; color: rgba(255,255,255,.6); margin: 16px 0 28px; }
#heroup-official-website h2 { color: #fff; margin-bottom: 12px; }
#heroup-official-website p.lead { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 28px; }
.payment-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.payment-logo {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 8px 16px; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}

/* ---------- Security Strip ---------- */
.security-strip {
  background: var(--green-l); border-top: 1px solid var(--border); padding: 18px 0;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
}
.sec-strip-item { display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--green); }

/* ---------- Footer ---------- */
#footer {
  background: var(--green-d); color: rgba(255,255,255,.8); padding: 48px 0 0;
}
.footer-row1 { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
.footer-row1 a { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.75); transition: color var(--transition); padding: 4px 8px; }
.footer-row1 a:hover { color: var(--gold-b); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 20px 0; }
.footer-row2 { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.footer-row2 a { font-size: .82rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-row2 a:hover { color: var(--gold-b); }
.footer-cta a { display: inline-block; background: var(--gold-b); color: #fff; font-weight: 700; padding: 10px 28px; border-radius: 50px; font-size: .9rem; margin-bottom: 24px; transition: background var(--transition); }
.footer-cta a:hover { background: var(--gold); }
.footer-disclaimer {
  background: rgba(0,0,0,.2); padding: 20px; border-radius: var(--radius-s);
  font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px;
}
.footer-copyright { text-align: center; font-size: .78rem; color: rgba(255,255,255,.4); padding-bottom: 20px; }

/* ---------- Sticky Mobile CTA ---------- */
#sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(135deg, var(--gold-b), var(--gold));
  padding: 14px 20px; text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
#sticky-cta a {
  color: #fff; font-weight: 800; font-size: 1rem; letter-spacing: .06em;
  text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ---------- Legal Pages ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green-m) 100%);
  color: #fff; text-align: center; padding: 70px 20px;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; }
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.legal-wrap h2 { font-size: 1.3rem; color: var(--green-d); margin: 32px 0 12px; }
.legal-wrap p, .legal-wrap li { font-size: .96rem; color: var(--text-m); line-height: 1.8; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 20px; list-style: disc; }
.legal-note {
  background: var(--gold-l); border-left: 4px solid var(--gold);
  padding: 14px 18px; border-radius: 0 var(--radius-s) var(--radius-s) 0;
  font-size: .88rem; color: var(--text-m); margin: 20px 0;
}
.legal-cta-box {
  background: var(--green-l); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center; margin-top: 40px;
}
.legal-cta-box h3 { margin-bottom: 10px; color: var(--green-d); }
.legal-cta-box p  { font-size: .9rem; color: var(--text-m); margin-bottom: 20px; }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 60px 20px; max-width: 1060px; margin: 0 auto; }
.contact-form-box { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form-box h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-box .sub { font-size: .9rem; color: var(--text-m); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-s);
  font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--text); background: #fafcfa;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-col {}
.info-card {
  background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05); margin-bottom: 16px; display: flex; align-items: flex-start; gap: 14px;
}
.info-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.info-card h4 { font-size: .95rem; margin-bottom: 4px; color: var(--green-d); }
.info-card p  { font-size: .85rem; color: var(--text-m); line-height: 1.6; }
.contact-faq-box { background: var(--green-d); border-radius: var(--radius); padding: 24px; text-align: center; margin-top: 8px; }
.contact-faq-box h4 { color: #fff; margin-bottom: 8px; }
.contact-faq-box p  { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 14px; }

/* ========== RESPONSIVE ========== */

/* 1100px — constrain steps */
@media(max-width:1100px) {
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .step-card:nth-child(3) .step-arrow { display: none; }
  .ing-grid { grid-template-columns: repeat(3,1fr); }
}

/* 960px — stack hero */
@media(max-width:960px) {
  #hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-img-col { order: 1; display: flex; justify-content: center; }
  .hero-text-col { order: 2; }
  .hero-img-wrap { max-width: 340px; }
  .hero-h1 { font-size: clamp(1.8rem,5vw,2.6rem); }
  .trust-pills { justify-content: center; }
  .hero-stars { justify-content: center; }
  .hero-cta { display: flex; justify-content: center; }
  .what-grid { grid-template-columns: 1fr; gap: 36px; }
  .guar-grid { grid-template-columns: 1fr; text-align: center; }
  .guar-badge { display: flex; justify-content: center; }
  .guar-pills { justify-content: center; }
  .guar-text .btn-green { width: 100%; max-width: 340px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: repeat(2,1fr); }
  .science-boxes { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* 860px — hamburger */
@media(max-width:860px) {
  .h-nav, .h-email { display: none; }
  .hamburger { display: flex; }
  .h-btn { font-size: .82rem; padding: 9px 18px; }
  #sticky-cta { display: block; }
  body { padding-bottom: 60px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* 640px */
@media(max-width:640px) {
  section { padding: 56px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card .step-arrow { display: none; }
  .ing-grid { grid-template-columns: 1fr 1fr; }
  .science-boxes { grid-template-columns: 1fr; }
  .footer-row1, .footer-row2 { flex-direction: column; align-items: center; gap: 6px; }
}

/* 560px */
@media(max-width:560px) {
  .hero-img-wrap { max-width: 280px; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.5rem; }
}
