/* =====================================================
   AlkaSlim Premium Formula — Complete Stylesheet
   Website: https://alkasliem.com
   Version: 1.0
   ===================================================== */

/* =====================================================
   1. CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  /* Brand Colors */
  --clr-primary:        #059669;
  --clr-primary-dark:   #047857;
  --clr-primary-light:  #10b981;
  --clr-secondary:      #1e3a8a;
  --clr-secondary-dark: #1a3278;
  --clr-accent:         #f59e0b;
  --clr-accent-dark:    #d97706;

  /* Neutral Colors */
  --clr-white:    #ffffff;
  --clr-black:    #0a0a0a;
  --clr-gray-50:  #f9fafb;
  --clr-gray-100: #f3f4f6;
  --clr-gray-200: #e5e7eb;
  --clr-gray-300: #d1d5db;
  --clr-gray-400: #9ca3af;
  --clr-gray-500: #6b7280;
  --clr-gray-600: #4b5563;
  --clr-gray-700: #374151;
  --clr-gray-800: #1f2937;
  --clr-gray-900: #111827;

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

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.10), 0 10px 10px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,.12);

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition:      all .3s ease;
  --transition-slow: all .5s ease;

  /* Layout */
  --container-max: 1200px;
  --section-py:    clamp(3.5rem, 8vw, 6rem);
  --navbar-h:      70px;
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ff-body);
  color: var(--clr-gray-900);
  background-color: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  line-height: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-gray-900);
}

h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem,4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem,3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }

p {
  color: var(--clr-gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Section Labels & Titles */
.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(5,150,105,.08);
  padding: .375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem,2vw,1.125rem);
  color: var(--clr-gray-500);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* Utility text */
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }
.text-primary  { color: var(--clr-primary)   !important; }
.text-secondary{ color: var(--clr-secondary) !important; }
.text-accent   { color: var(--clr-accent)    !important; }
.text-white    { color: var(--clr-white)     !important; }
.text-muted    { color: var(--clr-gray-500)  !important; }

/* =====================================================
   4. LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: var(--section-py) 0;
}

.section-bg {
  background-color: var(--clr-gray-50);
}

.section-dark {
  background: linear-gradient(135deg, var(--clr-secondary) 0%, #0d2266 100%);
}

/* =====================================================
   5. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  -webkit-user-select: none;
  user-select: none;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(5,150,105,.3);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5,150,105,.45);
  color: var(--clr-white);
}

/* Secondary */
.btn-secondary {
  background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-dark));
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(30,58,138,.3);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30,58,138,.4);
  color: var(--clr-white);
}

/* Accent */
.btn-accent {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(245,158,11,.35);
}
.btn-accent:hover,
.btn-accent:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,.5);
  color: var(--clr-white);
}

/* Outline White */
.btn-outline-white {
  border-color: rgba(255,255,255,.6);
  color: var(--clr-white);
  background: transparent;
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: var(--clr-white);
  color: var(--clr-white);
}

/* Outline Primary */
.btn-outline-primary {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* Sizes */
.btn-lg   { padding: 1rem 2.5rem;      font-size: 1.0625rem; }
.btn-sm   { padding: .625rem 1.25rem;  font-size: .875rem;   }
.btn-xs   { padding: .4rem .875rem;    font-size: .8125rem;  }
.btn-full { width: 100%; }

/* Pulse animation */
.btn-pulse {
  animation: btn-pulse 2.2s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 4px 15px rgba(5,150,105,.3); }
  50%      { box-shadow: 0 8px 32px rgba(5,150,105,.6); }
}

/* Focus styles for accessibility */
.btn:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
}

