/* ============================================================
   JAVA BURN™ — css/style.css
   Domain: javaburnusa.us
   Theme: Deep Charcoal #111111 + Fiery Red #E8230A + Gold #F5A623
   Navbar:   Dark charcoal + red bottom border (NEW)
   Headings: Bold 900 + red flame ::after underline (NEW)
   Buttons:  Gradient red→orange → gold glow hover (NEW)
   Cards:    Dark glass cards + red top border + orange icon circles (NEW)
   Font: Jost (Google Fonts)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --char:          #111111;
  --char-mid:      #1a1a1a;
  --char-light:    #242424;
  --char-pale:     #2e2e2e;
  --red:           #E8230A;
  --red-dark:      #BF1A06;
  --red-mid:       #FF3520;
  --gold:          #F5A623;
  --gold-mid:      #FFB940;
  --gold-light:    #FFF3D6;
  --orange:        #F06A00;
  --grad:          linear-gradient(135deg, #E8230A 0%, #F5A623 100%);
  --grad-rev:      linear-gradient(135deg, #F5A623 0%, #E8230A 100%);
  --white:         #FFFFFF;
  --off-white:     #F8F6F0;
  --cream:         #FDF9F0;
  --text:          #F0EDE8;
  --muted:         #A89F94;
  --border:        #333333;
  --border-light:  #2a2a2a;
  --radius:        8px;
  --radius-card:   14px;
  --radius-btn:    6px;
  --shadow:        0 4px 20px rgba(0,0,0,0.40);
  --shadow-h:      0 12px 40px rgba(232,35,10,0.30);
  --shadow-card:   0 3px 18px rgba(0,0,0,0.35);
  --shadow-gold:   0 4px 20px rgba(245,166,35,0.30);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif; font-size: 18px;
  color: var(--text); background: var(--char);
  overflow-x: hidden; line-height: 1.75;
}

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  padding: 0 24px; height: 72px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.60);
  border-bottom: 2px solid var(--red);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: 'Jost', sans-serif; font-size: 1.7rem; font-weight: 900;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  flex-shrink: 0; display: flex; align-items: center; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  display: flex; align-items: center; color: var(--muted);
  text-decoration: none; font-family: 'Jost', sans-serif;
  font-size: 0.93rem; font-weight: 500; transition: color 0.2s; white-space: nowrap; line-height: 1;
}
.nav-links a:hover { color: var(--gold); }

.btn-nav-order {
  background: var(--grad) !important; color: var(--white) !important;
  font-weight: 800 !important; font-size: 0.87rem !important;
  padding: 9px 22px !important; border-radius: var(--radius-btn) !important;
  border: none !important; transition: all 0.22s !important;
  white-space: nowrap; text-decoration: none; line-height: 1;
  box-shadow: 0 2px 12px rgba(232,35,10,0.45) !important;
}
.btn-nav-order:hover {
  background: var(--grad-rev) !important;
  box-shadow: 0 4px 20px rgba(245,166,35,0.50) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; align-self: center; flex-shrink: 0; }
.hamburger span { width: 25px; height: 2px; background: var(--gold); display: block; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; background: var(--char-mid);
  position: absolute; top: 72px; left: 0; right: 0;
  padding: 24px 32px; gap: 18px; z-index: 999;
  border-top: 1px solid var(--border); border-bottom: 2px solid var(--red);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 500; font-family: 'Jost', sans-serif; }
.mobile-menu .btn-mob-order {
  background: var(--grad); color: var(--white); text-align: center;
  padding: 12px; border-radius: var(--radius-btn); font-weight: 800; margin-top: 6px; font-size: 0.95rem;
}

/* ── BUTTONS — Gradient red→orange → gold glow hover ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad); color: var(--white);
  font-family: 'Jost', sans-serif; font-weight: 800; font-size: 1rem;
  letter-spacing: 0.3px; padding: 16px 36px;
  border-radius: var(--radius-btn); border: none;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(232,35,10,0.45); line-height: 1.2;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--grad-rev);
  box-shadow: 0 6px 28px rgba(245,166,35,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--gold);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.97rem;
  padding: 14px 28px; border-radius: var(--radius-btn);
  border: 2px solid var(--gold); text-decoration: none;
  transition: all 0.22s; line-height: 1.2; text-transform: uppercase;
}
.btn-outline:hover {
  background: var(--grad); color: var(--white); border-color: transparent;
  box-shadow: 0 4px 20px rgba(232,35,10,0.45);
  transform: translateY(-2px);
}

/* ── SECTION BANDS — dark + red heading + flame ::after underline ── */
.sec-title-band {
  background: var(--char-mid); padding: 52px 40px 44px; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.sec-title-band h2 {
  font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900;
  color: var(--white); line-height: 1.22; display: inline-block;
  padding-bottom: 18px; letter-spacing: -0.3px; position: relative;
  text-transform: uppercase;
}
/* Flame gradient underline (NEW) */
.sec-title-band h2::after {
  content: ''; display: block; width: 72px; height: 4px;
  background: var(--grad);
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  border-radius: 2px;
}
.sec-title-band h2 span.hl { color: var(--gold); }
.sec-title-band p.sec-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 600px;
  margin: 18px auto 0; line-height: 1.75;
}

