/* ═══════════════════════════════════════════════════════
   VASAS HERBAL SALT — Yellow & White Modern Light Theme
   Inspired by: Yellow and White Modern Logistic Company
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── SKY BLUE & WHITE BRAND ── */
  --yellow:      #0EA5E9;
  --yellow-dk:   #0284C7;
  --yellow-lt:   #F0F9FF;
  --yellow-mid:  #E0F2FE;
  --navy:        #0C2340;
  --navy-lt:     #0F3460;
  --navy-dk:     #071829;
  --black:       #040D18;
  --cream:       #F0F9FF;
  --cream-2:     #E0F2FE;
  --border-warm: #BAE6FD;
  --white:       #FFFFFF;
  --off:         #F8FBFF;
  --gray-lt:     #F0F9FF;
  --gray:        #E0F2FE;
  --gray-dk:     #7DD3FC;
  --text:        #0F172A;
  --text-2:      #334155;
  --text-3:      #64748B;
  --text-inv:    #FFFFFF;
  --text-inv2:   rgba(255,255,255,0.80);
  --text-inv3:   rgba(255,255,255,0.50);
  --green:       #22C55E;

  /* ── SYSTEM ── */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 36px;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --t:    all 0.45s var(--ease);
  --shadow-xs: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-sm: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 16px 48px rgba(0,0,0,0.10);
  --shadow-lg: 0 32px 80px rgba(0,0,0,0.14);
}

/* ── BASE ── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text);
  background: var(--white); overflow-x: hidden; cursor: default;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-lt); }
::-webkit-scrollbar-thumb { background: var(--yellow-dk); border-radius: 3px; }

/* ═══ PROGRESS BAR ═══ */
#progress-bar {
  position: fixed; top: 0; left: 0; width: 0%; height: 4px; z-index: 9999;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dk), var(--yellow));
  background-size: 200% 100%; animation: bar-shimmer 1.5s linear infinite;
  transition: width 0.1s linear; box-shadow: 0 0 12px rgba(14,165,233,0.5);
}
@keyframes bar-shimmer { 0%{background-position:100%} 100%{background-position:-100%} }


/* ═══ CURSOR — traditional ═══ */
#cursor-dot, #cursor-ring { display: none !important; }
body { cursor: default !important; }

/* ═══ NAV DOTS ═══ */
#nav-dots {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 500; display: flex; flex-direction: column; gap: 12px;
}
.nav-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(17,17,17,0.2); border: 1.5px solid rgba(17,17,17,0.3);
  cursor: pointer; transition: var(--t); position: relative;
}
.nav-dot.active { background: var(--yellow); border-color: var(--yellow-dk); transform: scale(1.6); box-shadow: 0 0 10px rgba(14,165,233,0.5); }
.nav-dot::after {
  content: attr(data-label); position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white); font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.nav-dot:hover::after { opacity: 1; }

/* ═══ NAVBAR ═══ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 4%;
  display: flex; align-items: stretch; justify-content: space-between;
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(14,165,233,0.10), 0 1px 0 rgba(14,165,233,0.08);
}
/* ── animated sky-blue shimmer accent at bottom ── */
#navbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow-dk), #38BDF8, var(--yellow-dk));
  background-size: 200% 100%;
  animation: nav-shimmer 3s linear infinite;
}
@keyframes nav-shimmer { 0%{background-position:100%} 100%{background-position:-100%} }

.nav-logo { display: flex; align-items: center; gap: 10px; padding: 8px 0; text-decoration: none; }
.nav-logo-img {
  height: 54px; width: auto; display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(14,165,233,0.18));
  transition: filter 0.22s ease, transform 0.22s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 4px 16px rgba(14,165,233,0.32));
  transform: scale(1.04);
}
.nav-brand-text { display: flex; flex-direction: column; gap: 2px; }
.nav-brand-name {
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 19px;
  color: #0C2340; letter-spacing: -0.3px; line-height: 1;
}
.nav-brand-name em { color: #B8860B; font-style: normal; }
.nav-brand-sub { font-size: 9px; letter-spacing: 2.2px; text-transform: uppercase; display: block; font-weight: 700; color: #3D5A80; margin-top: 2px; }
.nav-center {
  display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0;
  flex: 1;                 /* claim all space between logo and buttons */
  justify-content: center;
  overflow-x: auto;        /* scroll if tight — never collapses to zero */
  scrollbar-width: none;
}
.nav-center::-webkit-scrollbar { display: none; }
.nav-center a {
  color: var(--text-2); font-size: 12.5px; font-weight: 600; letter-spacing: 0.1px;
  transition: all 0.22s ease; position: relative;
  padding: 7px 10px; border-radius: 8px; white-space: nowrap;
}
.nav-center a:hover { color: var(--navy); background: rgba(14,165,233,0.08); }
.nav-center a.active { color: var(--yellow-dk); background: rgba(14,165,233,0.10); }
.nav-btn {
  background: linear-gradient(135deg, #0C2340 0%, #0EA5E9 100%); color: #ffffff;
  padding: 10px 22px; border-radius: 50px; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; gap: 8px; letter-spacing: 0.2px;
  box-shadow: 0 4px 18px rgba(14,165,233,0.35); transition: var(--t);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,0.5); filter: brightness(1.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--navy); display: block; border-radius: 1px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
#mobile-menu {
  position: fixed; inset: 0; background: var(--navy-dk); z-index: 900;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 0; visibility: hidden; transition: all 0.5s var(--ease);
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu a {
  font-family: 'Playfair Display', serif; font-size: clamp(30px,7vw,52px);
  font-weight: 800; color: var(--text-inv2); letter-spacing: -1.5px; transition: color 0.3s;
}
#mobile-menu a:hover { color: var(--yellow); }

/* ═══════════════ HERO ═══════════════ */
#hero {
  margin-top: 72px;
  height: calc(100vh - 72px); min-height: 500px; position: relative; display: flex; align-items: flex-start;
  background: #040D18; overflow: hidden;
}
.hero-bg-img { display: none; }

/* Overlay — light enough to see video, dark enough to read text */
.hero-grad {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right,
      rgba(4,13,24,0.72) 0%,
      rgba(4,13,24,0.38) 38%,
      rgba(4,13,24,0.04) 100%
    ),
    linear-gradient(to bottom,
      rgba(4,13,24,0.25) 0%,
      rgba(4,13,24,0.00) 40%,
      rgba(4,13,24,0.32) 100%
    );
}

/* Bottom vignette for depth */
.hero-grad::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to top, rgba(4,13,24,0.70) 0%, transparent 100%);
  pointer-events: none;
}
.hero-yellow-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--yellow);
}
.hero-diag {
  position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(14,165,233,0.04) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#canvas-particles { position: absolute; inset: 0; z-index: 1; }
.hero-inner {
  position: relative; z-index: 5; width: 100%; max-width: 1200px; margin: 0 auto;
  padding: clamp(20px, 3.5vh, 48px) 6% 28px;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}
.hero-content-center {
  display: flex; flex-direction: column; align-items: flex-start; width: 100%; max-width: 620px;
}

/* ── Hero product video frame ── */
.hero-visual {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}
.hv-frame {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(14,165,233,0.65);
  box-shadow:
    0 0 0 1px rgba(14,165,233,0.20),
    0 0 60px rgba(14,165,233,0.28),
    0 32px 80px rgba(0,0,0,0.40);
  background: #000;
}
.hv-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hv-shine {
  position: absolute; top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none; z-index: 2;
}
.hv-glow {
  position: absolute; inset: -50px;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.22) 0%, transparent 65%);
  filter: blur(24px); z-index: -1; pointer-events: none;
}
.hv-pill {
  position: absolute; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-radius: 100px; padding: 8px 18px;
  font-size: 10.5px; font-weight: 800; color: var(--navy);
  letter-spacing: 0.8px; text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18); z-index: 10;
  display: flex; align-items: center; gap: 7px;
}
.hv-pill i { color: var(--yellow); font-size: 10px; }
.hv-pill-top { top: -16px; }
.hv-pill-bot { bottom: -16px; }
.hero-eyebrow {
  display: inline-flex; align-items: stretch;
  margin-bottom: 14px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  animation: eyebrow-glow 4s ease-in-out infinite;
}
@keyframes eyebrow-glow {
  0%,100% { box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.12); }
  50%      { box-shadow: 0 8px 40px rgba(14,165,233,0.35), 0 2px 8px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.14); }
}
.heb-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  padding: 11px 22px;
  font-size: 11.5px; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase;
  white-space: nowrap;
}
.heb-badge i { font-size: 13px; }
.heb-main {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.95);
  padding: 11px 24px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap;
}
.heb-sep {
  width: 1px; background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.heb-brand {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  padding: 11px 22px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap;
}
.heb-brand i { font-size: 12px; color: var(--yellow); opacity: 0.8; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px,5vw,72px); font-weight: 900;
  color: #FAF8F3; line-height: 1.0; letter-spacing: -3px; margin-bottom: 10px;
  text-align: left;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-line-gold { color: var(--yellow) !important; font-style: italic; }
.hero-typewriter-row {
  display: flex; align-items: center; margin: 12px 0 30px;
  min-height: clamp(44px,4.5vw,68px);
}
.hero-tw-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,4vw,60px); font-weight: 800;
  color: var(--yellow); letter-spacing: -2px; line-height: 1.05;
}
.cursor-blink {
  display: inline-block; width: 3px; height: 0.8em;
  background: var(--yellow); margin-left: 4px; vertical-align: middle;
  animation: blink 0.85s step-end infinite; border-radius: 2px;
}
@keyframes blink { 50%{ opacity:0; } }
.hero-desc {
  font-size: 16px; line-height: 1.72; color: rgba(255,255,255,0.82);
  max-width: 560px; margin-bottom: 18px; text-align: left;
}
.hero-desc strong { color: var(--yellow); font-weight: 700; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; justify-content: flex-start; }
.btn-yellow {
  background: var(--yellow); color: var(--navy);
  padding: 13px 30px; border-radius: 6px; font-weight: 800; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0.2px;
  box-shadow: 0 8px 28px rgba(14,165,233,0.4); transition: var(--t);
}
.btn-yellow:hover { background: var(--yellow-dk); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(14,165,233,0.5); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.28); color: #fff;
  background: rgba(255,255,255,0.06); padding: 13px 30px; border-radius: 6px;
  font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 10px;
  transition: var(--t); backdrop-filter: blur(8px);
}
.btn-outline-white:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(14,165,233,0.08); transform: translateY(-2px); }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: flex-start; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item i { color: var(--yellow); font-size: 15px; }
.trust-item span { color: rgba(255,255,255,0.65); font-size: 13.5px; font-weight: 500; }
.trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.18); }

