/* ============================================================
   SodaSlim® — Main Stylesheet
   Site: https://sodasliem.us/
   Version: 1.0
   ============================================================ */

/* ============================
   1. CSS Custom Properties
   ============================ */
:root {
  /* Brand Colors */
  --green:         #10b981;
  --green-dark:    #059669;
  --green-darker:  #047857;
  --green-light:   #d1fae5;
  --green-xlight:  #ecfdf5;
  --blue:          #1e3a5f;
  --blue-dark:     #0f2443;
  --blue-light:    #eff6ff;
  --gold:          #f59e0b;
  --gold-dark:     #d97706;
  --gold-light:    #fef3c7;

  /* Neutrals */
  --dark:          #0f172a;
  --gray-900:      #111827;
  --gray-800:      #1f2937;
  --gray-700:      #374151;
  --gray-600:      #4b5563;
  --gray-500:      #6b7280;
  --gray-400:      #9ca3af;
  --gray-300:      #d1d5db;
  --gray-200:      #e5e7eb;
  --gray-100:      #f3f4f6;
  --gray-50:       #f9fafb;
  --white:         #ffffff;
  --light:         #f8fafc;

  /* Typography */
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:    100px;
  --section-py-sm: 60px;

  /* Radii */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill:50px;

  /* Shadows */
  --shadow-xs:    0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:    0 2px 10px rgba(0,0,0,.08);
  --shadow-md:    0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.13);
  --shadow-xl:    0 32px 80px rgba(0,0,0,.17);
  --shadow-green: 0 8px 32px rgba(16,185,129,.28);
  --shadow-gold:  0 8px 32px rgba(245,158,11,.28);

  /* Transitions */
  --t-fast:  all .2s ease;
  --t:       all .3s ease;
  --t-slow:  all .6s ease;
}

/* ============================
   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);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--t);
}

ul { list-style: none; padding: 0; margin: 0; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================
   3. Typography
   ============================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw,   3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); }
h4 { font-size: clamp(1.1rem, 2vw,   1.35rem); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}

.section-title  { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1.2rem; }
.section-sub    { font-size: 1.1rem; color: var(--gray-600); max-width: 620px; margin: 0 auto 3rem; }
.text-center    { text-align: center; }
.text-green     { color: var(--green) !important; }
.text-gold      { color: var(--gold) !important; }
.text-white     { color: var(--white) !important; }
.text-muted-w   { color: rgba(255,255,255,.72) !important; }

/* ============================
   4. Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-darker));
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(16,185,129,.42);
  color: var(--white);
}

/* Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), #b45309);
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(245,158,11,.42);
  color: var(--white);
}

/* Outline white */
.btn-outline-w {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-w:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

/* Sizes */
.btn-lg { padding: 18px 50px; font-size: 1.1rem; }
.btn-sm { padding: 10px 24px; font-size: .875rem; }

/* ============================
   5. Navigation
   ============================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
  padding: 16px 0;
  z-index: 1000;
  transition: var(--t);
}
#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.5px;
}

.navbar-nav .nav-link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: 8px 16px !important;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green) !important;
  background: var(--green-light);
}

.btn-nav { padding: 10px 26px; font-size: .9rem; }

.navbar-toggler        { border: none; padding: 4px; }
.navbar-toggler:focus  { box-shadow: none; outline: none; }
.navbar-toggler-icon   { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,.65%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 16px;
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
  }
  .btn-nav { width: 100%; margin-top: 8px; }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -50px; left: 0;
  background: var(--green);
  color: var(--white);
  padding: 10px 18px;
  font-weight: 600;
  font-size: .9rem;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ============================
   6. Mobile Sticky CTA
   ============================ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  padding: 12px 20px;
  z-index: 998;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,.22);
}
.mobile-cta .btn { width: 100%; }

@media (max-width: 767.98px) {
  .mobile-cta { display: block; }
  body        { padding-bottom: 68px; }
}

/* ============================
   7. Hero Section
   ============================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 55%, #1a4a7a 100%);
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(16,185,129,.13) 0%, transparent 55%),
    radial-gradient(ellipse at 18% 80%, rgba(245,158,11,.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 20px;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-eyebrow i { color: var(--gold); }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 1.4rem;
}
.hero-title .hl {
  background: linear-gradient(135deg, var(--green), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  line-height: 1.72;
  margin-bottom: 2.4rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
}
.hero-badge-item i { color: var(--green); font-size: 1rem; }

.hero-img-wrap {
  position: relative;
  text-align: center;
}
.hero-img-wrap img {
  max-height: 500px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

/* ============================
   8. Stats Bar
   ============================ */
.stats-bar {
  background: var(--white);
  padding: 44px 0;
  box-shadow: var(--shadow-md);
}
.stat-item   { text-align: center; padding: 0 24px; }
.stat-num    { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--green); display: block; line-height: 1.1; }
.stat-lbl    { font-size: .82rem; color: var(--gray-600); font-weight: 500; }
.stat-div    { width: 1px; height: 60px; background: var(--gray-200); margin: 0 auto; }

