/* ========================================
   SodaSlim® — Main Stylesheet
   Domain: https://sodaslims.us/
   Version: 1.0.0
   ======================================== */

/* === 1. CSS Custom Properties === */
:root {
  /* Brand Colors — matching SodaSlim® packaging */
  --navy:        #1E3A8A;
  --navy-dark:   #1e3464;
  --navy-light:  #DBEAFE;
  --orange:      #F97316;
  --orange-dark: #EA580C;
  --amber:       #FBBF24;
  --green:       #22C55E;
  --green-dark:  #16A34A;

  /* UI Neutrals */
  --dark:       #0F172A;
  --text:       #334155;
  --text-light: #64748B;
  --border:     #E2E8F0;
  --bg-light:   #EFF6FF;
  --bg-warm:    #FFF7ED;
  --white:      #FFFFFF;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #1E3A8A 0%, #1e4db7 100%);
  --grad-cta:   linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  --grad-hero:  linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 55%, #FFF7ED 100%);
  --grad-dark:  linear-gradient(135deg, #0F172A 0%, #0F2F6B 100%);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md:  0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.10), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl:  0 25px 50px -12px rgba(0,0,0,.22);
  --shadow-navy:   0 4px 22px rgba(30,58,138,.32);
  --shadow-orange: 0 4px 22px rgba(249,115,22,.42);

  /* Layout */
  --nav-h:    80px;
  --max-w:    1200px;
  --r-sm:     8px;
  --r:        12px;
  --r-lg:     20px;
  --r-xl:     28px;
  --r-full:   100px;

  /* Typography */
  --font-h: 'Poppins', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Motion */
  --ease:   all .3s cubic-bezier(.4,0,.2,1);
  --bounce: all .4s cubic-bezier(.175,.885,.32,1.275);
}

/* === 2. Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === 3. Typography === */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
  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.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === 4. Layout Utilities === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section      { padding: 90px 0; }
.section-alt  { background: var(--bg-light); }
.section-warm { background: var(--bg-warm); }

.section-label {
  display: inline-block;
  background: var(--grad-brand);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === 5. Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 36px;
  border-radius: var(--r-full);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .2px;
  text-decoration: none;
}
.btn-primary {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(249,115,22,.52); color: var(--white); }
.btn-primary:active { transform: translateY(-1px); }

.btn-navy {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(30,58,138,.45); color: var(--white); }

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-lg   { padding: 18px 52px; font-size: 1.125rem; }
.btn-sm   { padding: 10px 24px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* === 6. Navbar === */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--ease);
  height: var(--nav-h);
}
#navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1;
}
.logo-text .slim { color: var(--orange); }
.logo-reg {
  font-size: .55em;
  vertical-align: super;
  color: var(--navy);
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.mobile-nav-links a {
  padding: 12px 16px;
  font-weight: 500;
  border-radius: var(--r-sm);
  color: var(--text);
  transition: var(--ease);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { background: var(--bg-light); color: var(--navy); }

/* === 7. Hero Section === */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(30,58,138,.09);
  animation: bubbleRise linear infinite;
}
.bubble:nth-child(1) { width:20px; height:20px; left:8%;  animation-duration:9s;  animation-delay:0s; }
.bubble:nth-child(2) { width:32px; height:32px; left:20%; animation-duration:13s; animation-delay:2s; }
.bubble:nth-child(3) { width:14px; height:14px; left:38%; animation-duration:8s;  animation-delay:4s; }
.bubble:nth-child(4) { width:24px; height:24px; left:56%; animation-duration:11s; animation-delay:1s; }
.bubble:nth-child(5) { width:18px; height:18px; left:72%; animation-duration:10s; animation-delay:3s; }
.bubble:nth-child(6) { width:36px; height:36px; left:87%; animation-duration:15s; animation-delay:5s; }
@keyframes bubbleRise {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .8; }
  100% { transform: translateY(-120px) scale(1); opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--navy-light);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow i { color: var(--amber); }

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--orange); }
.hero-title .brand  { color: var(--navy); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 490px;
}

