/* ================================================================
   AlkaSlim Wellness — Master Stylesheet
   Site   : https://alkasliim.us/
   Version: 1.0.0
   ================================================================
   TABLE OF CONTENTS
   01. CSS Variables
   02. Reset & Base
   03. Typography
   04. Utilities
   05. Buttons
   06. Navbar
   07. Mobile Menu
   08. Hero Section
   09. Trust Bar
   10. Why AlkaSlim
   11. Benefits
   12. Ingredients
   13. How It Works
   14. Why Choose
   15. Testimonials
   16. FAQ
   17. Pricing
   18. Final CTA
   19. Footer
   20. Mobile Sticky CTA
   21. Cookie Banner
   22. Page Hero (inner pages)
   23. Contact Page
   24. Legal Pages
   25. 404 Page
   26. Blog Listing
   27. Blog Single
   28. Animations & Keyframes
   29. Media Queries (Mobile-First)
================================================================ */

/* ================================================================
   01. CSS VARIABLES
================================================================ */
:root {
  /* Brand */
  --green:        #059669;
  --green-dark:   #047857;
  --green-xdark:  #065f46;
  --green-light:  #d1fae5;
  --green-xlight: #f0fdf4;
  --blue:         #1e3a5f;
  --blue-dark:    #0f2640;
  --gold:         #d97706;
  --gold-dark:    #b45309;
  --gold-light:   #fef3c7;

  /* Neutrals */
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-800:   #1f2937;
  --gray-900:   #111827;
  --dark:       #0f172a;
  --text:       #1f2937;
  --border:     #e5e7eb;

  /* Fonts */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter',   system-ui, sans-serif;

  /* Fluid type */
  --fs-xs:   clamp(.70rem, 1.4vw, .75rem);
  --fs-sm:   clamp(.80rem, 1.7vw, .875rem);
  --fs-base: clamp(.90rem, 2.0vw, 1rem);
  --fs-md:   clamp(1.00rem, 2.2vw, 1.125rem);
  --fs-lg:   clamp(1.10rem, 2.5vw, 1.25rem);
  --fs-xl:   clamp(1.25rem, 3.0vw, 1.5rem);
  --fs-2xl:  clamp(1.50rem, 3.5vw, 2rem);
  --fs-3xl:  clamp(1.75rem, 4.0vw, 2.5rem);
  --fs-4xl:  clamp(2.00rem, 5.0vw, 3.25rem);
  --fs-hero: clamp(2.25rem, 6.5vw, 4rem);

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs:    0 1px 2px  rgba(0,0,0,.05);
  --sh-sm:    0 2px 8px  rgba(0,0,0,.07);
  --sh-md:    0 4px 18px rgba(0,0,0,.09);
  --sh-lg:    0 8px 32px rgba(0,0,0,.11);
  --sh-xl:    0 16px 52px rgba(0,0,0,.13);
  --sh-2xl:   0 24px 72px rgba(0,0,0,.16);
  --sh-green: 0 8px 32px rgba(5,150,105,.28);
  --sh-gold:  0 8px 32px rgba(217,119,6,.28);

  /* Transitions */
  --t-fast:   all .15s ease;
  --t-base:   all .30s ease;
  --t-slow:   all .50s ease;
  --t-bounce: all .40s cubic-bezier(.175,.885,.32,1.275);

  /* Layout */
  --max-w:   1200px;
  --nav-h:   80px;
  --sec-py:  clamp(3.5rem, 9vw, 6.5rem);
}