/* ============================
   9. Why SodaSlim Section
   ============================ */
.why-section { padding: var(--section-py) 0; background: var(--light); }

.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  height: 100%;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 64px; height: 64px;
  background: var(--green-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--green);
  margin-bottom: 1.5rem;
  transition: var(--t);
}
.why-card:hover .why-icon { background: var(--green); color: var(--white); transform: scale(1.08); }
.why-card h4  { margin-bottom: .65rem; }
.why-card p   { font-size: .95rem; color: var(--gray-600); margin: 0; }

/* ============================
   10. Benefits Section
   ============================ */
.benefits-section { padding: var(--section-py) 0; background: var(--white); }

.benefit-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: var(--t);
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
  background: var(--white);
}

.benefit-icon {
  width: 82px; height: 82px;
  background: linear-gradient(135deg, var(--green-light), #a7f3d0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem; color: var(--green-dark);
  transition: var(--t);
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}
.benefit-card h4 { font-size: 1.1rem; margin-bottom: .65rem; }
.benefit-card p  { font-size: .88rem; color: var(--gray-600); margin: 0; }

/* ============================
   11. Ingredients Section
   ============================ */
.ingredients-section {
  padding: var(--section-py) 0;
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  position: relative;
  overflow: hidden;
}
.ingredients-section::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(16,185,129,.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ingredients-section .section-label { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.ingredients-section .section-title { color: var(--white); }
.ingredients-section .section-sub   { color: rgba(255,255,255,.72); }

.ingredient-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  backdrop-filter: blur(8px);
  transition: var(--t);
  height: 100%;
}
.ingredient-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(16,185,129,.45);
  transform: translateY(-6px);
}
.ingredient-icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.ingredient-card h5 { color: var(--white); font-size: 1rem; margin-bottom: .45rem; font-family: var(--font-body); font-weight: 700; }
.ingredient-card p  { font-size: .85rem; color: rgba(255,255,255,.68); margin: 0; }

/* ============================
   12. How It Works
   ============================ */
.how-section { padding: var(--section-py) 0; background: var(--light); }

.step-card { text-align: center; padding: 36px 24px; position: relative; }
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-green);
}
.step-connector {
  position: absolute;
  top: 72px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  height: 2px;
  background: linear-gradient(to right, var(--green), transparent);
  display: none;
}
@media (min-width: 768px) { .step-connector { display: block; } }
.step-card:last-child .step-connector { display: none; }
.step-card h4 { font-size: 1.2rem; margin-bottom: .65rem; }
.step-card p  { font-size: .9rem; color: var(--gray-600); max-width: 260px; margin: 0 auto; }

/* ============================
   13. Love Section
   ============================ */