.hero-cta-stack { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.hero-cta-row   { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  font-size: .85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note i { color: var(--green); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 9px 16px;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--border);
}
.trust-chip i          { font-size: 1rem; }
.trust-chip.navy   i   { color: var(--navy); }
.trust-chip.orange i   { color: var(--orange); }
.trust-chip.green  i   { color: var(--green); }
.trust-chip.amber  i   { color: var(--amber); }

/* Hero image column */
.hero-img-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow {
  position: absolute;
  width: 82%;
  height: 82%;
  background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3.2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1);    opacity: .7; }
  50%      { transform: scale(1.12); opacity: 1; }
}
.hero-product-img {
  position: relative;
  z-index: 1;
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 28px 56px rgba(30,58,138,.26));
  animation: floatBottle 6s ease-in-out infinite;
}
@keyframes floatBottle {
  0%,100% { transform: translateY(0);    }
  50%      { transform: translateY(-22px); }
}

/* Floating stat cards */
.hero-float {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0);   }
  50%      { transform: translateY(-8px); }
}
.hero-float-1 { top: 18%;    left: -6%;  animation-delay: 1s;   }
.hero-float-2 { bottom: 22%; left: -10%; animation-delay: 2.5s; }
.hero-float-3 { top: 12%;    right: 0%;  animation-delay: .5s;  }
.float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.float-icon.blue   { background: #EFF6FF; color: var(--navy);   }
.float-icon.orange { background: #FFF7ED; color: var(--orange); }
.float-icon.green  { background: #F0FDF4; color: var(--green);  }
.float-text strong { display: block; font-size: .875rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.float-text span   { font-size: .72rem; color: var(--text-light); }

/* === 8. Why SodaSlim Section === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-content .section-label { display: block; }
.why-content h2 { margin-bottom: 16px; }
.why-content > p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 32px; }

.why-list  { display: flex; flex-direction: column; gap: 18px; }
.why-item  { display: flex; align-items: flex-start; gap: 16px; }
.why-icon  {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-light), rgba(30,58,138,.14));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--navy); flex-shrink: 0;
}
.why-text h4 { margin-bottom: 4px; font-size: .95rem; }
.why-text p  { font-size: .87rem; color: var(--text-light); margin-bottom: 0; }

.why-visual {
  background: var(--grad-brand);
  border-radius: var(--r-xl);
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.why-big-stat {
  font-size: 5rem; font-weight: 800;
  font-family: var(--font-h);
  color: var(--amber);
  line-height: 1; margin-bottom: 8px;
}
.why-visual > p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 0; }
.why-mini-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.why-mini {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r);
  padding: 16px;
}
.why-mini .num { font-size: 1.8rem; font-weight: 800; font-family: var(--font-h); color: var(--amber); }
.why-mini .lbl { font-size: .75rem; color: rgba(255,255,255,.7); }

/* === 9. Benefits Section === */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--bounce);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0);
  transition: transform .3s ease;
}
.benefit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-light), rgba(30,58,138,.13));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 22px;
  transition: var(--ease);
}
.benefit-card:hover .benefit-icon { background: var(--grad-brand); }
.benefit-icon i { color: var(--navy); transition: var(--ease); }
.benefit-card:hover .benefit-icon i { color: var(--white); }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.benefit-card p  { font-size: .9rem;  color: var(--text-light); margin-bottom: 0; }