/* ================================================================
   02. RESET & BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a    { text-decoration: none; color: inherit; transition: var(--t-base); }
ul,ol{ list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ================================================================
   03. TYPOGRAPHY
================================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-4xl);  }
h3 { font-size: var(--fs-3xl);  }
h4 { font-size: var(--fs-2xl);  }
h5 { font-size: var(--fs-xl);   }
h6 { font-size: var(--fs-lg);   }

p { color: var(--gray-700); line-height: 1.8; }
strong { font-weight: 700; color: var(--dark); }

/* ================================================================
   04. UTILITIES
================================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section           { padding-block: var(--sec-py); }
.section--gray     { background: var(--gray-50); }
.section--green    { background: var(--green-xlight); }
.section--dark     { background: var(--blue); }
.section--dark h2,
.section--dark h3  { color: var(--white); }
.section--dark p   { color: rgba(255,255,255,.82); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-light);
  color: var(--green-dark);
  font: 700 var(--fs-xs)/1 var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.section-label--gold  { background: var(--gold-light); color: #92400e; }
.section-label--white { background: rgba(255,255,255,.12); color: var(--gold); }

.section-title {
  font-size: var(--fs-4xl);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: var(--fs-lg);
  color: var(--gray-600);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.75;
}

.text-center  { text-align: center; }
.text-primary { color: var(--green); }
.text-gold    { color: var(--gold);  }
.text-white   { color: var(--white); }

/* ================================================================
   05. BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--r-full);
  font: 600 var(--fs-base)/1.4 var(--font-head);
  cursor: pointer;
  transition: var(--t-base);
  min-height: 48px;
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-decoration: none;
}
/* Shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: var(--sh-green);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-xdark));
  box-shadow: 0 12px 40px rgba(5,150,105,.42);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #c96e05, #a04707);
  box-shadow: 0 12px 40px rgba(217,119,6,.42);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg    { padding: 1.1rem 2.6rem; font-size: var(--fs-md); min-height: 56px; }
.btn-sm    { padding: .6rem  1.4rem; font-size: var(--fs-sm); min-height: 40px; }
.btn-block { width: 100%; display: flex; }

.btn-pulse { animation: pulse-btn 2.2s ease infinite; }
@keyframes pulse-btn {
  0%,100% { box-shadow: var(--sh-green); }
  50%      { box-shadow: 0 8px 42px rgba(5,150,105,.58); }
}

/* ================================================================
   06. NAVBAR
================================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: height .3s ease, box-shadow .3s ease;
  display: flex;
  align-items: center;
}
.navbar.scrolled { height: 66px; box-shadow: var(--sh-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.nav-brand { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.logo-txt {
  font: 800 1.55rem/1 var(--font-head);
  color: var(--dark);
  letter-spacing: -.02em;
}
.logo-txt span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-links .nl {
  padding: .45rem .9rem;
  font: 500 .875rem/1 var(--font-head);
  color: var(--gray-700);
  border-radius: var(--r-md);
  transition: var(--t-fast);
  white-space: nowrap;
}
.nav-links .nl:hover,
.nav-links .nl.active { color: var(--green); background: var(--green-xlight); }

.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  gap: 5px;
  background: var(--gray-100);
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   07. MOBILE MENU
================================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.menu-overlay.show { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100dvh;
  background: var(--white);
  z-index: 1100;
  transition: right .35s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  box-shadow: var(--sh-2xl);
}
.mobile-menu.show { right: 0; }

.menu-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.menu-close {
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: var(--t-fast);
}
.menu-close:hover { background: var(--gray-200); }

.menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1.5rem;
}
.menu-links .nl {
  display: block;
  padding: .875rem 1rem;
  font: 500 1rem/1 var(--font-head);
  color: var(--gray-700);
  border-radius: var(--r-md);
  transition: var(--t-fast);
}
.menu-links .nl:hover { color: var(--green); background: var(--green-xlight); }

/* ================================================================
   08. HERO SECTION
================================================================ */
.hero {
  min-height: 100dvh;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 45%, #eff6ff 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  width: clamp(300px,60vw,700px);
  height: clamp(300px,60vw,700px);
  top: -30%; right: -10%;
  background: radial-gradient(circle, rgba(5,150,105,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: clamp(200px,40vw,480px);
  height: clamp(200px,40vw,480px);
  bottom: -20%; left: -5%;
  background: radial-gradient(circle, rgba(30,58,95,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-light);
  color: var(--green-dark);
  font: 700 .72rem/1 var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.hero-title .accent {
  color: var(--green);
  display: inline-block;
  position: relative;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
}

.hero-desc {
  font-size: var(--fs-lg);
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  align-items: center;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: .45rem;
  font: 500 .82rem/1 var(--font-head);
  color: var(--gray-600);
}
.trust-pill-icon {
  width: 28px; height: 28px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .875rem;
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -5%;
  background: radial-gradient(circle, rgba(5,150,105,.14) 0%, transparent 65%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
}

.hero-bottle {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 60px rgba(5,150,105,.22));
  animation: float-up 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

/* Floating stat cards */
.stat-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: .75rem 1rem;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: .625rem;
  z-index: 2;
  min-width: 140px;
}
.stat-float--tl { top: 14%;    left: -2%;  animation: float-left  7s ease-in-out infinite; }
.stat-float--bl { bottom: 14%; left: -2%;  animation: float-left  7s 1s ease-in-out infinite; }
.stat-float--tr { top: 24%;    right: -2%; animation: float-right 7s .5s ease-in-out infinite; }

.sf-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}
.sf-text strong { display: block; font: 700 .85rem/1 var(--font-head); color: var(--dark); margin-bottom: .2rem; }
.sf-text span   { font-size: .72rem; color: var(--gray-500); }

.stars { display: flex; gap: 2px; color: var(--gold); font-size: .875rem; }

/* ================================================================
   09. TRUST BAR
================================================================ */
.trust-bar { background: var(--blue); padding: 1.25rem 0; overflow: hidden; }

.trust-bar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  color: rgba(255,255,255,.88);
  font: 500 .875rem/1 var(--font-head);
  white-space: nowrap;
}
.trust-bar-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* ================================================================
   10. WHY ALKASIM
================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.why-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.75rem; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--gray-50);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: var(--t-base);
}
.why-item:hover {
  background: var(--green-xlight);
  border-color: var(--green-light);
  transform: translateX(6px);
}
.why-ico {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: .2rem; }
.why-item p  { font-size: .875rem; color: var(--gray-600); margin: 0; line-height: 1.6; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-box {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.stat-box-num { font: 800 2.1rem/1 var(--font-head); color: var(--green); display: block; margin-bottom: .3rem; }
.stat-box-lbl { font-size: .8rem; color: var(--gray-500); font-weight: 500; }

.why-img-wrap { display: flex; align-items: center; justify-content: center; }
.why-img-wrap img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 20px 40px rgba(5,150,105,.15));
  animation: float-up 8s ease-in-out infinite;
}

