/* =====================================================
   Honey Peak Gelatin — Main Stylesheet
   Mobile-first | WCAG 2.2 AA | No horizontal overflow
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES & RESET
   ===================================================== */
:root {
  --primary:      #1B4F72;
  --secondary:    #059669;
  --accent:       #D4AF37;
  --white:        #FFFFFF;
  --dark:         #0A1628;
  --text:         #374151;
  --text-light:   #6B7280;
  --bg:           #F8FAFB;
  --border:       #E5E7EB;

  --grad-primary: linear-gradient(135deg, #1B4F72 0%, #0A1628 100%);
  --grad-green:   linear-gradient(135deg, #059669 0%, #047857 100%);
  --grad-gold:    linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  --grad-hero:    linear-gradient(135deg, #0A1628 0%, #1B4F72 60%, #0d3d5c 100%);

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.15);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.20);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full:9999px;

  --transition:      all 0.3s ease;
  --transition-slow: all 0.5s ease;

  --section-pad: clamp(60px,8vw,100px) 0;
  --max-w:       1280px;
  --pad-x:       clamp(16px,4vw,40px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; transition: var(--transition); }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

/* =====================================================
   2. TYPOGRAPHY
   ===================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.75rem,4vw,2.75rem); }
h3 { font-size: clamp(1.25rem,3vw,1.875rem); }
h4 { font-size: clamp(1rem,2.5vw,1.375rem); }
p  { font-size: clamp(.9375rem,1.5vw,1.0625rem); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
  font-family: 'Inter', sans-serif;
}
.section-subtitle {
  font-size: clamp(1rem,2vw,1.125rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.text-center   { text-align: center; }
.text-white    { color: var(--white) !important; }
.text-accent   { color: var(--accent); }
.text-green    { color: var(--secondary); }
.text-primary  { color: var(--primary); }

/* =====================================================
   3. SKIP LINK & FOCUS
   ===================================================== */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--secondary);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  transition: var(--transition);
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }

/* =====================================================
   4. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(5,150,105,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(5,150,105,.55);
  color: var(--white);
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212,175,55,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,.5);
  color: var(--dark);
}
.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-lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn-block { width: 100%; }

/* =====================================================
   5. NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-slow);
}
.navbar.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .875rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem,2.5vw,1.5rem);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.brand-icon {
  width: 40px; height: 40px;
  background: var(--grad-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0; padding: 0;
}
.navbar-nav a {
  color: rgba(255,255,255,.82);
  font-size: .9375rem;
  font-weight: 500;
}
.navbar-nav a:hover { color: var(--accent); }
.navbar-actions {
  display: flex; align-items: center; gap: .875rem; flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-align: center;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white); font-size: 1.75rem; cursor: pointer;
}

/* =====================================================
   6. HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(100px,15vw,140px) 0 80px;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(5,150,105,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -25%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--accent);
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.hero-title { color: var(--white); margin-bottom: 1.25rem; }
.hero-title span { color: var(--white); }
.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem,2vw,1.125rem);
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-stars { display: flex; align-items: center; gap: .375rem; margin-bottom: .75rem; }
.hero-stars i { color: var(--accent); font-size: .875rem; }
.hero-stars span { color: rgba(255,255,255,.7); font-size: .875rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.72); font-size: .875rem; font-weight: 500;
}
.trust-item i { color: var(--secondary); font-size: 1rem; }
.hero-image {
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-image img {
  max-width: 100%; height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* =====================================================
   7. TRUST STRIP
   ===================================================== */
.trust-strip { background: var(--dark); padding: 1.375rem 0; }
.trust-strip .container {
  display: flex; flex-wrap: wrap;
  gap: 1.25rem 2rem; align-items: center; justify-content: center;
}
.trust-badge {
  display: flex; align-items: center; gap: .625rem;
  color: rgba(255,255,255,.82); font-size: .875rem; font-weight: 500;
  white-space: nowrap;
}
.trust-badge i { color: var(--secondary); font-size: 1.125rem; }

/* =====================================================
   8. WHY SECTION
   ===================================================== */