.love-section { padding: var(--section-py) 0; background: var(--white); }

.love-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  transition: var(--t);
  height: 100%;
}
.love-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-light); }
.love-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--green-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--green);
  transition: var(--t);
}
.love-item:hover .love-icon { background: var(--green); color: var(--white); }
.love-item h5 { font-size: .975rem; margin-bottom: .3rem; font-family: var(--font-body); font-weight: 700; }
.love-item p  { font-size: .86rem; color: var(--gray-600); margin: 0; }

/* ============================
   14. Testimonials
   ============================ */
.testimonials-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-xlight), #d1fae5 50%, var(--green-xlight));
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  transition: var(--t);
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--green-light);
  position: absolute;
  top: -8px; left: 24px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.t-stars  { color: var(--gold); font-size: 1rem; margin-bottom: .9rem; }
.t-text   { font-size: .975rem; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }

.t-author         { display: flex; align-items: center; gap: 14px; }
.t-avatar         { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
                    background: linear-gradient(135deg, var(--green), var(--blue));
                    display: flex; align-items: center; justify-content: center;
                    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.t-name           { font-weight: 700; font-size: .92rem; color: var(--dark); }
.t-location       { font-size: .78rem; color: var(--gray-500); }
.t-verified       { display: flex; align-items: center; gap: 4px; font-size: .73rem; color: var(--green); font-weight: 600; }

/* ============================
   15. FAQ Section
   ============================ */
.faq-section { padding: var(--section-py) 0; background: var(--white); }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--t);
}
.faq-item.active { border-color: var(--green); box-shadow: var(--shadow-green); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  background: var(--white);
  transition: var(--t);
  user-select: none;
}
.faq-q:hover, .faq-item.active .faq-q { background: var(--green-light); }

.faq-q h6 { font-size: .975rem; font-weight: 600; color: var(--dark); margin: 0; font-family: var(--font-body); }

.faq-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .85rem;
  transition: var(--t);
}
.faq-item.active .faq-toggle { background: var(--green); color: var(--white); transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.75;
  background: var(--green-light);
}
.faq-a.open { display: block; }

/* ============================
   16. Pricing Section
   ============================ */
.pricing-section {
  padding: var(--section-py) 0;
  background: linear-gradient(145deg, var(--dark) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pricing-section .section-label { background: rgba(16,185,129,.14); color: var(--green); border: 1px solid rgba(16,185,129,.28); }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-sub   { color: rgba(255,255,255,.68); }

.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { background: rgba(255,255,255,.1); transform: translateY(-10px); border-color: rgba(16,185,129,.4); }
.pricing-card.popular { background: rgba(16,185,129,.1); border-color: var(--green); transform: scale(1.03); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-10px); }

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-badge.green-badge { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--white); }

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(16,185,129,.28);
  color: var(--green);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}

.pricing-img {
  max-height: 210px;
  width: auto;
  margin: 18px auto 22px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.32));
  transition: var(--t);
}
.pricing-card:hover .pricing-img { transform: scale(1.06); }

.pricing-bottles { color: rgba(255,255,255,.68); font-size: .88rem; font-weight: 500; margin-bottom: 6px; }

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 4px;
}
.pricing-price .cur    { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.pricing-price .amt    { font-family: var(--font-heading); font-size: 3.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.pricing-price .per    { font-size: .95rem; color: rgba(255,255,255,.55); }

.pricing-orig { font-size: .85rem; color: rgba(255,255,255,.45); text-decoration: line-through; margin-bottom: 18px; }

.pricing-features { text-align: left; margin: 16px 0; flex: 1; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.8);
  padding: 5px 0;
}
.pricing-features li i { color: var(--green); flex-shrink: 0; }

.pricing-btn { width: 100%; margin-top: auto; padding: 16px 32px; font-size: 1rem; }

/* ============================
   17. Final CTA Section
   ============================ */
.final-cta {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-darker), var(--green), #34d399);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.045'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.final-cta .section-title { color: var(--white); position: relative; }
.final-cta p { color: rgba(255,255,255,.85); position: relative; }

.cta-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 2rem 0;
  position: relative;
}
.cta-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 600;
}
.cta-badge-item i { font-size: 1.15rem; }