/* ── HERO ── */
.hero {
  background: var(--char);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(232,35,10,0.08) 0%, transparent 60%);
  padding: 80px 48px;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}
.hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap a img {
  max-width: 100%; max-height: 560px; object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(232,35,10,0.35));
  transition: transform 0.4s ease;
}
.hero-img-wrap a:hover img { transform: scale(1.04); }

.hero-content .hero-tag {
  display: inline-block;
  background: rgba(232,35,10,0.15); color: var(--gold);
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 16px; border-radius: 50px;
  border: 1px solid rgba(245,166,35,0.30); margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Jost', sans-serif; font-size: 2.6rem; font-weight: 900;
  line-height: 1.1; color: var(--white); margin-bottom: 8px;
  letter-spacing: -0.5px; text-transform: uppercase;
}
.hero-content h1 .h1-fire { color: var(--gold); }
.hero-content p { font-size: 1.05rem; line-height: 1.82; color: var(--muted); margin-bottom: 16px; margin-top: 20px; }
.hero-highlight {
  font-weight: 700; font-size: 0.95rem; display: block;
  margin-top: 8px; padding: 12px 16px 12px 20px;
  background: rgba(232,35,10,0.12);
  border-left: 4px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--char-mid); padding: 16px 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  border-top: 1px solid var(--border); border-bottom: 2px solid var(--red);
}
.sstat {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 30px; border-right: 1px solid var(--border);
}
.sstat:last-child { border-right: none; }
.sstat-num { font-family: 'Jost', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--gold); line-height: 1; }
.sstat-label { font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }

/* ── REVIEWS ── */
.reviews-section { background: var(--char); padding: 70px 48px; }
.reviews-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch;
}
.review-card {
  background: var(--char-light); border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 4px solid var(--red);
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.reviewer-photo-wrap {
  width: 100%; height: 200px; overflow: hidden; background: var(--char-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.reviewer-photo {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block; background: var(--char-pale); transition: transform 0.4s ease;
}
.review-card:hover .reviewer-photo { transform: scale(1.03); }
.reviewer-photo.img-error { opacity: 0; position: absolute; }
.reviewer-photo-wrap.img-broken::after {
  content: "👤"; font-size: 3.5rem; opacity: 0.25; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.review-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.review-stars { height: 20px; margin: 0 auto 10px; display: block; }
.review-badge { font-size: 0.82rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.review-text { font-size: 0.97rem; line-height: 1.78; color: var(--muted); font-style: italic; flex: 1; }
.reviewer-name { margin-top: 16px; font-weight: 700; color: var(--gold); font-size: 0.9rem; padding-top: 12px; border-top: 1px solid var(--border); }

/* ── PROSE SECTIONS ── */
.what-is-section { background: var(--char-mid); padding: 70px 48px; }
.what-is-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; align-items: center; gap: 60px;
}
.what-is-img-wrap img { width: 100%; max-width: 420px; height: auto; object-fit: contain; filter: drop-shadow(0 12px 36px rgba(232,35,10,0.30)); display: block; }
.what-is-text p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.what-is-text p strong { color: var(--white); }

.why-section { background: var(--char); padding: 70px 48px; }
.section-prose { max-width: 900px; margin: 0 auto; }
.section-prose p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.section-prose p strong { color: var(--white); }

/* ── PRICING BAND ── */
.pricing-band {
  background: var(--char-mid); padding: 44px 40px 14px; text-align: center;
  border-top: 2px solid var(--red); border-bottom: 1px solid var(--border);
}
.pricing-band h3 { font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 8px; letter-spacing: -0.3px; text-transform: uppercase; }
.pricing-band h3 span.hl { color: var(--gold); }
.pricing-band h4 { font-size: 1.05rem; font-weight: 400; color: var(--muted); font-family: 'Jost', sans-serif; }

/* ── PRICE CARDS — 3-col bundle cards (NEW) ── */
.pricing-cards-section { background: var(--char); padding: 60px 48px; }
.pricing-cards-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch;
}
.price-card {
  background: var(--char-light); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 32px 24px 28px;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  text-align: center; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s; position: relative;
}
.price-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.price-card.featured { border-color: var(--gold); border-width: 2px; }
.price-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 900;
  padding: 4px 18px; border-radius: 50px; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(232,35,10,0.45);
}
.price-card img { max-width: 160px; height: 180px; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(232,35,10,0.25)); }
.price-card h3 { font-family: 'Jost', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--white); text-transform: uppercase; }
.price-card .supply { font-size: 0.82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.price-card .per-bottle { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.price-card .per-bottle span { font-size: 1.2rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.price-card .per-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: -6px; }
.price-card .savings { background: rgba(232,35,10,0.15); color: var(--red-mid); border: 1px solid rgba(232,35,10,0.25); border-radius: 50px; font-size: 0.78rem; font-weight: 800; padding: 3px 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.price-card .free-ship { background: rgba(245,166,35,0.12); color: var(--gold); border: 1px solid rgba(245,166,35,0.25); border-radius: 50px; font-size: 0.78rem; font-weight: 800; padding: 3px 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.price-card .total { font-size: 0.88rem; color: var(--muted); }
.price-card .total s { color: rgba(255,255,255,0.25); }

/* ── INGREDIENTS — dark glass cards ── */
.ingredients-section { background: var(--char-mid); padding: 70px 48px; }
.ingredients-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch;
}
.ingredient-card {
  background: var(--char); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.3s;
  border-top: 3px solid var(--red);
}
.ingredient-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.ing-icon {
  width: 52px; height: 52px; background: rgba(232,35,10,0.15);
  border: 1px solid rgba(232,35,10,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1; flex-shrink: 0;
}
.ingredient-card h3 { font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; }
.ingredient-card p { font-size: 0.94rem; line-height: 1.75; color: var(--muted); flex: 1; }

/* ── BADGE ROW ── */
.badge-row {
  background: var(--char); padding: 36px 48px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.badge-row-inner { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 10px; }
.badge-pill {
  background: var(--char-light); border: 1px solid var(--border);
  color: var(--text); font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 700; padding: 7px 18px;
  border-radius: 50px; display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-pill .bp-dot { color: var(--gold); font-size: 1rem; }

/* ── GUARANTEE ── */
.guarantee-section { background: var(--char-mid); padding: 70px 48px; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 60px; }
.guarantee-img-wrap img { width: 100%; max-width: 280px; height: auto; object-fit: contain; display: block; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.50)); }
.guarantee-text p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.guarantee-text p strong { color: var(--white); }

/* ── HOW TO USE ── */
.howto-section { background: var(--char); padding: 70px 48px; }
.howto-steps { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.howto-step {
  background: var(--char-light); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 22px 26px;
  display: flex; flex-direction: row; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.step-num {
  min-width: 48px; width: 48px; height: 48px;
  background: var(--grad); border-radius: var(--radius-btn);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.1rem;
  flex-shrink: 0; font-family: 'Jost', sans-serif; line-height: 1;
}
.howto-step-text { flex: 1; min-width: 0; }
.howto-step h4 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 800; color: var(--gold); margin-bottom: 6px; text-transform: uppercase; }
.howto-step p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ── FAQs ── */
.faq-section { background: var(--char-mid); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--char); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 24px; font-family: 'Jost', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background 0.2s; line-height: 1.4; }
.faq-question:hover { background: var(--char-light); }
.faq-arrow { font-size: 0.9rem; transition: transform 0.3s; color: var(--gold); flex-shrink: 0; }
.faq-answer { display: none; padding: 16px 24px 20px; font-size: 1rem; line-height: 1.8; color: var(--muted); border-top: 1px solid var(--border); background: var(--char-light); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── ORDER SECTION ── */
.order-how-section { background: var(--char); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.order-how-inner p strong { color: var(--white); }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); border: 1px solid var(--border); }
.order-img-wrap a:hover img { transform: scale(1.01); }

/* ── INFO BLOCKS ── */
.pricing-details { background: var(--char-mid); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--char); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; border-left: 5px solid var(--red); box-shadow: var(--shadow-card); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.3px; }
.info-block p, .info-block li { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; margin: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "🔥 "; }

/* ── FINAL CTA ── */
.cta-final {
  background: var(--char-mid); padding: 80px 48px; text-align: center;
  border-top: 2px solid var(--red);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(232,35,10,0.12) 0%, transparent 60%);
}
.cta-final h2 { font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 36px; line-height: 1.2; text-transform: uppercase; letter-spacing: -0.3px; }
.cta-final h2 span.hl { color: var(--gold); }
.cta-product-img { max-width: 420px; margin: 0 auto 28px; }
.cta-product-img a img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 16px 40px rgba(232,35,10,0.40)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.05); }
.cta-regular-price { font-size: 1.1rem; color: rgba(255,255,255,0.30); text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); display: block; margin-bottom: 28px; letter-spacing: -1px; }

