/* ============================================================
   LCOLOSTRUM.COM — LIFE ENERGY NUTRACEUTICAL LLP
   Brand-Accurate Premium Stylesheet
   Colors: Teal #3CC3C1  |  Navy #28466E
   Fonts:  Poppins (headings) + Lato (body)
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Lato:wght@300;400;700;900&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Brand Teal */
  --teal:          #3CC3C1;
  --teal-dark:     #2A9897;
  --teal-deeper:   #1e7170;
  --teal-light:    #6dd5d3;
  --teal-pale:     #e6f9f9;
  --teal-glow:     rgba(60, 195, 193, 0.25);

  /* Brand Navy */
  --navy:          #28466E;
  --navy-dark:     #1a2f4d;
  --navy-light:    #3a5f8f;
  --navy-pale:     #e8eef5;

  /* Neutrals */
  --white:         #ffffff;
  --off-white:     #f7fcfc;
  --text:          #1e2d3d;
  --text-muted:    #5a7085;
  --text-light:    #8ba5bc;
  --border:        #d8e8e8;
  --bg:            #f5fbfb;

  /* Shadows */
  --shadow-xs:     0 1px 4px rgba(40,70,110,0.06);
  --shadow-sm:     0 2px 10px rgba(40,70,110,0.08);
  --shadow-md:     0 6px 24px rgba(40,70,110,0.12);
  --shadow-lg:     0 14px 44px rgba(40,70,110,0.16);
  --shadow-xl:     0 24px 70px rgba(40,70,110,0.22);
  --shadow-teal:   0 8px 32px rgba(60,195,193,0.30);

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 999px;

  /* Transitions */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   0.18s;
  --t-med:    0.32s;
  --t-slow:   0.55s;

  /* Fonts */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

/* ── ANIMATIONS ── */
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33%       { transform: translate(30px, -25px) scale(1.05) rotate(4deg); }
  66%       { transform: translate(-15px, 20px) scale(0.97) rotate(-3deg); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}
@keyframes chipPop {
  0%   { opacity: 0; transform: translateY(16px) scale(0.85); }
  70%  { transform: translateY(-4px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-teal {
  background: var(--teal-pale);
  color: var(--teal-deeper);
  border: 1px solid rgba(60,195,193,0.25);
}
.tag-navy {
  background: var(--navy-pale);
  color: var(--navy);
  border: 1px solid rgba(40,70,110,0.18);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 14px 0 0;
  line-height: 1.7;
}
.title-accent {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 50%, var(--navy-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-up   { transform: scale(0.9); }
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.33s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.40s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all var(--t-med) var(--spring);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(60,195,193,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(60,195,193,0.55);
}
.btn-primary:active { transform: translateY(0); }

.btn-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(40,70,110,0.35);
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(40,70,110,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.84rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* Ripple */
.ripple-el {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  width: 8px; height: 8px;
  animation: ripple 0.55s linear forwards;
  pointer-events: none;
  transform: scale(0);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  padding: 9px 0;
  transition: height var(--t-med) var(--ease), opacity var(--t-med) var(--ease), padding var(--t-med) var(--ease);
  overflow: hidden;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}
.topbar-left a:hover { color: var(--teal-light); }
.topbar-left a svg { width: 13px; height: 13px; }
.topbar-right a {
  color: var(--teal-light);
  font-weight: 600;
  transition: color var(--t-fast);
}
.topbar-right a:hover { color: var(--white); }
.topbar.hidden { height: 0; padding: 0; opacity: 0; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(60,195,193,0.12);
  transition: box-shadow var(--t-med), background var(--t-med);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(40,70,110,0.10);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.navbar-logo {
  flex-shrink: 0;
}
.navbar-logo img {
  height: 44px;
  width: auto;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.navbar-links a {
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--t-fast);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transition: transform var(--t-med) var(--spring);
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--teal-dark);
  background: var(--teal-pale);
}
.navbar-links a:hover::after,
.navbar-links a.active::after { transform: translateX(-50%) scaleX(1); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.navbar-hamburger:hover { background: var(--teal-pale); }
.navbar-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
  transform-origin: center;
}
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(26,47,77,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--white);
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--spring);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 1.2rem;
  transition: background var(--t-fast);
}
.mobile-nav-close:hover { background: var(--border); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--navy);
  transition: all var(--t-fast);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--teal-pale);
  color: var(--teal-dark);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, #1a4a6b 75%, #0d2d47 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.18;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--teal);
  top: -150px; right: -100px;
  animation: blobFloat 14s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--teal-light);
  bottom: -80px; left: -60px;
  animation: blobFloat 18s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: #5a8abf;
  top: 40%; left: 30%;
  animation: blobFloat 22s ease-in-out infinite 4s;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60,195,193,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,195,193,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
  width: 100%;
}

.hero-content { color: var(--white); }

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-trust-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(60,195,193,0.15);
  border: 1px solid rgba(60,195,193,0.3);
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  animation: chipPop 0.6s var(--spring) both;
}
.hero-trust-pills .pill:nth-child(1) { animation-delay: 0.1s; }
.hero-trust-pills .pill:nth-child(2) { animation-delay: 0.2s; }
.hero-trust-pills .pill:nth-child(3) { animation-delay: 0.3s; }
.hero-trust-pills .pill svg { width: 12px; height: 12px; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--teal-light) 0%, var(--teal) 50%, #7ee8e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.65s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 0.8s var(--ease) 0.8s both;
}
.hero-stat-item {}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero Product Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeLeft 0.9s var(--ease) 0.4s both;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 32px;
  max-width: 340px;
  width: 100%;
  animation: heroFloat 5s ease-in-out infinite;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}
