/* =================================================================
   HoneyFil — style.css
   Premium Men’s Wellness | Deep Navy · Emerald Green · Warm Gold
   -----------------------------------------------------------------
   01 Variables        10 Ingredients      19 Blog Article
   02 Reset & Base     11 How It Works     20 Legal Pages
   03 Typography       12 Why Love         21 Contact Page
   04 Utilities        13 Testimonials     22 404 Page
   05 Navigation       14 FAQ              23 Animations
   06 Hero             15 Pricing          24 Responsive
   07 Stats Bar        16 Final CTA
   08 Why HoneyFil     17 Footer
   09 Benefits         18 Mobile CTA + Blog Listing
   ================================================================= */

/* ── 01. Variables ───────────────────────────────────────── */
:root {
  --navy       : #0D1F35;
  --navy-l     : #1A3A5C;
  --green      : #0ABF76;
  --green-d    : #089963;
  --gold       : #F5A623;
  --gold-d     : #D9911A;
  --white      : #FFFFFF;
  --off-white  : #F7F9FC;
  --black      : #0A0A0A;
  --gray-50    : #F9FAFB;
  --gray-100   : #F3F4F6;
  --gray-200   : #E5E7EB;
  --gray-300   : #D1D5DB;
  --gray-400   : #9CA3AF;
  --gray-500   : #6B7280;
  --txt        : #0D1F35;
  --txt-2      : #4B5563;
  --txt-m      : #9CA3AF;

  --g-navy     : linear-gradient(135deg,#0D1F35 0%,#152D4A 100%);
  --g-hero     : linear-gradient(135deg,#0D1F35 0%,#0F2B48 60%,#0D1F35 100%);
  --g-green    : linear-gradient(135deg,#0ABF76 0%,#089963 100%);
  --g-gold     : linear-gradient(135deg,#F5A623 0%,#D9911A 100%);

  --sh-xs      : 0 1px 3px rgba(0,0,0,.06);
  --sh-sm      : 0 2px 8px rgba(0,0,0,.08);
  --sh-md      : 0 8px 24px rgba(0,0,0,.10);
  --sh-lg      : 0 16px 48px rgba(0,0,0,.14);
  --sh-xl      : 0 24px 64px rgba(0,0,0,.18);
  --sh-green   : 0 8px 32px rgba(10,191,118,.28);
  --sh-gold    : 0 8px 32px rgba(245,166,35,.30);

  --r-sm   : 8px;
  --r-md   : 12px;
  --r-lg   : 20px;
  --r-xl   : 32px;
  --r-full : 9999px;

  --ease      : all .3s ease;
  --ease-fast : all .15s ease;

  --ff-h : 'Poppins', sans-serif;
  --ff-b : 'Inter', sans-serif;

  --nav-h  : 72px;
  --sec-p  : clamp(60px,8vw,100px);
  --wrap   : 1200px;
  --gutter : clamp(16px,4vw,32px);
}

/* ── 02. Reset & Base ────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family:var(--ff-b);
  color:var(--txt);
  background:var(--white);
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img,video { max-width:100%; height:auto; display:block; }
a   { color:inherit; text-decoration:none; transition:var(--ease); }
ul,ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
:focus-visible { outline:3px solid var(--green); outline-offset:3px; border-radius:4px; }

/* ── 03. Typography ─────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family:var(--ff-h); font-weight:700; line-height:1.2; color:var(--txt); }
h1 { font-size:clamp(2rem,5vw,3.5rem); }
h2 { font-size:clamp(1.75rem,4vw,2.75rem); }
h3 { font-size:clamp(1.2rem,2.5vw,1.65rem); }
h4 { font-size:clamp(1rem,2vw,1.25rem); }
p  { font-size:clamp(.9rem,1.4vw,1.05rem); color:var(--txt-2); line-height:1.8; }

/* ── 04. Utilities ──────────────────────────────────── */
.container { max-width:var(--wrap); margin:0 auto; padding:0 var(--gutter); width:100%; }
.section   { padding:var(--sec-p) 0; }
.section-alt  { background:var(--gray-50); }
.section-dark { background:var(--g-navy); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color:var(--white); }
.section-dark p { color:rgba(255,255,255,.78); }
.sec-header { text-align:center; max-width:700px; margin:0 auto 3rem; }
.sec-header h2 { margin-bottom:1rem; }
.eyebrow {
  display:inline-block;
  font-family:var(--ff-h); font-size:.78rem; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--green); margin-bottom:.75rem;
}
.section-dark .eyebrow { color:var(--gold); }

/* Buttons */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.875rem 2rem; border-radius:var(--r-full);
  font-family:var(--ff-h); font-weight:600; font-size:1rem;
  transition:var(--ease); white-space:nowrap; min-height:44px;
  border:2px solid transparent; text-align:center; cursor:pointer;
}
.btn-primary { background:var(--g-green); color:var(--white); box-shadow:var(--sh-green); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 14px 40px rgba(10,191,118,.38); color:var(--white); }
.btn-gold    { background:var(--g-gold); color:var(--white); box-shadow:var(--sh-gold); }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 14px 40px rgba(245,166,35,.42); color:var(--white); }
.btn-outline { background:transparent; color:var(--white); border-color:rgba(255,255,255,.4); }
.btn-outline:hover { background:rgba(255,255,255,.1); border-color:var(--white); color:var(--white); }
.btn-white   { background:var(--white); color:var(--txt); }
.btn-white:hover { background:var(--gray-100); color:var(--txt); }
.btn-lg   { padding:1.125rem 2.5rem; font-size:1.075rem; }
.btn-sm   { padding:.625rem 1.5rem; font-size:.875rem; }
.btn-full { width:100%; }

/* Badges */
.badge {
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.3rem .875rem; border-radius:var(--r-full);
  font-size:.74rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.06em; font-family:var(--ff-h);
}
.badge-gold  { background:var(--g-gold);  color:var(--white); }
.badge-green { background:var(--g-green); color:var(--white); }
.badge-navy  { background:var(--navy);    color:var(--white); }

/* ── 05. Navigation ─────────────────────────────────── */
.navbar {
  position:fixed; top:0; left:0; right:0;
  z-index:1000; height:var(--nav-h);
  display:flex; align-items:center; transition:var(--ease);
}
.navbar.scrolled {
  background:rgba(13,31,53,.97);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  box-shadow:0 4px 24px rgba(0,0,0,.18);
}
.nav-inner {
  max-width:var(--wrap); margin:0 auto; padding:0 var(--gutter);
  width:100%; display:flex; align-items:center;
  justify-content:space-between; gap:1rem;
}
.brand { font-family:var(--ff-h); font-size:clamp(1.3rem,3vw,1.75rem); font-weight:800; line-height:1; flex-shrink:0; }
.brand-h { color:var(--gold); }
.brand-f { color:var(--white); }
.nav-list { display:flex; align-items:center; gap:clamp(.875rem,2vw,2rem); }
.nav-a {
  color:rgba(255,255,255,.85);
  font-family:var(--ff-h); font-weight:500; font-size:.93rem;
  padding:.35rem 0; position:relative;
}
.nav-a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--green); transition:var(--ease);
}
.nav-a:hover,.nav-a.active { color:var(--white); }
.nav-a:hover::after,.nav-a.active::after { width:100%; }
.nav-cta {
  background:var(--g-green); color:var(--white) !important;
  padding:.6rem 1.4rem; border-radius:var(--r-full); font-weight:600;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover  { transform:translateY(-1px); box-shadow:var(--sh-green); }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  padding:8px; min-width:44px; min-height:44px;
  align-items:center; justify-content:center; border-radius:var(--r-sm);
}
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:var(--ease); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── 06. Hero ────────────────────────────────────────── */
.hero {
  min-height:100vh; background:var(--g-hero);
  display:flex; align-items:center; padding-top:var(--nav-h);
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 72% 50%,rgba(10,191,118,.08) 0%,transparent 65%);
  pointer-events:none;
}
.hero-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem); align-items:center;
  padding:4rem var(--gutter); max-width:var(--wrap); margin:0 auto; width:100%;
}
.hero-pill {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(10,191,118,.12); border:1px solid rgba(10,191,118,.3);
  color:var(--green); padding:.4rem 1.1rem; border-radius:var(--r-full);
  font-family:var(--ff-h); font-size:.78rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; margin-bottom:1.25rem;
}
.hero h1    { color:var(--white); margin-bottom:1.25rem; font-weight:800; }
.hero h1 em { color:var(--gold); font-style:normal; }
.hero-sub   { font-size:clamp(1rem,1.8vw,1.2rem); color:rgba(255,255,255,.75); margin-bottom:2rem; }
.hero-btns  { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.hero-trust { display:flex; gap:1.5rem; flex-wrap:wrap; }
.trust-chip {
  display:flex; align-items:center; gap:.45rem;
  font-family:var(--ff-h); font-size:.78rem; font-weight:600;
  color:rgba(255,255,255,.68); text-transform:uppercase; letter-spacing:.05em;
}
.trust-chip i { color:var(--green); font-size:.88rem; }
.hero-img-wrap { display:flex; justify-content:center; align-items:center; position:relative; }
.hero-img-wrap::before {
  content:''; position:absolute; width:75%; height:75%;
  background:radial-gradient(circle,rgba(10,191,118,.15) 0%,transparent 70%);
  border-radius:50%; animation:glowPulse 3.5s ease-in-out infinite;
}
.hero-bottle {
  max-height:520px; width:auto; max-width:100%;
  position:relative; z-index:1;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.4));
  animation:floatY 6s ease-in-out infinite;
}
@keyframes floatY   { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-18px)} }
@keyframes glowPulse{ 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.1);opacity:1} }