/* ================================================================
   11. BENEFITS
================================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: var(--t-bounce);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: var(--green-light); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-ico {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--green-light), var(--green-xlight));
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: var(--green);
  transition: var(--t-base);
}
.benefit-card:hover .benefit-ico {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .625rem; }
.benefit-card p  { font-size: .875rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ================================================================
   12. INGREDIENTS
================================================================ */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.ing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--t-base);
}
.ing-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(5,150,105,.4);
  transform: translateY(-6px);
}

.ing-ico {
  width: 72px; height: 72px;
  background: rgba(5,150,105,.18);
  border: 1px solid rgba(5,150,105,.3);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
}

.ing-badge {
  display: inline-block;
  background: rgba(5,150,105,.2);
  color: #6ee7b7;
  border: 1px solid rgba(5,150,105,.3);
  font: 600 .7rem/1 var(--font-head);
  padding: .2rem .75rem;
  border-radius: var(--r-full);
  margin-bottom: .75rem;
  letter-spacing: .05em;
}
.ing-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .625rem; }
.ing-card p  { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.7; margin: 0; }

/* ================================================================
   13. HOW IT WORKS
================================================================ */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 50px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green), var(--green-light));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: var(--t-base);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }

.step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font: 800 1.4rem/1 var(--font-head);
  color: var(--white);
  box-shadow: var(--sh-green);
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .625rem; }
.step-card p  { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

.hiw-img {
  max-width: 720px;
  margin: 3rem auto 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.hiw-img img { width: 100%; height: auto; display: block; }

/* ================================================================
   14. WHY CHOOSE
================================================================ */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.choose-card {
  background: linear-gradient(135deg, var(--green-xlight), var(--white));
  border: 1px solid var(--green-light);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--t-base);
}
.choose-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.choose-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.choose-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.choose-card p  { font-size: .875rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* ================================================================
   15. TESTIMONIALS
================================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  transition: var(--t-base);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font: normal 5rem/1 Georgia,serif;
  color: var(--green-light);
  pointer-events: none;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }

.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1rem; }
.testi-stars i { font-size: .95rem; }

.testi-text { font-size: .95rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 1.25rem; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: .875rem; }

.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--green-light);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 1.1rem/1 var(--font-head);
  color: var(--white);
}
.testi-author h4   { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .15rem; }
.testi-author span { font-size: .8rem; color: var(--gray-500); }
.testi-verified {
  display: flex; align-items: center; gap: .375rem;
  font: 600 .75rem/1 var(--font-head);
  color: var(--green); margin-top: .5rem;
}