.why-section { padding: var(--section-pad); background: var(--white); }
.why-section .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.why-content h2 { margin-bottom: 1.25rem; }
.why-content > p { color: var(--text-light); margin-bottom: 1.75rem; }
.why-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.why-feature { display: flex; align-items: flex-start; gap: .875rem; }
.why-feature-icon {
  width: 40px; height: 40px;
  background: rgba(5,150,105,.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); font-size: 1rem; flex-shrink: 0;
}
.why-feature-text h5 {
  font-family: 'Inter', sans-serif; font-size: .9375rem;
  font-weight: 600; color: var(--dark); margin-bottom: .2rem;
}
.why-feature-text p { font-size: .875rem; color: var(--text-light); line-height: 1.55; margin: 0; }
.why-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; }

/* =====================================================
   9. BENEFITS
   ===================================================== */
.benefits-section { padding: var(--section-pad); background: var(--bg); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem;
}
.benefit-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(5,150,105,.25);
}
.benefit-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(5,150,105,.1), rgba(27,79,114,.1));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--secondary); margin-bottom: 1.25rem;
}
.benefit-card h4 {
  font-family: 'Inter', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--dark); margin-bottom: .625rem;
}
.benefit-card p { font-size: .9rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* =====================================================
   10. INGREDIENTS
   ===================================================== */
.ingredients-section {
  padding: var(--section-pad); background: var(--dark);
  position: relative; overflow: hidden;
}
.ingredients-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem;
}
.ingredient-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: center; transition: var(--transition);
}
.ingredient-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(212,175,55,.35);
  transform: translateY(-5px);
}
.ingredient-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ingredient-card h4 {
  color: var(--accent); font-family: 'Inter', sans-serif;
  font-size: .9375rem; font-weight: 700; margin-bottom: .625rem;
}
.ingredient-card p { color: rgba(255,255,255,.62); font-size: .8125rem; line-height: 1.65; margin: 0; }

/* =====================================================
   11. HOW IT WORKS
   ===================================================== */
.how-section { padding: var(--section-pad); background: var(--white); }
.how-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 3rem; position: relative;
}
.how-steps::before {
  content: '';
  position: absolute; top: 40px;
  left: calc(16.666% + 20px); right: calc(16.666% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 80px; height: 80px;
  background: var(--grad-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 700;
  color: var(--accent); font-family: 'Playfair Display', serif;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(27,79,114,.35);
  border: 3px solid var(--accent);
}
.how-step h4 { font-size: 1.125rem; margin-bottom: .75rem; }
.how-step p  { font-size: .9rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* =====================================================
   12. WHY CUSTOMERS LOVE IT
   ===================================================== */
.features-section { padding: var(--section-pad); background: var(--grad-primary); overflow: hidden; }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1.75rem; transition: var(--transition);
}
.feature-item:hover { background: rgba(255,255,255,.1); border-color: rgba(212,175,55,.3); }
.feature-item-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.25rem; flex-shrink: 0;
}
.feature-item-text h5 {
  color: var(--white); font-family: 'Inter', sans-serif;
  font-weight: 600; margin-bottom: .375rem; font-size: 1rem;
}
.feature-item-text p { color: rgba(255,255,255,.68); font-size: .875rem; line-height: 1.65; margin: 0; }

/* =====================================================
   13. TESTIMONIALS
   ===================================================== */
.testimonials-section { padding: var(--section-pad); background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.testimonial-stars i { color: var(--accent); font-size: .875rem; }
.testimonial-text { color: var(--text); font-size: .9375rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.125rem; flex-shrink: 0;
}
.author-info h5 { font-family: 'Inter', sans-serif; font-size: .9375rem; font-weight: 700; margin-bottom: .125rem; }
.author-info span { font-size: .8125rem; color: var(--text-light); }
.verified-badge {
  display: flex; align-items: center; gap: .375rem;
  font-size: .75rem; color: var(--secondary); font-weight: 600; margin-top: .375rem;
}

/* =====================================================
   14. FAQ
   ===================================================== */
.faq-section { padding: var(--section-pad); background: var(--white); }
.faq-container { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 1rem; overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(5,150,105,.1); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; background: none; border: none;
  cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 1rem;
  font-weight: 600; color: var(--dark); transition: var(--transition);
}
.faq-question:hover { color: var(--secondary); }
.faq-icon {
  width: 28px; height: 28px; background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); font-size: .875rem; flex-shrink: 0; transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--secondary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--text-light); font-size: .9375rem; line-height: 1.75; }

/* =====================================================
   15. PRICING
   ===================================================== */