/* Hero Right — old rules removed, new .hero-visual in place above */
@keyframes hero-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
.hero-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 36px 32px; text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  border-top: 4px solid var(--yellow);
}
.hero-card-img {
  width: 240px; height: 240px; object-fit: cover;
  border-radius: var(--r-sm); margin: 0 auto 22px;
  box-shadow: var(--shadow-md);
}
.hero-card-badge {
  background: var(--yellow); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 4px; display: inline-block; margin-bottom: 12px;
}
.hero-card-title {
  color: var(--navy); font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.5px;
}
.hero-card-sub { color: var(--text-3); font-size: 13px; }
.hero-pill {
  position: absolute; background: var(--white); border-radius: 50px;
  padding: 10px 18px; font-size: 12.5px; font-weight: 700;
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
  box-shadow: var(--shadow-md); color: var(--navy);
  border-left: 3px solid var(--yellow);
}
.hero-pill i { color: var(--yellow); font-size: 15px; }
.hero-pill.tl { top: -14px; left: -40px; }
.hero-pill.br { bottom: -14px; right: -40px; }
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: none; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(14,165,233,0.6));
  animation: s-anim 2.2s ease-in-out infinite;
}
@keyframes s-anim { 0%,100%{opacity:0.3;transform:scaleY(0.5)} 50%{opacity:1;transform:scaleY(1)} }

/* ═══ CATEGORY NAV (Titan-style) ═══ */
.cat-nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-top: 1.5px solid #E0F2FE;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.07);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  overflow-x: auto;
  scrollbar-width: none;
}
body { padding-bottom: 56px; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-n {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 22px;
  font-size: 13.5px; font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.2px;
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-n i { font-size: 13px; color: var(--yellow); }
.cat-n:hover {
  color: var(--navy);
  border-bottom-color: var(--yellow);
}
.cat-sep {
  width: 1px; height: 22px;
  background: #E0F2FE; flex-shrink: 0;
}
.cat-n-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  border-radius: 8px;
  margin: 9px 0 9px 16px;
  padding: 10px 24px;
  font-weight: 800;
  border-bottom-color: transparent !important;
  box-shadow: 0 4px 14px rgba(14,165,233,0.35);
  transition: all 0.25s ease;
}
.cat-n-cta i { color: var(--navy) !important; }
.cat-n-cta:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(14,165,233,0.45);
  border-bottom-color: transparent !important;
}
@media (max-width: 900px) {
  .cat-nav { justify-content: flex-start; padding: 0 4%; }
  .cat-n { padding: 16px 16px; font-size: 13px; }
}
@media (max-width: 640px) {
  .cat-n { padding: 14px 14px; font-size: 12.5px; gap: 6px; }
  .cat-n i { display: none; }
  .cat-n-cta { margin-left: 10px; }
}

/* ═══ SECTION SYSTEM ═══ */
.sw { max-width: 1340px; margin: 0 auto; padding: 0 5%; }
section { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 16px; background: var(--yellow);
  padding: 6px 14px; border-radius: 4px;
}
.eyebrow-light {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 16px; background: var(--yellow);
  padding: 6px 14px; border-radius: 4px;
}
.sh {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px,4vw,56px); font-weight: 900; line-height: 1.1;
  color: var(--navy); letter-spacing: -2px; margin-bottom: 20px;
}
.sh em { color: var(--yellow-dk); font-style: normal; }
.sh-white { color: var(--white); }
.sh-white em { color: var(--yellow); }
.sp { font-size: 17px; color: var(--text-2); line-height: 1.85; max-width: 640px; }
.sp-inv { color: var(--text-inv2); }
.center { text-align: center; }
.center .sp, .center .sp-inv { margin: 0 auto; }
.center .eyebrow, .center .eyebrow-light { display: inline-flex; }

/* ═══ STATS STRIP ═══ */
#stats { background: var(--black); padding: 56px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1100px; margin: 0 auto; }
.stat-cell { text-align: center; padding: 24px 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-cell:last-child { border-right: none; }
.stat-cell .sn {
  font-family: 'Times New Roman', Times, serif; font-size: 64px; font-weight: 700; line-height: 1;
  display: block; color: var(--yellow); letter-spacing: -2px;
}
.stat-cell .sl { font-size: 14px; color: var(--white); margin-top: 10px; font-weight: 700; letter-spacing: -0.2px; }
.stat-cell .sd { font-size: 12px; color: var(--text-inv3); margin-top: 5px; line-height: 1.5; }

/* ═══ ABOUT ═══ */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-imgs { position: relative; height: 480px; }
.aimg-main {
  position: absolute; top: 0; left: 0; width: 68%; height: 100%;
  object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-lg);
}
.aimg-sub {
  position: absolute; bottom: 20px; right: 0; width: 50%; height: 54%;
  object-fit: cover; border-radius: var(--r-md);
  border: 5px solid var(--white); box-shadow: var(--shadow-md);
}
.aimg-badge {
  position: absolute; top: 46%; left: 44%; transform: translate(-50%,-50%);
  background: var(--yellow); color: var(--navy); border-radius: 12px;
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 2; box-shadow: 0 12px 32px rgba(14,165,233,0.4);
  font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase; font-weight: 800;
}
.aimg-badge strong { font-size: 28px; font-family: 'Playfair Display', serif; display: block; font-weight: 900; }
.about-feature { display: flex; gap: 18px; margin-top: 28px; align-items: flex-start; }
.af-icon {
  width: 52px; height: 52px; border-radius: var(--r-xs); flex-shrink: 0;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--navy); box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}
.af-text h4 { font-weight: 800; color: var(--navy); font-size: 16px; margin-bottom: 6px; letter-spacing: -0.3px; }
.af-text p { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* ═══ PRODUCT ═══ */
#product { background: var(--gray-lt); }
.product-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; margin-top: 20px; }
.product-3d-wrap {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 20px;
}
.product-card-3d {
  width: 100%; border-radius: var(--r-md);
  background: var(--white); border: 1.5px solid var(--gray);
  border-top: 5px solid var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 36px 32px; box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  transform-style: preserve-3d; transition: transform 0.12s ease, box-shadow 0.3s; position: relative; overflow: hidden;
}
.product-card-3d:hover { box-shadow: 0 40px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(14,165,233,0.15); }
.product-card-3d::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--yellow);
}
.product-card-3d img { width: 100%; height: 340px; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 12px 32px rgba(0,0,0,0.18)); }
.product-card-3d h3 { display: none; }
.product-card-3d p  { display: none; }

/* Cert badges below image */
.prod-cert-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.prod-cert {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 1.5px solid #C7E6FB;
  border-radius: 8px; padding: 9px 14px;
  font-size: 12px; font-weight: 700; color: var(--navy);
  box-shadow: 0 2px 8px rgba(14,165,233,0.07);
}
.prod-cert i { color: var(--yellow); font-size: 13px; }

/* Pack sizes block below certs */
.prod-pack-block { }
.prod-pack-lbl {
  font-size: 10.5px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.spec-list { margin: 32px 0; display: flex; flex-direction: column; gap: 2px; border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 20px; background: var(--white); border-bottom: 1px solid var(--gray);
  transition: var(--t);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: var(--yellow-lt); }
.sk { font-size: 13px; color: var(--text-2); font-weight: 500; }
.sv { font-size: 13.5px; font-weight: 800; color: var(--navy); }
.pack-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.pack-tag {
  background: var(--yellow-lt); color: var(--navy); border: 1.5px solid var(--yellow);
  padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 800; letter-spacing: 0.3px;
  transition: all 0.2s ease;
}
.pack-tag:hover { background: var(--yellow); }

/* ═══ BENEFITS ═══ */
#benefits { position: relative; overflow: hidden; }
#benefits .sh { color: var(--navy); }
#benefits .sp { color: var(--text-2); }
#benefits .gsap-fade span { background: var(--yellow) !important; }
/* Force headings visible — GSAP starts them opacity:0, section is always scrolled to */
#benefits .gsap-fade,
#benefits .gsap-scale { opacity: 1 !important; transform: none !important; }
.bg-text-mark {
  position: absolute; font-family: 'Playfair Display', serif;
  font-size: 300px; font-weight: 900; color: rgba(14,165,233,0.06);
  right: -60px; top: 50%; transform: translateY(-50%); letter-spacing: -15px;
  pointer-events: none; user-select: none; line-height: 1;
}

/* ── Benefits Swiper — continuous marquee ── */
.benefits-swiper {
  margin-top: 28px;
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}
.benefits-swiper::before,
.benefits-swiper::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 10; pointer-events: none;
}
.benefits-swiper::before { left: 0; background: linear-gradient(to right, #fff 0%, transparent 100%); }
.benefits-swiper::after  { right: 0; background: linear-gradient(to left,  #fff 0%, transparent 100%); }

.benefits-swiper .swiper-slide {
  width: 290px;
  height: auto;
}
.benefits-swiper .swiper-button-next,
.benefits-swiper .swiper-button-prev,
.benefits-swiper .swiper-pagination { display: none; }

.bcard {
  background-color: #0d2035;
  background-size: cover; background-position: top center; background-repeat: no-repeat;
  border-radius: 18px;
  aspect-ratio: 3/4;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.bcard:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 32px 72px rgba(0,0,0,0.45); }

.bcard-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.88) 30%,
    rgba(0,0,0,0.58) 54%,
    rgba(0,0,0,0.16) 76%,
    rgba(0,0,0,0.04) 100%
  );
}

.bcard-content {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; justify-content: flex-end;
  flex: 1; padding: 0;
}

.bcard-text {
  padding: 0 20px 22px;
  background: transparent;
}

.bcard-icon {
  font-size: 28px; margin-bottom: 8px; display: block;
}
.bcard h3 {
  color: #ffffff !important; font-size: 17px; font-weight: 900;
  margin-bottom: 8px; letter-spacing: -0.2px; line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,0.8);
}
.bcard p {
  color: rgba(255,255,255,0.90) !important; font-size: 12.5px; line-height: 1.62;
  text-shadow: 0 1px 6px rgba(0,0,0,0.90);
}