/* ================================================================
   16. FAQ
================================================================ */
.faq-wrap {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.open { border-color: var(--green-light); box-shadow: var(--sh-md); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  cursor: pointer;
  user-select: none;
  min-height: 48px;
}
.faq-q h3 { font-size: .975rem; font-weight: 600; color: var(--dark); line-height: 1.4; flex: 1; text-align: left; }

.faq-toggle {
  width: 32px; height: 32px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: var(--t-base);
}
.faq-item.open .faq-toggle { background: var(--green); color: var(--white); transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 1.5rem 1.375rem; font-size: .95rem; color: var(--gray-600); line-height: 1.8; }

/* ================================================================
   17. PRICING
================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 2px solid var(--border);
  transition: var(--t-bounce);
  position: relative;
}
.price-card:hover { transform: translateY(-12px); box-shadow: var(--sh-2xl); }
.price-card.featured { border-color: var(--green); box-shadow: var(--sh-green); transform: scale(1.04); z-index: 2; }
.price-card.featured:hover { transform: scale(1.04) translateY(-12px); }
.price-card.best    { border-color: var(--gold); box-shadow: var(--sh-gold); }

.price-badge-wrap { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); z-index: 3; }
.price-badge {
  display: inline-block;
  padding: .35rem 1.25rem;
  font: 700 .75rem/1 var(--font-head);
  border-radius: 0 0 var(--r-md) var(--r-md);
  white-space: nowrap;
}
.price-badge--pop  { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--white); }
.price-badge--best { background: linear-gradient(135deg, var(--gold),  var(--gold-dark));  color: var(--white); }

.price-head {
  padding: 2rem 1.75rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.price-head h3 { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: .375rem; }
.price-head .bottles-lbl { font-size: .85rem; color: var(--gray-500); font-weight: 500; }

.price-img-area {
  background: var(--gray-50);
  padding: 1.5rem;
  text-align: center;
  overflow: hidden;
}
.price-img-area img {
  max-height: 185px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
  transition: transform .4s ease;
}
.price-card:hover .price-img-area img { transform: scale(1.08) translateY(-4px); }

.price-body { padding: 1.5rem 1.75rem; text-align: center; }
.price-amount { font: 900 2.75rem/1 var(--font-head); color: var(--dark); display: block; margin-bottom: .2rem; }
.price-per    { font-size: .8rem; color: var(--gray-500); }

.price-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 1rem 0 1.5rem;
}
.price-features li { display: flex; align-items: center; gap: .625rem; font-size: .875rem; color: var(--gray-700); font-weight: 500; }
.price-features li i { color: var(--green); font-size: .875rem; flex-shrink: 0; }

.price-foot { padding: 0 1.75rem 1.75rem; text-align: center; }
.price-foot small { display: block; font-size: .75rem; color: var(--gray-500); margin-top: .75rem; line-height: 1.5; }

.guarantee-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem 2rem;
  box-shadow: var(--sh-md);
  max-width: 640px;
  margin: 3rem auto 0;
}
.guarantee-strip i { font-size: 3rem; color: var(--gold); flex-shrink: 0; }
.guarantee-strip h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.guarantee-strip p  { font-size: .875rem; color: var(--gray-600); margin: 0; line-height: 1.5; }

/* ================================================================
   18. FINAL CTA
================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: clamp(300px,55vw,600px);
  height: clamp(300px,55vw,600px);
  top: -30%; right: -10%;
  background: radial-gradient(circle, rgba(5,150,105,.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: clamp(200px,40vw,420px);
  height: clamp(200px,40vw,420px);
  bottom: -25%; left: -5%;
  background: radial-gradient(circle, rgba(217,119,6,.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner .section-title { color: var(--white); }
.cta-inner .section-sub   { color: rgba(255,255,255,.8); }
.cta-buttons {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.cta-trust {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem; margin-top: 2rem;
}
.cta-trust .trust-pill { color: rgba(255,255,255,.8); }
.cta-trust .trust-pill-icon { background: rgba(255,255,255,.12); }

/* ================================================================
   19. FOOTER
================================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.72); padding-top: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo-txt {
  font: 800 1.55rem/1 var(--font-head);
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}
.footer-logo-txt span { color: var(--green); }

.footer-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: .75rem; }
.soc-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: var(--t-base);
  text-decoration: none;
}
.soc-link:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }

.footer-col-head { font: 700 .875rem/1 var(--font-head); color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }

.footer-nav { display: flex; flex-direction: column; gap: .625rem; }
.footer-nav a { font-size: .875rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: .5rem; transition: var(--t-fast); }
.footer-nav a:hover { color: var(--green); transform: translateX(4px); }

.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.55); display: flex; align-items: flex-start; gap: .625rem; line-height: 1.5; margin-bottom: .75rem; }
.footer-contact p i { color: var(--green); margin-top: 3px; flex-shrink: 0; font-size: .9rem; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--green); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.75rem 0; }

.footer-secure { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-secure i    { font-size: 1.75rem; color: rgba(255,255,255,.42); }
.footer-secure span { font-size: .8rem;   color: rgba(255,255,255,.38); }

.footer-disclaimer { font-size: .775rem; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 1rem; }
.footer-disclaimer strong { color: rgba(255,255,255,.52); font-weight: 600; }

.footer-copy { font-size: .825rem; color: rgba(255,255,255,.38); }
.footer-copy a { color: rgba(255,255,255,.55); }
.footer-copy a:hover { color: var(--green); }

/* ================================================================
   20. MOBILE STICKY CTA
================================================================ */
#mobileCta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: .875rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

/* ================================================================
   21. COOKIE BANNER
================================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 3px solid var(--green);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-w); margin-inline: auto;
}
.cookie-text { font-size: .875rem; color: rgba(255,255,255,.82); line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--green); text-decoration: underline; }
.cookie-btns { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ================================================================
   22. PAGE HERO (inner pages)
================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding-block: calc(var(--nav-h) + 3rem) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: clamp(250px,50vw,520px);
  height: clamp(250px,50vw,520px);
  top: -30%; right: -5%;
  background: radial-gradient(circle, rgba(5,150,105,.16) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.75rem,4.5vw,3rem); margin-bottom: .875rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: var(--fs-lg); max-width: 600px; margin-inline: auto; }

/* ================================================================
   23. CONTACT PAGE
================================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: var(--t-base);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--green-light); }
.contact-card-icon {
  width: 64px; height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--green);
}
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.contact-card p  { font-size: .875rem; color: var(--gray-600); margin: 0; line-height: 1.6; }
.contact-card a  { color: var(--green); font-weight: 600; }

/* ================================================================
   24. LEGAL PAGES
================================================================ */
.legal-wrap { max-width: 820px; margin-inline: auto; padding-block: 3rem 5rem; }
.legal-wrap h2 {
  font-size: 1.35rem; font-weight: 700; color: var(--dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--green-light);
}
.legal-wrap h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 1.5rem 0 .75rem; }
.legal-wrap p  { font-size: .975rem; line-height: 1.85; color: var(--gray-700); margin-bottom: 1rem; }
.legal-wrap ul, .legal-wrap ol {
  margin: .75rem 0 1rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.legal-wrap ul { list-style: disc; }
.legal-wrap ol { list-style: decimal; }
.legal-wrap li { font-size: .95rem; color: var(--gray-700); line-height: 1.7; }
.legal-wrap a  { color: var(--green); text-decoration: underline; }
.legal-date { font-size: .875rem; color: var(--gray-500); font-style: italic; margin-bottom: 2.5rem; }

/* ================================================================
   25. 404 PAGE
================================================================ */
.nf-page {
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--green-xlight), var(--white));
  padding: 3rem 1.25rem;
}
.nf-inner { max-width: 520px; }
.nf-icon  { font-size: 5rem; display: block; margin-bottom: 1rem; }
.nf-num   { font: 900 clamp(5rem,18vw,10rem)/1 var(--font-head); color: var(--green); display: block; margin-bottom: .5rem; }
.nf-inner h2 { font-size: clamp(1.25rem,3vw,1.875rem); margin-bottom: .875rem; }
.nf-inner p  { font-size: var(--fs-lg); color: var(--gray-600); max-width: 440px; margin: 0 auto 2rem; }
.nf-links    { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ================================================================
   26. BLOG LISTING
================================================================ */
.blog-hero-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding-block: calc(var(--nav-h) + 3rem) 4rem;
  text-align: center;
}
.blog-hero-section h1 { color: var(--white); font-size: clamp(1.75rem,4vw,3rem); margin-bottom: .875rem; }
.blog-hero-section p  { color: rgba(255,255,255,.8); font-size: var(--fs-lg); max-width: 600px; margin-inline: auto; }