.pricing-section { padding: var(--section-pad); background: var(--bg); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem; align-items: start;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2rem; border: 2px solid var(--border);
  transition: var(--transition); position: relative;
  overflow: hidden; text-align: center;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--secondary); }
.pricing-card.popular {
  border-color: var(--secondary);
  box-shadow: 0 12px 40px rgba(5,150,105,.2);
  transform: translateY(-8px);
}
.pricing-card.popular:hover { transform: translateY(-14px); }
.pricing-card.best-value { border-color: var(--accent); }
.pricing-card.best-value:hover { box-shadow: 0 12px 40px rgba(212,175,55,.2); border-color: var(--accent); }
.pricing-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .35rem .875rem;
  border-radius: var(--radius-full); margin-bottom: 1.25rem;
}
.badge-popular { background: rgba(5,150,105,.1); color: var(--secondary); border: 1px solid rgba(5,150,105,.3); }
.badge-value   { background: rgba(212,175,55,.1); color: #B8962E;          border: 1px solid rgba(212,175,55,.3); }
.badge-starter { background: rgba(27,79,114,.1);  color: var(--primary);   border: 1px solid rgba(27,79,114,.2); }
.pricing-image { margin: 0 auto 1.5rem; max-width: 200px; }
.pricing-image img {
  width: 100%; height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.18));
  transition: var(--transition);
}
.pricing-card:hover .pricing-image img { transform: scale(1.05); }
.pricing-name { font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: .5rem; }
.price-amount { font-family: 'Playfair Display', serif; font-size: clamp(2.25rem,4vw,3rem); font-weight: 700; color: var(--dark); line-height: 1; }
.price-per { font-size: .875rem; color: var(--text-light); margin-bottom: 1.25rem; }
.pricing-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.75rem; text-align: left; }
.pricing-feature { display: flex; align-items: center; gap: .625rem; font-size: .875rem; color: var(--text); }
.pricing-feature i { color: var(--secondary); flex-shrink: 0; }

/* =====================================================
   16. FINAL CTA
   ===================================================== */