/* Swiper nav & pagination */
.benefits-swiper .swiper-button-next,
.benefits-swiper .swiper-button-prev {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  --swiper-navigation-size: 16px;
  color: var(--navy); top: 42%;
}
.benefits-swiper .swiper-button-next:hover,
.benefits-swiper .swiper-button-prev:hover { background: var(--yellow); color: var(--navy); }
.benefits-swiper .swiper-pagination { bottom: 20px; }
.benefits-swiper .swiper-pagination-bullet { background: rgba(12,35,64,0.2); width: 8px; height: 8px; opacity: 1; }
.benefits-swiper .swiper-pagination-bullet-active { background: var(--yellow); width: 24px; border-radius: 4px; }

/* ═══ SCIENCE ═══ */
#science { background: var(--white); }
.science-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.science-img-wrap { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.science-img { width: 100%; height: 360px; object-fit: cover; display: block; }
.science-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, transparent 55%); }
.science-cap { position: absolute; bottom: 28px; left: 28px; right: 28px; }
.science-cap h4 { color: var(--white); font-size: 18px; font-weight: 800; font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.science-cap p { color: rgba(255,255,255,0.65); font-size: 13px; }
.sci-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.sci-box {
  background: var(--gray-lt); border-radius: var(--r-sm); padding: 26px 22px;
  border: 2px solid var(--gray); text-align: center; transition: var(--t);
}
.sci-box:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(14,165,233,0.15); }
.sci-num {
  font-family: 'Times New Roman', Times, serif; font-size: 50px; font-weight: 700;
  display: block; line-height: 1.05; color: var(--navy); letter-spacing: -1px;
}
.sci-lbl { font-size: 12.5px; color: var(--text-2); margin-top: 8px; line-height: 1.5; }
.cert-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cpill {
  display: flex; align-items: center; gap: 8px;
  background: var(--yellow-lt); border: 1.5px solid var(--yellow);
  border-radius: 6px; padding: 9px 18px;
  font-size: 13px; font-weight: 700; color: var(--navy);
}
.cpill i { color: var(--green); font-size: 14px; }
.cpill-gold { background: var(--yellow) !important; border-color: var(--yellow-dk) !important; color: var(--navy) !important; font-weight: 800 !important; }
.cpill-gold i { color: var(--navy) !important; }

/* ═══ CLINICAL EVIDENCE ═══ */
#clinical {
  background: linear-gradient(160deg, #F8FBFF 0%, #EFF8FF 55%, #F0F9FF 100%);
  padding: 110px 0 100px;
  position: relative; overflow: hidden;
}
#clinical::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dk), var(--yellow));
}
.clin-bg-glow {
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.06) 0%, transparent 68%);
  pointer-events: none; animation: ambient-breathe 6s ease-in-out infinite;
}

/* ── Clinical stats — premium dark cards grid ── */
.clin-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 32px 0 36px;
}
.clin-sep { display: none; }

.clin-stat {
  background: linear-gradient(155deg, #0D2340 0%, #081828 100%);
  border-radius: 20px;
  padding: 32px 18px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 8px 32px rgba(4,13,24,0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.clin-stat::before {
  content: '';
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,196,0,0.10) 0%, transparent 68%);
  pointer-events: none;
}
.clin-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(4,13,24,0.42), 0 0 0 1px rgba(255,196,0,0.22);
}

.csc-ico {
  display: block;
  font-size: 22px;
  color: var(--yellow);
  opacity: 0.75;
  margin-bottom: 16px;
}

.clin-n {
  display: block;
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -1px;
}

.csc-div {
  width: 36px; height: 2px;
  background: rgba(255,196,0,0.40);
  border-radius: 2px;
  margin: 14px auto;
}

.clin-lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: 1.8px; text-transform: uppercase; line-height: 1.45;
}
.clin-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.40);
  margin-top: 7px; line-height: 1.55;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Two-card grid */
.clin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.clin-card {
  background: var(--white);
  border: 1px solid var(--border-warm);
  border-radius: 22px; padding: 40px 36px;
  position: relative; overflow: hidden; transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.clin-card:hover {
  border-color: rgba(14,165,233,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(14,165,233,0.13), 0 4px 16px rgba(0,0,0,0.05);
}
.clin-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.clin-card:hover::before { transform: scaleX(1); }
.clin-card-icon {
  width: 56px; height: 56px; background: var(--yellow); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white); margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(14,165,233,0.3);
}
.clin-icon-alt { background: var(--yellow-lt); color: var(--yellow-dk); box-shadow: none; border: 1.5px solid var(--border-warm); }
.clin-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800;
  color: var(--navy); margin-bottom: 14px; letter-spacing: -0.3px; line-height: 1.3;
}
.clin-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.82; margin-bottom: 22px; }
.clin-card p strong { color: var(--yellow-dk); font-weight: 700; font-style: normal; }
.clin-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.clin-list li {
  display: flex; align-items: center; gap: 11px;
  font-size: 13.5px; color: var(--text-2); font-weight: 500;
}
.clin-list li i { color: var(--yellow); font-size: 13px; flex-shrink: 0; }

/* Mechanism flow */
.clin-mech-flow { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.cmf-step {
  display: flex; align-items: center; gap: 14px;
  background: var(--yellow-lt); border: 1px solid var(--border-warm);
  border-radius: 11px; padding: 13px 16px;
  font-size: 13.5px; color: var(--text-2); font-weight: 500; line-height: 1.45;
}
.cmf-n {
  width: 28px; height: 28px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: var(--white); flex-shrink: 0;
}
.cmf-arrow { text-align: center; color: var(--yellow); font-size: 11px; padding: 5px 0; }

/* Clinical quote */
.clin-quote {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-warm);
  border-left: 4px solid var(--yellow);
  border-radius: 0 20px 20px 0;
  padding: 24px 28px 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(14,165,233,0.08);
}
.clin-q-icon {
  font-size: 3rem; color: var(--yellow); opacity: 0.18;
  position: absolute; top: 22px; left: 20px;
}
.clin-quote blockquote {
  font-size: 15.5px; color: var(--text-2);
  line-height: 1.9; font-style: italic; padding-left: 0;
}
.clin-quote blockquote strong { color: var(--yellow-dk); font-style: normal; font-weight: 700; }
.clin-q-src {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 22px; font-size: 12.5px; color: var(--text-3);
}
.clin-q-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--yellow-lt); border: 1px solid var(--border-warm);
  border-radius: 100px; padding: 5px 14px;
  color: var(--yellow-dk); font-weight: 700; font-size: 12px;
}
.clin-q-note {
  margin-top: 16px; padding: 14px 20px;
  background: var(--yellow-lt); border-radius: 10px;
  border: 1px solid var(--border-warm);
  font-size: 13px; color: var(--text-2); letter-spacing: 0.2px;
}
.clin-q-note strong { color: var(--yellow-dk); font-weight: 800; }

/* Institution strip */
.clin-institutions {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 22px;
}
.clin-inst {
  background: var(--white); border: 1px solid var(--border-warm);
  border-radius: 16px; padding: 28px 18px 22px; text-align: center;
  transition: var(--t); position: relative; overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.clin-inst:hover {
  border-color: rgba(14,165,233,0.4);
  transform: translateY(-6px); box-shadow: 0 20px 48px rgba(14,165,233,0.12);
}
.clin-inst::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.clin-inst:hover::after { transform: scaleX(1); }
.ci-icon {
  width: 50px; height: 50px; background: var(--yellow-lt); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--yellow-dk); margin: 0 auto 14px;
  border: 1.5px solid var(--border-warm);
}
.ci-name { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 7px; line-height: 1.3; }
.ci-loc { font-size: 11px; color: var(--text-3); line-height: 1.5; margin-bottom: 12px; }
.ci-tag {
  display: inline-block; background: var(--yellow-lt);
  border: 1px solid var(--border-warm); border-radius: 100px;
  padding: 3px 12px; font-size: 10px; font-weight: 800;
  color: var(--yellow-dk); letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1100px) { .clin-institutions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .clin-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .clin-stat:nth-child(4),
  .clin-stat:nth-child(5) { grid-column: span 1; }
  .clin-grid { grid-template-columns: 1fr; }
  .clin-institutions { grid-template-columns: repeat(2, 1fr); }
  .clin-quote { padding: 32px 28px 28px 28px; }
}
@media (max-width: 640px) {
  .clin-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .clin-stat:last-child { grid-column: 1 / -1; }
  .clin-n { font-size: 2.2rem; }
  .clin-institutions { grid-template-columns: 1fr; }
  .clin-quote { padding: 28px 22px 22px; }
  .clin-q-note { font-size: 12px; }
}

