/* ============================================================
   VapoCept Premium — Main Stylesheet
   Author: VapoCept Research
   Version: 1.0
   ============================================================ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  --blue-deep:    #0E1B4A;
  --blue-mid:     #1E3A6E;
  --blue-light:   #2563EB;
  --green:        #059669;
  --green-light:  #10B981;
  --gold:         #D97706;
  --gold-light:   #F59E0B;
  --gold-pale:    #FEF3C7;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --dark:         #0A0A0A;
  --text:         #1E293B;
  --text-muted:   #64748B;
  --border:       #E2E8F0;
  --shadow-sm:    0 2px 8px rgba(14,27,74,.08);
  --shadow-md:    0 8px 32px rgba(14,27,74,.12);
  --shadow-lg:    0 20px 60px rgba(14,27,74,.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1200px;
}

/* ── 2. RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  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(--transition); }
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-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-deep);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.3rem); }
p  { color: var(--text-muted); font-size: 1.05rem; }

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; max-width: 640px; margin: 0 auto 3rem; }

/* ── 4. UTILITIES ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold-light); }
.text-green  { color: var(--green); }
.bg-dark-blue{ background: var(--blue-deep); }
.bg-off-white{ background: var(--off-white); }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.mt-auto { margin-top: auto; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── 5. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  border-radius: 50px; padding: .875rem 2rem; min-height: 44px;
  transition: var(--transition); white-space: nowrap; border: 2px solid transparent; text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); color: var(--white); box-shadow: 0 4px 20px rgba(5,150,105,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(5,150,105,.45); color: var(--white); }
.btn-secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--white); box-shadow: 0 4px 20px rgba(217,119,6,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(217,119,6,.5); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue-deep); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: .6rem 1.25rem; font-size: .9rem; }

/* ── 6. NAVIGATION ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; padding: 1.25rem 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: .75rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar-brand { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; color: var(--white); letter-spacing: -.02em; flex-shrink: 0; }
.navbar-brand span { color: var(--gold-light); }
.navbar.scrolled .navbar-brand { color: var(--blue-deep); }
.navbar-brand .brand-pill { display: inline-block; background: linear-gradient(135deg, var(--green), var(--green-light)); color: var(--white); font-size: .65rem; font-weight: 700; letter-spacing: .08em; padding: .15rem .5rem; border-radius: 50px; margin-left: .4rem; vertical-align: middle; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.85); transition: var(--transition); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--green); }
.nav-cta { padding: .6rem 1.5rem; font-size: .9rem; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; z-index: 100; background: transparent; border: none; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--blue-deep); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; background: var(--blue-deep); padding: 5rem 1.5rem 2rem; z-index: 999; transform: translateY(-100%); transition: transform .4s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow-lg); }
.mobile-menu.open { display: block; transform: translateY(0); }
.mobile-menu a { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--white); padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta { margin-top: 1.5rem; width: 100%; text-align: center; }

/* ── 7. HERO SECTION ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, #070f2b 0%, var(--blue-deep) 40%, #0e2451 70%, #152a60 100%);
  overflow: hidden; display: flex; align-items: center; padding: 7rem 0 5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(16,185,129,.12) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,158,11,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3); color: var(--green-light); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero-title { color: var(--white); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; margin-bottom: 1.25rem; line-height: 1.1; }
.hero-title .highlight { background: linear-gradient(135deg, var(--gold-light), #FCD34D); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; align-items: center; }
.hero-guarantee { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.7); font-size: .85rem; }
.hero-guarantee i { color: var(--gold-light); }
.trust-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.trust-badge { display: flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; padding: .4rem .9rem; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85); white-space: nowrap; }
.trust-badge i { color: var(--gold-light); font-size: 1rem; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-bottle { max-width: 420px; width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); animation: floatBottle 5s ease-in-out infinite; }
@keyframes floatBottle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.hero-glow { position: absolute; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(16,185,129,.25) 0%, transparent 70%); z-index: 0; filter: blur(40px); }
.hero-image-wrap img { position: relative; z-index: 1; }
.hero-stars { display: flex; align-items: center; gap: .35rem; margin-bottom: .5rem; }
.hero-stars i { color: var(--gold-light); font-size: 1rem; }
.hero-stars span { color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600; }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; }
.hero-scroll-hint span { display: block; color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.scroll-arrow { width: 28px; height: 28px; border-right: 2px solid rgba(255,255,255,.4); border-bottom: 2px solid rgba(255,255,255,.4); transform: rotate(45deg); margin: 0 auto; animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ── 8. BRAND BAR ─────────────────────────────────────────── */
.brand-bar { background: var(--off-white); padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.brand-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; align-items: center; }
.brand-bar-item { display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .88rem; color: var(--blue-deep); white-space: nowrap; }
.brand-bar-item i { color: var(--green); font-size: 1.1rem; }