.blog-search {
  max-width: 480px; margin: 2rem auto 0;
  display: flex; background: var(--white);
  border-radius: var(--r-full); overflow: hidden;
  box-shadow: var(--sh-md);
}
.blog-search input {
  flex: 1; padding: .75rem 1.25rem; border: none; outline: none;
  font-size: .9rem; background: transparent; color: var(--dark);
}
.blog-search button {
  padding: .75rem 1.25rem; background: var(--green);
  color: var(--white); border: none; cursor: pointer; font-size: 1rem;
  transition: background .2s;
}
.blog-search button:hover { background: var(--green-dark); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  padding-block: 4rem;
  align-items: start;
}

/* Featured post */
.featured-post {
  display: block;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: inherit;
}
.feat-img {
  width: 100%; height: 380px;
  object-fit: cover; display: block;
  background: linear-gradient(135deg, var(--green-xlight), var(--green-light));
  transition: transform .5s ease;
}
.featured-post:hover .feat-img { transform: scale(1.03); }

.feat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,23,42,.96), transparent);
  padding: 2.5rem 2rem 2rem;
}
.post-cat {
  display: inline-block; background: var(--green); color: var(--white);
  font: 600 .72rem/1 var(--font-head); text-transform: uppercase;
  letter-spacing: .08em; padding: .25rem .75rem; border-radius: var(--r-full);
  margin-bottom: .75rem;
}
.feat-title { color: var(--white); font-size: clamp(1.25rem,3vw,1.75rem); font-weight: 700; line-height: 1.3; margin-bottom: .75rem; }
.post-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: rgba(255,255,255,.7); }
.post-meta span { display: flex; align-items: center; gap: .375rem; }