/* =====================================================
   6. NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-gray-100);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  gap: 1rem;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--clr-secondary);
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo:hover {
  opacity: .9;
}

.logo-accent {
  color: var(--clr-primary);
}

.logo-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* Desktop Nav Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: nowrap;
}

.nav-link {
  display: block;
  padding: .5rem 1rem;
  font-weight: 500;
  font-size: .9375rem;
  color: var(--clr-gray-700);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-primary);
  background: rgba(5,150,105,.06);
}

.nav-link:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--clr-gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger:hover span {
  background: var(--clr-primary);
}

/* Hamburger active (open) state */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =====================================================
   7. MOBILE MENU
   ===================================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-gray-100);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  z-index: 999;
  padding: 1rem;
  flex-direction: column;
  gap: .25rem;
  max-height: calc(100vh - var(--navbar-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  display: block;
  padding: .875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid transparent;
  color: var(--clr-gray-700);
}

.mobile-menu .nav-link:hover {
  background: var(--clr-gray-50);
  border-color: var(--clr-gray-200);
  color: var(--clr-primary);
}

.mobile-menu .btn {
  margin-top: .75rem;
  justify-content: center;
}

/* =====================================================
   8. STICKY MOBILE CTA BAR
   ===================================================== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--clr-white);
  border-top: 2px solid var(--clr-gray-100);
  padding: .75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

.sticky-cta-bar .btn {
  width: 100%;
  justify-content: center;
}

/* =====================================================
   9. HERO SECTION
   ===================================================== */
.hero {
  padding: calc(var(--navbar-h) + 50px) 0 80px;
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 55%, #fefce8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5,150,105,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(5,150,105,.1);
  color: var(--clr-primary-dark);
  border: 1px solid rgba(5,150,105,.2);
  padding: .375rem 1rem;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-badge i {
  color: var(--clr-accent);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--clr-secondary);
}

.hero-title .highlight {
  color: var(--clr-primary);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--clr-gray-600);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

/* Trust Badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  padding: .5rem .875rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.trust-badge i {
  color: var(--clr-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-badge span {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--clr-gray-700);
  white-space: nowrap;
}

/* Hero Image */
.hero-image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-bottle {
  position: relative;
  display: inline-block;
}

.hero-bottle img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(5,150,105,.18));
  animation: bottle-float 4s ease-in-out infinite;
}

@keyframes bottle-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 2px dashed rgba(5,150,105,.15);
  animation: ring-spin 22s linear infinite;
  pointer-events: none;
}

@keyframes ring-spin {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--ff-heading);
  color: var(--clr-secondary);
  display: block;
  line-height: 1;
}

.hero-stat .lbl {
  font-size: .75rem;
  color: var(--clr-gray-500);
  font-weight: 500;
  display: block;
  margin-top: .25rem;
}

/* =====================================================
   10. WHY SECTION
   ===================================================== */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.why-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-img-wrap img {
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  width: 100%;
  object-fit: cover;
}

.why-float-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid var(--clr-gray-100);
}

.why-float-badge .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.25rem;
}

.why-float-badge strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-secondary);
  line-height: 1;
}

.why-float-badge span {
  font-size: .75rem;
  color: var(--clr-gray-500);
}

/* Why List */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--clr-gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-gray-100);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateX(5px);
  border-color: rgba(5,150,105,.2);
  box-shadow: var(--shadow-md);
  background: var(--clr-white);
}

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 1rem;
  margin-bottom: .25rem;
  color: var(--clr-gray-900);
}

.why-text p {
  font-size: .875rem;
  margin-bottom: 0;
  color: var(--clr-gray-500);
  line-height: 1.6;
}

/* =====================================================
   11. BENEFITS SECTION
   ===================================================== */