/* ============================
   18. Footer
   ============================ */
.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .9rem;
}

.footer-desc { font-size: .88rem; color: rgba(255,255,255,.52); line-height: 1.72; margin-bottom: 1.4rem; }

.footer-head { font-family: var(--font-body); font-size: .76rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 1.2rem; }

.footer-links li   { margin-bottom: 9px; }
.footer-links a    { font-size: .88rem; color: rgba(255,255,255,.62); transition: var(--t); display: inline-block; }
.footer-links a:hover { color: var(--green); padding-left: 4px; }

.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; font-size: .88rem; color: rgba(255,255,255,.62); }
.footer-contact-row i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,.62); }
.footer-contact-row a:hover { color: var(--green); }

.footer-secure-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.secure-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  padding: 5px 12px;
  border-radius: 6px;
}
.secure-badge i { color: var(--green); }

.footer-divider { border-color: rgba(255,255,255,.07); margin: 38px 0 28px; }

.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.7; margin-bottom: 8px; }
.footer-disclaimer strong { color: rgba(255,255,255,.55); }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom { padding-bottom: 40px; }

/* ============================
   19. Blog — Listing
   ============================ */
.blog-hero {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  padding: 148px 0 80px;
  text-align: center;
}
.blog-hero h1  { color: var(--white); margin-bottom: .9rem; }
.blog-hero p   { color: rgba(255,255,255,.72); font-size: 1.1rem; }

.search-bar {
  max-width: 480px;
  margin: 2rem auto 0;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 16px 56px 16px 24px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .95rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--t);
  backdrop-filter: blur(8px);
}
.search-bar input::placeholder { color: rgba(255,255,255,.52); }
.search-bar input:focus { border-color: var(--green); background: rgba(255,255,255,.14); }
.search-bar button {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
}
.search-bar button:hover { background: var(--green-dark); }

.blog-section { padding: 80px 0; background: var(--light); }

.cat-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-pill {
  padding: 8px 22px;
  border-radius: var(--r-pill);
  font-size: .83rem;
  font-weight: 600;
  border: 2px solid var(--gray-300);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--t);
}
.cat-pill:hover, .cat-pill.active { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* Featured Post */
.featured-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .featured-card { flex-direction: row; } }
.featured-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.featured-img {
  background: linear-gradient(135deg, var(--blue-dark), var(--green));
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
@media (min-width: 768px) { .featured-img { width: 44%; flex-shrink: 0; min-height: auto; } }

.featured-img .feat-icon { font-size: 5rem; color: rgba(255,255,255,.18); }
.featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }

.cat-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: .9rem;
}

.post-meta {
  display: flex; align-items: center;
  gap: 18px; flex-wrap: wrap;
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: .9rem;
}
.post-meta i { color: var(--green); margin-right: 4px; }

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.blog-card-img {
  height: 196px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-card-img i { font-size: 3.5rem; color: rgba(255,255,255,.16); }

.blog-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .65rem;
  font-family: var(--font-heading);
  line-height: 1.35;
  transition: var(--t);
}
.blog-card:hover .blog-card-title { color: var(--green); }

.blog-card-excerpt { font-size: .875rem; color: var(--gray-600); line-height: 1.65; flex: 1; margin-bottom: 1.4rem; }

.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600;
  color: var(--green);
  margin-top: auto;
  transition: var(--t);
}
.read-more:hover { color: var(--green-dark); gap: 10px; }

/* Sidebar */
.sidebar { position: sticky; top: 96px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-size: .95rem; font-weight: 700;
  color: var(--dark); margin-bottom: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
  font-family: var(--font-body);
}