/* === 10. Ingredients Section === */
.ingredients-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.ing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.ing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.ing-img {
  height: 170px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.ing-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.ing-body { padding: 20px; }
.ing-body h4 { font-size: .95rem; margin-bottom: 8px; color: var(--dark); }
.ing-body p  { font-size: .83rem; color: var(--text-light); margin-bottom: 0; }

/* Ingredient color backgrounds */
.ing-green  { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }
.ing-amber  { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); }
.ing-blue   { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.ing-red    { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }
.ing-purple { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.ing-teal   { background: linear-gradient(135deg, #F0FDFA, #CCFBF1); }
.ing-orange { background: linear-gradient(135deg, #FFF7ED, #FFEDD5); }
.ing-pink   { background: linear-gradient(135deg, #FDF2F8, #FCE7F3); }

/* === 11. How It Works === */
.how-it-works {
  background: var(--grad-dark);
  color: var(--white);
}
.how-it-works .section-label { background: rgba(255,255,255,.14); }
.how-it-works h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,.7); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  position: relative;
}
.steps-connector {
  position: absolute;
  top: 55px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, rgba(249,115,22,.5), rgba(30,58,138,.5));
}
.step-card { text-align: center; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-family: var(--font-h); font-weight: 800;
  color: var(--white);
  margin: 0 auto 26px;
  box-shadow: 0 0 0 12px rgba(249,115,22,.15);
  position: relative; z-index: 1;
}
.step-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.step-card p  { color: rgba(255,255,255,.72); font-size: .9375rem; margin-bottom: 0; }

/* === 12. Why Customers Love Section === */
.love-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.love-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.love-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.love-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-light), rgba(30,58,138,.14));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--navy);
  margin: 0 auto 18px;
}
.love-card h4 { font-size: .95rem; margin-bottom: 8px; }
.love-card p  { font-size: .85rem; color: var(--text-light); margin-bottom: 0; }

/* === 13. Testimonials === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.testi-stars  { display: flex; gap: 4px; margin-bottom: 14px; color: var(--amber); font-size: .95rem; }
.testi-text   { font-size: .9375rem; color: var(--text); font-style: italic; margin-bottom: 22px; line-height: 1.75; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-av {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0; border: 3px solid var(--navy-light);
}
.testi-info strong { display: block; font-size: .9rem; color: var(--dark); font-weight: 600; }
.testi-info span   { font-size: .78rem; color: var(--text-light); }
.testi-verified { display: flex; align-items: center; gap: 4px; font-size: .72rem; color: var(--green); font-weight: 600; margin-top: 2px; }

/* === 14. Trust Bar === */
.trust-bar { padding: 70px 0; background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px; }

.trust-item {
  text-align: center;
  padding: 24px 14px;
  background: var(--bg-light);
  border-radius: var(--r-lg);
  border: 1px solid rgba(30,58,138,.1);
  transition: var(--ease);
}
.trust-item:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.trust-item-icon { font-size: 2rem; color: var(--navy); margin-bottom: 10px; }
.trust-item h4   { font-size: .8rem; color: var(--dark); font-weight: 600; }

/* === 15. FAQ === */
.faq-wrap { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.open { border-color: var(--navy); box-shadow: var(--shadow-md); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 14px;
}
.faq-q h4 { font-size: .9375rem; font-weight: 600; color: var(--dark); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--navy); font-size: .875rem;
  transition: var(--ease);
}
.faq-item.open .faq-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 400px; }
.faq-a p { color: var(--text-light); font-size: .9375rem; margin-bottom: 0; }

/* === 16. Pricing === */
.pricing { background: linear-gradient(135deg, #EFF6FF 0%, #FFF7ED 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }

.price-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  transition: var(--bounce);
  display: flex; flex-direction: column;
  position: relative;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.price-card.popular { border-color: var(--navy); }

.price-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: .72rem; font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--white); z-index: 1;
}
.badge-popular { background: var(--grad-brand); }
.badge-best    { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.badge-value   { background: var(--grad-cta); }

.price-img-area {
  background: linear-gradient(135deg, #EFF6FF, #FFF7ED);
  padding: 32px 24px;
  display: flex; justify-content: center; align-items: center;
  min-height: 220px; position: relative;
}
.price-img-area img {
  max-height: 185px; width: auto; object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(30,58,138,.22));
  transition: var(--ease);
}
.price-card:hover .price-img-area img { transform: scale(1.07) rotate(-2deg); }

.price-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.price-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.price-amt {
  display: flex; align-items: baseline; gap: 3px; margin-bottom: 5px;
}
.price-amt .cur { font-size: 1.3rem; font-weight: 700; color: var(--orange); align-self: flex-start; margin-top: 5px; }
.price-amt .num { font-size: 2.75rem; font-weight: 800; font-family: var(--font-h); color: var(--orange); line-height: 1; }
.price-amt .per { font-size: .85rem; color: var(--text-light); }
.price-total    { font-size: .82rem; color: var(--text-light); margin-bottom: 18px; }

.price-feats { flex: 1; margin-bottom: 22px; }
.price-feat {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: .875rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-feat:last-child { border-bottom: none; }
.price-feat i { color: var(--green); font-size: .875rem; flex-shrink: 0; }

/* === 17. Final CTA === */
.final-cta {
  background: var(--grad-dark);
  color: var(--white);
  text-align: center;
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,.14) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,58,138,.2) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { color: var(--white); margin-bottom: 18px; position: relative; z-index: 1; }
.final-cta > p { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 580px; margin: 0 auto 36px; position: relative; z-index: 1; }

.countdown-wrap { display: flex; justify-content: center; gap: 18px; margin-bottom: 36px; position: relative; z-index: 1; }
.cd-unit {
  text-align: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r);
  padding: 16px 22px; min-width: 85px;
}
.cd-num { display: block; font-family: var(--font-h); font-size: 2.2rem; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 4px; }
.cd-lbl { font-size: .65rem; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.6); }