/* ── 07. Stats Bar ──────────────────────────────────── */
.stats-bar { background:var(--g-navy); padding:2.5rem 0; border-top:1px solid rgba(255,255,255,.05); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; text-align:center; }
.stat-num {
  display:block; font-family:var(--ff-h);
  font-size:clamp(1.75rem,4vw,2.5rem); font-weight:800;
  color:var(--gold); line-height:1; margin-bottom:.25rem;
}
.stat-lbl { font-size:.82rem; color:rgba(255,255,255,.62); font-weight:500; text-transform:uppercase; letter-spacing:.05em; }

/* ── 08. Why HoneyFil ──────────────────────────────── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,5rem); align-items:center; }
.why-list { display:flex; flex-direction:column; gap:1rem; margin-top:1.5rem; }
.why-item {
  display:flex; align-items:flex-start; gap:1rem;
  padding:1rem 1.25rem; background:var(--gray-50);
  border-radius:var(--r-md); border-left:3px solid var(--green); transition:var(--ease);
}
.why-item:hover { background:rgba(10,191,118,.05); transform:translateX(4px); }
.why-ico {
  width:36px; height:36px; background:var(--g-green); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:.9rem; flex-shrink:0;
}
.why-txt h4 { font-size:.93rem; margin-bottom:.2rem; }
.why-txt p  { font-size:.85rem; line-height:1.55; margin:0; }
.why-visual { display:flex; justify-content:center; }
.why-visual img { border-radius:var(--r-lg); box-shadow:var(--sh-xl); width:100%; max-width:480px; }

/* ── 09. Benefits ───────────────────────────────────── */
.benefits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.benefit-card {
  background:var(--white); border-radius:var(--r-lg); padding:2rem 1.75rem;
  box-shadow:var(--sh-sm); border:1px solid var(--gray-200);
  text-align:center; transition:var(--ease);
}
.benefit-card:hover { transform:translateY(-6px); box-shadow:var(--sh-lg); border-color:rgba(10,191,118,.25); }
.bene-ico {
  width:72px; height:72px; background:rgba(10,191,118,.08);
  border-radius:18px; display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.25rem; font-size:1.75rem; color:var(--green); transition:var(--ease);
}
.benefit-card:hover .bene-ico { background:var(--g-green); color:var(--white); box-shadow:var(--sh-green); }
.benefit-card h3 { font-size:1rem; margin-bottom:.625rem; }
.benefit-card p  { font-size:.875rem; line-height:1.65; margin:0; }