/* ═══ COMPARISON ═══ */
#comparison { background: var(--gray-lt); }
.compare-wrap {
  margin-top: 20px; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray);
}
.ctable { width: 100%; border-collapse: collapse; }
.ctable thead th {
  padding: 22px 28px; text-align: left; font-size: 14px; font-weight: 800;
  letter-spacing: 0.3px;
}
.ctable thead th:first-child { background: var(--navy); color: rgba(255,255,255,0.7); width: 34%; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.ctable thead th:nth-child(2) { background: var(--yellow); color: var(--navy); font-size: 15px; }
.ctable thead th:nth-child(3) { background: #2D2D2D; color: rgba(255,255,255,0.7); font-weight: 600; }
.ctable tbody td { padding: 16px 28px; border-bottom: 1px solid var(--gray); font-size: 14px; background: var(--white); }
.ctable tbody tr:last-child td { border-bottom: none; }
.ctable tbody tr:nth-child(even) td { background: var(--off); }
.ctable tbody tr:hover td { background: var(--yellow-lt); }
.fl { font-weight: 700; color: var(--navy); font-size: 14px; }
.vv { font-weight: 800; color: var(--navy); }
.rv { color: #C0392B; font-weight: 500; }
.ic-ok { color: var(--green); margin-right: 5px; }
.ic-no { color: #E74C3C; margin-right: 5px; }
.ctable tbody td:nth-child(2) { background: var(--yellow-lt) !important; border-left: 3px solid var(--yellow); }

/* ═══ INGREDIENTS ═══ */
#ingredients { overflow: hidden; }
#ingredients .sh { color: var(--navy); }
#ingredients .sp { color: var(--text-2); }
#ingredients .eyebrow { background: var(--yellow) !important; color: var(--navy) !important; }
#ingredients .gsap-fade,
#ingredients .gsap-scale { opacity: 1 !important; transform: none !important; }

/* Herbs Swiper — continuous marquee */
.herbs-swiper {
  margin-top: 28px;
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}
.herbs-swiper::before,
.herbs-swiper::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 10; pointer-events: none;
}
.herbs-swiper::before { left: 0; background: linear-gradient(to right, #F0F9FF, transparent); }
.herbs-swiper::after  { right: 0; background: linear-gradient(to left,  #E8F4FF, transparent); }
.herbs-swiper .swiper-slide {
  width: 260px;
  height: auto;
}
.herbs-swiper .swiper-button-next,
.herbs-swiper .swiper-button-prev,
.herbs-swiper .swiper-pagination { display: none; }

.herb-tile {
  background-color: #071e30;
  background-size: cover; background-position: top center; background-repeat: no-repeat;
  border-radius: 16px;
  aspect-ratio: 2/3;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.herb-tile:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 32px 72px rgba(0,0,0,0.5); }

.herb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.88) 30%,
    rgba(0,0,0,0.58) 54%,
    rgba(0,0,0,0.16) 76%,
    rgba(0,0,0,0.04) 100%
  );
}

.herb-content {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; justify-content: flex-end;
  flex: 1; padding: 0;
}
.herb-text {
  padding: 0 14px 16px;
  background: transparent;
}
.herb-n {
  width: 26px; height: 26px;
  background: var(--yellow); border-radius: 50%;
  color: var(--navy); font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px; flex-shrink: 0;
}
.herb-tile h4 {
  font-size: 13px; font-weight: 900; color: #ffffff !important;
  margin-bottom: 3px; letter-spacing: -0.2px; line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,0.8);
}
.herb-tile .hs {
  font-size: 10.5px; color: rgba(255,255,255,0.88) !important;
  font-style: italic; margin-bottom: 10px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.90);
}
.hbadge {
  display: inline-block; background: var(--yellow); color: var(--navy);
  font-size: 10px; font-weight: 800; padding: 4px 10px;
  border-radius: 4px; letter-spacing: 0.3px; align-self: flex-start;
}

/* Herbs nav */
.herbs-swiper .swiper-button-next,
.herbs-swiper .swiper-button-prev {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  border: none;
  --swiper-navigation-size: 16px; color: var(--navy); top: 42%;
}
.herbs-swiper .swiper-button-next:hover,
.herbs-swiper .swiper-button-prev:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.herbs-swiper .swiper-pagination { bottom: 20px; }
.herbs-swiper .swiper-pagination-bullet { background: rgba(12,35,64,0.2); width: 8px; height: 8px; opacity: 1; }
.herbs-swiper .swiper-pagination-bullet-active { background: var(--yellow); width: 24px; border-radius: 4px; }

/* ═══ PROCESS ═══ */
#process { background: var(--yellow); padding: 110px 0; }
.process-header .eyebrow { background: var(--navy); color: var(--yellow); }
.process-header .sh { color: var(--navy); }
.process-header .sh em { color: var(--navy-lt); }
.process-header .sp { color: rgba(17,17,17,0.75); }
.process-steps { display: flex; gap: 0; margin-top: 52px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 44px; left: 8%; right: 8%; height: 2px;
  background: rgba(17,17,17,0.2); border-radius: 1px;
}
.pstep { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.pstep-num {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 26px;
  background: var(--navy); border: 3px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Times New Roman', Times, serif; font-weight: 700; font-size: 22px; color: var(--yellow);
  position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(17,17,17,0.3);
}
.pstep-icon { font-size: 22px; color: var(--navy-lt); margin-bottom: 14px; display: block; }
.pstep h3 { color: var(--navy); font-weight: 800; font-size: 15px; margin-bottom: 10px; letter-spacing: -0.2px; }
.pstep p { color: rgba(17,17,17,0.7); font-size: 13px; line-height: 1.7; }

/* ═══ WHY ═══ */
#why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 64px; align-items: start; }
.why-card {
  background: var(--white); border-radius: var(--r-sm); padding: 36px 30px;
  border: 2px solid var(--gray); transition: var(--t); position: relative; overflow: hidden;
  aspect-ratio: 1/1.05;
  display: flex; flex-direction: column;
}
.why-card:hover { border-color: var(--yellow); box-shadow: 0 20px 50px rgba(14,165,233,0.12); transform: translateY(-7px); }
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card::after {
  content: attr(data-num); position: absolute; top: 20px; right: 22px;
  font-family: 'Playfair Display', serif; font-size: 76px; font-weight: 900;
  color: rgba(14,165,233,0.12); line-height: 1; pointer-events: none; letter-spacing: -4px;
}
.why-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.why-card h3 { font-weight: 800; color: var(--navy); font-size: 18px; margin-bottom: 12px; letter-spacing: -0.4px; }
.why-card p { color: var(--text-2); font-size: 14px; line-height: 1.78; }

/* ═══ GLOBAL ═══ */
#global { background: var(--cream-2, #F5F2EB); }
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.global-img-wrap { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.global-img { width: 100%; height: 340px; object-fit: cover; display: block; }
.global-ovl { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 55%); }
.global-cap { position: absolute; bottom: 24px; left: 24px; right: 24px; color: var(--white); font-size: 14px; font-weight: 700; }
.market-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.mtag {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray);
  border-radius: 6px; padding: 9px 16px;
  font-size: 13px; font-weight: 700; color: var(--text); transition: var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.mtag:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14,165,233,0.3); }
.mtag .flag { font-size: 16px; }
.global-nums { display: flex; gap: 0; margin-top: 36px; border: 1px solid var(--gray); border-radius: var(--r-sm); overflow: hidden; background: var(--white); }
.gnum { flex: 1; text-align: center; padding: 22px 16px; border-right: 1px solid var(--gray); }
.gnum:last-child { border-right: none; }
.gnum .gn {
  font-family: 'Times New Roman', Times, serif; font-size: 40px; font-weight: 700;
  color: var(--navy); display: block; line-height: 1; letter-spacing: -0.5px;
}
.gnum small { font-size: 12px; color: var(--text-3); display: block; margin-top: 8px; line-height: 1.4; }

/* ═══ TESTIMONIALS ═══ */
#testimonials { background: var(--gray-lt); }
.swiper { margin-top: 20px; overflow: hidden; padding-bottom: 36px !important; }
.swiper-slide { height: auto; }
.tcard {
  background: var(--white); border-radius: var(--r-sm); padding: 38px;
  border: 2px solid var(--gray); height: 100%;
  box-shadow: var(--shadow-sm); transition: var(--t);
}
.tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--yellow); }
.tcard-stars { font-size: 16px; margin-bottom: 20px; color: var(--yellow); letter-spacing: 2px; }
.tcard-quote {
  font-size: 15px; color: var(--text-2); line-height: 1.85; margin-bottom: 28px; font-style: italic;
  position: relative; padding-left: 20px; border-left: 3px solid var(--yellow);
}
.tcard-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--gray); padding-top: 22px; }
.tcard-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--yellow); }
.tcard-name { font-weight: 800; color: var(--navy); font-size: 15px; letter-spacing: -0.3px; }
.tcard-role { font-size: 12.5px; color: var(--text-3); margin-top: 3px; }
.swiper-pagination-bullet { background: var(--gray-dk); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--yellow-dk); }

/* ═══ FAQ ═══ */
#faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 20px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: var(--r-xs); overflow: hidden; border: 2px solid var(--gray); background: var(--white); transition: var(--t); }
.faq-item.open { border-color: var(--yellow); box-shadow: 0 8px 32px rgba(14,165,233,0.12); }
.faq-q {
  width: 100%; padding: 22px 24px; text-align: left; background: transparent; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.2px;
}
.faq-q:hover { color: var(--navy-lt); }
.faq-item.open .faq-q { color: var(--navy); }
.faq-arrow {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-lt); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 13px; transition: transform 0.4s var(--ease), background 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--yellow); color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 24px; transition: max-height 0.5s var(--ease), padding 0.4s; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 24px; }
.faq-a p { font-size: 14.5px; color: var(--text-2); line-height: 1.85; }

/* ═══ CTA BAND ═══ */
#cta-band { background: var(--yellow); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
#cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(17,17,17,0.03) 40px, rgba(17,17,17,0.03) 80px);
}
.cta-inner { position: relative; z-index: 1; }
.swaraa-cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--yellow);
  border: 2px solid var(--navy-lt); border-radius: 100px;
  padding: 8px 22px; font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; box-shadow: 0 4px 20px rgba(17,17,17,0.25);
}
.swaraa-cta-badge i { font-size: 13px; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px,5vw,66px); color: var(--navy);
  font-weight: 900; margin-bottom: 18px; letter-spacing: -2.5px; line-height: 1.07;
}
.cta-inner h2 em { color: var(--navy-dk); font-style: italic; }
.cta-inner p { color: rgba(17,17,17,0.75); font-size: 17px; margin-bottom: 20px; font-weight: 500; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-navy {
  background: var(--navy); color: var(--yellow);
  padding: 16px 36px; border-radius: 6px; font-weight: 800; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(17,17,17,0.3); transition: var(--t);
}
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(17,17,17,0.4); }
.btn-outline-navy {
  border: 2px solid var(--navy); color: var(--navy); background: transparent;
  padding: 16px 36px; border-radius: 6px; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px; transition: var(--t);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--yellow); transform: translateY(-2px); }