/* ── FOOTER ── */
footer { background: #0a0a0a; padding: 48px 48px 30px; border-top: 2px solid var(--red); }
.footer-cols { max-width: 1160px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
.footer-cols a { color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; font-family: 'Jost', sans-serif; transition: color 0.2s; padding: 5px 16px; border-right: 1px solid var(--border); text-align: center; white-space: nowrap; }
.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--gold); }
.footer-legal { max-width: 1160px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 22px; }
.footer-legal p { font-size: 0.85rem; color: rgba(255,255,255,0.28); line-height: 1.75; margin-bottom: 10px; }
.footer-copy { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.22); font-family: 'Jost', sans-serif; margin-top: 14px; }
.footer-copy a { color: var(--muted); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.1rem; }
  .what-is-inner { grid-template-columns: 1fr 1.3fr; gap: 40px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .what-is-inner { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { display: flex; justify-content: center; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-strip { flex-direction: column; align-items: center; gap: 8px; padding: 14px 20px; }
  .sstat { border-right: none; }
  .hero { padding: 44px 20px; }
  .hero-content h1 { font-size: 1.75rem; }
  .sec-title-band { padding: 40px 20px 34px; }
  .sec-title-band h2 { font-size: 1.5rem; }
  .reviews-grid, .ingredients-grid, .pricing-cards-grid { grid-template-columns: 1fr; }
  .reviews-section, .what-is-section, .why-section, .ingredients-section,
  .howto-section, .guarantee-section, .faq-section, .order-how-section { padding: 44px 20px; }
  .pricing-cards-section, .pricing-details, .badge-row { padding: 32px 20px; }
  .cta-final { padding: 56px 20px; }
  .cta-final h2 { font-size: 1.5rem; }
  .cta-current-price { font-size: 2rem; }
  footer { padding: 36px 20px 24px; }
  .footer-cols a { border-right: none; padding: 4px 10px; }
}

/* ── PRICE IMAGE SECTION ── */
.price-img-section {
  background: var(--char-mid);
  padding: 48px;
  text-align: center;
}

.price-img-section a { display: block; }

.price-img-section a img {
  max-width: 900px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  transition: transform 0.3s;
  box-shadow: 0 4px 30px rgba(232,35,10,0.20);
  border: 1px solid var(--border);
}

.price-img-section a:hover img { transform: scale(1.01); }

@media (max-width: 640px) {
  .price-img-section { padding: 24px 16px; }
}