.final-cta { padding: var(--section-pad); background: var(--grad-hero); text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(5,150,105,.12) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2   { color: var(--white); margin-bottom: 1.25rem; position: relative; z-index:1; }
.final-cta p    { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 2.5rem; position: relative; z-index:1; }
.cta-buttons    { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; z-index:1; }

/* =====================================================
   17. FOOTER
   ===================================================== */
.footer { background: #050d1a; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.footer-brand p { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .875rem; transition: var(--transition);
}
.social-link:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.footer-col h5 {
  color: var(--white); font-family: 'Inter', sans-serif; font-size: .8125rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { color: rgba(255,255,255,.52); font-size: .875rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .625rem;
  color: rgba(255,255,255,.52); font-size: .875rem; margin-bottom: .875rem;
}
.footer-contact-item i { color: var(--secondary); margin-top: .15rem; flex-shrink: 0; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8125rem; margin: 0; }
.footer-disclaimer { padding: 1rem 0 1.75rem; border-top: 1px solid rgba(255,255,255,.05); }
.footer-disclaimer p { color: rgba(255,255,255,.28); font-size: .75rem; line-height: 1.65; text-align: center; margin: 0; }

/* =====================================================
   18. MOBILE STICKY CTA
   ===================================================== */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  padding: .875rem 1rem;
  background: rgba(10,22,40,.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-cta a {
  display: block; text-align: center;
  background: var(--grad-green); color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: .9375rem; border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(5,150,105,.4);
}

/* =====================================================
   19. ANIMATIONS
   ===================================================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
.reveal       { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.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; }

/* =====================================================
   20. BLOG STYLES
   ===================================================== */
.blog-hero {
  background: var(--grad-hero); padding: 140px 0 80px; text-align: center;
}
.blog-hero h1 { color: var(--white); margin-bottom: 1rem; }
.blog-hero p  { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }
.blog-section { padding: var(--section-pad); background: var(--bg); }
.blog-layout  { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.blog-search  { position: relative; margin-bottom: 2rem; }
.blog-search input {
  width: 100%; padding: .875rem 1rem .875rem 3rem;
  border: 2px solid var(--border); border-radius: var(--radius-full);
  font-size: .9375rem; font-family: 'Inter', sans-serif;
  background: var(--white); color: var(--dark); transition: var(--transition);
}
.blog-search input:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(5,150,105,.1); }
.blog-search i { position: absolute; left: 1.125rem; top: 50%; transform: translateY(-50%); color: var(--text-light); }
.blog-categories { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.category-btn {
  padding: .4rem 1rem; border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600;
  cursor: pointer; border: 1px solid var(--border); background: var(--white); color: var(--text-light); transition: var(--transition);
}
.category-btn:hover, .category-btn.active { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.blog-featured { position: relative; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 2.5rem; box-shadow: var(--shadow-lg); }
.blog-featured img { width: 100%; height: 400px; object-fit: cover; }
.blog-featured-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
  background: linear-gradient(transparent, rgba(10,22,40,.95));
}
.blog-cat {
  display: inline-block; background: var(--secondary); color: #fff;
  font-size: .75rem; font-weight: 700; padding: .25rem .75rem;
  border-radius: var(--radius-full); text-transform: uppercase; margin-bottom: .75rem;
}
.blog-featured-content h2 { color: var(--white); font-size: clamp(1.25rem,3vw,1.75rem); margin-bottom: .5rem; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .8125rem; color: rgba(255,255,255,.65); }
.blog-meta i { margin-right: .25rem; }
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-tag { display: inline-block; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--secondary); margin-bottom: .625rem; }
.blog-card-body h3 { font-size: 1.0625rem; margin-bottom: .75rem; line-height: 1.35; }
.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--secondary); }
.blog-card-body p { font-size: .875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .875rem; font-size: .8125rem; color: var(--text-light); }
.blog-card-meta i { margin-right: .25rem; }
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border); }
.sidebar-widget h4 { font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--dark); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--secondary); }
.recent-post { display: flex; gap: .875rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.recent-post-text h5 { font-family: 'Inter', sans-serif; font-size: .8125rem; font-weight: 600; line-height: 1.4; margin-bottom: .25rem; }
.recent-post-text h5 a { color: var(--dark); }
.recent-post-text h5 a:hover { color: var(--secondary); }
.recent-post-text span { font-size: .75rem; color: var(--text-light); }
.sidebar-cta {
  background: var(--grad-primary); color: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; text-align: center; border: none;
}
.sidebar-cta h4 { color: var(--white); font-family: 'Inter', sans-serif; margin-bottom: .75rem; }
.sidebar-cta p  { color: rgba(255,255,255,.72); font-size: .875rem; margin-bottom: 1.25rem; }
.blog-pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; flex-wrap: wrap; }
.page-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--white); color: var(--text); font-size: .9375rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--secondary); border-color: var(--secondary); color: white; }