/* ── 10. Ingredients ────────────────────────────────── */
.ingr-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.ingr-card {
  background:var(--gray-50); border-radius:var(--r-lg); padding:1.75rem 1.25rem;
  text-align:center; border:1px solid var(--gray-200); transition:var(--ease);
  position:relative; overflow:hidden;
}
.ingr-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:3px; background:var(--g-green); transform:scaleX(0); transition:var(--ease);
}
.ingr-card:hover { transform:translateY(-5px); box-shadow:var(--sh-lg); background:var(--white); border-color:rgba(10,191,118,.25); }
.ingr-card:hover::after { transform:scaleX(1); }
.ingr-emoji { font-size:2.25rem; margin-bottom:.75rem; display:block; }
.ingr-card h4 { font-size:.93rem; margin-bottom:.5rem; }
.ingr-card p  { font-size:.82rem; line-height:1.6; margin:0; }

/* ── 11. How It Works ───────────────────────────────── */
.how-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,5rem); align-items:center; }
.how-img-wrap { display:flex; justify-content:center; }
.how-img-wrap img { border-radius:var(--r-xl); box-shadow:var(--sh-xl); width:100%; max-width:480px; }
.steps { display:flex; flex-direction:column; gap:1.5rem; margin-top:1.25rem; }
.step  { display:flex; gap:1.25rem; align-items:flex-start; }
.step-num {
  width:52px; height:52px; border-radius:50%; background:var(--g-green);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-h); font-weight:800; font-size:1.1rem;
  color:var(--white); flex-shrink:0; box-shadow:var(--sh-green);
}
.step-body h4 { margin-bottom:.3rem; }
.step-body p  { font-size:.9rem; margin:0; }

/* ── 12. Why Customers Love ─────────────────────────── */
.love-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.love-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-lg); padding:2rem 1.5rem; text-align:center; transition:var(--ease);
}
.love-card:hover { background:rgba(255,255,255,.10); transform:translateY(-4px); }
.love-ico { font-size:2.5rem; margin-bottom:1rem; color:var(--gold); }
.love-card h4 { color:var(--white); font-size:1rem; margin-bottom:.5rem; }
.love-card p  { font-size:.875rem; color:rgba(255,255,255,.68); margin:0; line-height:1.65; }