/* Blog grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 1.5rem;
}

.blog-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: var(--t-base);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); border-color: var(--green-light); }

.blog-card-thumb {
  height: 196px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--green-xlight), var(--green-light));
  flex-shrink: 0;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }

.card-cat {
  position: absolute; top: .875rem; left: .875rem;
  background: var(--green); color: var(--white);
  font: 600 .68rem/1 var(--font-head); text-transform: uppercase;
  letter-spacing: .06em; padding: .2rem .625rem; border-radius: var(--r-full);
}

.blog-card-body { padding: 1.375rem; display: flex; flex-direction: column; flex: 1; }

.card-meta { display: flex; flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: var(--gray-500); margin-bottom: .625rem; }
.card-meta span { display: flex; align-items: center; gap: .3rem; }

.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: .625rem; transition: color .2s; flex: 1; }
.blog-card:hover h3 { color: var(--green); }

.card-excerpt { font-size: .85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.read-more { font: 600 .85rem/1 var(--font-head); color: var(--green); display: flex; align-items: center; gap: .375rem; margin-top: auto; transition: gap .2s; }
.blog-card:hover .read-more { gap: .625rem; }

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  display: flex; flex-direction: column; gap: 1.5rem;
}

.sidebar-box {
  background: var(--white); border-radius: var(--r-xl);
  padding: 1.5rem; box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
}
.sidebar-box-title { font: 700 .95rem/1 var(--font-head); color: var(--dark); margin-bottom: 1.125rem; padding-bottom: .75rem; border-bottom: 2px solid var(--green-light); }

.sidebar-cats { display: flex; flex-direction: column; gap: .5rem; }
.s-cat-link { display: flex; align-items: center; justify-content: space-between; padding: .5rem .75rem; border-radius: var(--r-md); font-size: .875rem; color: var(--gray-700); text-decoration: none; transition: var(--t-fast); }
.s-cat-link:hover { background: var(--green-xlight); color: var(--green); }
.cat-ct { background: var(--gray-100); color: var(--gray-500); font: 600 .75rem/1 var(--font-head); padding: .125rem .5rem; border-radius: var(--r-full); }

.sidebar-posts { display: flex; flex-direction: column; gap: 1rem; }
.s-post { display: flex; gap: .875rem; text-decoration: none; color: inherit; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.s-post:last-child { border-bottom: none; padding-bottom: 0; }
.s-post-thumb { width: 64px; height: 64px; border-radius: var(--r-md); object-fit: cover; flex-shrink: 0; background: var(--green-light); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1.5rem; }
.s-post-title { font-size: .85rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: .2rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.s-post:hover .s-post-title { color: var(--green); }
.s-post-date { font-size: .775rem; color: var(--gray-500); }

.sidebar-cta { background: linear-gradient(135deg, var(--green), var(--blue)); border: none; text-align: center; }
.sidebar-cta img { width: 110px; height: auto; margin: 0 auto 1rem; }
.sidebar-cta h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .5rem; }
.sidebar-cta p  { color: rgba(255,255,255,.85); font-size: .85rem; margin-bottom: 1rem; }

.blog-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-top: 3rem; }
.pag-btn { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font: 600 .9rem/1 var(--font-head); background: var(--white); color: var(--gray-700); border: 1px solid var(--border); cursor: pointer; text-decoration: none; transition: var(--t-fast); }
.pag-btn:hover, .pag-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* ================================================================
   27. BLOG SINGLE
================================================================ */
.article-hero-wrap {
  background: var(--gray-50);
  padding-block: calc(var(--nav-h) + 2.5rem) 3rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .375rem; font-size: .825rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: .7rem; color: var(--gray-400); }