/* Single Blog Post */
.blog-post-hero { background: var(--grad-hero); padding: 140px 0 60px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: 1.5rem; }
.breadcrumb a, .breadcrumb span { font-size: .8125rem; color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: rgba(255,255,255,.85); }
.blog-post-hero h1 { color: var(--white); font-size: clamp(1.625rem,4vw,2.625rem); margin-bottom: 1.25rem; }
.post-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.post-meta-item { display: flex; align-items: center; gap: .375rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.post-meta-item i { color: var(--accent); }
.blog-post { padding: 0 0 var(--section-pad); background: var(--bg); }
.blog-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; margin-top: -30px; }
.blog-post-main { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.hero-image-wrap { margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.hero-image-wrap img { width: 100%; max-height: 450px; object-fit: cover; }
.toc { background: var(--bg); border: 1px solid var(--border); border-left: 4px solid var(--secondary); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.toc h5 { font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .875rem; color: var(--dark); }
.toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .375rem; }
.toc a { color: var(--primary); font-size: .875rem; font-weight: 500; }
.toc a:hover { color: var(--secondary); }
.blog-content h2 { font-size: clamp(1.375rem,3vw,1.75rem); margin: 2rem 0 1rem; }
.blog-content h3 { font-size: clamp(1.125rem,2.5vw,1.375rem); margin: 1.5rem 0 .75rem; color: var(--primary); }
.blog-content p  { margin-bottom: 1.25rem; color: var(--text); line-height: 1.8; }
.blog-content ul, .blog-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-content li { margin-bottom: .5rem; color: var(--text); line-height: 1.7; }
.blog-content ul li { list-style: disc; }
.blog-content ol li { list-style: decimal; }
.blog-content strong { color: var(--dark); font-weight: 700; }
.article-cta { background: var(--grad-primary); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; margin: 3rem 0 2rem; }
.article-cta h3 { color: var(--white); margin-bottom: .75rem; }
.article-cta p  { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
.share-section { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--border); margin-top: 2rem; flex-wrap: wrap; }
.share-section span { font-weight: 600; color: var(--dark); font-size: .9375rem; }
.share-btn { display: inline-flex; align-items: center; gap: .375rem; padding: .5rem 1.125rem; border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; }
.share-facebook { background: #1877F2; color: white; }
.share-twitter  { background: #1DA1F2; color: white; }
.share-linkedin { background: #0A66C2; color: white; }
.share-copy     { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.related-posts  { margin-top: 3rem; }
.related-posts h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }

/* =====================================================
   21. ADDITIONAL PAGES
   ===================================================== */
.page-hero { background: var(--grad-hero); padding: 140px 0 80px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.page-content { padding: var(--section-pad); background: var(--white); }
.page-content .container { max-width: 860px; }
.page-content h2 { font-size: clamp(1.375rem,3vw,1.875rem); margin: 2.5rem 0 1rem; color: var(--primary); }
.page-content h3 { font-size: clamp(1.125rem,2.5vw,1.25rem); margin: 1.75rem 0 .75rem; color: var(--dark); }
.page-content p  { margin-bottom: 1.25rem; line-height: 1.8; }
.page-content ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-content li { margin-bottom: .5rem; list-style: disc; line-height: 1.7; }
.last-updated { display: inline-block; background: rgba(5,150,105,.08); border: 1px solid rgba(5,150,105,.2); color: var(--secondary); font-size: .8125rem; font-weight: 600; padding: .375rem .875rem; border-radius: var(--radius-full); margin-bottom: 2rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin: 3rem 0; }
.contact-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: var(--transition); }
.contact-card:hover { border-color: var(--secondary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card-icon { width: 60px; height: 60px; background: var(--grad-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.375rem; margin: 0 auto 1.25rem; }
.contact-card h4 { font-size: 1.0625rem; margin-bottom: .5rem; }
.contact-card p { font-size: .9rem; color: var(--text-light); margin: 0; }
.contact-card a { color: var(--secondary); font-weight: 600; }

/* 404 */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--grad-hero); text-align: center; padding: 2rem; }
.error-code { font-family: 'Playfair Display', serif; font-size: clamp(6rem,15vw,12rem); font-weight: 700; color: transparent; -webkit-text-stroke: 2px rgba(212,175,55,.5); line-height: 1; margin-bottom: 1rem; }
.error-page h2 { color: var(--white); margin-bottom: 1rem; }
.error-page p  { color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 2rem; }

/* =====================================================
   22. RESPONSIVE BREAKPOINTS
   ===================================================== */
@media (max-width:1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-layout  { grid-template-columns: 1fr 280px; }
  .blog-post-layout { grid-template-columns: 1fr 260px; }
}
@media (max-width:992px) {
  .navbar-nav, .navbar-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-image { max-width: 380px; margin: 0 auto; }
  .why-section .container { grid-template-columns: 1fr; }
  .why-image { max-width: 480px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .ingredients-grid { grid-template-columns: repeat(2,1fr); }
  .how-steps::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
}
@media (max-width:768px) {
  .hero { padding: 100px 0 60px; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .how-steps      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .related-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .blog-post-main { padding: 1.5rem; }
  .blog-featured img { height: 280px; }
}
@media (max-width:576px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 300px; }
  .pricing-image { max-width: 160px; }
  .trust-strip .container { flex-direction: column; gap: .875rem; align-items: flex-start; padding: 1.5rem var(--pad-x); }
  .share-section { justify-content: center; }
  .post-meta { flex-direction: column; gap: .625rem; }
  .blog-post-hero { padding: 120px 0 40px; }
}
@media (max-width:480px) {
  .benefit-card, .pricing-card, .testimonial-card, .ingredient-card { padding: 1.5rem; }
  .navbar-brand span { display: none; }
}
@media (max-width:320px) {
  :root { --pad-x: 12px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: .75rem 1.5rem; font-size: .9375rem; }
}

/* Add this after the existing .hero-title rule */
.hero h1 {
  color: var(--white);
}
.hero h1 span {
  color: var(--white);
}