/* =============================================
   RESPONSIVE IMAGE OVERRIDES (Fix for audit tools)
   ============================================= */

/* Global responsive image enforcement */
img {
  max-width: 100% !important;
  height: auto;
  display: block;
}

/* Hero product image */
.hero-product-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 520px;
}

/* Why section product image */
.why-product-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 440px;
}

/* How it works visual */
.how-visual img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* Pricing images */
.pricing-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 200px;
}

/* Blog images */
.post-hero-img,
.fa-image-wrap img,
.bc-image img,
.sidebar-post-img,
.blog-hero-image {
  max-width: 100%;
  width: 100%;
  height: auto;
}


/* =============================================
   MemoHoney® — Advanced Memory Support
   Main Stylesheet | v1.0.0
   Domain: https://go-memohoney.com/
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Brand Colors */
  --primary:        #1B3A6B;
  --primary-dark:   #0F2448;
  --primary-light:  #2D5A9E;
  --accent:         #D4A017;
  --accent-light:   #F5C842;
  --accent-dark:    #A87800;
  --green:          #059669;
  --green-light:    #10B981;

  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #F8FAFC;
  --light:          #F1F5F9;
  --light-2:        #EEF2FF;
  --dark:           #0F172A;
  --text:           #374151;
  --text-light:     #6B7280;
  --text-muted:     #9CA3AF;
  --border:         #E5E7EB;
  --border-light:   #F3F4F6;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --shadow-xl:  0 30px 80px rgba(0,0,0,.20);
  --shadow-gold:  0 8px 30px rgba(212,160,23,.25);
  --shadow-blue:  0 8px 30px rgba(27,58,107,.25);

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r:      12px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Transitions */
  --t:      all 0.3s cubic-bezier(.4,0,.2,1);
  --t-slow: all 0.5s cubic-bezier(.4,0,.2,1);
  --t-fast: all 0.15s cubic-bezier(.4,0,.2,1);

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Layout */
  --max-w:   1200px;
  --px:      0 24px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: var(--px); }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(212,160,23,.08);
  border: 1px solid rgba(212,160,23,.2);
  padding: 6px 16px; border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--accent); }

.section-subtitle {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 620px; margin: 0 auto; line-height: 1.7;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: .95rem; font-weight: 600; letter-spacing: .02em;
  transition: var(--t); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .4s ease, height .4s ease;
}
.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--dark); box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212,160,23,.4);
  color: var(--dark);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); box-shadow: var(--shadow-blue);
}
.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(27,58,107,.4);
  color: var(--white);
}

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

.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--primary); }

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-full { width: 100%; }

/* Stars */
.stars { display: inline-flex; gap: 2px; color: var(--accent); font-size: .85rem; }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--t);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: var(--shadow-gold); flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.35rem;
  font-weight: 700; color: var(--white); transition: var(--t);
}
.nav-logo-text span { color: var(--accent-light); }
#navbar.scrolled .nav-logo-text { color: var(--dark); }
#navbar.scrolled .nav-logo-text span { color: var(--accent); }

/* Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.9);
  padding: 8px 14px; border-radius: var(--r-full);
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: rgba(255,255,255,.15); }
#navbar.scrolled .nav-links a:hover { background: var(--light); color: var(--primary); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--t);
}
#navbar.scrolled .nav-hamburger span { background: var(--dark); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(15,23,42,.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: var(--t-slow);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 1.5rem; font-weight: 600; color: var(--white);
  padding: 12px 40px; border-radius: var(--r); transition: var(--t);
}
.mobile-menu a:hover { background: rgba(255,255,255,.08); color: var(--accent); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white); cursor: pointer; transition: var(--t);
}
.mobile-menu-close:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 50%, #1a4a8a 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 55%, rgba(212,160,23,.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(212,160,23,.07) 0%, transparent 38%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,.03) 0%, transparent 35%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}

/* Hero Content */
.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.30);
  color: var(--accent-light); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--r-full); margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px; color: var(--white);
}
.hero-title em { color: var(--accent-light); font-style: italic; }

.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}

.hero-cta-group {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 14px; margin-bottom: 40px;
}

.hero-trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 500;
  padding: 7px 14px; border-radius: var(--r-full); backdrop-filter: blur(10px);
}
.trust-badge i { color: var(--accent-light); font-size: .85rem; }

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-product-glow {
  position: absolute; width: 78%; height: 78%;
  background: radial-gradient(circle, rgba(212,160,23,.22) 0%, transparent 70%);
  border-radius: 50%; animation: pulse-glow 3.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.12); opacity: 1; }
}
.hero-product-img {
  position: relative; z-index: 1;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.45));
  max-height: 520px; width: auto;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* Floating stat cards */