.benefits-section {
  background: linear-gradient(135deg, var(--clr-secondary) 0%, #0d2266 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.benefits-section .section-label {
  background: rgba(255,255,255,.1);
  color: #86efac;
}

.benefits-section .section-title,
.benefits-section h2 {
  color: var(--clr-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.benefit-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(5,150,105,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--clr-white);
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(5,150,105,.3);
}

.benefit-card h3 {
  font-size: 1.125rem;
  color: var(--clr-white);
  margin-bottom: .75rem;
}

.benefit-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 0;
  line-height: 1.65;
}

/* =====================================================
   12. INGREDIENTS SECTION
   ===================================================== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ingredient-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(5,150,105,.25);
}

.ingredient-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.ingredient-card h3 {
  font-size: 1.0625rem;
  color: var(--clr-secondary);
  margin-bottom: .625rem;
}

.ingredient-card p {
  font-size: .875rem;
  color: var(--clr-gray-500);
  margin-bottom: 0;
  line-height: 1.65;
}

/* =====================================================
   13. HOW IT WORKS
   ===================================================== */
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.how-image img {
  max-width: 100%;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-gray-100);
  transition: var(--transition);
}

.how-step:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(5,150,105,.2);
  transform: translateX(4px);
}

.step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: var(--clr-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  font-family: var(--ff-heading);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.0625rem;
  margin-bottom: .375rem;
  color: var(--clr-secondary);
}

.step-content p {
  font-size: .9rem;
  color: var(--clr-gray-500);
  margin-bottom: 0;
  line-height: 1.65;
}

/* =====================================================
   14. WHY CUSTOMERS LOVE
   ===================================================== */
.love-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.love-card {
  background: var(--clr-gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--clr-gray-100);
  transition: var(--transition);
}

.love-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  background: var(--clr-white);
  border-color: rgba(5,150,105,.2);
}

.love-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 18px rgba(5,150,105,.25);
}

.love-card h3 {
  font-size: 1.0625rem;
  margin-bottom: .625rem;
  color: var(--clr-gray-900);
}

.love-card p {
  font-size: .875rem;
  color: var(--clr-gray-500);
  margin-bottom: 0;
  line-height: 1.65;
}

/* =====================================================
   15. TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-gray-100);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(5,150,105,.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.t-stars i {
  color: var(--clr-accent);
  font-size: .875rem;
}

.t-text {
  font-size: .9375rem;
  color: var(--clr-gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.t-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--clr-white);
  flex-shrink: 0;
  overflow: hidden;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-info strong {
  display: block;
  font-size: .9375rem;
  color: var(--clr-gray-900);
  font-weight: 700;
}

.t-info span {
  font-size: .8125rem;
  color: var(--clr-gray-400);
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  color: var(--clr-primary);
  font-weight: 600;
  margin-top: .2rem;
}

/* =====================================================
   16. FAQ SECTION
   ===================================================== */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: .875rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--clr-primary);
  box-shadow: 0 4px 15px rgba(5,150,105,.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--clr-gray-800);
  background: none;
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  border: none;
}

.faq-q:hover {
  color: var(--clr-primary);
}

.faq-q:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: -2px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--clr-gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--clr-gray-500);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: rotate(45deg);
}

.faq-item.open .faq-q {
  color: var(--clr-primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem;
  color: var(--clr-gray-600);
  line-height: 1.75;
}

.faq-a-inner a {
  color: var(--clr-primary);
  text-decoration: underline;
}

/* =====================================================
   17. PRICING SECTION
   ===================================================== */
.pricing-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
}

.pricing-guarantee {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(5,150,105,.08);
  border: 1px solid rgba(5,150,105,.15);
  border-radius: var(--radius-full);
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-primary-dark);
  margin-top: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--clr-gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(5,150,105,.25);
}

/* Top Badge */
.price-top-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white);
  padding: .35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(5,150,105,.35);
}

.price-top-badge.gold {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}

/* Price Tags Row */
.price-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 28px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: rgba(5,150,105,.08);
  color: var(--clr-primary-dark);
  border: 1px solid rgba(5,150,105,.15);
  padding: .2rem .625rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
}

.price-tag.gold-tag {
  background: rgba(245,158,11,.08);
  color: var(--clr-accent-dark);
  border-color: rgba(245,158,11,.2);
}

/* Product Image */
.pricing-img {
  width: 180px;
  height: 210px;
  object-fit: contain;
  margin: .75rem auto 1.25rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.15));
  transition: var(--transition);
}