/* ── 13. Testimonials ───────────────────────────────── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testi-card {
  background:var(--white); border-radius:var(--r-lg); padding:2rem;
  border:1px solid var(--gray-200); transition:var(--ease);
  display:flex; flex-direction:column; gap:1.25rem;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:var(--sh-lg); border-color:rgba(10,191,118,.22); }
.testi-stars  { display:flex; gap:3px; color:var(--gold); font-size:.95rem; }
.testi-quote  { font-style:italic; font-size:.95rem; line-height:1.78; color:var(--txt-2); flex:1; }
.testi-quote::before { content:'\201C'; }
.testi-quote::after  { content:'\201D'; }
.testi-author { display:flex; align-items:center; gap:.875rem; }
.testi-avatar {
  width:48px; height:48px; border-radius:50%; background:var(--g-navy);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-h); font-weight:700; font-size:1.1rem;
  color:var(--white); flex-shrink:0;
}
.testi-name   { font-family:var(--ff-h); font-weight:700; font-size:.93rem; }
.testi-detail { font-size:.78rem; color:var(--txt-m); margin-top:.15rem; }
.verified     { display:flex; align-items:center; gap:.3rem; font-size:.74rem; color:var(--green); font-weight:600; margin-top:.2rem; }

/* ── 14. FAQ ──────────────────────────────────────────── */
.faq-wrap { max-width:800px; margin:0 auto; }
.faq-item {
  background:var(--white); border-radius:var(--r-md); margin-bottom:.75rem;
  border:1px solid var(--gray-200); overflow:hidden; transition:var(--ease);
}
.faq-item.open { border-color:rgba(10,191,118,.35); box-shadow:var(--sh-xs); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:1.25rem 1.5rem; cursor:pointer; gap:1rem; min-height:44px;
}
.faq-q:hover { background:var(--gray-50); }
.faq-q-txt { font-family:var(--ff-h); font-weight:600; font-size:.95rem; color:var(--txt); text-align:left; }
.faq-ico {
  width:28px; height:28px; border-radius:50%; background:var(--gray-100);
  display:flex; align-items:center; justify-content:center;
  color:var(--green); transition:var(--ease); font-size:.85rem; flex-shrink:0;
}
.faq-item.open .faq-ico { background:var(--green); color:var(--white); transform:rotate(45deg); }
.faq-ans         { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-ans-inner   { padding:0 1.5rem 1.25rem; font-size:.92rem; color:var(--txt-2); line-height:1.78; }

/* ── 15. Pricing ──────────────────────────────────────── */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; align-items:start; }
.price-card {
  background:var(--white); border-radius:var(--r-xl); padding:2.5rem 2rem;
  border:2px solid var(--gray-200); text-align:center; transition:var(--ease);
  display:flex; flex-direction:column; align-items:center; position:relative; overflow:hidden;
}
.price-card:hover { transform:translateY(-8px); box-shadow:var(--sh-xl); border-color:var(--green); }
.price-card.featured {
  border-color:var(--green);
  background:linear-gradient(180deg,rgba(10,191,118,.04) 0%,var(--white) 100%);
  box-shadow:var(--sh-lg),0 0 0 1px rgba(10,191,118,.12);
}
.price-badges { display:flex; gap:.5rem; justify-content:center; flex-wrap:wrap; margin-bottom:1.25rem; min-height:26px; }
.price-img    { margin-bottom:1.5rem; }
.price-img img {
  max-height:200px; width:auto; max-width:100%;
  filter:drop-shadow(0 10px 28px rgba(0,0,0,.14));
  transition:transform .4s ease;
}
.price-card:hover .price-img img { transform:scale(1.05); }
.price-name   { font-family:var(--ff-h); font-weight:800; font-size:1.05rem; margin-bottom:.5rem; }
.price-amount { font-family:var(--ff-h); font-size:clamp(2.25rem,4vw,3rem); font-weight:800; color:var(--navy); line-height:1; }
.price-per    { font-size:.875rem; color:var(--txt-2); margin-top:.2rem; }
.price-total  { font-size:.85rem; font-weight:600; color:var(--txt-2); margin:.5rem 0 1.5rem; }
.price-features { text-align:left; width:100%; display:flex; flex-direction:column; gap:.5rem; margin-bottom:1.75rem; flex:1; }
.price-feat   { display:flex; align-items:center; gap:.6rem; font-size:.875rem; color:var(--txt-2); }
.price-feat i { color:var(--green); font-size:.875rem; flex-shrink:0; }
.price-btn    { width:100%; margin-top:auto; }
.savings-note {
  text-align:center; margin-top:2.5rem; padding:1.25rem 2rem;
  background:rgba(245,166,35,.07); border:1.5px dashed rgba(245,166,35,.45);
  border-radius:var(--r-md); font-family:var(--ff-h); font-weight:600;
  font-size:.93rem; color:var(--gold-d);
}

/* ── 16. Final CTA ───────────────────────────────────── */
.cta-sec { background:var(--g-hero); text-align:center; position:relative; overflow:hidden; }
.cta-sec::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center,rgba(10,191,118,.12) 0%,transparent 70%);
}
.cta-sec .container { position:relative; z-index:1; }
.cta-sec h2 { color:var(--white); margin-bottom:1rem; }
.cta-sec p.cta-sub { color:rgba(255,255,255,.78); max-width:580px; margin:0 auto 2rem; }
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.cta-fine { margin-top:1.25rem; font-size:.78rem; color:rgba(255,255,255,.4); }