.hero-stat-card {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.12); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md); padding: 12px 16px; text-align: center; min-width: 96px;
}
.hero-stat-card .stat-num {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--accent-light); display: block;
}
.hero-stat-card .stat-lbl {
  font-size: .68rem; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .08em;
}
.hero-stat-left  { left: -16px; top: 38%; }
.hero-stat-right { right: -16px; top: 22%; }

/* =============================================
   WHY MEMOHONEY
   ============================================= */
#why-memohoney { background: var(--off-white); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.why-content .section-header { text-align: left; margin-bottom: 32px; }

.why-points { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.why-point { display: flex; align-items: flex-start; gap: 16px; }
.why-point-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); box-shadow: var(--shadow-gold);
}
.why-point-body h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-point-body p  { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

.why-visual { position: relative; text-align: center; }
.why-bg-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(212,160,23,.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.why-product-img {
  position: relative; z-index: 1; max-height: 440px; width: auto; margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.16));
}

/* =============================================
   BENEFITS
   ============================================= */
#benefits { background: var(--white); }

.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.benefit-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: center;
  transition: var(--t); position: relative; overflow: hidden;
}
.benefit-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.benefit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.benefit-card:hover::after { transform: scaleX(1); }

.benefit-icon {
  width: 72px; height: 72px;
  background: rgba(212,160,23,.09);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.9rem; color: var(--accent); transition: var(--t);
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white); transform: scale(1.1) rotate(-5deg); box-shadow: var(--shadow-gold);
}
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.benefit-card p  { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

/* =============================================
   INGREDIENTS
   ============================================= */
#ingredients {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}
#ingredients .section-title  { color: var(--white); }
#ingredients .section-subtitle { color: rgba(255,255,255,.72); }

.ingredients-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.ingredient-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg); padding: 28px 18px; text-align: center;
  transition: var(--t); backdrop-filter: blur(10px);
}
.ingredient-card:hover {
  background: rgba(255,255,255,.12); border-color: rgba(212,160,23,.40);
  transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,.35);
}
.ingredient-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.6rem; color: var(--white); box-shadow: var(--shadow-gold);
}
.ingredient-badge {
  display: inline-block; margin-bottom: 10px;
  background: rgba(212,160,23,.18); border: 1px solid rgba(212,160,23,.28);
  color: var(--accent-light); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 10px; border-radius: var(--r-full);
}
.ingredient-card h3 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ingredient-card p  { font-size: .78rem; color: rgba(255,255,255,.62); line-height: 1.65; }

/* =============================================
   HOW IT WORKS
   ============================================= */
#how-it-works { background: var(--off-white); }

.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.how-steps { display: flex; flex-direction: column; gap: 20px; }
.how-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: var(--white);
  border-radius: var(--r-md); border: 1px solid var(--border); transition: var(--t);
}
.how-step:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateX(8px); }
.how-step-num {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.how-step-body h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.how-step-body p  { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

.how-visual img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* =============================================
   WHY CUSTOMERS LOVE
   ============================================= */
#why-love { background: var(--white); }

.love-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.love-card {
  background: var(--off-white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 32px 22px; text-align: center; transition: var(--t);
}
.love-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.love-icon {
  width: 68px; height: 68px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.8rem;
}
.love-icon-gold   { background: rgba(212,160,23,.10); color: var(--accent); }
.love-icon-blue   { background: rgba(27,58,107,.10);  color: var(--primary); }
.love-icon-green  { background: rgba(5,150,105,.10);  color: var(--green); }
.love-icon-purple { background: rgba(139,92,246,.10); color: #7C3AED; }
.love-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.love-card p  { font-size: .85rem; color: var(--text-light); line-height: 1.65; }

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { background: var(--light-2); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.testimonial-card {
  background: var(--white); border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow); transition: var(--t); position: relative;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-heading); font-size: 5.5rem; line-height: 1;
  color: var(--accent); opacity: .18; position: absolute; top: 10px; left: 22px; font-weight: 700;
}

.testimonial-stars { margin-bottom: 14px; }
.testimonial-text {
  font-size: .925rem; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 22px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--white);
}
.avatar-gold   { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); }
.avatar-blue   { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.avatar-green  { background: linear-gradient(135deg, var(--green) 0%, #065F46 100%); }

.t-author-name     { font-weight: 700; font-size: .9rem; color: var(--dark); }
.t-author-location { font-size: .78rem; color: var(--text-muted); }
.verified-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .72rem; color: var(--green); font-weight: 600; margin-top: 3px;
}

/* =============================================
   FAQ
   ============================================= */
#faq { background: var(--white); }

.faq-wrap { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  margin-bottom: 12px; overflow: hidden; transition: var(--t);
}
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-gold); }

.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left;
  font-size: .95rem; font-weight: 600; color: var(--dark); cursor: pointer; transition: var(--t);
}
.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--text-light); transition: var(--t);
}
.faq-item.active .faq-icon { background: var(--accent); color: var(--white); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .42s ease; }
.faq-answer-inner {
  padding: 0 24px 20px; font-size: .9rem; color: var(--text-light); line-height: 1.75;
}
.faq-item.active .faq-answer { max-height: 500px; }