.hero-card-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  background: rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
}
.hero-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hero-card:hover .hero-card-img-wrap img { transform: scale(1.05); }
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-card-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 18px;
}
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-light);
}
.hero-card-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--navy-dark);
  padding: 22px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.87rem;
  font-weight: 600;
  font-family: var(--font-head);
  white-space: nowrap;
}
.trust-item svg {
  width: 18px; height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-card {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--t-fast);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--teal-pale); }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}
.stat-num-suffix {
  color: var(--teal);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}
.section-header .section-subtitle { margin: 14px auto 0; }

/* ── BENEFITS ── */
.benefits { background: var(--off-white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.benefit-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal-pale) 0%, #d0f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--t-med) var(--spring);
}
.benefit-icon svg {
  width: 26px; height: 26px;
  color: var(--teal-dark);
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  transform: scale(1.1) rotate(-4deg);
}
.benefit-card:hover .benefit-icon svg { color: var(--white); }

.benefit-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PRODUCT CARDS ── */
.products-section { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(60,195,193,0.12);
  transform: translateY(-8px);
}
.product-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-bestseller {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(60,195,193,0.4);
}
.badge-new {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--white);
}
.badge-pure {
  background: linear-gradient(135deg, #2a7a50, #1a5c3a);
  color: var(--white);
}
.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--navy-pale) 100%);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.product-card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.product-card-tag {
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--teal-pale);
  color: var(--teal-deeper);
  border: 1px solid rgba(60,195,193,0.2);
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-dark);
}
.product-price-mrp {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 4px;
}

/* ── PROCESS SECTION ── */
.process-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60,195,193,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,195,193,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.6); }
.process-section .section-header { margin-bottom: 60px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(60,195,193,0.2) 100%);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #213d60 0%, #1a2f4d 100%);
  border: 2px solid rgba(60,195,193,0.45);
  box-shadow: 0 0 0 5px #1a2f4d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal-light);
  transition: all var(--t-med) var(--spring);
  position: relative;
  z-index: 2;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(60,195,193,0.15);
  animation: pulseRing 2.5s ease-out infinite;
}
.process-step:hover .step-num {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 0 5px #1a2f4d, var(--shadow-teal);
}
.process-step:nth-child(2) .step-num::after { animation-delay: 0.6s; }
.process-step:nth-child(3) .step-num::after { animation-delay: 1.2s; }
.process-step:nth-child(4) .step-num::after { animation-delay: 1.8s; }