/* ── 9-13. CONTENT SECTIONS ──────────────────────────────── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image-wrap { position: relative; }
.why-image-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why-badge-float { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--white); border-radius: var(--radius-md); padding: 1rem 1.25rem; box-shadow: var(--shadow-md); text-align: center; min-width: 120px; }
.why-badge-float .badge-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--green); line-height: 1; }
.why-badge-float .badge-text { font-size: .75rem; color: var(--text-muted); font-weight: 600; }
.why-points { margin-top: 2rem; }
.why-point { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.why-point:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.why-point-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.why-point-body h4 { font-size: 1rem; margin-bottom: .25rem; color: var(--blue-deep); }
.why-point-body p  { font-size: .9rem; margin: 0; }

.benefits-section { background: var(--off-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.benefit-card { background: var(--white); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); text-align: center; }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.benefit-icon { width: 68px; height: 68px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(5,150,105,.1), rgba(16,185,129,.2)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.6rem; color: var(--green); transition: var(--transition); }
.benefit-card:hover .benefit-icon { background: linear-gradient(135deg, var(--green), var(--green-light)); color: var(--white); transform: scale(1.1); }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--blue-deep); }
.benefit-card p  { font-size: .9rem; margin: 0; }

.ingredients-section { background: var(--blue-deep); position: relative; overflow: hidden; }
.ingredients-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(16,185,129,.08) 0%, transparent 60%); pointer-events: none; }
.ingredients-section .section-title { color: var(--white); }
.ingredients-section .section-subtitle { color: rgba(255,255,255,.65); }
.ingredients-section .section-label { color: var(--gold-light); }
.ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.ingredient-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); padding: 1.5rem; transition: var(--transition); text-align: center; }
.ingredient-card:hover { background: rgba(255,255,255,.1); border-color: rgba(16,185,129,.4); transform: translateY(-6px); }
.ingredient-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.ingredient-card h4 { color: var(--white); font-size: .95rem; margin-bottom: .5rem; }
.ingredient-card p  { color: rgba(255,255,255,.6); font-size: .82rem; margin: 0; }

.how-section { background: var(--white); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.how-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.how-step { display: flex; gap: 1.25rem; margin-bottom: 2rem; align-items: flex-start; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-light)); color: var(--white); font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 16px rgba(5,150,105,.35); }
.step-body h4 { color: var(--blue-deep); margin-bottom: .25rem; }
.step-body p  { font-size: .9rem; margin: 0; }

.love-section { background: var(--off-white); }
.love-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.love-card { background: var(--white); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); text-align: center; }
.love-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.love-card-icon { width: 60px; height: 60px; border-radius: var(--radius-md); background: linear-gradient(135deg, #EFF6FF, #DBEAFE); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--blue-mid); }
.love-card h3 { font-size: 1rem; color: var(--blue-deep); margin-bottom: .5rem; }
.love-card p  { font-size: .88rem; margin: 0; }

/* ── 14-16. TESTIMONIALS / FAQ / PRICING ─────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--off-white); border-radius: var(--radius-md); padding: 1.75rem; border: 1px solid var(--border); transition: var(--transition); position: relative; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 1rem; right: 1.5rem; font-size: 4rem; color: var(--green-light); opacity: .3; line-height: 1; font-family: Georgia, serif; }
.testimonial-stars { margin-bottom: .75rem; }
.testimonial-stars i { color: var(--gold-light); font-size: .9rem; }
.testimonial-text { font-size: .93rem; color: var(--text); margin-bottom: 1.25rem; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.author-info strong { display: block; font-size: .9rem; color: var(--blue-deep); }
.author-info span   { font-size: .78rem; color: var(--text-muted); }
.verified-badge { display: inline-flex; align-items: center; gap: .25rem; font-size: .7rem; color: var(--green); font-weight: 600; margin-top: .2rem; }
.verified-badge i { font-size: .75rem; }

.faq-section { background: var(--off-white); }
.faq-container { max-width: 760px; margin: 3rem auto 0; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 1rem; overflow: hidden; transition: var(--transition); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; background: transparent; text-align: left; font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--blue-deep); gap: 1rem; cursor: pointer; border: none; min-height: 44px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); color: var(--green); font-size: .85rem; }
.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: .93rem; color: var(--text-muted); line-height: 1.7; }

.pricing-section { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%); position: relative; overflow: hidden; }
.pricing-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(5,150,105,.05) 0%, transparent 60%); pointer-events: none; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; align-items: stretch; }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 2px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; text-align: center; position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--green); box-shadow: 0 8px 40px rgba(5,150,105,.2); }
.pricing-card.best-value { border-color: var(--gold); }
.pricing-badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 1rem; min-height: 2rem; }
.price-badge { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 50px; }
.badge-popular { background: var(--green); color: var(--white); }
.badge-shipping { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--gold-light); }
.badge-value { background: var(--blue-deep); color: var(--white); }
.badge-savings { background: rgba(5,150,105,.1); color: var(--green); border: 1px solid rgba(5,150,105,.2); }
.pricing-image-wrap { height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; overflow: hidden; }
.pricing-image-wrap img { max-height: 200px; width: auto; object-fit: contain; transition: transform .4s ease; }
.pricing-card:hover .pricing-image-wrap img { transform: scale(1.06); }
.pricing-name { font-size: .85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.pricing-price { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; color: var(--blue-deep); line-height: 1; margin-bottom: .25rem; }
.pricing-price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-price sub { font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.pricing-per { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.pricing-features { text-align: left; margin-bottom: 1.5rem; }
.pricing-features li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--text-muted); padding: .35rem 0; }
.pricing-features li i { color: var(--green); flex-shrink: 0; }
.pricing-cta { width: 100%; margin-top: auto; }
.pricing-guarantee { font-size: .75rem; color: var(--text-muted); margin-top: .75rem; display: flex; align-items: center; justify-content: center; gap: .3rem; }
.pricing-guarantee i { color: var(--green); }

/* ── 17-18. CTA / FOOTER ─────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, var(--blue-deep) 0%, #0e2451 60%, #1a3560 100%); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(16,185,129,.12) 0%, transparent 60%); pointer-events: none; }
.final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 2rem; font-size: 1.1rem; }
.final-cta-badges { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.cta-badge { display: flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 600; padding: .4rem .9rem; border-radius: 50px; }
.cta-badge i { color: var(--gold-light); }

.site-footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand-name { font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: var(--white); margin-bottom: 1rem; }
.footer-brand-name span { color: var(--gold-light); }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-secure { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--green-light); font-weight: 600; }
.footer-heading { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .95rem; margin-bottom: 1.25rem; padding-bottom: .5rem; border-bottom: 2px solid var(--green); display: inline-block; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: 1rem; font-size: .88rem; }
.footer-contact-item i { color: var(--gold-light); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--green-light); }
.footer-bottom { padding: 2rem 0; text-align: center; }
.footer-bottom-inner { max-width: 800px; margin: 0 auto; }
.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 1rem; }
.footer-copyright { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.25rem; margin-bottom: 1.25rem; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--green-light); }

/* ── 19. STICKY MOBILE CTA ───────────────────────────────── */
.sticky-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: .875rem 1.25rem; box-shadow: 0 -4px 20px rgba(0,0,0,.12); z-index: 998; display: none; }
.sticky-mobile-cta a { display: block; text-align: center; width: 100%; padding: .875rem; background: linear-gradient(135deg, var(--green), var(--green-light)); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1rem; border-radius: 50px; box-shadow: 0 4px 16px rgba(5,150,105,.4); }