/* === 18. Footer === */
footer { background: var(--dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }

.footer-brand h3 {
  font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; color: var(--white);
}
.footer-brand h3 .slim { color: var(--orange); }
.footer-brand p  { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 24px; }
.footer-secure   { display: flex; flex-wrap: wrap; gap: 10px; }
.secure-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  font-size: .78rem; color: rgba(255,255,255,.65);
}
.secure-chip i { color: var(--green); }

.footer-col h4      { color: var(--white); font-size: .95rem; font-weight: 600; margin-bottom: 18px; }
.footer-links       { display: flex; flex-direction: column; gap: 9px; }
.footer-links a     { font-size: .875rem; color: rgba(255,255,255,.55); display: inline-flex; align-items: center; gap: 6px; transition: var(--ease); }
.footer-links a i   { font-size: .7rem; }
.footer-links a:hover { color: var(--navy-light); transform: translateX(4px); }

.footer-bottom   { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.footer-bottom p:last-child { margin-bottom: 0; }
.footer-bottom a  { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--navy-light); }
.footer-disc {
  max-width: 820px; margin: 16px auto 0 !important;
  font-size: .72rem !important; color: rgba(255,255,255,.28) !important;
  line-height: 1.65;
}

/* === 19. Mobile Sticky CTA === */
.sticky-mob-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 997;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

/* === 20. Blog Styles === */
.blog-hero {
  background: var(--grad-dark);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center; color: var(--white);
}
.blog-hero h1 { color: var(--white); margin-bottom: 14px; }
.blog-hero p  { color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto 30px; }

.search-bar { max-width: 480px; margin: 0 auto; position: relative; }
.search-bar input {
  width: 100%; padding: 15px 56px 15px 22px;
  border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: var(--white); font-size: .9375rem;
  backdrop-filter: blur(10px);
  outline: none; transition: var(--ease);
}
.search-bar input::placeholder { color: rgba(255,255,255,.5); }
.search-bar input:focus { border-color: var(--orange); background: rgba(255,255,255,.15); }
.search-bar button {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--ease); cursor: pointer; border: none;
}
.search-bar button:hover { background: var(--orange-dark); }

.blog-layout { display: grid; grid-template-columns: 1fr 310px; gap: 40px; padding: 60px 0; }

.blog-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.blog-cat {
  padding: 8px 20px; border-radius: var(--r-full);
  border: 2px solid var(--border); background: var(--white);
  font-size: .875rem; font-weight: 500; color: var(--text);
  cursor: pointer; transition: var(--ease);
}
.blog-cat:hover, .blog-cat.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.blog-featured {
  background: var(--white); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  margin-bottom: 36px; display: grid; grid-template-columns: 1fr 1fr;
}
.blog-feat-img {
  min-height: 280px; position: relative; overflow: hidden;
  background: var(--grad-brand); display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.blog-feat-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feat-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--white); color: var(--navy);
  font-size: .72rem; font-weight: 700; padding: 5px 12px;
  border-radius: var(--r-full); z-index: 1;
}
.blog-feat-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--text-light); margin-bottom: 10px; flex-wrap: wrap; }
.blog-meta i { font-size: .72rem; }
.blog-feat-body h2 { font-size: 1.4rem; margin-bottom: 14px; }
.blog-feat-body p  { color: var(--text-light); font-size: .9rem; margin-bottom: 22px; }

.blog-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.blog-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-card-img {
  height: 190px; overflow: hidden; position: relative;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; position: absolute; inset: 0; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--navy); color: var(--white);
  font-size: .68rem; font-weight: 600; padding: 4px 10px;
  border-radius: var(--r-full); text-transform: uppercase; z-index: 1;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 9px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--navy); }
.blog-card-body p  { font-size: .875rem; color: var(--text-light); flex: 1; margin-bottom: 14px; }
.read-more {
  font-size: .875rem; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px; transition: var(--ease);
}
.read-more:hover { color: var(--orange); gap: 10px; }

/* Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-widget {
  background: var(--white); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow);
  border: 1px solid var(--border); margin-bottom: 22px;
}
.sidebar-widget h3 { font-size: .9375rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--navy); }
.sidebar-post { display: flex; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.sidebar-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-post-img {
  width: 58px; height: 58px; border-radius: var(--r-sm);
  background: var(--bg-light); overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-text h4 { font-size: .8125rem; line-height: 1.4; margin-bottom: 3px; }
.sidebar-post-text h4 a { color: var(--dark); }
.sidebar-post-text h4 a:hover { color: var(--navy); }
.sidebar-post-text span { font-size: .72rem; color: var(--text-light); }
.sidebar-cta { background: var(--grad-brand) !important; }
.sidebar-cta h3 { color: var(--white) !important; border-color: rgba(255,255,255,.25) !important; }
.sidebar-cta p  { font-size: .875rem; color: rgba(255,255,255,.9); margin-bottom: 14px; }
.sidebar-cta .btn { background: var(--white); color: var(--navy); font-size: .875rem; padding: 10px 20px; }
.sidebar-cta .btn:hover { background: var(--bg-light); transform: translateY(-2px); }

.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.page-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  font-size: .875rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease);
}
.page-btn:hover, .page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* === 21. Single Blog Post === */
.post-hero { padding: calc(var(--nav-h) + 40px) 0 0; background: var(--bg-light); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--text-light); margin-bottom: 22px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { text-decoration: underline; }

.post-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 20px; }
.post-meta  { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 28px; }
.post-author-wrap { display: flex; align-items: center; gap: 9px; }
.post-author-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .875rem;
}
.post-author-name { font-weight: 600; font-size: .875rem; color: var(--dark); }
.meta-item { display: flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--text-light); }
.meta-item i { font-size: .72rem; color: var(--navy); }

.post-hero-img {
  width: 100%; max-height: 480px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden; background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.post-hero-img img { width: 100%; max-height: 480px; object-fit: cover; position: relative; }

.post-layout { display: grid; grid-template-columns: 1fr 295px; gap: 50px; padding: 60px 0; }
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }

.toc {
  background: var(--bg-light); border-left: 4px solid var(--navy);
  border-radius: 0 var(--r) var(--r) 0; padding: 22px; margin-bottom: 36px;
}
.toc h4 { font-size: .9375rem; margin-bottom: 14px; color: var(--dark); }
.toc ol  { list-style: decimal; padding-left: 18px; }
.toc li  { margin-bottom: 7px; }
.toc a   { font-size: .875rem; color: var(--navy); }
.toc a:hover { text-decoration: underline; }