/* ═══ CONTACT ═══ */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.cd-eyebrow { background: var(--yellow); color: var(--navy); }
.cd-detail { display: flex; gap: 16px; margin-top: 30px; align-items: flex-start; }
.cd-icon {
  width: 48px; height: 48px; border-radius: var(--r-xs); flex-shrink: 0;
  background: var(--yellow); border: none;
  display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 18px;
}
.cd-icon.wa { background: #25D366; color: #fff; }
.cd-txt h4 { color: var(--text); font-weight: 800; font-size: 15px; margin-bottom: 5px; }
.cd-txt p { color: var(--text-2); font-size: 14px; line-height: 1.6; }
.mform {
  background: var(--white); border-radius: var(--r-md); padding: 28px;
  box-shadow: var(--shadow-lg);
}
.mform-title { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.8px; }
.form-steps { display: flex; gap: 8px; margin-bottom: 20px; }
.fstep {
  flex: 1; text-align: center; padding: 12px 8px; border-radius: var(--r-xs);
  background: var(--gray-lt); border: 2px solid var(--gray);
  font-size: 11.5px; font-weight: 800; color: var(--text-3); transition: var(--t); letter-spacing: 0.3px;
}
.fstep.active { background: var(--yellow); border-color: var(--yellow-dk); color: var(--navy); }
.fstep.done { background: var(--green); border-color: var(--green); color: var(--white); }
.form-panel { display: none; }
.form-panel.active { display: block; animation: panel-in 0.45s var(--ease); }
@keyframes panel-in { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:none} }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; color: var(--text-2); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 9px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--gray-lt); border: 2px solid var(--gray);
  border-radius: var(--r-xs); padding: 13px 16px; color: var(--text); font-size: 14.5px;
  font-family: 'Plus Jakarta Sans', sans-serif; outline: none; transition: border-color 0.3s, background 0.3s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--yellow); background: var(--white); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }
.fg select option { background: var(--white); color: var(--text); }
.fg textarea { resize: none; height: 110px; }
.fg.full { grid-column: 1 / -1; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.btn-next, .btn-prev, .btn-send {
  padding: 14px 32px; border-radius: 6px; font-weight: 800; font-size: 14px;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; border: none;
  display: inline-flex; align-items: center; gap: 9px; transition: var(--t);
}
.btn-next, .btn-send { background: var(--yellow); color: var(--navy); box-shadow: 0 4px 16px rgba(14,165,233,0.35); }
.btn-next:hover, .btn-send:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,0.4); }
.btn-prev { background: var(--gray-lt); color: var(--text-2); border: 2px solid var(--gray); }
.btn-prev:hover { background: var(--gray); }
.form-success { text-align: center; padding: 48px 24px; display: none; }
.form-success i { font-size: 68px; color: var(--green); margin-bottom: 22px; display: block; }
.form-success h3 { color: var(--navy); font-size: 26px; font-weight: 900; margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.form-success p { color: var(--text-2); font-size: 15px; line-height: 1.7; }

/* ═══ INSTAGRAM FEED ═══ */
#instagram { background: #f8f9fa; padding: 100px 0 72px; overflow: hidden; }
#instagram .sh { color: var(--navy); }
#instagram .sp { color: var(--text-2); }

.insta-eyebrow {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%) !important;
  color: #fff !important;
  border: none !important;
}

.insta-outer {
  position: relative;
  overflow: hidden;
  margin: 36px 0 0;
  padding: 6px 0;
}
.insta-outer::before,
.insta-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 10; pointer-events: none;
}
.insta-outer::before { left: 0;  background: linear-gradient(to right, #f8f9fa, transparent); }
.insta-outer::after  { right: 0; background: linear-gradient(to left,  #f8f9fa, transparent); }

.insta-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.ipost {
  width: 270px; height: 270px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ipost:hover { transform: scale(1.05); box-shadow: 0 16px 48px rgba(0,0,0,0.22); }

.ipost-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ipost:hover .ipost-img { transform: scale(1.08); }

.ipost-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.ipost-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 14px 16px; z-index: 2;
  display: flex; flex-direction: column; gap: 5px;
}
.ipost-caption i { font-size: 14px; color: rgba(255,255,255,0.60); }
.ipost-caption span {
  font-size: 11px; color: rgba(255,255,255,0.88);
  line-height: 1.45; font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.ipost-hover {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(131,58,180,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.ipost-hover i { font-size: 38px; color: #fff; }
.ipost:hover .ipost-hover { opacity: 1; }

.btn-insta-follow {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 15px 36px; border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(131,58,180,0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-insta-follow i { font-size: 20px; }
.btn-insta-follow:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(131,58,180,0.50); }

@media (max-width: 640px) { .ipost { width: 220px; height: 220px; } }

/* ═══ FOOTER ═══ */
footer { background: var(--black); padding: 56px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1340px; margin: 0 auto; padding: 0 5% 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fbrand-desc { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.85; margin: 18px 0 30px; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.slink {
  width: 40px; height: 40px; border-radius: var(--r-xs);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 15px; transition: var(--t);
}
.slink:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); transform: translateY(-3px); }
.fcol h5 { color: var(--white); font-weight: 800; font-size: 14px; margin-bottom: 22px; letter-spacing: 0.3px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.fcol ul a {
  color: rgba(255,255,255,0.45); font-size: 14px; transition: color 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.fcol ul a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1340px; margin: 0 auto; padding: 26px 5%;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 13px; }
.footer-bottom span { color: rgba(255,255,255,0.15); font-size: 12px; }

/* ═══ FABs ═══ */
#wa-fab {
  position: fixed; bottom: 28px; left: 28px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--t); animation: wa-pulse 2.5s ease-in-out infinite;
}
#wa-fab:hover { transform: scale(1.12); box-shadow: 0 14px 40px rgba(37,211,102,0.65); }
@keyframes wa-pulse {
  0%,100%{box-shadow:0 8px 28px rgba(37,211,102,0.45)}
  50%{box-shadow:0 8px 40px rgba(37,211,102,0.7),0 0 0 12px rgba(37,211,102,0.08)}
}
#btt {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--yellow); color: var(--navy); font-size: 17px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(14,165,233,0.35);
  opacity: 0; visibility: hidden; transition: var(--t);
}
#btt.show { opacity: 1; visibility: visible; }
#btt:hover { background: var(--yellow-dk); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(14,165,233,0.5); }

/* COOKIE */
#cookie {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 700; max-width: 540px; width: calc(100% - 48px);
  background: var(--navy-dk); backdrop-filter: blur(24px);
  border: 1px solid rgba(14,165,233,0.2); border-radius: var(--r-sm);
  padding: 20px 24px; display: flex; align-items: center; gap: 20px;
  box-shadow: var(--shadow-lg); transition: var(--t);
}
#cookie.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
#cookie p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.6; flex: 1; }
#cookie p a { color: var(--yellow); }
#cookie-btn { background: var(--yellow); color: var(--navy); border: none; padding: 10px 22px; border-radius: 6px; font-weight: 800; font-size: 13px; cursor: pointer; white-space: nowrap; transition: var(--t); font-family: 'Plus Jakarta Sans', sans-serif; }
#cookie-btn:hover { background: var(--yellow-dk); }

/* ═══ REVEAL ANIMATIONS ═══ */
.gsap-fade  { opacity: 0; transform: translateY(52px); }
.gsap-left  { opacity: 0; transform: translateX(-64px); }
.gsap-right { opacity: 0; transform: translateX(64px); }
.gsap-scale { opacity: 0; transform: scale(0.88); }

/* ─── MISSING UTILITY FIXES ─── */
.sh-white em { color: var(--yellow) !important; -webkit-text-fill-color: var(--yellow) !important; }

/* Stats section on yellow band */
#stats { border-top: 5px solid var(--yellow); }

/* Spec row first/last radius */
.spec-list .spec-row:first-child { border-radius: var(--r-sm) var(--r-sm) 0 0; }
.spec-list .spec-row:last-child  { border-radius: 0 0 var(--r-sm) var(--r-sm); border-bottom: none; }

/* Nav dot override handled by JS — base keeps dark fallback */

/* Form success button */
.form-success .btn-yellow { margin-top: 26px; display: inline-flex; }

/* Testimonials background header on gray */
#testimonials .eyebrow { background: var(--yellow); }

/* Process section eyebrow gets navy bg */
.process-header .eyebrow { background: var(--navy) !important; color: var(--yellow) !important; }
.process-header .sh       { color: var(--navy) !important; }
.process-header .sh em    { color: var(--navy-dk) !important; -webkit-text-fill-color: var(--navy-dk) !important; }
.process-header .sp       { color: rgba(17,17,17,0.72) !important; }

/* Hero pill on mobile fallback */
@media (max-width: 900px) { .hero-pill { display: none; } }

/* Comparison table last-child no border */
.ctable tbody tr:last-child td { border-bottom: none; }

/* Why card left accent pulse on focus */
.why-card:focus-within { border-color: var(--yellow); outline: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width:1100px) {
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-wrap: wrap; gap: 40px; }
  .process-steps::before { display: none; }
}
@media (max-width:900px) {
  .hero-inner,.about-grid,.product-layout,.science-grid,.global-grid,.contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-inner { padding: clamp(16px, 3vh, 36px) 5% 40px; }
  .hero-visual { display: none; }
  /* re-center text on mobile */
  .hero-content-center { align-items: center; text-align: center; }
  .hero-title { text-align: center; }
  .hero-desc { text-align: center; max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  #nav-dots { display: none; }
  .about-imgs { height: 320px; }
  .aimg-main { width: 70%; height: 100%; }
  .aimg-sub { width: 54%; height: 52%; bottom: 16px; }
  .nav-center a { font-size: 11px; padding: 5px 7px; }
  .nav-brand-sub { display: none; }
  .nav-brand-name { font-size: 15px; }
  .nav-logo-img { height: 40px; }
}
@media (max-width:480px) {
  .nav-center { display: none; }
  .hamburger { display: flex; }
}
@media (max-width:640px) {
  section { padding: 56px 0; }
  .benefits-grid,.why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
  .sci-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-yellow,.btn-outline-white { width: 100%; justify-content: center; }
  .mform { padding: 28px 22px; }
  .cta-btns { flex-direction: column; align-items: center; }
}


/* ===================================================================
   CINEMATIC SHOWCASE SECTION
   =================================================================== */

#showcase {
  background: linear-gradient(160deg, #F0F9FF 0%, #E0F2FE 55%, #F8FBFF 100%);
  padding: 16px 0 24px;
  position: relative;
  overflow: hidden;
}
#showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14,165,233,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#showcase::after {
  content: "";
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: ambient-breathe 5s ease-in-out infinite;
}
@keyframes ambient-breathe {
  0%,100%{opacity:.6;transform:translateX(-50%) scale(1)}
  50%{opacity:1;transform:translateX(-50%) scale(1.08)}
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto;
  gap: 24px 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.showcase-header {
  grid-column: 1; grid-row: 1;
  text-align: left; max-width: none;
}
.showcase-video-wrap {
  grid-column: 2; grid-row: 1 / 3;
  position: relative;
  width: 340px;
}
.showcase-stats {
  grid-column: 1; grid-row: 2;
  margin: 0;
}

/* Ambient glow — reduced blur for sharper perceived quality */
.sv-glow-outer {
  position: absolute;
  inset: -36px;
  border-radius: 32px;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.22) 0%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}
.sv-glow-inner {
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.08) 0%, transparent 55%);
  filter: blur(6px);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite 1.2s;
}
@keyframes glow-pulse {
  0%,100%{opacity:.6} 50%{opacity:1}
}

/* ── VIDEO FRAME — 9:16 portrait ── */
.sv-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  border: 2px solid rgba(14,165,233,0.55);
  box-shadow:
    0 0 0 1px rgba(14,165,233,0.15),
    0 32px 80px rgba(14,165,233,0.18),
    0 8px 32px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s;
  background: #000;
}
.sv-frame:hover {
  border-color: rgba(14,165,233,0.85);
  box-shadow:
    0 0 0 1px rgba(14,165,233,0.3),
    0 40px 100px rgba(14,165,233,0.22),
    0 12px 40px rgba(0,0,0,0.10);
}

/* ── VIDEO — portrait fill, no bars ── */
.sv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Top label vignette — minimal, just enough to read the label */
.sv-overlay-top {
  position: absolute;
  top:0;left:0;right:0;height:60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}
.sv-overlay-bottom { display: none; }
.sv-corner-label {
  position: absolute;
  top:18px;left:20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  z-index: 10;
  pointer-events: none;
}
.sv-live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: live-ping 1.8s ease-in-out infinite;
}
@keyframes live-ping {
  0%{box-shadow:0 0 0 0 rgba(14,165,233,0.6)}
  70%{box-shadow:0 0 0 8px rgba(14,165,233,0)}
  100%{box-shadow:0 0 0 0 rgba(14,165,233,0)}
}
/* ── Corner label ── */
.sv-hd-badge {
  font-size: 9px; font-weight: 900; letter-spacing: 1.5px;
  background: var(--yellow); color: #111;
  padding: 2px 7px; border-radius: 3px;
}

/* ── Click zone (centre) ── */
.sv-click-zone {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 8;
}
.sv-play-icon {
  width: 72px; height: 72px;
  background: rgba(0,0,0,0.65);
  border: 2px solid rgba(14,165,233,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(12px);
  pointer-events: none;
  box-shadow: 0 0 32px rgba(14,165,233,0.3);
}
.sv-play-icon.show { opacity: 1; transform: scale(1); }
.sv-play-icon i { font-size: 26px; color: var(--yellow); margin-left: 4px; }

/* ── Bottom controls bar ── */
.sv-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
}
.sv-frame:hover .sv-controls { opacity: 1; transform: none; }

.sv-ctrl-btn {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; cursor: pointer; transition: all 0.18s;
  backdrop-filter: blur(8px);
}
.sv-ctrl-btn:hover { background: var(--yellow); color: #111; border-color: var(--yellow); transform: scale(1.1); }

.sv-prog-wrap { flex: 1; cursor: pointer; padding: 8px 0; }
.sv-prog-track {
  position: relative; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.sv-prog-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dk));
  width: 0%; transition: width 0.15s linear;
  box-shadow: 0 0 8px rgba(14,165,233,0.5);
}
.sv-prog-thumb {
  position: absolute; top: 50%; right: calc(100% - var(--pct, 0%));
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--yellow); transform: translate(50%, -50%) scale(0);
  transition: transform 0.18s;
  box-shadow: 0 0 8px rgba(14,165,233,0.6);
}
.sv-prog-wrap:hover .sv-prog-thumb { transform: translate(50%, -50%) scale(1); }
.sv-prog-wrap:hover .sv-prog-track { height: 5px; }