/* ── 20. SCROLL REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── 21-22. BLOG STYLES ──────────────────────────────────── */
.blog-page-hero { background: linear-gradient(135deg, var(--blue-deep) 0%, #0e2451 100%); padding: 8rem 0 4rem; text-align: center; }
.blog-page-hero h1 { color: var(--white); }
.blog-page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-top: .75rem; }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 4rem 0; }
.blog-featured { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 3rem; box-shadow: var(--shadow-md); }
.blog-featured img { width: 100%; height: 420px; object-fit: cover; display: block; }
.blog-featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.blog-featured-overlay h2 { color: var(--white); font-size: 1.8rem; margin-bottom: .5rem; }
.blog-featured-overlay a.read-more { color: var(--green-light); font-weight: 700; font-size: .9rem; }
.blog-category-tag { display: inline-block; background: var(--green); color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 50px; margin-bottom: .75rem; }
.blog-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .8rem; color: var(--text-muted); margin-bottom: .75rem; align-items: center; }
.blog-meta i { color: var(--green); }
.blog-meta-dark { color: rgba(255,255,255,.6); }
.blog-meta-dark i { color: var(--green-light); }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); box-shadow: var(--shadow-sm); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-image { height: 200px; overflow: hidden; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); display: flex; align-items: center; justify-content: center; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; }
.blog-card-body h3 { font-size: 1rem; color: var(--blue-deep); margin-bottom: .5rem; line-height: 1.4; }
.blog-card-body p  { font-size: .85rem; margin-bottom: 1rem; }
.read-more-link { font-size: .85rem; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: .35rem; }
.read-more-link:hover { color: var(--blue-deep); }
.blog-search { margin-bottom: 2rem; }
.blog-search input { width: 100%; padding: .875rem 1rem; border: 2px solid var(--border); border-radius: var(--radius-md); font-size: .95rem; transition: var(--transition); outline: none; background: var(--white); }
.blog-search input:focus { border-color: var(--green); }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.sidebar-widget h4 { font-size: .95rem; color: var(--blue-deep); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--green); }
.sidebar-post { display: flex; gap: .75rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-post img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.sidebar-post-body a { font-size: .83rem; color: var(--blue-deep); font-weight: 600; line-height: 1.3; display: block; margin-bottom: .25rem; }
.sidebar-post-body span { font-size: .75rem; color: var(--text-muted); }
.categories-list li { margin-bottom: .5rem; }
.categories-list a { display: flex; align-items: center; justify-content: space-between; font-size: .88rem; color: var(--text-muted); padding: .35rem 0; border-bottom: 1px solid var(--border); transition: var(--transition); }
.categories-list a:hover { color: var(--green); padding-left: 4px; }
.categories-list a span { background: var(--off-white); padding: .1rem .4rem; border-radius: 50px; font-size: .75rem; }
.sidebar-cta { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; color: var(--white); margin-bottom: 1.5rem; }
.sidebar-cta h4 { color: var(--white); margin-bottom: .5rem; }
.sidebar-cta p  { color: rgba(255,255,255,.7); font-size: .82rem; margin-bottom: 1rem; }
.sidebar-cta .btn { width: 100%; }
.blog-pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; }
.blog-pagination a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.blog-pagination a:hover, .blog-pagination a.active { background: var(--green); color: var(--white); border-color: var(--green); }