/* =============================================
   PRICING
   ============================================= */
#pricing { background: var(--off-white); }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }

.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r-xl); padding: 40px 28px; text-align: center;
  position: relative; transition: var(--t); overflow: visible;
}
.pricing-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); border-color: var(--accent); }
.pricing-card.popular {
  border-color: var(--accent); box-shadow: var(--shadow-gold);
  transform: scale(1.035);
}
.pricing-card.popular:hover { transform: scale(1.035) translateY(-12px); }

.pricing-badges {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; white-space: nowrap;
}
.badge-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--dark); font-size: .72rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-full); box-shadow: var(--shadow-gold);
  text-transform: uppercase; letter-spacing: .05em;
}
.badge-green {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: var(--white); font-size: .72rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: .05em;
}
.badge-blue {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white); font-size: .72rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: .05em;
}

.pricing-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--dark); margin: 16px 0 4px; }
.pricing-unit { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }

.pricing-img {
  max-height: 200px; width: auto; object-fit: contain;
  margin: 0 auto 20px; transition: var(--t);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.12));
}
.pricing-card:hover .pricing-img { transform: scale(1.06); }

.price-main  { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.price-per   { font-size: .9rem; color: var(--text-light); }
.price-total { font-size: .82rem; color: var(--text-muted); margin: 6px 0 18px; }

.pricing-features { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 24px; text-align: left; }
.pricing-feature  { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--text); }
.pricing-feature i { color: var(--green); font-size: .78rem; flex-shrink: 0; }

/* =============================================
   FINAL CTA
   ============================================= */
#final-cta {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 55%, #2060a0 100%);
  color: var(--white); text-align: center; padding: 100px 0; position: relative; overflow: hidden;
}
#final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,160,23,.12) 0%, transparent 60%);
}
#final-cta .section-title { color: var(--white); position: relative; }
.cta-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.78);
  max-width: 580px; margin: 0 auto 40px; position: relative;
}
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; position: relative; }
.cta-guarantee {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  color: rgba(255,255,255,.65); font-size: .875rem; position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
#footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 70px 0 30px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-logo-text {
  font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700;
  color: var(--white); display: block; margin-bottom: 12px;
}
.footer-logo-text span { color: var(--accent); }
.footer-brand p { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.footer-secure {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.38);
}

.footer-col h4 {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--white); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.48); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px; text-align: center;
}
.footer-disclaimer {
  font-size: .76rem; color: rgba(255,255,255,.30);
  line-height: 1.75; max-width: 900px; margin: 0 auto 14px;
}
.footer-copyright { font-size: .82rem; color: rgba(255,255,255,.38); }
.footer-copyright a { color: var(--accent); }

/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  padding: 12px 20px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.sticky-mobile-cta .btn { width: 100%; padding: 15px; font-size: .95rem; }

/* =============================================
   BACK TO TOP
   ============================================= */
#back-to-top {
  position: fixed; bottom: 80px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); box-shadow: var(--shadow-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 800;
  opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--t);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(27,58,107,.45); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.reveal-left  { transform: translateX(-32px); }
.reveal.reveal-right { transform: translateX(32px); }
.reveal.revealed     { opacity: 1; transform: translate(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }
.reveal-d6 { transition-delay: .6s; }

/* =============================================
   BLOG — LISTING PAGE
   ============================================= */
.blog-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 140px 0 80px; color: var(--white); text-align: center;
}
.blog-hero-title {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.blog-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  max-width: 520px; margin: 0 auto 28px;
}