.sv-time {
  font-size: 11px; font-family: monospace; color: rgba(255,255,255,0.6);
  font-weight: 700; letter-spacing: 0.5px; flex-shrink: 0; min-width: 36px;
}
.sv-pill {
  position: absolute;
  display: flex;align-items:center;gap:7px;
  background: var(--white);
  border: 1px solid var(--border-warm);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12px;font-weight:700;letter-spacing:.2px;
  white-space: nowrap;
  z-index: 25;
  box-shadow: 0 8px 24px rgba(14,165,233,0.12), 0 2px 8px rgba(0,0,0,0.06);
}
.sv-pill i{color:var(--yellow);font-size:11px;flex-shrink:0}
.sv-tl{top:-18px;left:28px;animation:float-a 4s ease-in-out infinite 0s}
.sv-tr{top:-18px;right:28px;animation:float-b 4s ease-in-out infinite 1.1s}
.sv-bl{bottom:-18px;left:28px;animation:float-b 4s ease-in-out infinite 0.5s}
.sv-br{bottom:-18px;right:28px;animation:float-a 4s ease-in-out infinite 1.6s}
@keyframes float-a{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
@keyframes float-b{0%,100%{transform:translateY(0)}50%{transform:translateY(7px)}}
/* ── SHOWCASE STATS — clean individual cards ── */
.showcase-stats {
  display: flex; align-items: stretch; gap: 12px;
  width: 100%; max-width: 1200px;
  padding: 4px 0 8px;
}
.ss-sep { display: none; }

.ss-item {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid #BAE6FD;
  border-top: 4px solid #0EA5E9;
  border-radius: 14px;
  padding: 24px 14px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(14,165,233,0.10), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.ss-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,165,233,0.20), 0 2px 8px rgba(0,0,0,0.06);
  border-top-color: #0284C7;
}

.ss-num {
  display: block;
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 700; line-height: 1; letter-spacing: -0.5px;
  color: var(--navy);
}
.ss-lbl {
  display: block;
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(9px, 0.75vw, 11px); font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.8px; text-transform: uppercase; line-height: 1.5;
}
@media(max-width:900px){
  .sv-tr,.sv-bl{display:none}
  .showcase-inner{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    gap: 24px;
  }
  .showcase-video-wrap{
    grid-column: 1; grid-row: 1;
    width: 100%; max-width: 300px;
  }
  .showcase-header{
    grid-column: 1; grid-row: 2;
    text-align: center;
  }
  .showcase-stats{grid-column:1;grid-row:3;gap:8px}
  .ss-num{font-size:1.5rem}
  .ss-item{padding:14px 8px 12px}
}
@media(max-width:640px){
  #showcase{padding:16px 0 24px}
  .sv-tl,.sv-br{font-size:10.5px;padding:7px 13px}
  .showcase-stats{flex-wrap:wrap;gap:8px;padding:0}
  .ss-item{min-width:calc(33% - 8px);padding:12px 8px 10px}
  .ss-num{font-size:1.3rem}
}

/* ── Hero mini stats (on dark hero) ── */
.hero-mini-stats {
  display: flex; align-items: center; gap: 0;
  margin: 16px 0 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 20px 36px;
  backdrop-filter: blur(16px);
  max-width: 520px; width: 100%;
}
.hms-item { flex: 1; text-align: center; }
.hms-num {
  display: block; font-family: 'Times New Roman', Times, serif;
  font-size: 1.9rem; font-weight: 700; color: var(--yellow);
  line-height: 1; letter-spacing: -0.5px;
}
.hms-lbl {
  display: block; font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.45); letter-spacing: 1px;
  text-transform: uppercase; margin-top: 4px;
}
.hms-div { width: 1px; height: 44px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ══════════════════════════════════════════
   PRODUCT GALLERY SECTION
   ══════════════════════════════════════════ */
#gallery { background: var(--off); padding: 80px 0 64px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: 200px 160px;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 0;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 18px; cursor: pointer;
  background: var(--gray-lt);
}
.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 20px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:nth-child(1) .gallery-overlay { opacity: 0.7; }
.gallery-item:nth-child(1):hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  display: inline-block; background: var(--yellow); color: #111;
  font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 4px;
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px;
  width: fit-content;
}
.gallery-caption {
  font-size: 13.5px; color: rgba(255,255,255,0.92);
  font-weight: 600; line-height: 1.45;
}

/* Certification strip */
.cert-strip {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--gray);
  border-radius: 18px; padding: 28px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  flex-wrap: wrap; gap: 0;
}
.cert-badge-lg {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 130px; padding: 8px 16px;
}
.cbl-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--yellow-lt); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
  border: 1.5px solid var(--yellow);
}
.cbl-title { font-weight: 800; font-size: 13px; color: var(--navy); line-height: 1; }
.cbl-sub { font-size: 11px; color: var(--text-3); margin-top: 4px; line-height: 1.3; }
.cert-divider { width: 1px; height: 52px; background: var(--gray); flex-shrink: 0; }

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 280px 230px; }
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; }
  .gallery-item:nth-child(1) { grid-row: auto; height: 260px; }
  .gallery-item { height: 200px; }
  .gallery-overlay { opacity: 1 !important; }
  .cert-strip { gap: 16px; padding: 22px 24px; }
  .cert-divider { display: none; }
  .cert-badge-lg { flex: 0 0 calc(50% - 8px); min-width: unset; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  .cert-badge-lg { flex: 0 0 100%; padding: 12px 0; border-bottom: 1px solid var(--gray); }
  .cert-badge-lg:last-child { border-bottom: none; }
}
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   B2B INDUSTRY MARKETS SECTION — Light Theme
   ══════════════════════════════════════════ */
#markets {
  background: var(--gray-lt);
  padding: 100px 0 90px;
  position: relative; overflow: hidden;
}
#markets::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow);
}