.post-body h2 { font-size: 1.6rem; margin: 36px 0 14px; color: var(--dark); }
.post-body h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--dark); }
.post-body p  { color: var(--text); margin-bottom: 18px; font-size: 1.0625rem; line-height: 1.85; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 18px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { font-size: 1.0625rem; color: var(--text); margin-bottom: 9px; line-height: 1.75; }
.post-body blockquote {
  border-left: 4px solid var(--navy); padding: 18px 22px;
  background: var(--bg-light); border-radius: 0 var(--r) var(--r) 0;
  margin: 28px 0; font-style: italic; color: var(--text-light);
}

.post-cta-box {
  background: var(--grad-brand); border-radius: var(--r-lg);
  padding: 38px; text-align: center; color: var(--white); margin: 36px 0;
}
.post-cta-box h3 { color: var(--white); margin-bottom: 10px; font-size: 1.4rem; }
.post-cta-box p  { color: rgba(255,255,255,.9); margin-bottom: 22px; }

.social-share {
  display: flex; align-items: center; gap: 12px;
  margin: 36px 0; padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.social-share span { font-weight: 600; font-size: .875rem; color: var(--dark); }
.share-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: var(--r-full);
  font-size: .8125rem; font-weight: 500;
  border: 2px solid var(--border); background: var(--white); color: var(--text);
  cursor: pointer; transition: var(--ease); text-decoration: none;
}
.share-btn.fb { border-color: #1877F2; color: #1877F2; }
.share-btn.fb:hover { background: #1877F2; color: var(--white); }
.share-btn.tw { border-color: #1DA1F2; color: #1DA1F2; }
.share-btn.tw:hover { background: #1DA1F2; color: var(--white); }
.share-btn.pt { border-color: #E60023; color: #E60023; }
.share-btn.pt:hover { background: #E60023; color: var(--white); }

.post-faq { background: var(--bg-light); border-radius: var(--r-lg); padding: 30px; margin: 36px 0; }
.post-faq h3 { margin-bottom: 22px; }

.related-posts { margin-top: 56px; padding-top: 36px; border-top: 2px solid var(--border); }
.related-posts h3 { margin-bottom: 22px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.related-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--ease);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card-img {
  height: 145px; background: var(--grad-brand); overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-body { padding: 14px; }
.related-card-body h4 { font-size: .875rem; line-height: 1.4; margin-bottom: 4px; }
.related-card-body h4 a { color: var(--dark); }
.related-card-body h4 a:hover { color: var(--navy); }
.related-card-body span { font-size: .72rem; color: var(--text-light); }

/* === 22. Contact Page === */
.page-hero {
  background: var(--grad-brand);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center; color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.78); max-width: 480px; margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info h3   { margin-bottom: 16px; }
.contact-info > p  { color: var(--text-light); margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.1rem; flex-shrink: 0;
}
.ci-text h4 { font-size: .9375rem; margin-bottom: 3px; }
.ci-text p  { font-size: .875rem; color: var(--text-light); margin-bottom: 0; }

.contact-form {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px; box-shadow: var(--shadow-xl); border: 1px solid var(--border);
}
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group  { margin-bottom: 18px; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; color: var(--dark); margin-bottom: 7px; }
.required    { color: #EF4444; margin-left: 2px; }
.form-ctrl {
  width: 100%; padding: 13px 17px;
  border-radius: var(--r); border: 2px solid var(--border);
  font-family: var(--font-b); font-size: .9375rem; color: var(--text);
  background: var(--white); outline: none; transition: var(--ease);
}
.form-ctrl:focus  { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(30,58,138,.1); }
.form-ctrl.error  { border-color: #EF4444; }
textarea.form-ctrl { resize: vertical; min-height: 130px; }
.field-error       { font-size: .78rem; color: #EF4444; margin-top: 5px; display: none; }
.field-error.show  { display: block; }
.form-success {
  background: #ECFDF5; border: 1px solid #6EE7B7;
  border-radius: var(--r); padding: 14px 18px;
  color: #065F46; font-size: .9rem; margin-top: 14px;
  display: none; align-items: center; gap: 10px;
}
.form-success.show { display: flex; }

/* === 23. Policy Pages === */
.policy-body { max-width: 780px; margin: 0 auto; padding: 60px 0; }
.policy-body h2 { font-size: 1.45rem; margin: 36px 0 14px; }
.policy-body h2:first-of-type { margin-top: 0; }
.policy-body p, .policy-body li { font-size: .9375rem; color: var(--text-light); line-height: 1.85; margin-bottom: 14px; }
.policy-body ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.policy-body strong { color: var(--dark); }

/* === 24. 404 Page === */
.not-found {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 40px 24px;
  background: var(--bg-light);
}
.not-found .num {
  font-size: 9rem; font-weight: 800; line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 12px; font-family: var(--font-h);
}
.not-found h2 { font-size: 2rem; margin-bottom: 14px; }
.not-found p  { color: var(--text-light); max-width: 480px; margin: 0 auto 28px; }

/* === 25. Scroll Reveal === */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal       { transform: translateY(38px); }
.reveal-left  { transform: translateX(-38px); }
.reveal-right { transform: translateX(38px);  }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* === 26. Accessibility === */
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.btn:focus-visible { outline-offset: 4px; }

/* === 27. Responsive === */
@media (max-width: 1200px) {
  .trust-grid       { grid-template-columns: repeat(3,1fr); }
  .ingredients-grid { grid-template-columns: repeat(2,1fr); }
  .love-grid        { grid-template-columns: repeat(2,1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 28px; }
  .blog-layout      { grid-template-columns: 1fr 270px; }
}
@media (max-width: 1024px) {
  .hero-float { display: none; }
  .post-layout  { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid  { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-img-col { order: -1; }
  .hero-product-img { max-height: 290px; }
  .hero-trust { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-sub  { max-width: 100%; }

  .why-grid { grid-template-columns: 1fr; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr; gap: 28px; }
  .steps-connector  { display: none; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .trust-grid       { grid-template-columns: repeat(2,1fr); }
  .love-grid        { grid-template-columns: 1fr 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.popular { transform: none; }

  .blog-layout   { grid-template-columns: 1fr; }
  .blog-sidebar  { position: static; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-cards    { grid-template-columns: 1fr; }
  .related-grid  { grid-template-columns: 1fr; }

  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 22px; }

  .sticky-mob-cta { display: block; }
  body { padding-bottom: 70px; }
  .section { padding: 65px 0; }
  .countdown-wrap { gap: 12px; }
  .cd-unit  { padding: 12px 14px; min-width: 65px; }
  .cd-num   { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .trust-grid       { grid-template-columns: repeat(2,1fr); }
  .love-grid        { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .pricing-grid     { max-width: 100%; }
  .contact-form     { padding: 24px; }
  .hero-trust       { flex-direction: column; align-items: center; }
  .not-found .num   { font-size: 6rem; }
}

.cta-product-img{
  display:block;
  max-width:320px;
  width:100%;
  height:auto;
  margin:30px auto;
}