.blog-search-wrap { max-width: 480px; margin: 0 auto; position: relative; }
.blog-search-input {
  width: 100%; padding: 14px 54px 14px 20px;
  border-radius: var(--r-full); border: none;
  font-size: .95rem; font-family: inherit; outline: none;
  box-shadow: var(--shadow-lg);
}
.blog-search-btn {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .85rem; border: none;
}

.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; padding: 60px 0; align-items: start; }

/* Featured article */
.featured-article {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--t);
  margin-bottom: 48px;
}
.featured-article:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.fa-image-wrap { position: relative; overflow: hidden; }
.fa-image-wrap img { width: 100%; height: 320px; object-fit: cover; transition: transform .55s ease; }
.featured-article:hover .fa-image-wrap img { transform: scale(1.05); }

.featured-pill {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--dark); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 14px; border-radius: var(--r-full);
}

.fa-content {
  padding: 36px; display: flex; flex-direction: column; justify-content: center;
}
.article-cat  { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 10px; }
.article-title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--dark); line-height: 1.3; margin-bottom: 12px; display: block; transition: var(--t);
}
.article-title:hover { color: var(--primary); }
.article-excerpt { font-size: .875rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; font-size: .78rem; color: var(--text-muted); }
.article-meta span { display: flex; align-items: center; gap: 5px; }

.blog-grid-title {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  color: var(--dark); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 2px solid var(--border);
}

.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-bottom: 40px; }

.blog-card {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border); transition: var(--t);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }

.bc-image { overflow: hidden; position: relative; }
.bc-image img { width: 100%; height: 195px; object-fit: cover; transition: transform .5s ease; display: block; }
.blog-card:hover .bc-image img { transform: scale(1.07); }

.bc-content { padding: 20px; }
.bc-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 8px; }
.bc-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 8px; display: block; transition: var(--t); }
.bc-title:hover { color: var(--primary); }
.bc-excerpt { font-size: .82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.bc-meta { display: flex; align-items: center; gap: 12px; font-size: .76rem; color: var(--text-muted); }
.bc-meta span { display: flex; align-items: center; gap: 4px; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; }
.sidebar-widget-title {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border);
}
.sidebar-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-img { width: 62px; height: 62px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; background: var(--light); }
.sidebar-post-title { font-size: .835rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 4px; display: block; transition: var(--t); }
.sidebar-post-title:hover { color: var(--primary); }
.sidebar-post-date { font-size: .72rem; color: var(--text-muted); }

.sidebar-cta { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); border-color: transparent; }
.sidebar-cta .sidebar-widget-title { color: var(--white); border-bottom-color: rgba(255,255,255,.12); }
.sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 16px; }

.categories-list { display: flex; flex-direction: column; gap: 8px; }
.cat-tag {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; background: var(--light); border-radius: var(--r-sm);
  font-size: .85rem; color: var(--text); cursor: pointer; transition: var(--t);
}
.cat-tag:hover { background: var(--accent); color: var(--dark); }
.cat-count { background: var(--white); border-radius: var(--r-full); padding: 2px 8px; font-size: .72rem; font-weight: 600; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 600; color: var(--text);
  background: var(--white); border: 1px solid var(--border); cursor: pointer; transition: var(--t);
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* =============================================
   BLOG — SINGLE POST
   ============================================= */
.single-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 140px 0 60px; color: var(--white);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb i { font-size: .55rem; }

.post-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--white); line-height: 1.25; max-width: 800px; margin-bottom: 20px;
}
.post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; font-size: .82rem; color: rgba(255,255,255,.65); }
.post-meta span { display: flex; align-items: center; gap: 6px; }

.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding: 60px 0; align-items: start; }

.post-hero-img {
  width: 100%; max-height: 460px; object-fit: cover;
  border-radius: var(--r-lg); margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}