/* Overview stats bar */
.mkt-overview {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--gray);
  border-top: 3px solid var(--yellow);
  border-radius: 16px; padding: 24px 40px;
  margin: 16px 0 20px; gap: 0;
  box-shadow: var(--shadow-sm);
}
.mkt-ov-item { flex: 1; text-align: center; padding: 0 20px; }
.mkt-ov-n {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--navy); line-height: 1; letter-spacing: -1.5px;
}
.mkt-ov-l {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--text-3); letter-spacing: 1px;
  text-transform: uppercase; margin-top: 6px;
}
.mkt-ov-sep { width: 1px; height: 52px; background: var(--gray); flex-shrink: 0; }

/* Filter bar */
.mkt-filters {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px; margin-bottom: 16px;
}
.mkt-filter {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 100px;
  background: var(--white); border: 1.5px solid var(--gray);
  color: var(--text-2); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.22s var(--ease);
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: var(--shadow-xs);
}
.mkt-filter i { font-size: 11px; }
.mkt-filter:hover { border-color: var(--yellow-dk); color: var(--navy); background: var(--yellow-lt); }
.mkt-filter.active {
  background: var(--navy); border-color: var(--navy);
  color: var(--yellow); box-shadow: 0 4px 14px rgba(17,17,17,0.25);
}

/* Count text */
.mkt-count {
  text-align: center; font-size: 12px; color: var(--text-3);
  margin-bottom: 28px; font-weight: 600;
}
#mkt-count-n { color: var(--navy); font-weight: 900; }

/* ── INDUSTRY MARQUEE ── */
.mkt-marquee-outer {
  position: relative;
  overflow: hidden;
  padding: 16px 0 24px;
  margin-bottom: 36px;
}
.mkt-marquee-outer::before,
.mkt-marquee-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 10; pointer-events: none;
}
.mkt-marquee-outer::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.mkt-marquee-outer::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.mkt-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.mkt-slide {
  width: 260px;
  height: 320px;
  flex: 0 0 260px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(4,13,24,0.18);
}
.mkt-slide-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.mkt-slide:hover .mkt-slide-img { transform: scale(1.08); }