/* ── 17. Footer ───────────────────────────────────────── */
.site-footer { background:#070F1A; padding:5rem 0 2rem; }
.ft-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem;
  margin-bottom:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.08);
}
.ft-logo { font-family:var(--ff-h); font-size:1.7rem; font-weight:800; color:var(--white); display:inline-block; margin-bottom:1rem; }
.ft-logo span { color:var(--gold); }
.ft-brand p { font-size:.875rem; color:rgba(255,255,255,.5); line-height:1.7; margin-bottom:1.25rem; }
.ft-social  { display:flex; gap:.625rem; }
.soc-a {
  width:38px; height:38px; background:rgba(255,255,255,.07); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55); font-size:.875rem; transition:var(--ease);
}
.soc-a:hover { background:var(--green); color:var(--white); }
.ft-col h4 {
  font-family:var(--ff-h); font-size:.82rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em; color:var(--white); margin-bottom:1.25rem;
}
.ft-links   { display:flex; flex-direction:column; gap:.625rem; }
.ft-links a { font-size:.875rem; color:rgba(255,255,255,.52); }
.ft-links a:hover { color:var(--green); }
.ft-ci      { display:flex; align-items:flex-start; gap:.625rem; font-size:.875rem; color:rgba(255,255,255,.52); margin-bottom:.625rem; }
.ft-ci i    { color:var(--green); margin-top:.15rem; flex-shrink:0; }
.ft-ci a    { color:rgba(255,255,255,.52); }
.ft-ci a:hover { color:var(--green); }
.ft-secure  { display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; margin-bottom:1.5rem; }
.sec-chip {
  background:rgba(255,255,255,.07); border-radius:6px; padding:.4rem .875rem;
  font-size:.75rem; font-weight:600; color:rgba(255,255,255,.48);
  display:flex; align-items:center; gap:.35rem;
}
.sec-chip i { color:var(--green); }
.ft-bottom       { text-align:center; padding-top:2rem; }
.ft-legal-nav    { display:flex; gap:1.5rem; justify-content:center; flex-wrap:wrap; margin-bottom:1.5rem; }
.ft-legal-nav a  { font-size:.78rem; color:rgba(255,255,255,.4); }
.ft-legal-nav a:hover { color:var(--green); }
.ft-disc  { font-size:.73rem; color:rgba(255,255,255,.32); line-height:1.75; max-width:900px; margin:0 auto 1rem; }
.ft-copy  { font-size:.78rem; color:rgba(255,255,255,.38); }

/* ── 18. Mobile CTA ──────────────────────────────────── */
.mob-cta {
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:998;
  padding:.875rem var(--gutter); background:rgba(13,31,53,.97);
  backdrop-filter:blur(12px); border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 -8px 32px rgba(0,0,0,.22);
}
.mob-cta-inner {
  display:flex; gap:1rem; align-items:center; justify-content:space-between;
  max-width:480px; margin:0 auto;
}
.mob-cta-txt { font-family:var(--ff-h); font-size:.8rem; font-weight:600; color:rgba(255,255,255,.78); flex:1; }
.mob-cta .btn { flex-shrink:0; font-size:.875rem; padding:.75rem 1.375rem; }