.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-text {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── WHY US SECTION ── */
.why-section { background: var(--off-white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.why-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-img-badge {
  position: absolute;
  bottom: 28px; right: -12px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}
.why-img-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}
.why-img-badge-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal-pale), #d0f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-med) var(--spring);
}
.why-item-icon svg { width: 20px; height: 20px; color: var(--teal-dark); }
.why-item:hover .why-item-icon {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}
.why-item:hover .why-item-icon svg { color: var(--white); }
.why-item-title {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.why-item-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--t-med) var(--ease);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--teal-pale);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars span { color: #f5a623; font-size: 0.95rem; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── BLOG CARDS ── */
.blog-section { background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--navy-pale) 100%);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--r-full);
  background: var(--teal-pale);
  color: var(--teal-deeper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(60,195,193,0.2);
}
.blog-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.45;
  flex: 1;
  transition: color var(--t-fast);
}
.blog-card:hover .blog-title { color: var(--teal-dark); }
.blog-excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
}
.blog-read-more {
  color: var(--teal-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t-fast);
}
.blog-card:hover .blog-read-more { gap: 8px; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px; right: -100px;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.newsletter-content .section-title { color: var(--white); }
.newsletter-content .section-subtitle { color: rgba(255,255,255,0.65); }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row { display: flex; gap: 12px; }
.form-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  color: var(--white);
  font-size: 0.92rem;
  transition: all var(--t-fast);
}
.form-input::placeholder { color: rgba(255,255,255,0.45); }
.form-input:focus {
  background: rgba(255,255,255,0.16);
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(60,195,193,0.2);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  border: 1px solid rgba(60,195,193,0.2);
  transition: all var(--t-fast);
}
.contact-info-card:hover {
  background: rgba(60,195,193,0.15);
  border-color: var(--teal);
  transform: translateX(6px);
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--white); }
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-darker, var(--teal-dark));
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 0.92rem;
  color: var(--navy-dark);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 24px;
}
.form-field {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 0.92rem;
  transition: all var(--t-fast);
}
.form-control:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(60,195,193,0.15);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }

/* ── FAQ ── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item.open {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy-dark);
  transition: color var(--t-fast);
  gap: 16px;
}
.faq-item.open .faq-question { color: var(--teal-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-med) var(--spring);
  color: var(--teal-dark);
}
.faq-item.open .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 40px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-brand-desc {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--t-fast);
}
.footer-social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--t-fast);
  color: var(--teal);
  font-size: 0.75rem;
}
.footer-links a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ── FLOATING BUTTONS ── */
.float-btn-whatsapp {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 800;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--t-med) var(--spring);
  color: var(--white);
}
.float-btn-whatsapp:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.65);
}
.float-btn-whatsapp svg { width: 26px; height: 26px; }
.float-btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: pulseRing 2s ease-out infinite;
}

.float-btn-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal);
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: all var(--t-med) var(--spring);
  color: var(--white);
}
.float-btn-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.float-btn-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 36px rgba(60,195,193,0.55);
}
.float-btn-top svg { width: 20px; height: 20px; }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  opacity: 0;
  transition: all var(--t-med) var(--spring);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(60,195,193,0.3);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-success { border-color: var(--teal); }
.toast-success .toast-icon { color: var(--teal); }
.toast svg { width: 18px; height: 18px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--teal-deeper) 100%);
  padding: 100px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(60,195,193,0.07);
  top: -200px; right: -100px;
  animation: blobFloat 16s ease-in-out infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -100px; left: -80px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(60,195,193,0.15);
  border: 1px solid rgba(60,195,193,0.3);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--teal-light); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── PRODUCTS PAGE ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  transition: all var(--t-fast);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(60,195,193,0.35);
}

/* ── ABOUT PAGE ── */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  padding: 36px 28px;
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.mission-card-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.mission-card-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.mission-card-light {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text);
}
.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.mission-card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.mission-card-icon svg { width: 28px; height: 28px; }

/* ── CERT BADGES ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--t-med) var(--ease);
}
.cert-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cert-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
.cert-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.cert-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── MAP SECTION ── */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── BLOG FILTER BAR ── */
.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ── MISC ── */
.divider {
  width: 60px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  margin: 14px 0 0;
}
.divider-center { margin: 14px auto 0; }

.text-teal { color: var(--teal-dark); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-teal-pale { background: var(--teal-pale); }
.bg-navy { background: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-trust-pills { justify-content: center; }
  .hero-stats { justify-content: center; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-img-wrap { aspect-ratio: 16/9; max-height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid var(--border); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-actions .btn { display: none; }
  .navbar-hamburger { display: flex; }

  .hero-inner { padding: 80px 0 60px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }

  .trust-strip-inner { gap: 20px; }
  .benefits-grid,
  .products-grid,
  .testimonials-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-pad { padding: 64px 0; }
  .container { padding: 0 16px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 28px 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-socials { justify-content: center; }
  .footer-brand-desc { max-width: 100%; }
}