.sidebar-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); transition: var(--t); }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { padding-left: 4px; }
.sidebar-post-img {
  width: 58px; height: 58px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: rgba(255,255,255,.4);
}
.sidebar-post-title { font-size: .84rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; transition: var(--t); line-height: 1.4; }
.sidebar-post:hover .sidebar-post-title { color: var(--green); }
.sidebar-post-date  { font-size: .73rem; color: var(--gray-500); }

/* Blog CTA Banner */
.blog-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--blue));
  border-radius: var(--r-xl);
  padding: 44px 36px;
  text-align: center;
  color: var(--white);
  margin: 60px 0;
}
.blog-cta h3 { color: var(--white); margin-bottom: 1rem; }
.blog-cta p  { color: rgba(255,255,255,.8); margin-bottom: 1.4rem; }

/* Pagination */
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.page-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-weight: 600;
  font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ============================
   20. Blog — Single Post
   ============================ */
.post-hero {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  padding: 148px 0 60px;
}
.post-hero h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.7rem); }

.breadcrumb-nav { padding: 10px 0; }
.breadcrumb     { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.breadcrumb li  { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: rgba(255,255,255,.6); }
.breadcrumb li:not(:last-child)::after { content: '›'; }
.breadcrumb a   { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--green); }

.post-content { padding: 60px 0 80px; }

.post-body {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 60px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 767.98px) { .post-body { padding: 28px 18px; } }

.post-body h2  { font-size: clamp(1.35rem, 3vw, 1.65rem); margin: 2.5rem 0 .9rem; color: var(--dark); padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.post-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.post-body h3  { font-size: clamp(1.15rem, 2.5vw, 1.35rem); margin: 1.8rem 0 .7rem; color: var(--dark); }
.post-body p   { font-size: 1rem; line-height: 1.82; color: var(--gray-700); margin-bottom: 1.2rem; }
.post-body ul, .post-body ol  { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-body ul  { list-style: disc; }
.post-body ol  { list-style: decimal; }
.post-body li  { margin-bottom: .45rem; font-size: 1rem; line-height: 1.72; color: var(--gray-700); }
.post-body strong { color: var(--dark); font-weight: 600; }

.toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin: 2rem 0;
}
.toc h6    { font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-500); margin-bottom: .9rem; font-family: var(--font-body); }
.toc ol    { padding-left: 1.2rem; margin: 0; list-style: decimal; }
.toc li    { margin-bottom: 5px; font-size: .88rem; }
.toc a     { color: var(--blue); font-weight: 500; }
.toc a:hover { color: var(--green); }

.post-faq h2 { border-top: none !important; padding-top: 0 !important; margin-top: 2.5rem !important; }