/* ── 18b. Blog Listing ───────────────────────────────── */
.blog-hero-sec { background:var(--g-hero); padding:calc(var(--nav-h) + 4rem) 0 4rem; text-align:center; }
.blog-hero-sec h1 { color:var(--white); margin-bottom:1rem; }
.blog-hero-sec p  { color:rgba(255,255,255,.72); max-width:580px; margin:0 auto; }
.blog-search-wrap { max-width:480px; margin:2rem auto 0; position:relative; }
.blog-search-wrap input {
  width:100%; padding:.875rem 3.5rem .875rem 1.5rem; border-radius:var(--r-full);
  border:none; font-size:1rem; font-family:var(--ff-b); outline:none; box-shadow:var(--sh-md);
}
.blog-search-wrap button {
  position:absolute; right:6px; top:50%; transform:translateY(-50%);
  background:var(--g-green); color:var(--white); border:none; border-radius:var(--r-full);
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:.9rem; transition:var(--ease);
}
.blog-layout { display:grid; grid-template-columns:1fr 340px; gap:2.5rem; align-items:start; }
.cat-list { display:flex; gap:.625rem; flex-wrap:wrap; margin-bottom:2rem; }
.cat-btn {
  padding:.4rem 1rem; border-radius:var(--r-full); font-size:.8rem; font-weight:600;
  font-family:var(--ff-h); cursor:pointer; border:1.5px solid var(--gray-300);
  color:var(--txt-2); transition:var(--ease); background:var(--white);
}
.cat-btn.active,.cat-btn:hover { background:var(--green); color:var(--white); border-color:var(--green); }
.blog-card {
  background:var(--white); border-radius:var(--r-lg); overflow:hidden;
  border:1px solid var(--gray-200); transition:var(--ease); display:block;
}
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--sh-lg); border-color:rgba(10,191,118,.2); }
.blog-thumb {
  aspect-ratio:16/9; overflow:hidden; background:var(--gray-100);
  display:flex; align-items:center; justify-content:center;
}
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.blog-card:hover .blog-thumb img { transform:scale(1.05); }
.blog-thumb-ph {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  font-size:3.5rem; background:var(--g-navy); color:var(--green);
}
.blog-body { padding:1.5rem; }
.blog-meta { display:flex; gap:1rem; align-items:center; margin-bottom:.75rem; flex-wrap:wrap; }
.blog-meta-item { display:flex; align-items:center; gap:.35rem; font-size:.78rem; color:var(--txt-m); }
.blog-meta-item i { color:var(--green); }
.blog-cat { font-size:.73rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--green); font-family:var(--ff-h); }
.blog-card h3 { font-size:1.05rem; margin-bottom:.625rem; transition:var(--ease); }
.blog-card:hover h3 { color:var(--green); }
.blog-card p.excerpt { font-size:.875rem; margin-bottom:1rem; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.read-more { display:inline-flex; align-items:center; gap:.35rem; font-family:var(--ff-h); font-weight:600; font-size:.85rem; color:var(--green); }
.read-more:hover { gap:.625rem; }
.blog-main-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.blog-sidebar { display:flex; flex-direction:column; gap:1.5rem; position:sticky; top:calc(var(--nav-h) + 1.5rem); }
.sidebar-box { background:var(--white); border-radius:var(--r-lg); padding:1.5rem; box-shadow:var(--sh-sm); border:1px solid var(--gray-200); }
.sidebar-box h4 { font-size:.97rem; margin-bottom:1.25rem; padding-bottom:.75rem; border-bottom:2px solid var(--green); }
.recent-post { display:flex; gap:.875rem; align-items:flex-start; padding:.75rem 0; border-bottom:1px solid var(--gray-100); }
.recent-post:last-child { border-bottom:none; }
.rp-thumb {
  width:60px; height:60px; border-radius:var(--r-sm); background:var(--gray-100);
  flex-shrink:0; display:flex; align-items:center; justify-content:center;
  color:var(--gray-400); font-size:1.25rem; overflow:hidden;
}
.rp-thumb img { width:100%; height:100%; object-fit:cover; }
.rp-title { font-family:var(--ff-h); font-size:.83rem; font-weight:600; color:var(--txt); line-height:1.35; transition:var(--ease); display:block; }
.rp-title:hover { color:var(--green); }
.rp-date  { font-size:.73rem; color:var(--txt-m); margin-top:.25rem; }
.sidebar-cta { background:var(--g-navy); border-radius:var(--r-lg); padding:2rem 1.5rem; text-align:center; }
.sidebar-cta h4 { color:var(--white); margin-bottom:.75rem; }
.sidebar-cta p  { font-size:.875rem; color:rgba(255,255,255,.7); margin-bottom:1.25rem; }
.pagination { display:flex; justify-content:center; gap:.5rem; flex-wrap:wrap; margin-top:2rem; }
.pag-btn {
  min-width:44px; min-height:44px; border-radius:var(--r-sm); display:flex;
  align-items:center; justify-content:center; font-family:var(--ff-h);
  font-weight:600; font-size:.875rem; background:var(--white);
  border:1.5px solid var(--gray-300); color:var(--txt-2); cursor:pointer; transition:var(--ease);
}
.pag-btn.active,.pag-btn:hover { background:var(--green); border-color:var(--green); color:var(--white); }

/* ── 19. Blog Article ────────────────────────────────── */
.art-hero { background:var(--g-hero); padding:calc(var(--nav-h) + 3rem) 0 3rem; }
.art-hero-inner { max-width:820px; margin:0 auto; padding:0 var(--gutter); }
.breadcrumb { display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.bc-a { font-size:.8rem; color:rgba(255,255,255,.5); }
.bc-a:hover { color:var(--green); }
.bc-sep  { color:rgba(255,255,255,.28); font-size:.7rem; }
.bc-curr { font-size:.8rem; color:rgba(255,255,255,.75); }
.art-cat { font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--green); font-family:var(--ff-h); margin-bottom:.75rem; }
.art-hero h1  { color:var(--white); margin-bottom:1.25rem; }
.art-meta     { display:flex; gap:1.5rem; flex-wrap:wrap; align-items:center; }
.art-meta-item { display:flex; align-items:center; gap:.4rem; font-size:.83rem; color:rgba(255,255,255,.58); }
.art-meta-item i { color:var(--green); }
.art-body { background:var(--white); padding:4rem 0 5rem; }
.art-layout {
  display:grid; grid-template-columns:1fr 300px; gap:3rem;
  max-width:1080px; margin:0 auto; padding:0 var(--gutter); align-items:start;
}
.art-feat-img {
  border-radius:var(--r-lg); overflow:hidden; margin-bottom:2.5rem;
  box-shadow:var(--sh-lg); aspect-ratio:16/9; background:var(--g-navy);
  display:flex; align-items:center; justify-content:center; color:var(--green); font-size:5rem;
}
.art-feat-img img { width:100%; height:100%; object-fit:cover; display:block; }
.art-toc { background:var(--gray-50); border-radius:var(--r-lg); padding:1.5rem; margin-bottom:2.5rem; border-left:3px solid var(--green); }
.art-toc h4  { font-size:.85rem; text-transform:uppercase; letter-spacing:.08em; color:var(--txt-2); margin-bottom:.875rem; }
.toc-list    { display:flex; flex-direction:column; gap:.375rem; }
.toc-a       { font-size:.875rem; color:var(--green); font-weight:500; }
.toc-a:hover { text-decoration:underline; }
.art-content { font-size:1.05rem; line-height:1.85; color:var(--txt-2); }
.art-content h2 { font-size:clamp(1.25rem,2.5vw,1.65rem); margin:2.5rem 0 1rem; color:var(--txt); }
.art-content h3 { font-size:clamp(1.05rem,2vw,1.3rem); margin:1.75rem 0 .75rem; color:var(--txt); }
.art-content p  { margin-bottom:1.25rem; }
.art-content ul,.art-content ol { margin:1rem 0 1.5rem 1.5rem; }
.art-content li { margin-bottom:.5rem; list-style:disc; color:var(--txt-2); }
.art-content ol li { list-style:decimal; }
.art-content strong { color:var(--txt); }
.art-content blockquote { border-left:3px solid var(--green); background:rgba(10,191,118,.05); padding:1rem 1.5rem; border-radius:0 var(--r-sm) var(--r-sm) 0; margin:1.5rem 0; font-style:italic; }
.art-cta-box { background:var(--g-navy); border-radius:var(--r-lg); padding:2rem; text-align:center; margin:2.5rem 0; }
.art-cta-box h3 { color:var(--white); margin-bottom:.625rem; }
.art-cta-box p  { color:rgba(255,255,255,.72); margin-bottom:1.25rem; font-size:.92rem; }
.art-faq-sec { background:var(--gray-50); border-radius:var(--r-lg); padding:2rem; margin-top:2.5rem; }
.art-faq-sec h3 { margin-bottom:1.25rem; padding-bottom:.75rem; border-bottom:2px solid var(--green); }
.share-row { display:flex; gap:.75rem; align-items:center; margin-top:2.5rem; padding-top:1.5rem; border-top:1px solid var(--gray-200); flex-wrap:wrap; }
.share-lbl { font-family:var(--ff-h); font-weight:600; font-size:.88rem; color:var(--txt-2); }
.share-btn { display:inline-flex; align-items:center; gap:.4rem; padding:.5rem 1rem; border-radius:var(--r-full); font-size:.8rem; font-weight:600; font-family:var(--ff-h); transition:var(--ease); min-height:44px; color:var(--white); }
.share-tw { background:#1DA1F2; } .share-fb { background:#4267B2; } .share-li { background:#0A66C2; }
.share-btn:hover { opacity:.85; transform:translateY(-1px); color:var(--white); }
.related-sec { margin-top:3rem; padding-top:2rem; border-top:1px solid var(--gray-200); }
.related-sec h3 { margin-bottom:1.5rem; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.art-sidebar  { position:sticky; top:calc(var(--nav-h) + 1.5rem); display:flex; flex-direction:column; gap:1.5rem; }

/* ── 20. Legal Pages ─────────────────────────────────── */
.legal-hero { background:var(--g-navy); padding:calc(var(--nav-h) + 3rem) 0 3rem; text-align:center; }
.legal-hero h1 { color:var(--white); }
.legal-hero p  { color:rgba(255,255,255,.68); max-width:580px; margin:1rem auto 0; }
.legal-body { max-width:800px; margin:4rem auto 5rem; padding:0 var(--gutter); }
.legal-body h2 { font-size:1.3rem; margin:2.5rem 0 .875rem; }
.legal-body h3 { font-size:1.05rem; margin:1.5rem 0 .625rem; }
.legal-body p  { margin-bottom:1rem; font-size:.97rem; line-height:1.8; }
.legal-body ul { margin:.75rem 0 1rem 1.5rem; }
.legal-body li { list-style:disc; margin-bottom:.5rem; font-size:.97rem; color:var(--txt-2); }
.legal-updated { font-size:.83rem; color:var(--txt-m); margin-bottom:2.5rem; padding-bottom:1.5rem; border-bottom:1px solid var(--gray-200); }

/* ── 21. Contact ─────────────────────────────────────── */
.contact-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:3rem; }
.contact-card { background:var(--white); border-radius:var(--r-lg); padding:2rem 1.5rem; text-align:center; box-shadow:var(--sh-sm); border:1px solid var(--gray-200); transition:var(--ease); }
.contact-card:hover { transform:translateY(-4px); box-shadow:var(--sh-lg); border-color:rgba(10,191,118,.22); }
.cc-ico {
  width:64px; height:64px; background:var(--g-green); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.25rem; font-size:1.5rem; color:var(--white);
}
.contact-card h3 { margin-bottom:.5rem; }
.contact-card p  { font-size:.9rem; margin:0; }
.contact-card a  { color:var(--green); font-weight:600; }

/* ── 22. 404 Page ──────────────────────────────────── */
.nf-page { min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; background:var(--g-hero); padding:2rem var(--gutter); }
.nf-num {
  font-family:var(--ff-h); font-size:clamp(6rem,15vw,12rem); font-weight:900;
  background:var(--g-green); -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; line-height:1; margin-bottom:.5rem;
}
.nf-page h2 { color:var(--white); margin-bottom:1rem; }
.nf-page p  { color:rgba(255,255,255,.68); margin-bottom:2rem; max-width:480px; margin-left:auto; margin-right:auto; }
.nf-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ── 23. Animations ──────────────────────────────────── */
.reveal,.reveal-l,.reveal-r { opacity:0; transition:opacity .65s ease,transform .65s ease; }
.reveal   { transform:translateY(28px); }
.reveal-l { transform:translateX(-28px); }
.reveal-r { transform:translateX(28px); }
.reveal.in,.reveal-l.in,.reveal-r.in { opacity:1; transform:translate(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s}
.loader { position:fixed; inset:0; background:var(--navy); z-index:9999; display:flex; align-items:center; justify-content:center; transition:opacity .5s ease,visibility .5s ease; }
.loader.done { opacity:0; visibility:hidden; pointer-events:none; }
.loader-brand { font-family:var(--ff-h); font-size:2rem; font-weight:800; color:var(--white); animation:lpulse 1.5s ease-in-out infinite; }
.loader-brand span { color:var(--gold); }
@keyframes lpulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── 24. Responsive ──────────────────────────────────── */
@media(min-width:1400px){ :root{ --wrap:1320px; } }

@media(max-width:1199px){
  .ft-grid      { grid-template-columns:1fr 1fr; gap:2rem; }
  .ingr-grid    { grid-template-columns:repeat(3,1fr); }
  .love-grid    { grid-template-columns:repeat(2,1fr); }
  .blog-layout  { grid-template-columns:1fr 280px; }
}
@media(max-width:991px){
  :root { --nav-h:64px; }
  .hamburger { display:flex; }
  .nav-list {
    position:fixed; top:var(--nav-h); left:0; right:0;
    background:rgba(13,31,53,.99); flex-direction:column;
    padding:2rem var(--gutter); gap:0;
    transform:translateX(100%); transition:transform .35s ease;
    max-height:calc(100vh - var(--nav-h)); overflow-y:auto;
  }
  .nav-list.open { transform:translateX(0); }
  .nav-a { display:block; padding:1rem 0; border-bottom:1px solid rgba(255,255,255,.07); font-size:1rem; }
  .nav-a::after { display:none; }
  .nav-cta { margin-top:1rem; text-align:center; padding:.875rem; border-bottom:none !important; }
  .hero-grid { grid-template-columns:1fr; text-align:center; padding-top:3rem; }
  .hero-grid>div:first-child { order:2; }
  .hero-grid>div:last-child  { order:1; }
  .hero-btns,.hero-trust { justify-content:center; }
  .hero-bottle   { max-height:320px; }
  .why-grid,.how-grid { grid-template-columns:1fr; }
  .why-visual    { order:-1; }
  .stats-grid    { grid-template-columns:repeat(2,1fr); }
  .benefits-grid { grid-template-columns:repeat(2,1fr); }
  .ingr-grid     { grid-template-columns:repeat(2,1fr); }
  .love-grid     { grid-template-columns:repeat(2,1fr); }
  .testi-grid    { grid-template-columns:repeat(2,1fr); }
  .pricing-grid  { grid-template-columns:1fr; max-width:440px; margin:0 auto; }
  .blog-layout   { grid-template-columns:1fr; }
  .blog-sidebar  { position:static; }
  .blog-main-grid{ grid-template-columns:1fr; }
  .art-layout    { grid-template-columns:1fr; }
  .art-sidebar   { position:static; }
  .related-grid  { grid-template-columns:1fr; }
  .contact-cards { grid-template-columns:1fr; }
  .ft-grid       { grid-template-columns:1fr 1fr; }
  .mob-cta       { display:block; }
  body           { padding-bottom:76px; }
}
@media(max-width:767px){
  .benefits-grid,.testi-grid,.love-grid { grid-template-columns:1fr; }
  .hero-btns,.cta-btns { flex-direction:column; align-items:center; }
  .hero-btns .btn,.cta-btns .btn { width:100%; max-width:320px; }
  .ft-grid       { grid-template-columns:1fr; gap:2rem; }
  .ft-legal-nav  { gap:.875rem; }
}
@media(max-width:575px){
  .ingr-grid     { grid-template-columns:1fr; }
  .hero-bottle   { max-height:260px; }
  .mob-cta-inner { flex-direction:column; gap:.5rem; text-align:center; }
  .mob-cta .btn  { width:100%; }
  .share-row     { flex-direction:column; align-items:flex-start; }
  .price-card    { padding:2rem 1.25rem; }
}
@media(max-width:479px){
  .hero-trust { flex-direction:column; align-items:center; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:359px){
  :root  { --gutter:12px; }
  .btn   { padding:.75rem 1.25rem; font-size:.875rem; }
  .brand { font-size:1.2rem; }
}