.pricing-card:hover .pricing-img {
  transform: scale(1.05) translateY(-4px);
}

/* Price Text */
.price-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--clr-gray-700);
  margin-bottom: .5rem;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--clr-secondary);
  font-family: var(--ff-heading);
  line-height: 1;
  margin-bottom: .25rem;
}

.price-amount sup {
  font-size: 1.125rem;
  vertical-align: super;
  font-weight: 600;
}

.price-per {
  font-size: .875rem;
  color: var(--clr-gray-400);
  margin-bottom: 1.5rem;
}

/* Features List */
.price-features {
  text-align: left;
  width: 100%;
  margin-bottom: 1.5rem;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .4rem 0;
  font-size: .875rem;
  color: var(--clr-gray-600);
  border-bottom: 1px solid var(--clr-gray-50);
}

.price-feature:last-child {
  border-bottom: none;
}

.price-feature i {
  color: var(--clr-primary);
  font-size: .8125rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Badge Row below pricing */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* =====================================================
   18. FINAL CTA SECTION
   ===================================================== */
.final-cta {
  background: linear-gradient(135deg, var(--clr-secondary) 0%, var(--clr-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5,150,105,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255,255,255,.75);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
}

.cta-trust-item i {
  color: #86efac;
}

/* =====================================================
   19. FOOTER
   ===================================================== */
.footer {
  background: var(--clr-gray-900);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .navbar-logo {
  color: var(--clr-white);
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.footer-secure {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.f-secure-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: .4rem .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.footer-col h4 {
  color: var(--clr-white);
  font-size: .9375rem;
  margin-bottom: 1.25rem;
  font-family: var(--ff-body);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--clr-primary-light);
  transform: translateX(3px);
}

.footer-links a i {
  font-size: .625rem;
  flex-shrink: 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}

.footer-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 0;
}

/* =====================================================
   20. BLOG LISTING PAGE
   ===================================================== */
.blog-hero {
  background: linear-gradient(135deg, var(--clr-secondary) 0%, #0d2266 100%);
  padding: calc(var(--navbar-h) + 70px) 0 80px;
  text-align: center;
}

.blog-hero h1 {
  color: var(--clr-white);
  margin-bottom: .75rem;
}

.blog-hero p {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto;
}

/* Blog Search */
.blog-search-wrap {
  max-width: 480px;
  margin: 2rem auto 0;
  position: relative;
}

.blog-search-wrap input {
  width: 100%;
  padding: .875rem 1.25rem .875rem 3rem;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  color: var(--clr-white);
  font-size: .9375rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.blog-search-wrap input::placeholder {
  color: rgba(255,255,255,.55);
}

.blog-search-wrap input:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.15);
}

.blog-search-icon {
  position: absolute;
  left: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.6);
  pointer-events: none;
}

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  padding: 4rem 0;
}

/* Featured Post */
.blog-featured {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: var(--transition);
  border: 1px solid var(--clr-gray-100);
}

.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.bf-img {
  height: 300px;
  overflow: hidden;
}

.bf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-featured:hover .bf-img img {
  transform: scale(1.04);
}

.bf-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-tag {
  display: inline-flex;
  background: rgba(5,150,105,.08);
  color: var(--clr-primary-dark);
  border-radius: var(--radius-full);
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
  width: fit-content;
}

.bf-content h2 {
  font-size: 1.5rem;
  color: var(--clr-secondary);
  margin-bottom: .75rem;
  line-height: 1.35;
}

.bf-content h2 a:hover {
  color: var(--clr-primary);
}

.bf-content p {
  font-size: .9rem;
  color: var(--clr-gray-500);
  margin-bottom: 1.25rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .8125rem;
  color: var(--clr-gray-400);
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* Blog Cards Grid */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-gray-100);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bc-img {
  height: 200px;
  overflow: hidden;
}

.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .bc-img img {
  transform: scale(1.05);
}

.bc-content {
  padding: 1.5rem;
}

.bc-content h3 {
  font-size: 1.0625rem;
  color: var(--clr-secondary);
  margin-bottom: .625rem;
  line-height: 1.4;
}

.bc-content h3 a:hover {
  color: var(--clr-primary);
}

.bc-content p {
  font-size: .875rem;
  color: var(--clr-gray-500);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================================================
   21. BLOG SIDEBAR
   ===================================================== */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-gray-100);
}