.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.share-label { font-weight: 700; font-size: .9rem; color: var(--dark); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 600;
  border: 2px solid;
  cursor: pointer;
  transition: var(--t);
  background: transparent;
}
.share-btn.fb  { color: #1877f2; border-color: #1877f2; }
.share-btn.fb:hover  { background: #1877f2; color: var(--white); }
.share-btn.tw  { color: #1da1f2; border-color: #1da1f2; }
.share-btn.tw:hover  { background: #1da1f2; color: var(--white); }
.share-btn.pin { color: #e60023; border-color: #e60023; }
.share-btn.pin:hover { background: #e60023; color: var(--white); }

/* Inline post CTA */
.post-cta-inline {
  background: linear-gradient(135deg, var(--green-dark), var(--blue));
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  margin: 2.5rem 0;
  color: var(--white);
}
.post-cta-inline h4 { color: var(--white); margin-bottom: .75rem; font-size: 1.4rem; }
.post-cta-inline p  { color: rgba(255,255,255,.82); margin-bottom: 1.4rem; }

/* ============================
   21. Policy Pages
   ============================ */
.policy-hero {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  padding: 148px 0 60px;
  text-align: center;
}
.policy-hero h1 { color: var(--white); }
.policy-hero p  { color: rgba(255,255,255,.7); }

.policy-body {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 60px;
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 767.98px) { .policy-body { padding: 28px 18px; } }

.policy-body h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 2.4rem 0 .9rem;
  color: var(--dark);
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.policy-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy-body p  { font-size: .96rem; line-height: 1.82; color: var(--gray-700); margin-bottom: .9rem; }
.policy-body ul { padding-left: 1.4rem; margin-bottom: 1.4rem; list-style: disc; }
.policy-body li { font-size: .96rem; line-height: 1.72; color: var(--gray-700); margin-bottom: .4rem; }

/* ============================
   22. Contact Page
   ============================ */
.contact-section { padding: 80px 0; background: var(--light); }

.contact-form-card, .contact-info-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 50px 44px;
  box-shadow: var(--shadow-md);
  height: 100%;
}
@media (max-width: 767.98px) {
  .contact-form-card, .contact-info-card { padding: 28px 18px; }
}

.contact-info-item {
  display: flex; align-items: flex-start;
  gap: 16px; padding: 18px;
  background: var(--gray-50);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  border: 1px solid var(--gray-100);
  transition: var(--t);
}
.contact-info-item:hover { background: var(--green-light); border-color: var(--green-light); transform: translateX(4px); }
.contact-info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--green-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green);
  transition: var(--t);
}
.contact-info-item:hover .contact-info-icon { background: var(--green); color: var(--white); }
.contact-info-item h6 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 3px; font-family: var(--font-body); }
.contact-info-item p  { font-size: .92rem; color: var(--dark); margin: 0; }
.contact-info-item a  { color: var(--dark); }
.contact-info-item a:hover { color: var(--green); }

/* Form */
.form-group  { margin-bottom: 20px; }
.form-label  { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-ctrl {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--t);
  outline: none;
}
.form-ctrl:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(16,185,129,.1); }
.form-ctrl::placeholder { color: var(--gray-400); }
textarea.form-ctrl { resize: vertical; min-height: 140px; }

select.form-ctrl {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236b7280' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

/* ============================
   23. 404 Page
   ============================ */
.page-404 {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  text-align: center;
  padding: 40px 20px;
}
.error-big  { font-size: clamp(5rem, 18vw, 11rem); color: rgba(255,255,255,.1); font-weight: 900; line-height: 1; font-family: var(--font-heading); }
.error-content h2 { color: var(--white); margin-bottom: .9rem; }
.error-content p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

/* ============================
   24. Reveal Animations
   ============================ */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity .72s ease, transform .72s ease;
}
.reveal   { transform: translateY(36px); }
.reveal-l { transform: translateX(-36px); }
.reveal-r { transform: translateX(36px); }

.reveal.visible, .reveal-l.visible, .reveal-r.visible {
  opacity: 1;
  transform: translate(0);
}

.d1 { transition-delay: .1s !important; }
.d2 { transition-delay: .2s !important; }
.d3 { transition-delay: .3s !important; }
.d4 { transition-delay: .4s !important; }
.d5 { transition-delay: .5s !important; }
.d6 { transition-delay: .6s !important; }

/* ============================
   25. Focus / A11y
   ============================ */
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ============================
   26. Responsive
   ============================ */
@media (max-width: 991.98px) {
  :root { --section-py: 72px; }
  .hero { padding: 110px 0 60px; text-align: center; }
  .hero-sub  { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-img-wrap { margin-top: 40px; }
}
@media (max-width: 767.98px) {
  :root { --section-py: 56px; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-10px); }
}
@media (max-width: 575.98px) {
  :root { --section-py: 48px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
}

/* Print */
@media print {
  #mainNav, .mobile-cta, .final-cta, .blog-cta, .post-cta-inline { display: none !important; }
  body { padding-bottom: 0; }
}