/* fallback gradient per col if image fails */
.mkt-slide.mkt-col-0 { background: linear-gradient(135deg,#023E8A,#0096C7); }
.mkt-slide.mkt-col-1 { background: linear-gradient(135deg,#1B4332,#40916C); }
.mkt-slide.mkt-col-2 { background: linear-gradient(135deg,#1A1A2E,#2563EB); }
.mkt-slide.mkt-col-3 { background: linear-gradient(135deg,#6B0F1A,#DB2777); }
.mkt-slide.mkt-col-4 { background: linear-gradient(135deg,#7C2D12,#EA580C); }
.mkt-slide.mkt-col-5 { background: linear-gradient(135deg,#3B0764,#7C3AED); }
.mkt-slide.mkt-col-6 { background: linear-gradient(135deg,#0C4A6E,#0891B2); }

.mkt-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(4,13,24,0.93) 0%,rgba(4,13,24,0.5) 45%,rgba(4,13,24,0.08) 100%);
  transition: background 0.3s ease;
}
.mkt-slide:hover .mkt-slide-overlay {
  background: linear-gradient(to top,rgba(4,13,24,0.97) 0%,rgba(4,13,24,0.65) 55%,rgba(4,13,24,0.22) 100%);
}

.mkt-slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 18px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.mkt-slide-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.13); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--yellow); margin-bottom: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease; flex-shrink: 0;
}
.mkt-slide:hover .mkt-slide-icon-wrap { background: var(--yellow); color: var(--navy); }

.mkt-slide-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  color: #fff; line-height: 1.3; letter-spacing: -0.2px;
}
.mkt-slide-use {
  font-size: 11.5px; color: rgba(255,255,255,0.65);
  line-height: 1.5; opacity: 0; transform: translateY(6px);
  transition: all 0.3s ease;
}
.mkt-slide:hover .mkt-slide-use { opacity: 1; transform: translateY(0); }

/* demand badges — light version for dark bg */
.mkt-slide .mkt-demand { align-self: flex-start; }
.mkt-slide .dem-veryhigh { background:rgba(14,165,233,0.28); color:#7DD3FC; border:1px solid rgba(14,165,233,0.5); }
.mkt-slide .dem-high     { background:rgba(34,197,94,0.2);   color:#86EFAC; border:1px solid rgba(34,197,94,0.4); }
.mkt-slide .dem-fastgrow { background:rgba(59,130,246,0.25); color:#93C5FD; border:1px solid rgba(59,130,246,0.4); }
.mkt-slide .dem-growing  { background:rgba(249,115,22,0.25); color:#FCA5A5; border:1px solid rgba(249,115,22,0.4); }

/* keep old .mkt-card for any fallback */
.mkt-card { display: none; }

/* Card top row */
.mkt-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.mkt-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.mkt-icon.col-0 { background: rgba(14,165,233,0.15); color: #0284C7; }
.mkt-icon.col-1 { background: rgba(34,197,94,0.12);  color: #15803d; }
.mkt-icon.col-2 { background: rgba(59,130,246,0.12);  color: #1d4ed8; }
.mkt-icon.col-3 { background: rgba(236,72,153,0.12);  color: #be185d; }
.mkt-icon.col-4 { background: rgba(249,115,22,0.12);  color: #c2410c; }
.mkt-icon.col-5 { background: rgba(168,85,247,0.12);  color: #7e22ce; }
.mkt-icon.col-6 { background: rgba(6,182,212,0.12);   color: #0e7490; }

/* Demand badge */
.mkt-demand {
  font-size: 10px; font-weight: 800; padding: 3px 10px;
  border-radius: 100px; white-space: nowrap;
  letter-spacing: 0.3px; display: flex; align-items: center; gap: 4px;
}
.dem-veryhigh { background: rgba(14,165,233,0.2);  color: #0369A1;  border: 1px solid rgba(14,165,233,0.4); }
.dem-high     { background: rgba(34,197,94,0.12); color: #15803d;  border: 1px solid rgba(34,197,94,0.25); }
.dem-fastgrow { background: rgba(59,130,246,0.12);color: #1d4ed8;  border: 1px solid rgba(59,130,246,0.25); }
.dem-growing  { background: rgba(249,115,22,0.12);color: #c2410c;  border: 1px solid rgba(249,115,22,0.25); }
.dem-medium   { background: rgba(107,114,128,0.1);color: #374151;  border: 1px solid rgba(107,114,128,0.2); }

/* Card content */
.mkt-name { font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.3; }
.mkt-use  { font-size: 12.5px; color: var(--text-2); line-height: 1.55; flex: 1; }
.mkt-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding-top: 10px; border-top: 1px solid var(--gray-lt);
  margin-top: auto;
}
.mkt-form {
  font-size: 11px; color: var(--text-3); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mkt-form i { color: var(--navy); font-size: 10px; flex-shrink: 0; }
.mkt-type {
  font-size: 10px; font-weight: 800; padding: 3px 9px;
  border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}
.mkt-type-direct   { background: var(--navy); color: var(--yellow); }
.mkt-type-indirect { background: var(--gray-lt); color: var(--text-2); border: 1px solid var(--gray); }

/* Bottom CTA */
.mkt-cta {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); border-radius: 16px;
  padding: 28px 36px; gap: 28px; flex-wrap: wrap;
}
.mkt-cta-title {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900;
  color: var(--white); margin-bottom: 6px; letter-spacing: -0.3px;
}
.mkt-cta-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 500px; }

/* Responsive */
@media (max-width: 900px) {
  .mkt-overview { padding: 20px 24px; flex-wrap: wrap; gap: 16px; }
  .mkt-ov-sep { display: none; }
  .mkt-ov-item { flex: 0 0 calc(50% - 8px); }
  .mkt-slide { width: 220px; height: 280px; }
}
@media (max-width: 580px) {
  .mkt-cta  { flex-direction: column; padding: 24px; }
  .mkt-slide { width: 190px; height: 250px; }
}

/* ═══════════════════════════════════════════════════════
   WORLD-CLASS TYPOGRAPHY & LAYOUT UPGRADE
   ═══════════════════════════════════════════════════════ */

/* ── GLOBAL SPACING ── */
section { padding: 16px 0; }
#clinical  { padding: 16px 0; }
#process   { padding: 16px 0; }
#showcase  { padding: 16px 0 24px; }
#markets   { padding: 16px 0; }
#cta-band  { padding: 20px 0; }
#stats     { padding: 12px 0; }
#gallery   { padding: 16px 0 12px; }
#shop      { padding: 12px 0 20px; }
body { font-size: 16.5px; }

/* ── TYPE SCALE FOUNDATION ── */
.sh {
  font-size: clamp(38px, 4.2vw, 62px);
  letter-spacing: -2.5px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.sp {
  font-size: 18.5px;
  line-height: 1.92;
}
.eyebrow {
  font-size: 11.5px;
  letter-spacing: 3.5px;
  padding: 7px 16px;
  margin-bottom: 20px;
}

/* ── HERO ── */
.hero-desc { font-size: 16px; line-height: 1.72; max-width: 620px; }
.hero-eyebrow { font-size: 12px; letter-spacing: 3px; }
.hero-title { letter-spacing: -3px; }
.trust-item span { font-size: 13px; }

/* ── ABOUT ── */
.af-text h4 { font-size: 17.5px; margin-bottom: 8px; }
.af-text p  { font-size: 15.5px; line-height: 1.8; }

/* ── PRODUCT SPECS ── */
.spec-row { padding: 17px 24px; }
.sk { font-size: 14.5px; }
.sv { font-size: 15px; }

/* ── BENEFIT CARDS ── */
.bcard-icon { font-size: 36px; margin-bottom: 10px; }
.bcard h3   { font-size: 17px !important; font-weight: 900 !important; color: #ffffff !important; margin-bottom: 8px; letter-spacing: -0.2px; }
.bcard p    { font-size: 13px; line-height: 1.68; color: rgba(255,255,255,0.88) !important; }
.bcard { padding: 0; }

/* ── SCIENCE ── */
.sci-num { font-size: clamp(44px, 5vw, 58px); }
.sci-lbl { font-size: 13.5px; line-height: 1.6; margin-top: 10px; }

/* ── CLINICAL ── */
.clin-lbl  { font-size: 10px; }
.clin-sub  { font-size: 10.5px; }
.clin-card p { font-size: 15.5px; line-height: 1.85; }
.clin-list li { font-size: 15px; }
.cmf-step  { font-size: 15px; padding: 15px 18px; }
.clin-quote blockquote { font-size: 16.5px; line-height: 1.95; }
.clin-q-src  { font-size: 14px; }
.clin-q-note { font-size: 14.5px; }
.ci-name { font-size: 14.5px; margin-bottom: 8px; }
.ci-loc  { font-size: 12.5px; margin-bottom: 14px; }
.ci-tag  { font-size: 11px; padding: 4px 14px; }

/* ── COMPARISON ── */
.ctable thead th { font-size: 15px; padding: 26px 28px; }
.ctable tbody td { font-size: 15px; padding: 18px 28px; }
.fl { font-size: 15px; }

/* ── INGREDIENTS ── */
.herb-tile h4  { font-size: 14.5px; }
.herb-tile .hs { font-size: 12.5px; }
.hbadge        { font-size: 11.5px; padding: 6px 13px; }

/* ── PROCESS ── */
.pstep h3 { font-size: 17px; margin-bottom: 12px; }
.pstep p  { font-size: 14.5px; line-height: 1.75; }

/* ── WHY CARDS ── */
.why-icon   { font-size: 42px; margin-bottom: 20px; }
.why-card h3 { font-size: 20px; margin-bottom: 14px; }
.why-card p  { font-size: 15.5px; line-height: 1.82; }
.why-card    { padding: 40px 34px; }
.why-grid    { gap: 16px; margin-top: 20px; }

/* ── GLOBAL / MARKETS ── */
.gnum .gn   { font-size: 44px; }
.gnum small { font-size: 13.5px; margin-top: 10px; }
.mtag       { font-size: 14px; padding: 10px 18px; }

/* ── MARKET CARDS ── */
.mkt-name    { font-size: 15px; }
.mkt-use     { font-size: 13.5px; line-height: 1.6; }
.mkt-demand  { font-size: 11px; padding: 4px 11px; }
.mkt-form    { font-size: 12px; }
.mkt-type    { font-size: 11px; padding: 4px 10px; }
.mkt-card    { padding: 22px 20px 18px; }
.mkt-cta-desc { font-size: 15px; }

/* ── TESTIMONIALS ── */
.tcard-stars { font-size: 17px; }
.tcard-quote { font-size: 16.5px; line-height: 1.9; }
.tcard-name  { font-size: 16px; }
.tcard-role  { font-size: 13.5px; margin-top: 4px; }
.tcard       { padding: 24px; }

/* ── FAQ ── */
.faq-q   { font-size: 15px; padding: 16px 20px; }
.faq-a p { font-size: 15.5px; line-height: 1.88; }
.faq-a   { padding: 0 28px; }
.faq-item.open .faq-a { padding-bottom: 28px; }

/* ── CONTACT ── */
.cd-txt h4 { font-size: 16px; margin-bottom: 6px; }
.cd-txt p  { font-size: 15px; line-height: 1.7; }
.mform-title { font-size: 30px; }
.fg label  { font-size: 12px; }
.fg input, .fg select, .fg textarea { font-size: 15px; padding: 15px 18px; }

/* ── CTA BAND ── */
.cta-inner p { font-size: 19px; }

/* ── FOOTER ── */
.fbrand-desc   { font-size: 15px; line-height: 1.9; }
.fcol h5       { font-size: 15px; margin-bottom: 26px; }
.fcol ul a     { font-size: 15px; }
.footer-bottom p    { font-size: 14px; }
.footer-bottom span { font-size: 13px; }

/* ── CERT / PRODUCT STRIPS ── */
.cbl-title { font-size: 15.5px; font-weight: 800; }
.cbl-sub   { font-size: 13px; margin-top: 3px; }

/* ── EXPORT PROCESS — LIGHT REDESIGN ── */
#process {
  background: linear-gradient(160deg, #FFFFFF 0%, #F0F9FF 55%, #FFFFFF 100%) !important;
}
.process-header .eyebrow { background: var(--yellow) !important; color: var(--navy) !important; }
.process-header .sh  { color: var(--navy) !important; }
.process-header .sh em { color: var(--yellow-dk) !important; -webkit-text-fill-color: var(--yellow-dk) !important; }
.process-header .sp  { color: var(--text-2) !important; }

.process-steps {
  display: grid !important;
  flex-wrap: unset !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.process-steps::before { display: none !important; }

.pstep {
  background: var(--navy);
  border: none;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left !important;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 32px rgba(4,13,24,0.22);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pstep-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 0;
}
.pstep-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,13,24,0.95) 0%, rgba(4,13,24,0.65) 50%, rgba(4,13,24,0.25) 100%);
  z-index: 1;
}
.pstep:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(4,13,24,0.45); }
.pstep:hover .pstep-bg-img { transform: scale(1.07); }
.pstep::before { display: none; }

.pstep-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  margin: 0 0 20px !important;
  background: var(--yellow) !important;
  border: none !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  color: var(--navy) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  position: relative; z-index: 2;
}
.pstep-icon { font-size: 26px !important; color: var(--yellow) !important; margin-bottom: 14px; position: relative; z-index: 2; }
.pstep h3 { color: #fff !important; text-align: left !important; position: relative; z-index: 2; font-size: 16px !important; }
.pstep p  { color: rgba(255,255,255,0.72) !important; text-align: left !important; position: relative; z-index: 2; font-size: 13px !important; }

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 580px) {
  .process-steps { grid-template-columns: 1fr !important; }
  .pstep { padding: 30px 24px; }
}

/* ── SHOP — override gsap invisible state ── */
#shop .gsap-fade,
#shop .gsap-scale { opacity: 1 !important; transform: none !important; }

/* ── SECTION BACKGROUND ALTERNATION for visual flow ── */
#about        { background: var(--white); }
#product      { background: linear-gradient(160deg, #F0F9FF 0%, #EFF8FF 100%); }
#benefits     { background: var(--white); }
#science      { background: linear-gradient(160deg, #F8FBFF 0%, #EFF8FF 100%); }
#comparison   { background: var(--white); }
#ingredients  { background: linear-gradient(160deg, #F0F9FF 0%, #E8F4FF 100%); }
#why          { background: var(--white); }
#markets      { background: linear-gradient(160deg, #F8FBFF 0%, #EFF8FF 100%); }
#gallery      { background: var(--white); }
#global       { background: linear-gradient(160deg, #F0F9FF 0%, #E0F2FE 100%); }
#testimonials { background: var(--white); }
#faq          { background: linear-gradient(160deg, #F8FBFF 0%, #EFF8FF 100%); }
#contact      { background: var(--white); }

/* ── SECTION MAX-WIDTH CONSISTENCY ── */
.sw { max-width: 1360px; }

/* ── CARD HOVER ELEVATION ── */
.bcard:hover   { box-shadow: 0 28px 64px rgba(14,165,233,0.14); transform: translateY(-10px); }
.why-card:hover { box-shadow: 0 28px 64px rgba(14,165,233,0.13); transform: translateY(-10px); }
.mkt-card:hover { box-shadow: 0 20px 48px rgba(14,165,233,0.13); transform: translateY(-8px); }

/* ── MOBILE RESPONSIVE OVERRIDE ── */
@media (max-width: 900px) {
  section { padding: 14px 0; }
  .sh { font-size: clamp(36px, 6vw, 56px); letter-spacing: -2px; }
  .sp { font-size: 17px; }
  .heb-main { display: none; }
  .heb-brand { padding: 11px 16px; }
}
@media (max-width: 640px) {
  section { padding: 10px 0; }
  .sh { font-size: clamp(32px, 8vw, 48px); letter-spacing: -1.5px; }
  .sp { font-size: 16px; }
  .hero-desc { font-size: 17px; }
  .bcard h3 { font-size: 17px; }
  .why-card h3 { font-size: 18px; }
  .faq-q { font-size: 15px; padding: 20px 20px; }
  .heb-badge { padding: 10px 16px; font-size: 10.5px; }
  .heb-sep { display: none; }
}

/* ══ FINAL: card headings always pure white bold — highest priority ══ */
.bcard h3,
.bcard h3 * { color: #ffffff !important; font-weight: 900 !important; }
.bcard p,
.bcard p * { color: rgba(255,255,255,0.90) !important; }
.herb-tile h4,
.herb-tile h4 * { color: #ffffff !important; font-weight: 900 !important; }
.herb-tile .hs { color: rgba(255,255,255,0.85) !important; }

/* ── UI/UX Pro Max Skill Implementations ── */

/* cursor-pointer on interactive cards */
.ss-item { cursor: pointer; }

/* Active nav link indicator */
.nav-center a.active {
  color: var(--blue) !important;
  background: rgba(14,165,233,0.08);
  border-radius: 8px;
}
.nav-center a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--blue); border-radius: 2px;
}

/* ── Hero sound toggle button ── */
.hero-sound-btn {
  position: absolute; bottom: 32px; right: 32px; z-index: 30;
  height: 44px; padding: 0 18px; border-radius: 100px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all 0.22s ease;
  pointer-events: auto; letter-spacing: 0.3px;
}
.hero-sound-btn:hover {
  background: rgba(14,165,233,0.5);
  border-color: rgba(14,165,233,0.8);
  transform: scale(1.05);
}
.hero-sound-btn.unmuted {
  background: rgba(14,165,233,0.45);
  border-color: rgba(14,165,233,0.85);
}
.hero-sound-btn .snd-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

/* mot-w word spans inside hero title */
.mot-w { will-change: transform, opacity; }

/* Shimmer on section kickers */
.section-tag, .sec-kicker {
  position: relative; overflow: hidden;
}
.section-tag::after, .sec-kicker::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: mot-shimmer 3.5s ease 1.2s forwards;
  pointer-events: none;
}
@keyframes mot-shimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}

/* Smooth will-change for spring-animated elements */
.btn-yellow, .btn-outline-white, .btn-atc, .bcard, .tcard, .pcard, .why-card, .ss-item {
  will-change: transform;
}

/* prefers-reduced-motion — disable all transitions/animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-video-bg { display: none; }
}