.sidebar-widget h3 {
  font-size: 1.0625rem;
  color: var(--clr-secondary);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--clr-primary);
  font-family: var(--ff-body);
  font-weight: 700;
}

.sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.sidebar-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem .875rem;
  background: var(--clr-gray-50);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--clr-gray-600);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.sidebar-cat:hover {
  background: rgba(5,150,105,.06);
  color: var(--clr-primary);
  border-color: rgba(5,150,105,.15);
}

.sidebar-cat span {
  background: var(--clr-gray-200);
  color: var(--clr-gray-500);
  border-radius: var(--radius-full);
  padding: .1rem .5rem;
  font-size: .75rem;
  font-weight: 600;
}

.recent-post {
  display: flex;
  gap: .875rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--clr-gray-100);
}

.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rp-img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.rp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-info h4 {
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-gray-800);
  line-height: 1.35;
  margin-bottom: .25rem;
}

.rp-info h4 a:hover {
  color: var(--clr-primary);
}

.rp-info span {
  font-size: .75rem;
  color: var(--clr-gray-400);
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  text-align: center;
}

.sidebar-cta h3 {
  color: var(--clr-white);
  font-size: 1.125rem;
  margin-bottom: .625rem;
  font-family: var(--ff-heading);
  font-weight: 700;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-cta p {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  margin-bottom: 1rem;
}

/* =====================================================
   22. SINGLE BLOG POST
   ===================================================== */
.post-hero {
  background: linear-gradient(135deg, var(--clr-secondary) 0%, #0d2266 100%);
  padding: calc(var(--navbar-h) + 70px) 0 60px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--clr-white);
}

.breadcrumb i {
  font-size: .625rem;
  color: rgba(255,255,255,.4);
}

.post-hero h1 {
  color: var(--clr-white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  max-width: 800px;
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  margin-top: 1rem;
}

.post-meta-row span {
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* Post Layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding: 4rem 0;
}

/* Featured Image */
.post-feat-img {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  max-height: 480px;
}

.post-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Table of Contents */
.post-toc {
  background: var(--clr-gray-50);
  border: 1px solid var(--clr-gray-200);
  border-left: 4px solid var(--clr-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.post-toc h4 {
  font-size: .9375rem;
  color: var(--clr-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.post-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.post-toc li {
  list-style: decimal;
}

.post-toc a {
  font-size: .9rem;
  color: var(--clr-gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.post-toc a:hover {
  color: var(--clr-primary);
}

/* Post Body */
.post-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--clr-gray-700);
}

.post-body h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  color: var(--clr-secondary);
  margin: 2.5rem 0 1rem;
  scroll-margin-top: calc(var(--navbar-h) + 20px);
}

.post-body h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--clr-gray-800);
  margin: 2rem 0 .75rem;
}

.post-body p {
  margin-bottom: 1.25rem;
  color: var(--clr-gray-700);
}

.post-body ul,
.post-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.post-body ul li {
  list-style-type: disc;
  color: var(--clr-gray-700);
  line-height: 1.7;
}

.post-body ol li {
  list-style-type: decimal;
  color: var(--clr-gray-700);
  line-height: 1.7;
}

.post-body blockquote {
  border-left: 4px solid var(--clr-primary);
  padding: 1rem 1.5rem;
  background: rgba(5,150,105,.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--clr-gray-600);
}

.post-body a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.post-body a:hover {
  color: var(--clr-primary-dark);
}

/* Inline CTA Box */
.post-cta-box {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.post-cta-box h3 {
  color: var(--clr-white);
  font-size: 1.375rem;
  margin-bottom: .625rem;
}

.post-cta-box p {
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
  font-size: .9375rem;
}

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-gray-200);
}

.post-tag {
  display: inline-block;
  padding: .3rem .875rem;
  background: var(--clr-gray-100);
  color: var(--clr-gray-600);
  border-radius: var(--radius-full);
  font-size: .8125rem;
  transition: var(--transition);
}

.post-tag:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

/* Social Share */
.post-share {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-gray-200);
  flex-wrap: wrap;
}

.post-share > span {
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-gray-700);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  color: var(--clr-white);
  transition: var(--transition);
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-3px);
  opacity: .9;
  color: var(--clr-white);
}