/* Blog content body */
.blog-content { font-size: .975rem; color: var(--text); line-height: 1.85; }
.blog-content h2 {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--dark); margin: 44px 0 16px; line-height: 1.3;
}
.blog-content h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  color: var(--dark); margin: 30px 0 12px;
}
.blog-content p { margin-bottom: 20px; }
.blog-content ul, .blog-content ol { margin: 16px 0 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content li { line-height: 1.75; }
.blog-content strong { color: var(--dark); font-weight: 700; }
.blog-content a { color: var(--primary); text-decoration: underline; }
.blog-content blockquote {
  border-left: 4px solid var(--accent); padding: 16px 24px;
  background: rgba(212,160,23,.06); border-radius: 0 var(--r) var(--r) 0;
  margin: 28px 0; font-style: italic; color: var(--text);
}

/* TOC */
.toc-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; margin-bottom: 36px; }
.toc-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.toc-list { display: flex; flex-direction: column; gap: 6px; list-style: none !important; margin: 0 !important; }
.toc-list li a {
  font-size: .875rem; color: var(--primary); display: flex; align-items: flex-start;
  gap: 8px; padding: 4px 0; transition: var(--t);
}
.toc-list li a:hover { color: var(--accent); padding-left: 6px; }
.toc-list li a::before { content: '→'; font-size: .78rem; margin-top: 3px; flex-shrink: 0; }

/* Blog CTA banner */
.blog-cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--r-lg); padding: 36px; text-align: center; margin: 48px 0;
  position: relative; overflow: hidden;
}
.blog-cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,160,23,.14) 0%, transparent 70%);
}
.blog-cta-box h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 10px; position: relative; }
.blog-cta-box p  { color: rgba(255,255,255,.78); font-size: .9rem; margin-bottom: 22px; position: relative; }
.blog-cta-box .btn { position: relative; }

/* Social share */
.social-share {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: 36px 0;
}
.share-label { font-weight: 600; font-size: .875rem; color: var(--dark); }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 600; transition: var(--t); color: var(--white);
}
.share-btn:hover { transform: translateY(-2px); opacity: .88; color: var(--white); }
.share-fb  { background: #1877F2; }
.share-tw  { background: #1DA1F2; }
.share-li  { background: #0A66C2; }
.share-pin { background: #E60023; }

/* Related articles */
.related-wrap { margin-top: 52px; padding-top: 52px; border-top: 1px solid var(--border); }
.related-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.related-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

/* Post sidebar */
.post-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }

/* Blog FAQ */
.blog-faq-section { background: var(--off-white); border-radius: var(--r-md); padding: 32px; margin: 44px 0; }
.blog-faq-section h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--dark); margin: 0 0 20px; }

/* =============================================
   INNER PAGES (contact, policy pages)
   ============================================= */
.page-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 130px 0 70px; text-align: center; }
.page-hero-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,.72); }

.page-content { max-width: 860px; margin: 0 auto; padding: 70px 24px; }
.page-content h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--dark); margin: 44px 0 14px; }
.page-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 28px 0 10px; }
.page-content p  { color: var(--text); line-height: 1.82; margin-bottom: 16px; }
.page-content ul { list-style: disc; margin-left: 24px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.page-content ul li { color: var(--text); line-height: 1.75; }
.page-content a  { color: var(--primary); text-decoration: underline; }

.info-card {
  background: rgba(212,160,23,.06); border: 1px solid rgba(212,160,23,.18);
  border-radius: var(--r-md); padding: 24px; margin: 28px 0;
}
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(212,160,23,.1); }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row i { color: var(--accent); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.info-row strong { color: var(--dark); font-size: .875rem; display: block; margin-bottom: 2px; }
.info-row span { font-size: .85rem; color: var(--text-light); }

/* 404 */
.page-404 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.err-code {
  font-family: var(--font-heading); font-size: clamp(6rem, 15vw, 10rem); font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(212,160,23,.4);
}
.err-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.err-text  { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 36px; max-width: 440px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-stat-left, .hero-stat-right { display: none; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .ingredients-grid { grid-template-columns: repeat(2,1fr); }
  .love-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --px: 0 16px; }
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }

  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-image-wrap { order: 1; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-cta-group, .hero-trust-badges { justify-content: center; }
  .hero-product-img { max-height: 280px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-content .section-header { text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-visual { order: -1; }
  .love-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-12px); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .featured-article { grid-template-columns: 1fr; }
  .fa-image-wrap img { height: 210px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .post-sidebar { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }

  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 72px; }
  #back-to-top { bottom: 90px; }
}

@media (max-width: 480px) {
  .hero-cta-group, .cta-buttons { flex-direction: column; align-items: center; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .love-grid { grid-template-columns: 1fr; }
  .social-share { flex-direction: column; align-items: flex-start; }
}

@media print {
  #navbar, .sticky-mobile-cta, #back-to-top { display: none !important; }
  body { padding: 0; }
}