/* GelCore Guide — Stylesheet
   Deep navy #12213a + coral #f05a28 + off-white
   Fonts: Syne (headings) + Manrope (body)
   ================================================= */

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

:root {
  --navy:        #12213a;
  --navy-mid:    #1e3358;
  --navy-light:  #eef1f7;
  --coral:       #f05a28;
  --coral-dark:  #c44419;
  --coral-light: #fff1ec;
  --coral-pale:  #fff8f5;
  --gold:        #f5c842;
  --green:       #1da462;
  --text:        #0f1c2e;
  --text-mid:    #334155;
  --text-soft:   #64748b;
  --bg:          #ffffff;
  --bg-off:      #f8fafc;
  --bg-dark:     #0c1829;
  --border:      #e2e8f0;
  --radius:      8px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 8px rgba(18,33,58,0.07);
  --shadow:      0 4px 20px rgba(18,33,58,0.11);
  --shadow-lg:   0 12px 40px rgba(18,33,58,0.16);
  --trans:       0.2s ease;
  --font-head:   'Syne', sans-serif;
  --font-body:   'Manrope', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--coral); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--coral-dark); }
ul { list-style: none; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; color: var(--text); font-weight: 800; }
h1 { font-size: clamp(2rem, 4.8vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-size: 0.97rem; font-weight: 700; }

.chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.28rem 0.8rem; border-radius: 50px;
}
.chip-coral  { background: var(--coral-light); color: var(--coral-dark); }
.chip-navy   { background: var(--navy-light);  color: var(--navy-mid); }
.chip-gold   { background: #fef9e7; color: #a07800; }
.chip-white  { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.chip-green  { background: #e6f7ee; color: #145c39; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--trans); text-align: center;
}
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 4px 16px rgba(240,90,40,0.35); }
.btn-coral:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,90,40,0.42); }
.btn-navy  { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn-navy:hover { background: var(--navy-mid); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-lg  { padding: 1.1rem 2.6rem; font-size: 1.1rem; border-radius: 12px; }
.btn-xl  { padding: 1.25rem 3rem; font-size: 1.15rem; border-radius: 50px; }
.btn-full { width: 100%; }

/* ── DISCLOSURE BAR ──────────────────────────────── */
.disc-bar {
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.55rem 1.25rem; text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
}
.disc-bar strong { color: rgba(255,255,255,0.8); }
.disc-bar a { color: var(--coral); text-decoration: underline; font-weight: 600; }

/* ── HEADER ──────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: all var(--trans); }
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 62px; }

.logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.logo-dot { width: 10px; height: 10px; background: var(--coral); border-radius: 50%; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--text); letter-spacing: -0.02em; }
.logo-text em { color: var(--coral); font-style: normal; }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 0; }
.main-nav a { font-size: 0.88rem; font-weight: 600; color: var(--text-mid); padding: 0.4rem 0.85rem; border-radius: 6px; transition: all var(--trans); }
.main-nav a:hover, .main-nav a.active { color: var(--coral); background: var(--coral-light); }

.header-cta { display: none; }
.burger { background: none; border: none; cursor: pointer; padding: 0.4rem; display: flex; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--trans); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav { display: none; position: fixed; inset: 0; background: var(--bg-dark); z-index: 999; padding: 5rem 2rem 2rem; flex-direction: column; gap: 0.4rem; }
.mob-nav.open { display: flex; }
.mob-nav a { color: rgba(255,255,255,0.8); font-size: 1.2rem; font-family: var(--font-head); padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mob-nav a:hover { color: var(--coral); }

@media (min-width: 860px) { .main-nav { display: block; } .header-cta { display: inline-flex; } .burger { display: none; } }

/* ── HERO ────────────────────────────────────────── */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 4rem 0 0; }
.hero-glow-1 { position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(240,90,40,0.18) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.hero-glow-2 { position: absolute; bottom: 0; left: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(30,51,88,0.8) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; gap: 3rem; align-items: flex-end; position: relative; z-index: 1; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 1fr 400px; } }

.hero-content { padding-bottom: 3.5rem; }
.hero-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.hero-meta-sep { color: rgba(255,255,255,0.2); }
.hero-meta-txt { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 .highlight { color: var(--coral); position: relative; }
.hero-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 500px; line-height: 1.72; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust-i { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.hero-trust-i span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.hero-img-col { display: flex; align-items: flex-end; justify-content: center; }
.hero-img-col img { max-height: 380px; filter: drop-shadow(0 -10px 40px rgba(240,90,40,0.3)); }

/* ── CHECKLIST SECTION ───────────────────────────── */
.checklist-section { padding: 4rem 0; background: var(--bg-off); }
.sec-head { margin-bottom: 2.5rem; }
.sec-head .chip { margin-bottom: 0.85rem; }
.sec-head h2 { margin-bottom: 0.6rem; }
.sec-head p { color: var(--text-soft); max-width: 580px; font-size: 1rem; }

.criteria-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); }

.criterion {
  display: grid; grid-template-columns: 48px 1fr auto;
  align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.criterion:last-child { border-bottom: none; }
.criterion:hover { background: var(--coral-pale); }

.criterion-num {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-light); color: var(--navy-mid);
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.criterion.pass .criterion-num { background: var(--coral-light); color: var(--coral-dark); }

.criterion-body h4 { margin-bottom: 0.2rem; font-size: 0.97rem; }
.criterion-body p  { font-size: 0.85rem; color: var(--text-soft); margin: 0; }

.criterion-verdict {
  flex-shrink: 0; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.75rem; border-radius: 50px; white-space: nowrap;
}
.verdict-pass { background: #e6f7ee; color: var(--green); }
.verdict-check { background: var(--coral-light); color: var(--coral-dark); }

/* ── SCORE CARD ──────────────────────────────────── */
.score-section { padding: 4rem 0; background: var(--bg); }
.score-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 860px) { .score-grid { grid-template-columns: 1fr 340px; } }

.score-intro p { color: var(--text-mid); margin-bottom: 1.1rem; line-height: 1.78; font-size: 0.97rem; }
.score-intro h3 { margin-bottom: 0.75rem; }
.callout-box {
  background: var(--coral-light); border: 1px solid #f5c4b0;
  border-left: 4px solid var(--coral); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; margin: 1.5rem 0;
  font-size: 0.9rem; color: #7a2c10; line-height: 1.65;
}

.score-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 2rem;
  color: #fff; position: sticky; top: 80px;
}
.score-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.score-big { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; color: var(--coral); line-height: 1; }
.score-big span { font-size: 1.4rem; color: rgba(255,255,255,0.4); }
.score-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.score-bars { display: flex; flex-direction: column; gap: 0.85rem; }
.score-bar-row { }
.score-bar-top { display: flex; justify-content: space-between; font-size: 0.78rem; margin-bottom: 0.3rem; }
.score-bar-top .name { color: rgba(255,255,255,0.6); }
.score-bar-top .val  { color: var(--coral); font-weight: 700; }
.score-bar-bg { height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; }
.score-bar-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--coral-dark), var(--coral)); }
.score-card-img { margin: 1.5rem auto 0; max-width: 160px; filter: drop-shadow(0 4px 16px rgba(240,90,40,0.3)); }