.blog-single-hero { background: linear-gradient(135deg, var(--blue-deep), #0e2451); padding: 8rem 0 3rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .6rem; }
.blog-post-title { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.8rem); margin-bottom: 1.5rem; max-width: 800px; }
.blog-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 4rem 0; }
.blog-hero-img { width: 100%; height: auto; border-radius: var(--radius-lg); margin-bottom: 2.5rem; box-shadow: var(--shadow-md); }
.blog-post-body h2 { font-size: 1.6rem; color: var(--blue-deep); margin: 2rem 0 .75rem; }
.blog-post-body h3 { font-size: 1.25rem; color: var(--blue-mid); margin: 1.5rem 0 .5rem; }
.blog-post-body p { font-size: .98rem; color: var(--text); line-height: 1.8; margin-bottom: 1.25rem; }
.blog-post-body ul, .blog-post-body ol { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.blog-post-body ol { list-style: decimal; }
.blog-post-body li { font-size: .98rem; color: var(--text); line-height: 1.7; margin-bottom: .5rem; }
.blog-post-body strong { color: var(--blue-deep); }
.toc-widget { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); border: 1px solid #BFDBFE; border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 2rem; }
.toc-widget h4 { color: var(--blue-deep); font-size: 1rem; margin-bottom: 1rem; }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: .5rem; }
.toc-list a { font-size: .88rem; color: var(--blue-mid); font-weight: 600; display: flex; align-items: center; gap: .4rem; }
.toc-list a:hover { color: var(--green); }
.toc-list a::before { content: '\2192'; font-size: .8rem; color: var(--green); }
.blog-cta-banner { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin: 3rem 0; }
.blog-cta-banner h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.4rem; }
.blog-cta-banner p  { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.25rem; }
.blog-share { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1.5rem; }
.blog-share h5 { font-size: .9rem; color: var(--text-muted); margin-bottom: .75rem; }
.share-buttons { display: flex; flex-wrap: wrap; gap: .5rem; }
.share-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem; border-radius: 50px; font-size: .82rem; font-weight: 700; transition: var(--transition); }
.share-btn-fb { background: #1877F2; color: var(--white); }
.share-btn-tw { background: #1DA1F2; color: var(--white); }
.share-btn-wa { background: #25D366; color: var(--white); }
.share-btn:hover { opacity: .88; transform: translateY(-2px); }
.blog-faq-section { margin-top: 2.5rem; }
.related-posts { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.related-posts h3 { color: var(--blue-deep); margin-bottom: 1.5rem; font-size: 1.4rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-card { background: var(--off-white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card-img { height: 140px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-body { padding: 1rem; }
.related-card-body h4 { font-size: .88rem; color: var(--blue-deep); line-height: 1.4; margin-bottom: .5rem; }
.related-card-body a { font-size: .8rem; color: var(--green); font-weight: 600; }

/* ── 23-25. POLICY / CONTACT / 404 ───────────────────────── */
.policy-hero { background: linear-gradient(135deg, var(--blue-deep), #0e2451); padding: 8rem 0 4rem; text-align: center; }
.policy-hero h1 { color: var(--white); }
.policy-hero p  { color: rgba(255,255,255,.7); margin-top: .75rem; }
.policy-content { max-width: 800px; margin: 4rem auto; padding: 0 1.25rem; }
.policy-content h2 { font-size: 1.4rem; color: var(--blue-deep); margin: 2rem 0 .75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.policy-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.policy-content p  { font-size: .96rem; color: var(--text); line-height: 1.8; margin-bottom: 1rem; }
.policy-content ul { list-style: disc; margin: .75rem 0 1.25rem 1.5rem; }
.policy-content li { font-size: .96rem; color: var(--text); line-height: 1.7; margin-bottom: .4rem; }
.policy-content a  { color: var(--green); font-weight: 600; }
.policy-content a:hover { text-decoration: underline; }
.policy-updated { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-bottom: 2rem; font-size: .85rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.policy-updated i { color: var(--green); }

.contact-hero { background: linear-gradient(135deg, var(--blue-deep), #0e2451); padding: 8rem 0 4rem; text-align: center; }
.contact-hero h1 { color: var(--white); }
.contact-hero p  { color: rgba(255,255,255,.7); margin-top: .75rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 5rem 0; }
.contact-info-card { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(5,150,105,.1), rgba(16,185,129,.2)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1.2rem; flex-shrink: 0; }
.contact-info-body h4 { color: var(--blue-deep); font-size: 1rem; margin-bottom: .25rem; }
.contact-info-body p, .contact-info-body a { font-size: .92rem; color: var(--text-muted); }
.contact-info-body a:hover { color: var(--green); }
.contact-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-box h3 { color: var(--blue-deep); margin-bottom: .75rem; }
.contact-box p { margin-bottom: 1.5rem; }

.page-404 { min-height: 100vh; background: linear-gradient(135deg, var(--blue-deep), #0e2451); display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 1.25rem; }
.page-404 .num-404 { font-family: var(--font-head); font-size: clamp(6rem, 20vw, 12rem); font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-404 h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 1rem; }
.page-404 p  { color: rgba(255,255,255,.7); max-width: 420px; margin: 0 auto 2rem; }

/* ── 26. RESPONSIVE MEDIA QUERIES ────────────────────────── */
@media (min-width: 1400px) { :root { --max-w: 1320px; } }
@media (min-width: 1200px) and (max-width: 1399px) { :root { --max-w: 1140px; } }
@media (max-width: 1199px) { .ingredients-grid { grid-template-columns: repeat(3, 1fr); } .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .blog-post-layout { grid-template-columns: 1fr 280px; } }
@media (max-width: 991px) {
  .nav-links { display: none; } .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; } .hero-image-wrap { order: 1; }
  .hero-cta-group { justify-content: center; } .trust-row { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .why-grid { grid-template-columns: 1fr; } .why-image-wrap { order: 2; }
  .how-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .love-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 3rem auto 0; }
  .blog-layout { grid-template-columns: 1fr; } .blog-sidebar { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; } .blog-sidebar-single { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .why-badge-float { position: static; margin-top: 1rem; display: inline-flex; gap: .5rem; align-items: center; }
}
@media (max-width: 767px) {
  .section-pad { padding: 3.5rem 0; }
  .benefits-grid { grid-template-columns: 1fr; } .love-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: block; } body { padding-bottom: 72px; }
  .hero { min-height: auto; padding: 6rem 0 4rem; } .hero-bottle { max-width: 280px; }
  .final-cta { padding: 4rem 0; } .related-grid { grid-template-columns: 1fr; }
  .blog-featured img { height: 260px; }
}
@media (max-width: 575px) {
  h1 { font-size: 1.9rem; } h2 { font-size: 1.6rem; } .hero-title { font-size: 1.9rem; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { text-align: center; width: 100%; }
  .blog-featured img { height: 220px; }
  .trust-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 479px) {
  .container { padding: 0 1rem; } .pricing-card { padding: 1.5rem 1.25rem; }
  .pricing-image-wrap { height: 160px; } .pricing-image-wrap img { max-height: 160px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .brand-bar-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
@media (max-width: 320px) { h1 { font-size: 1.6rem; } .btn-lg { padding: .875rem 1.5rem; font-size: 1rem; } .hero-bottle { max-width: 220px; } }

/* ── 27. PRINT ───────────────────────────────────────────── */
@media print { .navbar, .sticky-mobile-cta, .mobile-menu { display: none; } body { padding-bottom: 0; } }

/* ── 28. ACCESSIBILITY ───────────────────────────────────── */
:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; border-radius: 4px; }