.article-cat { display: inline-block; background: var(--green-light); color: var(--green-dark); font: 600 .75rem/1 var(--font-head); text-transform: uppercase; letter-spacing: .08em; padding: .3rem .875rem; border-radius: var(--r-full); margin-bottom: 1rem; }

.article-title { font-size: clamp(1.5rem,4vw,2.75rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 1.25rem; max-width: 860px; }

.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; font-size: .875rem; color: var(--gray-500); }
.article-meta span { display: flex; align-items: center; gap: .375rem; }
.article-meta i { color: var(--green); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding-block: 3rem 5rem;
  align-items: start;
}
.article-content { min-width: 0; }

.article-hero-img {
  width: 100%; height: auto;
  border-radius: var(--r-xl); display: block;
  margin-bottom: 2.5rem; box-shadow: var(--sh-lg);
  background: linear-gradient(135deg, var(--green-xlight), var(--green-light));
}

/* Body */
.article-body { font-size: 1.05rem; line-height: 1.88; color: var(--gray-700); }
.article-body h2 { font-size: clamp(1.3rem,3vw,1.625rem); font-weight: 700; color: var(--dark); margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--green-light); }
.article-body h3 { font-size: clamp(1.1rem,2.5vw,1.25rem); font-weight: 700; color: var(--dark); margin: 1.75rem 0 .75rem; }
.article-body p  { font-size: 1.05rem; line-height: 1.88; margin-bottom: 1.25rem; color: var(--gray-700); }
.article-body ul, .article-body ol { margin: 1rem 0 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 1.05rem; color: var(--gray-700); line-height: 1.7; }
.article-body a  { color: var(--green); text-decoration: underline; }
.article-body a:hover { color: var(--green-dark); }
.article-body blockquote {
  border-left: 4px solid var(--green);
  background: var(--green-xlight);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 2rem 0; font-style: italic; font-size: 1.05rem;
}

/* TOC */
.toc-box { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; margin-bottom: 2.5rem; }
.toc-heading { font: 700 .875rem/1 var(--font-head); color: var(--dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.toc-list { display: flex; flex-direction: column; gap: .5rem; counter-reset: toc; }
.toc-list li { counter-increment: toc; }
.toc-list a { font-size: .875rem; color: var(--gray-600); display: flex; align-items: flex-start; gap: .75rem; padding: .375rem 0; text-decoration: none; transition: color .2s; line-height: 1.4; }
.toc-list a::before { content: counter(toc); min-width: 20px; height: 20px; background: var(--green-light); color: var(--green); border-radius: 50%; font: 700 .72rem/20px var(--font-head); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toc-list a:hover { color: var(--green); }

/* In-article CTA */
.article-cta { background: linear-gradient(135deg, var(--green), var(--blue)); border-radius: var(--r-xl); padding: 2.5rem 2rem; text-align: center; margin: 3rem 0; }
.article-cta h3 { color: var(--white); font-size: 1.5rem; margin-bottom: .75rem; }
.article-cta p  { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; font-size: 1rem; }

/* Article FAQ */
.article-faq { background: var(--gray-50); border-radius: var(--r-xl); padding: 2rem; margin-top: 3rem; }
.article-faq h2 { font-size: 1.35rem !important; margin-top: 0 !important; border-bottom: none !important; }

/* Social share */
.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.share-lbl { font: 600 .875rem/1 var(--font-head); color: var(--dark); }
.share-btn { display: flex; align-items: center; gap: .5rem; padding: .5rem 1.1rem; border-radius: var(--r-full); font: 600 .825rem/1 var(--font-head); cursor: pointer; transition: var(--t-base); text-decoration: none; min-height: 44px; }
.share-btn:hover { opacity: .85; transform: translateY(-2px); }
.share-fb  { background: #1877f2; color: var(--white); }
.share-tw  { background: #1da1f2; color: var(--white); }
.share-pin { background: #e60023; color: var(--white); }

/* Related posts */
.related-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.related-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: 1.25rem; }

/* Article sidebar */
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.5rem; }

/* Read progress bar */
#readProgress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); z-index: 9999; transition: width .1s linear; }

/* ================================================================
   28. ANIMATIONS & KEYFRAMES
================================================================ */
@keyframes float-up {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
@keyframes float-left {
  0%,100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-8px) translateX(4px); }
}
@keyframes float-right {
  0%,100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-8px) translateX(-4px); }
}
@keyframes glow-pulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.08); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show { opacity: 1; transform: translateY(0); }