/* ── PACKAGES ────────────────────────────────────── */
.packages-section { padding: 4rem 0; background: var(--navy); }
.packages-section .sec-head h2 { color: #fff; }
.packages-section .sec-head p   { color: rgba(255,255,255,0.55); }

.pkg-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; text-align: center;
  position: relative; transition: all var(--trans);
}
.pkg:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.pkg.hero-pkg {
  background: #fff; border-color: var(--coral);
  box-shadow: 0 0 0 2px var(--coral), var(--shadow-lg);
}
.pkg-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 1rem; border-radius: 50px; white-space: nowrap;
}
.pkg-ribbon.gold { background: var(--gold); color: var(--text); }
.pkg-name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 0.2rem; }
.pkg.hero-pkg .pkg-name { color: var(--text); }
.pkg-bottles { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.pkg.hero-pkg .pkg-bottles { color: var(--text-soft); }
.pkg-img-wrap { height: 110px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.pkg-img-wrap img { max-height: 100%; object-fit: contain; }
.pkg-price-row { margin-bottom: 1rem; }
.pkg-per { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.pkg.hero-pkg .pkg-per { color: var(--text-soft); }
.pkg-amount { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
.pkg.hero-pkg .pkg-amount { color: var(--text); }
.pkg-amount sup { font-size: 1.2rem; vertical-align: super; }
.pkg-total { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 0.25rem; }
.pkg.hero-pkg .pkg-total { color: var(--text-soft); }
.pkg-total s { color: rgba(255,255,255,0.2); }
.pkg.hero-pkg .pkg-total s { color: #aaa; }
.pkg-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1rem 0; }
.pkg.hero-pkg .pkg-divider { border-color: var(--border); }
.pkg-perks { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.pkg-perk { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.pkg.hero-pkg .pkg-perk { color: var(--text-mid); }
.pkg-perk .tick { color: var(--green); font-weight: 700; }
.pkg-perk.savings { color: var(--gold) !important; font-weight: 700; }
.pkg.hero-pkg .pkg-perk.savings { color: var(--coral) !important; }
.pkg-shipping { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 0.65rem; }
.pkg-shipping.free { color: var(--green); font-weight: 600; }

/* ── WHY 60 DAYS ─────────────────────────────────── */
.guarantee-section { padding: 3.5rem 0; background: var(--bg-off); }
.guarantee-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .guarantee-grid { grid-template-columns: 1fr 1fr; } }
.guarantee-badge {
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--navy); border: 5px solid var(--coral);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.guarantee-badge .days { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--coral); line-height: 1; }
.guarantee-badge .label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; text-transform: uppercase; }
.guarantee-text h3 { margin-bottom: 0.85rem; }
.guarantee-text p  { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1rem; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-section { padding: 3.5rem 0; background: var(--bg); }
.faq-wrap { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--trans); }
.faq-item:hover { border-color: var(--coral); }
.faq-btn { width: 100%; background: none; border: none; cursor: pointer; padding: 1.1rem 1.4rem; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-head); font-size: 0.95rem; font-weight: 800; color: var(--text); transition: background var(--trans); }
.faq-btn:hover { background: var(--coral-pale); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--coral); font-size: 1.1rem; transition: all var(--trans); }
.faq-btn.open .faq-icon { transform: rotate(45deg); border-color: var(--coral); background: var(--coral-light); }
.faq-ans { display: none; padding: 0 1.4rem 1.1rem; font-size: 0.91rem; color: var(--text-mid); line-height: 1.72; }
.faq-ans.open { display: block; }
.faq-ans a { color: var(--coral); text-decoration: underline; }

/* ── FINAL CTA ───────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--navy) 100%); padding: 4.5rem 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(240,90,40,0.15) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.cta-inner { display: grid; gap: 3rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 860px) { .cta-inner { grid-template-columns: 1fr 320px; } }
.cta-text h2 { color: #fff; margin-bottom: 0.85rem; }
.cta-text p  { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 1.75rem; line-height: 1.72; }
.cta-trust-list { display: flex; flex-direction: column; gap: 0.6rem; }
.cta-trust-row { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.cta-trust-row .ico { width: 20px; height: 20px; border-radius: 50%; background: rgba(240,90,40,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--coral); flex-shrink: 0; }
.cta-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); padding: 2rem; text-align: center; }
.cta-card img { max-width: 160px; margin: 0 auto 1.25rem; filter: drop-shadow(0 6px 20px rgba(240,90,40,0.35)); }
.cta-card-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }
.cta-card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer { background: #080f1c; color: rgba(255,255,255,0.45); padding-top: 3rem; }
.footer-cols { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
@media (min-width: 640px) { .footer-cols { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.footer-brand em { color: var(--coral); font-style: normal; }
.footer-desc { font-size: 0.84rem; line-height: 1.68; }
.footer-col h5 { color: rgba(255,255,255,0.7); font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.f-links { display: flex; flex-direction: column; gap: 0.5rem; }
.f-links a { font-size: 0.84rem; color: rgba(255,255,255,0.35); transition: color var(--trans); }
.f-links a:hover { color: var(--coral); }
.f-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.f-contact li { font-size: 0.84rem; }
.f-contact a { color: rgba(255,255,255,0.35); transition: color var(--trans); }
.f-contact a:hover { color: var(--coral); }
.footer-bottom { padding: 1.4rem 0; }
.fb-inner { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 640px) { .fb-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.f-copy { font-size: 0.78rem; }
.f-disc { font-size: 0.73rem; color: rgba(255,255,255,0.22); line-height: 1.6; max-width: 600px; }

/* ── COOKIE ──────────────────────────────────────── */
.ck-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #080f1c; border-top: 1px solid rgba(240,90,40,0.3); padding: 0.9rem 1.25rem; z-index: 9999; display: none; }
.ck-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ck-inner p { color: rgba(255,255,255,0.6); font-size: 0.83rem; flex: 1; min-width: 220px; }
.ck-inner a { color: var(--coral); }
.ck-btns { display: flex; gap: 0.6rem; }

/* ── UTILS ───────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }
section { padding: 3rem 0; }

/* Policy pages */
.policy-pg { padding: 3rem 0 4.5rem; }
.policy-pg h1 { margin-bottom: 0.4rem; }
.policy-pg .upd { color: var(--text-soft); font-size: 0.82rem; margin-bottom: 2.5rem; }
.policy-body { max-width: 740px; }
.policy-body h2 { font-size: 1.15rem; margin: 2rem 0 0.6rem; }
.policy-body p, .policy-body li { color: var(--text-mid); line-height: 1.78; margin-bottom: 0.85rem; font-size: 0.94rem; }
.policy-body ul { list-style: disc; padding-left: 1.5rem; }
.policy-body a { color: var(--coral); }