.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-li { background: #0a66c2; }

/* Related Posts */
.related-posts {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--clr-gray-200);
}

.related-posts h2 {
  font-size: 1.5rem;
  color: var(--clr-secondary);
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* =====================================================
   23. LEGAL PAGES
   ===================================================== */
.legal-hero {
  background: linear-gradient(135deg, var(--clr-secondary) 0%, #0d2266 100%);
  padding: calc(var(--navbar-h) + 70px) 0 60px;
  text-align: center;
}

.legal-hero h1 {
  color: var(--clr-white);
}

.legal-hero p {
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: .75rem auto 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-content h2 {
  font-size: 1.375rem;
  color: var(--clr-secondary);
  margin: 2rem 0 .875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-gray-200);
}

.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.legal-content p {
  color: var(--clr-gray-600);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-content ul {
  margin: .75rem 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.legal-content li {
  list-style-type: disc;
  color: var(--clr-gray-600);
  line-height: 1.7;
}

.legal-content a {
  color: var(--clr-primary);
  text-decoration: underline;
}

/* =====================================================
   24. CONTACT PAGE
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.contact-card {
  background: var(--clr-gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--clr-gray-200);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--clr-white);
  border-color: rgba(5,150,105,.2);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(5,150,105,.25);
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--clr-secondary);
  margin-bottom: .5rem;
}

.contact-card p,
.contact-card a {
  font-size: .9rem;
  color: var(--clr-gray-500);
  margin-bottom: 0;
}

.contact-card a:hover {
  color: var(--clr-primary);
}

/* =====================================================
   25. 404 PAGE
   ===================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f0fdf4, #eff6ff);
  padding: 2rem;
}

.error-content {
  max-width: 520px;
  width: 100%;
}

.error-num {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  font-family: var(--ff-heading);
  line-height: 1;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--clr-secondary);
  margin-bottom: 1rem;
}

.error-txt {
  font-size: 1.0625rem;
  color: var(--clr-gray-500);
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* =====================================================
   26. SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay for grid children */
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .15s; }
.reveal:nth-child(4) { transition-delay: .2s; }
.reveal:nth-child(5) { transition-delay: .25s; }
.reveal:nth-child(6) { transition-delay: .3s; }

/* =====================================================
   27. ACCESSIBILITY
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Visible focus for keyboard nav */
:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: .75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}

.skip-link:focus {
  top: 1rem;
}

/* =====================================================
   28. UTILITY CLASSES
   ===================================================== */
.d-none   { display: none !important; }
.d-flex   { display: flex !important; }
.d-block  { display: block !important; }
.d-grid   { display: grid !important; }
.d-inline { display: inline !important; }

.mx-auto  { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.w-100  { width: 100%; }
.mw-600 { max-width: 600px; }
.mw-800 { max-width: 800px; }

.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

.flex-wrap    { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.rounded    { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* =====================================================
   29. MEDIA QUERIES — MOBILE FIRST
   ===================================================== */

/* ---- 320px+ (Extra small phones) ---- */
@media (max-width: 479.98px) {
  :root { --section-py: 3rem; }

  .hero { padding: calc(var(--navbar-h) + 30px) 0 50px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle img { max-height: 250px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-title { font-size: 2rem; }

  .why-inner { grid-template-columns: 1fr; }
  .why-float-badge { display: none; }
  .how-inner { grid-template-columns: 1fr; }

  .blog-featured { grid-template-columns: 1fr; }
  .bf-img { height: 200px; }
  .blog-layout { grid-template-columns: 1fr; padding: 2rem 0; }
  .post-layout { grid-template-columns: 1fr; padding: 2rem 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom-row { flex-direction: column; text-align: center; gap: .5rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .final-cta-actions { flex-direction: column; align-items: center; }
  .cta-trust-row { flex-direction: column; align-items: center; gap: .75rem; }

  .hamburger { display: flex; }
  .navbar-nav { display: none; }
  .navbar-cta { display: none; }
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 72px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .love-grid { grid-template-columns: 1fr; }
}

/* ---- 480px – 575px ---- */
@media (min-width: 480px) and (max-width: 575.98px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle img { max-height: 280px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-stats { justify-content: center; }

  .why-inner { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hamburger { display: flex; }
  .navbar-nav { display: none; }
  .navbar-cta { display: none; }
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 72px; }

  .pricing-card.featured { transform: none; }
}

/* ---- 576px – 767px ---- */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle img { max-height: 300px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .why-inner { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hamburger { display: flex; }
  .navbar-nav { display: none; }
  .navbar-cta { display: none; }
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 72px; }

  .pricing-card.featured { transform: none; }
}

/* ---- 768px – 991px (Tablets) ---- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-float-badge { display: none; }
  .how-inner { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .bf-img { height: 260px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hamburger { display: flex; }
  .navbar-nav { display: none; }
  .navbar-cta { display: none; }
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 72px; }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
}

/* ---- 992px+ (Desktop) ---- */
@media (min-width: 992px) {
  .hamburger      { display: none; }
  .navbar-nav     { display: flex; }
  .navbar-cta     { display: inline-flex; }
  .sticky-cta-bar { display: none !important; }
  body            { padding-bottom: 0; }

  .pricing-card.featured {
    transform: scale(1.04);
  }

  .pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
  }
}

/* ---- 1200px+ (Large Desktop) ---- */
@media (min-width: 1200px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
  .blog-layout { grid-template-columns: 1fr 320px; }
  .post-layout { grid-template-columns: 1fr 300px; }
}

/* ---- 1400px+ (Extra Large) ---- */
@media (min-width: 1400px) {
  :root { --container-max: 1320px; }
}

/* =====================================================
   30. OVERFLOW PREVENTION (GLOBAL)
   ===================================================== */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

img, video, iframe, embed, object {
  max-width: 100%;
}

table {
  overflow-x: auto;
  display: block;
}

/* =====================================================
   31. PRINT STYLES
   ===================================================== */
@media print {
  .navbar,
  .sticky-cta-bar,
  .mobile-menu,
  .hero-ring,
  .post-share,
  .sidebar-cta,
  .final-cta { display: none !important; }

  body { padding-bottom: 0; }
  .hero { padding-top: 2rem; }
  * { box-shadow: none !important; }
  a { text-decoration: underline; }
  .post-layout,
  .blog-layout { grid-template-columns: 1fr; }
}

/* Mobile nav — hidden by default, shown when .open */
@media (max-width: 768px) {
  #nav-menu,
  .nav-menu,
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 999;
  }

  #nav-menu.open,
  .nav-menu.open,
  .nav-links.open {
    display: flex;
  }

  /* Hamburger lines animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ── Mobile Nav Toggle ── */
@media (max-width: 768px) {

  .navbar-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 998;
    list-style: none;
    margin: 0;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-nav li {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: #1e3a8a;
  }

  .navbar-nav .nav-link:hover {
    background: #f0fdf4;
    color: #059669;
  }

  /* Hide desktop CTA in mobile menu area */
  .navbar-cta {
    display: none;
  }

  /* Hamburger → X animation */
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e3a8a;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.cta-product-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}