.reveal-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-l.show { opacity: 1; transform: translateX(0); }

.reveal-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-r.show { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ================================================================
   29. MEDIA QUERIES — MOBILE FIRST
================================================================ */

/* --- Extra small: 320px – 479px --- */
@media (max-width: 479px) {
  :root { --nav-h: 64px; }

  .hamburger { display: flex; }
  .nav-links, .nav-actions .btn { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 2.5rem 5rem;
  }
  .hero-visual { order: -1; }
  .hero-bottle { max-width: 240px; margin-inline: auto; }
  .stat-float  { display: none; }
  .hero-desc   { margin-inline: auto; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: stretch; }
  .hero-trust  { justify-content: center; }

  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-img-wrap { display: none; }

  .steps-wrap::before { display: none; }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }

  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }

  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  #mobileCta { display: block; }

  .final-cta-buttons { flex-direction: column; align-items: stretch; }
}

/* --- Small: 480px --- */
@media (min-width: 480px) {
  .hero-bottle  { max-width: 290px; }
  .hero-actions { flex-direction: row; }
}

/* --- Mobile/tablet threshold: 576px --- */
@media (min-width: 576px) {
  .container { padding-inline: 1.5rem; }
}

/* --- Tablet: 768px --- */
@media (min-width: 768px) and (max-width: 991px) {
  .hamburger { display: flex; }
  .nav-links  { display: none; }
  .nav-actions .btn { display: inline-flex; }
  #mobileCta { display: none; }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding-block: 3.5rem;
  }
  .hero-visual { order: 0; }
  .hero-bottle { max-width: 360px; }
  .stat-float  { display: flex; }
  .hero-actions { flex-direction: row; }
  .hero-desc { margin-inline: 0; }

  .why-grid  { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }

  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}

/* --- Laptop: 992px --- */
@media (min-width: 992px) {
  .hamburger { display: none; }
  .nav-links  { display: flex; }
  .nav-actions .btn { display: inline-flex; }
  #mobileCta { display: none; }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding-block: 4.5rem;
  }
  .hero-visual { order: 0; }
  .hero-bottle { max-width: 440px; }
  .stat-float  { display: flex; }
  .hero-desc   { margin-inline: 0; }
  .hero-actions { flex-direction: row; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .why-img-wrap { display: flex; }

  .blog-layout { grid-template-columns: 1fr 320px; }
  .blog-sidebar { display: flex; }

  .article-layout { grid-template-columns: 1fr 280px; }
  .article-sidebar { display: flex; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* --- Desktop: 1200px --- */
@media (min-width: 1200px) {
  .container { padding-inline: 2rem; }
  .blog-layout     { grid-template-columns: 1fr 340px; }
  .article-layout  { grid-template-columns: 1fr 300px; }
}

/* --- Large desktop: 1400px --- */
@media (min-width: 1400px) {
  :root { --max-w: 1320px; }
}

/* ================================================================
   GLOBAL OVERFLOW SAFETY NET
================================================================ */
html, body { overflow-x: hidden !important; }

@media (max-width: 767px) {
  .pricing-grid      { grid-template-columns: 1fr; }
  .price-card.featured { transform: none !important; }
  .price-card.featured:hover { transform: translateY(-8px) !important; }
  .testi-grid        { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: 1fr; }
  .ing-grid          { grid-template-columns: 1fr; }
  .choose-grid       { grid-template-columns: 1fr 1fr; }
  .trust-bar-list    { gap: .875rem 1.5rem; }
  .footer-grid       { grid-template-columns: 1fr; gap: 1.75rem; }
  .guarantee-strip   { flex-direction: column; text-align: center; }
  .guarantee-strip i { font-size: 2.5rem; }
  .related-grid      { grid-template-columns: 1fr; }
  .contact-cards     { grid-template-columns: 1fr; }
}

.cta-image {
  text-align: center;
  margin: 2rem 0;
}

.cta-product-image {
  display: block;
  width: 280px;      /* Adjust as needed */
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}