/* ============================================================
   KAYABIOTICS — Premium Pharmaceutical B2B Website
   style.css — Complete Design System
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Royal Blue & #FBFBFB palette */
  --kb-navy:      #0C1E5B;
  --kb-navy-mid:  #132472;
  --kb-navy-soft: #1A3A8F;
  --kb-blue:      #1A3A8F;
  --kb-blue-light:#2E6BE6;
  --kb-teal:      #0EA5E9;
  --kb-teal-dark: #0284C7;
  --kb-emerald:   #10B981;
  --kb-white:     #FFFFFF;
  --kb-off-white: #F4F8FD;
  --kb-grey-100:  #E8F0FC;
  --kb-grey-200:  #C5D5EE;
  --kb-grey-400:  #6B85B5;
  --kb-grey-600:  #3A5278;
  --kb-text:      #0F1F45;
  --kb-text-soft: #3A5270;
  --kb-grad:      linear-gradient(135deg, #2E6BE6, #1A3A8F);
  --kb-grad-rev:  linear-gradient(135deg, #1A3A8F, #2E6BE6);
  --kb-grad-dark: linear-gradient(135deg, #0C1E5B, #132472);
  --kb-shadow-sm: 0 2px 12px rgba(12,30,91,.08);
  --kb-shadow:    0 8px 32px rgba(12,30,91,.12);
  --kb-shadow-lg: 0 20px 60px rgba(12,30,91,.18);
  --kb-shadow-xl: 0 32px 80px rgba(12,30,91,.24);
  --kb-radius-sm: 10px;
  --kb-radius:    10px;
  --kb-radius-lg: 10px;
  --kb-radius-xl: 12px;
  --kb-transition: .3s cubic-bezier(.4,0,.2,1);
  --navbar-h: 72px;
  --announce-h: 40px;
}

/* ─── Base Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--kb-text);
  background: #FBFBFB;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--kb-transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kb-teal);
  background: rgba(26,58,143,.08);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(26,58,143,.2);
}

.section-heading {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--kb-navy);
  letter-spacing: -.02em;
}

.section-heading.light { color: var(--kb-navy); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--kb-text-soft);
  line-height: 1.75;
  max-width: 1000px;
}

.section-sub.light { color: var(--kb-text-soft); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary-kb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.75rem;
  background: var(--kb-grad);
  color: var(--kb-white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--kb-transition);
  box-shadow: 0 4px 20px rgba(26,58,143,.3);
}
.btn-primary-kb::before {
  position: absolute;
  inset: 0;
  background: var(--kb-grad-rev);
  opacity: 0;
  transition: var(--kb-transition);
}
.btn-primary-kb:hover::before { opacity: 1; }
.btn-primary-kb:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,58,143,.4); color: var(--kb-white); }
.btn-primary-kb span, .btn-primary-kb i { position: relative; z-index: 1; }

.btn-outline-kb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: transparent;
  color: var(--kb-teal);
  border: 2px solid var(--kb-teal);
  border-radius: 50px;
  font-weight: 700;
  font-size: .9375rem;
  transition: var(--kb-transition);
}
.btn-outline-kb:hover { background: var(--kb-teal); color: var(--kb-white); transform: translateY(-2px); }

.btn-outline-kb-light {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: transparent;
  color: var(--kb-white);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50px;
  font-weight: 600;
  font-size: .9375rem;
  transition: var(--kb-transition);
}
.btn-outline-kb-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: var(--kb-white); }

.btn-ghost-kb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  color: var(--kb-navy);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 50px;
  transition: var(--kb-transition);
  border: 1px solid var(--kb-grey-200);
}
.btn-ghost-kb:hover { background: var(--kb-off-white); color: var(--kb-blue); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.75rem;
  background: #25D366;
  color: var(--kb-white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .9375rem;
  transition: var(--kb-transition);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); color: var(--kb-white); }

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--kb-teal);
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem 0;
  border-bottom: 1px solid transparent;
  transition: var(--kb-transition);
}
.btn-text-link:hover { color: var(--kb-blue); border-bottom-color: var(--kb-blue); gap: .65rem; }

/* ─── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--kb-grad);
  color: var(--kb-white);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .3s ease, height .3s ease;
}
.announcement-bar.hidden { height: 0; }
.announce-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  flex: 1;
}
.announce-track .sep { opacity: .5; }
.announce-track i { margin-right: .25rem; }
.announce-close {
  position: absolute;
  right: 1rem;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  padding: .25rem .5rem;
  transition: color .2s;
}
.announce-close:hover { color: var(--kb-white); }

/* ─── Navbar ─────────────────────────────────────────────────── */
.kb-navbar {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  z-index: 1050;
  height: var(--navbar-h);
  padding: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,.55) 0%, rgba(8,8,8,.15) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .4s ease, top .3s ease, box-shadow .4s ease, backdrop-filter .4s;
}
.kb-navbar.scrolled {
  background: var(--kb-white) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 2px 28px rgba(0,0,0,.12);
}
.kb-navbar.announce-hidden { top: 0; }

.kb-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon svg { transition: transform .4s ease; }
.kb-logo:hover .logo-icon svg { transform: rotate(15deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--kb-white);
  letter-spacing: .04em;
  line-height: 1;
}
.logo-accent { color: var(--kb-teal); }
.logo-sub {
  font-size: .62rem;
  letter-spacing: .16em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  margin-top: .2rem;
}
/* Scrolled state — dark text on white navbar */
.kb-navbar.scrolled .logo-name { color: var(--kb-navy); }
.kb-navbar.scrolled .logo-sub  { color: rgba(12,30,91,.45); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem .75rem;
  border-radius: 8px;
  letter-spacing: .01em;
  position: relative;
  transition: color .25s, background .25s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--kb-teal);
  border-radius: 2px;
  transition: left .25s ease, right .25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--kb-white);
  background: rgba(255,255,255,.1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: .75rem; right: .75rem; }
/* Scrolled state — dark links on white navbar */
.kb-navbar.scrolled .navbar-nav .nav-link { color: rgba(12,30,91,.75); }
.kb-navbar.scrolled .navbar-nav .nav-link:hover,
.kb-navbar.scrolled .navbar-nav .nav-link.active { color: var(--kb-navy); background: rgba(26,58,143,.06); }

.btn-icon-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.1);
  font-size: 1rem;
  transition: var(--kb-transition);
  border: none;
}
.btn-icon-nav:hover { background: rgba(255,255,255,.2); color: var(--kb-white); }
.kb-navbar.scrolled .btn-icon-nav { color: rgba(12,30,91,.65); background: rgba(12,30,91,.06); }
.kb-navbar.scrolled .btn-icon-nav:hover { background: rgba(26,58,143,.1); color: var(--kb-teal); }

.btn-nav-inquiry {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  background: var(--kb-grad);
  color: var(--kb-white) !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: .875rem;
  transition: var(--kb-transition);
  box-shadow: 0 4px 16px rgba(26,58,143,.3);
  white-space: nowrap;
}
.btn-nav-inquiry:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,58,143,.45); color: var(--kb-white); }
.btn-nav-inquiry.btn-sm { padding: .4rem .9rem; font-size: .8rem; }

/* Hamburger */
.kb-toggler {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  width: 42px; height: 42px;
  justify-content: center;
  align-items: center;
}
.toggler-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--kb-white);
  border-radius: 2px;
  transition: transform .35s ease, opacity .2s;
}
.kb-navbar.scrolled .kb-toggler { background: rgba(12,30,91,.08); }
.kb-navbar.scrolled .toggler-bar { background: var(--kb-navy); }
.kb-toggler.open .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.kb-toggler.open .toggler-bar:nth-child(2) { opacity: 0; }
.kb-toggler.open .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--kb-navy);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-inner { display: flex; flex-direction: column; height: 100%; padding: 1.5rem; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-menu-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--kb-white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.2); }
.mobile-nav { flex: 1; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  color: rgba(255,255,255,.75);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--kb-radius-sm);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--kb-white); background: rgba(255,255,255,.06); }
.mobile-menu-footer { margin-top: auto; padding-top: 1.5rem; }

/* ─── Hero Slider ────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  min-height: 88vh;
  min-height: 88dvh;
  overflow: hidden;
  background: var(--kb-navy);
}
@media (max-width: 768px) { .hero-slider { min-height: 700px; } }

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .9s ease;
  z-index: 1;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; z-index: 2; pointer-events: all; }

/* Slide backgrounds using gradients (images added via inline style in PHP) */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s linear;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
}

/* Molecule pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.8) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(26,58,143,.15); top: -100px; right: 5%; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(26,58,143,.18); bottom: 0; right: 25%; animation-delay: -3s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(16,185,129,.12); top: 30%; left: -50px; animation-delay: -5s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-10px,15px) scale(.95); }
}

.hero-slide-content {
  position: relative;
  z-index: 5;
  padding-top: calc(var(--announce-h) + var(--navbar-h) + 1rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--kb-teal);
  background: rgba(26,58,143,.12);
  border: 1px solid rgba(26,58,143,.3);
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease .2s, transform .7s ease .2s;
}
.hero-slide.active .hero-eyebrow { opacity: 1; transform: translateY(0); }

.hero-heading {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: var(--kb-white);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease .35s, transform .7s ease .35s;
}
.hero-slide.active .hero-heading { opacity: 1; transform: translateY(0); }
.hero-heading .text-grad {
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease .5s, transform .7s ease .5s;
}
.hero-slide.active .hero-sub { opacity: 1; transform: translateY(0); }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease .65s, transform .7s ease .65s;
}
.hero-slide.active .hero-cta-group { opacity: 1; transform: translateY(0); }

/* Molecule graphic (right side desktop) */
.hero-visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-45%);
  width: 420px;
  opacity: .18;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 991px) { .hero-visual { display: none; } }

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  gap: .75rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: var(--kb-transition);
  padding: 0;
}
.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--kb-teal);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: var(--kb-white);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--kb-transition);
}
.hero-nav-btn:hover { background: rgba(26,58,143,.4); border-color: var(--kb-teal); }
.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

/* Hero bottom glass panel */
.hero-bottom-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 8;
  padding: 2rem 0;
}
.hero-search-panel {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--kb-radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-search-label {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-search-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .6rem 1.25rem;
  gap: .75rem;
}
.hero-search-input-wrap i { color: rgba(255,255,255,.6); font-size: .95rem; }
.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--kb-white);
  font-size: .9375rem;
  font-family: inherit;
}
.hero-search-input::placeholder { color: rgba(255,255,255,.45); }

/* ─── Hero Search Suggestion Dropdown ───────────────────────── */
.hero-suggest-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--kb-white);
  border: 1px solid var(--kb-grey-100);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(8,8,8,.18);
  z-index: 9999;
  overflow: hidden;
}
.suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .65rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  gap: .75rem;
  border-bottom: 1px solid var(--kb-grey-50);
  transition: background .15s;
}
.suggest-item:last-child { border-bottom: none; }
.suggest-item:hover, .suggest-item:focus { background: var(--kb-off-white); outline: none; }
.suggest-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--kb-navy);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suggest-meta {
  font-size: .75rem;
  color: var(--kb-text-soft);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── Hero Stats ─────────────────────────────────────────────── */
.hero-stats { padding: 2rem 0 0; background: var(--kb-white); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--kb-white);
  border: 1px solid var(--kb-grey-100);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: var(--kb-transition);
}
.stat-card:first-child { border-radius: var(--kb-radius) 0 0 var(--kb-radius); }
.stat-card:last-child  { border-radius: 0 var(--kb-radius) var(--kb-radius) 0; }
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--kb-grad);
  border-radius: 3px;
  transition: left .3s ease, right .3s ease;
}
.stat-card:hover::before { left: 0; right: 0; }
.stat-card:hover { box-shadow: var(--kb-shadow); transform: translateY(-4px); }
.stat-number {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .84rem;
  color: var(--kb-text-soft);
  font-weight: 600;
  line-height: 1.4;
}

/* ─── Trust Strip ────────────────────────────────────────────── */
.trust-strip {
  padding: 4.5rem 0;
  background: var(--kb-off-white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap:8px;
}
@media (max-width: 991px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-card {
  background: var(--kb-white);
  border-radius: var(--kb-radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--kb-grey-100);
  transition: var(--kb-transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--kb-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.trust-card:hover::before { transform: scaleX(1); }
.trust-card:hover { box-shadow: var(--kb-shadow); transform: translateY(-4px); }
.trust-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,58,143,.1), rgba(26,58,143,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--kb-teal);
  margin: 0 auto 1rem;
  transition: var(--kb-transition);
}
.trust-card:hover .trust-icon { background: var(--kb-grad); color: var(--kb-white); }
.trust-title { font-weight: 700; font-size: .9375rem; color: var(--kb-navy); margin-bottom: .5rem; }
.trust-desc { font-size: .82rem; color: var(--kb-text-soft); line-height: 1.6; }

/* ─── Section Layout ─────────────────────────────────────────── */
.section { padding: 2rem 0; }
.section-sm { padding: 1.25rem 0; }
.section-dark { background: var(--kb-off-white); }
.section-off { background: var(--kb-off-white); }

/* ─── About Section ──────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: var(--kb-radius-lg);
  overflow: hidden;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--kb-radius-lg);
  display: block;
}
.about-img-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, #080808 0%, #111111 50%, #1A3A8F 100%);
  border-radius: var(--kb-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 32px 32px;
}
.about-img-float {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 160px; height: 160px;
  border-radius: var(--kb-radius);
  background: var(--kb-white);
  padding: 1.25rem;
  box-shadow: var(--kb-shadow-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 5;
}
.about-float-number {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.about-float-text { font-size: .72rem; color: var(--kb-text-soft); font-weight: 600; margin-top: .35rem; }
.about-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--kb-grad);
  color: var(--kb-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 50px;
}

.about-highlights { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0; }
.about-highlight-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.25rem;
  background: var(--kb-off-white);
  border-radius: var(--kb-radius-sm);
  border-left: 3px solid var(--kb-teal);
  transition: var(--kb-transition);
}
.about-highlight-item:hover { background: rgba(26,58,143,.06); transform: translateX(4px); }
.about-highlight-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--kb-grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--kb-white); font-size: .9rem;
}
.about-highlight-text { font-weight: 700; font-size: .9rem; color: var(--kb-navy); }

/* ─── Category Filter ────────────────────────────────────────── */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-bottom: 2.5rem;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  border: 1.5px solid var(--kb-grey-200);
  border-radius: 50px;
  background: var(--kb-white);
  color: var(--kb-text-soft);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--kb-transition);
}
.cat-btn:hover { border-color: var(--kb-teal); color: var(--kb-teal); background: rgba(26,58,143,.05); }
.cat-btn.active {
  background: var(--kb-grad);
  color: var(--kb-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(26,58,143,.25);
}

/* ─── Product Grid ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 1199px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: 1fr; } }

/* ─── Product Card ───────────────────────────────────────────── */
.product-card {
  background: var(--kb-white);
  border-radius: var(--kb-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--kb-grey-100);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(8,8,8,.15);
  border-color: var(--kb-teal);
}
.product-card:hover .product-card-img-wrap::after {
  opacity: 1;
}
.product-card:hover .pc-arrow { transform: translate(4px, -4px); }
.product-card:focus-within { outline: 2px solid var(--kb-teal); outline-offset: 2px; }

.product-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A, #1A1A1A);
}
.product-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--kb-grad);
  opacity: 0;
  transition: opacity .35s ease;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-img-placeholder svg { width: 80px; height: 80px; opacity: .45; }

.product-card-category {
  position: absolute;
  top: .875rem; left: .875rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--kb-white);
  background: var(--kb-grad);
  padding: .3rem .75rem;
  border-radius: 50px;
  z-index: 2;
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.product-card-form {
  font-size: .72rem;
  font-weight: 700;
  color: var(--kb-teal);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.product-card-name {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--kb-navy);
  line-height: 1.3;
  margin-bottom: .25rem;
}
.product-card-desc {
  font-size: .84rem;
  color: var(--kb-text-soft);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-actions {
  display: flex;
  gap: .625rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.pc-btn-detail {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem 1rem;
  background: var(--kb-grad);
  color: var(--kb-white);
  border-radius: 50px;
  font-size: .825rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--kb-transition);
  box-shadow: 0 3px 12px rgba(26,58,143,.2);
}
.pc-btn-detail:hover { box-shadow: 0 6px 20px rgba(26,58,143,.35); transform: translateY(-1px); }
.pc-arrow { transition: transform .25s ease; display: inline-block; }
.pc-btn-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem 1rem;
  background: transparent;
  color: var(--kb-navy);
  border: 1.5px solid var(--kb-grey-200);
  border-radius: 50px;
  font-size: .825rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--kb-transition);
}
.pc-btn-inquiry:hover { border-color: var(--kb-teal); color: var(--kb-teal); background: rgba(26,58,143,.05); }

/* ─── Product Modal ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3,20,32,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .35s ease;
}
.modal-overlay.visible { opacity: 1; }
.modal-overlay[hidden] { display: none; }

.product-modal {
  background: var(--kb-white);
  border-radius: var(--kb-radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--kb-shadow-xl);
  transform: scale(.96) translateY(12px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
  opacity: 0;
  scroll-behavior: smooth;
}
.modal-overlay.visible .product-modal { transform: scale(1) translateY(0); opacity: 1; }

.modal-close-btn {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem -2.5rem 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--kb-off-white);
  color: var(--kb-text-soft);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: var(--kb-transition);
  border: 1px solid var(--kb-grey-100);
}
.modal-close-btn:hover { background: var(--kb-navy); color: var(--kb-white); }

.modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 300px;
  font-size: .9rem;
  color: var(--kb-text-soft);
}
.modal-loading[hidden] { display: none; }
.modal-loader {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--kb-grey-100);
  border-top-color: var(--kb-teal);
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal-content-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 480px;
}
.modal-content-inner[hidden] { display: none; }
@media (max-width: 768px) {
  .modal-content-inner { grid-template-columns: 1fr; }
  .product-modal { width: 94%; max-height: 92vh; }
}

.modal-product-image-wrap {
  background: linear-gradient(160deg, var(--kb-off-white), var(--kb-grey-100));
  border-radius: var(--kb-radius-lg) 0 0 var(--kb-radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
@media (max-width: 768px) { .modal-product-image-wrap { border-radius: var(--kb-radius-lg) var(--kb-radius-lg) 0 0; } }

.modal-product-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--kb-white);
  background: var(--kb-grad);
  padding: .35rem .8rem;
  border-radius: 50px;
  display: inline-block;
  align-self: flex-start;
}

.modal-img-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 220px;
}
.modal-product-img {
  max-height: 220px;
  object-fit: contain;
  border-radius: var(--kb-radius);
}
.modal-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.modal-img-placeholder svg { width: 140px; height: 140px; opacity: .5; }

.modal-product-meta {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.modal-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  background: var(--kb-white);
  border-radius: 8px;
  font-size: .82rem;
  border: 1px solid var(--kb-grey-100);
}
.meta-label { color: var(--kb-grey-400); font-weight: 600; }
.meta-value { color: var(--kb-navy); font-weight: 700; }
.availability-badge {
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(26,58,143,.15));
  color: var(--kb-emerald);
  padding: .2rem .6rem;
  border-radius: 50px;
  font-size: .75rem;
}

.modal-product-info {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
@media (max-width: 768px) { .modal-product-info { padding: 1.75rem 1.5rem; } }

.modal-product-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kb-teal);
}
.modal-product-name {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--kb-navy);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.modal-product-desc { font-size: .9375rem; color: var(--kb-text-soft); line-height: 1.72; }

.modal-details-grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: .5rem 0 1rem;
  padding: 1.5rem;
  background: var(--kb-off-white);
  border-radius: var(--kb-radius);
}
.modal-detail-row {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.detail-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--kb-white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--kb-teal);
  font-size: .875rem;
  border: 1px solid var(--kb-grey-100);
}
.detail-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--kb-grey-400);
  margin-bottom: .2rem;
}
.detail-value { font-size: .9rem; color: var(--kb-navy); font-weight: 600; line-height: 1.5; }

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  padding-top: .5rem;
}
.modal-actions a { font-size: .9rem; }

/* ─── Why Section ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--kb-radius);
  padding: 2rem 1.75rem;
  transition: var(--kb-transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--kb-grad);
  opacity: 0;
  transition: opacity .35s ease;
}
.why-card:hover::before { opacity: .06; }
.why-card:hover { border-color: rgba(26,58,143,.4); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.why-number {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin-bottom: -.5rem;
  user-select: none;
}
.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--kb-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--kb-white);
  margin-bottom: 1.25rem;
  position: relative;
}
.why-title {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--kb-white);
  margin-bottom: .6rem;
}
.why-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ─── Global Connection Section ──────────────────────────────── */
.global-section {
  background: var(--kb-navy-mid);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  color: var(--kb-text);
}

.global-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(0, 0, 0, .035) 1px,
    transparent 0
  );
  background-size: 48px 48px;
  pointer-events: none;
}

.world-map-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(0, 166, 166, .04) 0%,
    #f8fafc 50%,
    rgba(11, 110, 153, .04) 100%
  );
  border: 1px solid rgba(0, 166, 166, .18);
  border-radius: 24px;
  padding: 1.25rem 1rem 0.5rem;
  box-shadow:
    0 15px 45px rgba(0, 0, 0, .07),
    0 0 0 1px rgba(0, 0, 0, .02) inset;
  overflow: hidden;
}

.world-map-container::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 120px;
  background: radial-gradient(
    ellipse,
    rgba(0, 166, 166, .10) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.globe-svg {
  width: 100%;
  opacity: 1;
  display: block;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--kb-teal);
  box-shadow:
    0 0 0 4px rgba(0, 166, 166, .18),
    0 0 0 8px rgba(0, 166, 166, .07);
  animation: pulse 2.5s ease-in-out infinite;
}

/* Black / Dark Text */
.global-section .section-heading {
  color: #EEF0F4;
}

.global-section .section-sub {
  color: #8E9EB0;
}

.global-section .section-eyebrow {
  color: #0EA5E9;
  background: rgba(0, 166, 166, .08);
  border-color: rgba(0, 166, 166, .18);
}

/* Market Cards */
.global-section .market-stat-box {
  background: #ffffff;
  border: 1px solid #C8D8EE;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.global-section .market-stat-box span {
  color: #EEF0F4 !important;
}

.global-section .market-stat-box p {
  color: #6E7E90 !important;
}
.map-dot:nth-child(2) { animation-delay: -.5s; }
.map-dot:nth-child(3) { animation-delay: -1s; }
.map-dot:nth-child(4) { animation-delay: -1.5s; }
.map-dot:nth-child(5) { animation-delay: -2s; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(26,58,143,.2), 0 0 0 8px rgba(26,58,143,.08); }
  50% { box-shadow: 0 0 0 8px rgba(26,58,143,.15), 0 0 0 16px rgba(26,58,143,.04); }
}

.region-chips { display: flex; flex-wrap: wrap; gap: .75rem; }
.region-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius:8px;
  color: rgba(255,255,255,.75);
  font-size: .825rem;
  font-weight: 600;
  background: rgba(255,255,255,.04);
  transition: var(--kb-transition);
}
.region-chip::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--kb-teal);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--kb-teal);
}
.region-chip:hover { border-color: rgba(26,58,143,.5); color: var(--kb-white); background: rgba(26,58,143,.08); }

/* ─── Services Section ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--kb-white);
  border-radius: var(--kb-radius);
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--kb-grey-100);
  transition: var(--kb-transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--kb-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--kb-shadow-lg); transform: translateY(-6px); }
.svc-number {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--kb-grey-100);
  line-height: 1;
  margin-bottom: -.25rem;
}
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,58,143,.1), rgba(26,58,143,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--kb-teal);
  margin-bottom: 1.25rem;
  transition: var(--kb-transition);
}
.service-card:hover .svc-icon { background: var(--kb-grad); color: var(--kb-white); }
.svc-title { font-weight: 800; font-size: 1rem; color: var(--kb-navy); margin-bottom: .6rem; }
.svc-desc { font-size: .84rem; color: var(--kb-text-soft); line-height: 1.7; margin-bottom: 1rem; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--kb-teal);
  transition: gap .2s ease, color .2s;
}
.svc-link:hover { color: var(--kb-blue); gap: .6rem; }

/* ─── Quality Process ────────────────────────────────────────── */
.quality-section { background: var(--kb-off-white); padding: 2.5rem 0; border-top: 1px solid var(--kb-grey-100); }
.quality-process {
  display: flex;
  gap: 0;
  position: relative;
  justify-content: space-between;
}
.quality-process::before {
  position: absolute;
  top: 32px; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--kb-teal), var(--kb-blue));
  z-index: 0;
}
@media (max-width: 767px) {
  .quality-process { flex-direction: column; }
  .quality-process::before { width: 2px; height: auto; top: 32px; bottom: 32px; left: 32px; right: auto; }
}
.quality-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
}
.quality-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--kb-grad);
  color: var(--kb-white);
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,58,143,.35);
  flex-shrink: 0;
}
.quality-step-icon { font-size: 1.25rem; color: var(--kb-teal); }
.quality-step-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--kb-navy);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.quality-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 2rem;
}
@media (max-width: 991px) { .quality-pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .quality-pillars-grid { grid-template-columns: 1fr; } }

.quality-pillar {
  background: var(--kb-white);
  border: 1px solid var(--kb-grey-100);
  border-radius: var(--kb-radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--kb-transition);
  box-shadow: var(--kb-shadow-sm);
}
.quality-pillar:hover { border-color: var(--kb-teal); background: rgba(46,107,230,.03); transform: translateY(-4px); box-shadow: var(--kb-shadow); }
.qp-icon { font-size: 2rem; color: var(--kb-teal); margin-bottom: .875rem; }
.qp-title { font-size: .9rem; font-weight: 700; color: var(--kb-navy); }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-section { padding: 2rem 0; background: var(--kb-off-white); }
.testi-slider { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  background: var(--kb-white);
  border-radius: var(--kb-radius);
  padding: 2.5rem;
  min-width: 100%;
  box-shadow: var(--kb-shadow-sm);
  border: 1px solid var(--kb-grey-100);
}
.testi-quote-icon { font-size: 2.5rem; color: var(--kb-teal); opacity: .25; margin-bottom: 1rem; line-height: 1; }
.testi-text { font-size: 1.0625rem; color: var(--kb-text); line-height: 1.8; margin-bottom: 2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--kb-grad);
  color: var(--kb-white);
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testi-name { font-weight: 700; font-size: .9375rem; color: var(--kb-navy); }
.testi-role { font-size: .8rem; color: var(--kb-text-soft); }
.testi-disclaimer {
  font-size: .72rem;
  color: var(--kb-grey-400);
  font-style: normal;
  margin-top: .5rem;
  padding: .35rem .75rem;
  background: var(--kb-grey-100);
  border-radius: 4px;
  display: inline-block;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-item {
  border: 1.5px solid var(--kb-grey-100);
  border-radius: var(--kb-radius-sm);
  overflow: hidden;
  margin-bottom: .875rem;
  background: var(--kb-white);
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--kb-teal); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  font-weight: 700;
  font-size: .9375rem;
  color: var(--kb-navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .25s;
}
.faq-question:hover, .faq-item.open .faq-question { color: var(--kb-teal); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--kb-off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--kb-text-soft);
  flex-shrink: 0;
  transition: var(--kb-transition);
}
.faq-item.open .faq-icon { background: var(--kb-teal); color: var(--kb-white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s;
  padding: 0 1.75rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.75rem 1.375rem; }
.faq-answer p { font-size: .9rem; color: var(--kb-text-soft); line-height: 1.75; }

/* ─── Final CTA Section ──────────────────────────────────────── */
.final-cta {
  background: var(--kb-off-white);
  border-top: 1px solid var(--kb-grey-100);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,107,230,.06), transparent 70%);
  pointer-events: none;
}
.final-cta-heading {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--kb-navy);
  letter-spacing: -.02em;
  line-height: 1.18;
  margin-bottom: 1rem;
}
.final-cta-sub {
  font-size: 1.0625rem;
  color: var(--kb-text-soft);
  line-height: 1.72;
  max-width: 1000px;
  margin: 0 auto 2rem;
}
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── Contact / Inquiry Forms ────────────────────────────────── */
.form-floating-kb { position: relative; margin-bottom: 1.25rem; }
.form-control-kb {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--kb-grey-200);
  border-radius: var(--kb-radius-sm);
  font-size: .9375rem;
  font-family: inherit;
  color: var(--kb-text);
  background: var(--kb-white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-control-kb:focus { border-color: var(--kb-teal); box-shadow: 0 0 0 3px rgba(26,58,143,.12); }
.form-control-kb::placeholder { color: var(--kb-grey-400); }
.form-label-kb {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--kb-text-soft);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-select-kb {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238BA0B0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-error { font-size: .78rem; color: #e53e3e; margin-top: .25rem; }

.form-panel {
  background: var(--kb-white);
  border-radius: var(--kb-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--kb-shadow);
  border: 1px solid var(--kb-grey-100);
}

/* ─── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
background: linear-gradient(135deg, #e2e2e2 0%, #d4d4d4 60%, #c8c8c8 100%);  
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--announce-h) + var(--navbar-h));
  border-bottom: 1px solid var(--kb-grey-100);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(8,8,8,.04) 1px, transparent 0);
  background-size: 40px 40px;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--kb-teal);
  background: rgba(46,107,230,.08);
  border: 1px solid rgba(46,107,230,.2);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--kb-navy);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}
.page-hero-sub { font-size: 1rem; color: var(--kb-text-soft); max-width: 580px; line-height: 1.72; }

/* ─── Scroll Reveal Animations ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity .65s cubic-bezier(.22,.68,0,1.15),
              transform .65s cubic-bezier(.22,.68,0,1.15);
  /* CSS safety net: always show after 1.2s even if JS observer misses it */
  animation: revealFallback .6s ease 1.2s forwards;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none;
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
[data-reveal-delay="1"] { transition-delay: .12s; animation-delay: 1.32s; }
[data-reveal-delay="2"] { transition-delay: .22s; animation-delay: 1.42s; }
[data-reveal-delay="3"] { transition-delay: .32s; animation-delay: 1.52s; }
[data-reveal-delay="4"] { transition-delay: .54s; }
[data-reveal-delay="5"] { transition-delay: .67s; }

/* ─── Search Overlay ─────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity .3s ease;
}
.search-overlay.visible { opacity: 1; }
.search-overlay[hidden] { display: none; }

.search-overlay-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.search-overlay-header { display: flex; align-items: center; gap: 8px; }
.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .875rem;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--kb-radius);
  padding: 1rem 1.5rem;
}
.search-icon-input { color: rgba(255,255,255,.5); font-size: 1.1rem; flex-shrink: 0; }
.search-main-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--kb-white);
  font-size: 1.1875rem;
  font-family: inherit;
  font-weight: 500;
}
.search-main-input::placeholder { color: rgba(255,255,255,.3); }
.search-clear-btn {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  padding: .25rem;
  transition: color .2s;
}
.search-clear-btn:hover { color: var(--kb-white); }
.search-close-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1rem;
  border-radius: var(--kb-radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--kb-transition);
  white-space: nowrap;
}
.search-close-btn:hover { background: rgba(255,255,255,.12); color: var(--kb-white); }

.search-section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.search-tags { display: flex; flex-wrap: wrap; gap: .625rem; }
.search-tag {
  padding: .5rem 1.1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  font-weight: 600;
  background: rgba(255,255,255,.05);
  transition: var(--kb-transition);
}
.search-tag:hover { border-color: var(--kb-teal); color: var(--kb-teal); background: rgba(26,58,143,.08); }

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) { .search-results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .search-results-grid { grid-template-columns: 1fr; } }

.search-result-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--kb-radius-sm);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--kb-transition);
  text-align: left;
}
.search-result-card:hover { background: rgba(26,58,143,.12); border-color: var(--kb-teal); }
.sr-form { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--kb-teal); margin-bottom: .3rem; }
.sr-name { font-weight: 700; font-size: .9375rem; color: var(--kb-white); margin-bottom: .2rem; }
.sr-therapeutic { font-size: .78rem; color: rgba(255,255,255,.45); }

.no-results-icon { font-size: 3rem; color: rgba(255,255,255,.15); margin-bottom: 1rem; }
.no-results-title { font-size: 1.25rem; font-weight: 700; color: var(--kb-white); margin-bottom: .5rem; }
.no-results-sub { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
/* ═══ FOOTER ═══════════════════════════════════════════════════════════════ */

.kb-footer {
  background: #080808;
  color: var(--kb-white);
  border-top: 4px solid var(--kb-teal);
}

/* ── CTA Band ── */
.footer-cta-band {
  background: linear-gradient(130deg, #151515 0%, #080808 60%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 3.25rem 0;
  position: relative;
  overflow: hidden;
}
.footer-cta-blob {
  position: absolute;
  right: -120px; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,107,230,.15) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta-eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--kb-teal); margin-bottom: .5rem;
  display: block;
}
.footer-cta-heading {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800; color: var(--kb-white);
  letter-spacing: -.025em; line-height: 1.2; margin-bottom: .6rem;
}
.footer-cta-sub {
  font-size: .88rem; color: rgba(255,255,255,.48); line-height: 1.7; margin: 0;
}

/* ── Footer Body ── */
.footer-body { padding: 3.5rem 0 2.5rem; }

/* ── Logo ── */
.footer-logo { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.footer-logo-text {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--kb-white); letter-spacing: .05em;
}
.footer-logo-text span { color: var(--kb-teal); }

/* ── Brand description ── */
.footer-brand-desc {
  font-size: .84rem; color:white;
  line-height: 1.8; margin: 0;
}

/* ── Contact list (duplicate removed — see below) ── */

/* ── Social icons ── */
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fsc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5); font-size: .95rem;
  text-decoration: none; transition: all .2s ease;
}
.fsc-btn:hover {
  background: var(--kb-teal); border-color: var(--kb-teal);
  color: #fff; transform: translateY(-3px);
}

/* ── Column heading ── */
.footer-col-title {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--kb-teal);
  margin-bottom: 1.25rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── Nav / Therapeutic links ── */
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
}
.footer-links a {
  font-size: .84rem; color:white;
  display: flex; align-items: center; gap: .4rem;
  transition: color .2s, gap .2s; text-decoration: none;
}
.footer-links a::before {
  content: '›'; color: var(--kb-teal); font-size: .9rem;
  opacity: 0; transition: opacity .2s, transform .2s;
  transform: translateX(-4px);
}
.footer-links a:hover {
  color: rgba(255,255,255,.85); gap: .6rem;
}
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

/* ── Badges ── */
.footer-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: .3rem .7rem;
}
.footer-badge i { color: var(--kb-teal); font-size: .75rem; }

/* ── Contact list ── */
.footer-contact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .6rem .75rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
  line-height: 1.5;
}
.footer-contact-list li:hover {
  background: rgba(46,107,230,.07);
  border-color: rgba(46,107,230,.18);
}
.footer-contact-list span:not(.fci-icon) {
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-contact-list a {
  font-size: .82rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .2s;
}
.footer-contact-list a:hover { color: var(--kb-teal); }

/* ── Icon bubble (used in contact list + hours) ── */
.fci-icon {
  width: 30px; height: 30px; min-width: 30px; border-radius: 8px;
  background: rgba(46,107,230,.15);
  border: 1px solid rgba(46,107,230,.22);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--kb-teal); font-size: .8rem; flex-shrink: 0;
}

/* ── Business Hours ── */
.footer-hours {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem .75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  font-size: .79rem; color: rgba(255,255,255,.38);
  margin-top: .5rem;
}

/* ── Inquiry CTA button ── */
.footer-cta-link {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .84rem; font-weight: 700;
  color: #fff; text-decoration: none;
  padding: .85rem 1.1rem;
  background: linear-gradient(135deg, var(--kb-teal) 0%, #1A3A8F 100%);
  border-radius: 12px;
  width: 100%;
  letter-spacing: .01em;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(46,107,230,.3);
}
.footer-cta-link:hover {
  color: #fff; opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,107,230,.45);
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  background: rgba(0,0,0,.18);
}
.footer-copy {
  font-size: .79rem; color: rgba(255,255,255,.3); margin: 0;
}
.footer-dot { color: rgba(255,255,255,.2); margin: 0 .3rem; }
.footer-legal-links {
  display: flex; align-items: center; gap: .75rem; justify-content: flex-end;
}
.footer-legal-links a {
  font-size: .78rem; color: rgba(255,255,255,.3); transition: color .2s;
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--kb-teal); }
.footer-legal-links .sep { color: rgba(255,255,255,.15); }

/* ─── Floating Buttons ───────────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-end;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--kb-shadow-lg);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.float-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + .75rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--kb-navy);
  color: var(--kb-white);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.float-btn:hover::after { opacity: 1; }
.float-btn:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.float-inquiry { background: var(--kb-grad); color: var(--kb-white); }
.float-inquiry:hover { color: var(--kb-white); }
.float-whatsapp { background: #25D366; color: var(--kb-white); }
.float-whatsapp:hover { color: var(--kb-white); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 989;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--kb-white);
  color: var(--kb-navy);
  border: 1.5px solid var(--kb-grey-200);
  box-shadow: var(--kb-shadow);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--kb-navy); color: var(--kb-white); }

/* ─── Products Catalogue Page ────────────────────────────────── */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.products-count {
  font-size: .875rem;
  color: var(--kb-text-soft);
  font-weight: 600;
}
.view-toggle { display: flex; gap: .375rem; }
.view-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--kb-grey-200);
  color: var(--kb-text-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--kb-transition);
}
.view-btn.active { background: var(--kb-navy); color: var(--kb-white); border-color: var(--kb-navy); }
.view-btn:hover:not(.active) { border-color: var(--kb-teal); color: var(--kb-teal); }

/* List view */
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { flex-direction: row; }
.products-grid.list-view .product-card-img-wrap { width: 200px; height: auto; min-height: 160px; flex-shrink: 0; border-radius: var(--kb-radius-lg) 0 0 var(--kb-radius-lg); }
@media (max-width: 640px) {
  .products-grid.list-view .product-card { flex-direction: column; }
  .products-grid.list-view .product-card-img-wrap { width: 100%; }
}

/* ─── About Page Features ────────────────────────────────────── */
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--kb-radius);
  border: 1.5px solid var(--kb-grey-100);
  background: var(--kb-white);
  transition: var(--kb-transition);
}
.value-card:hover { box-shadow: var(--kb-shadow); transform: translateY(-4px); border-color: var(--kb-teal); }
.value-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--kb-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--kb-white);
  margin: 0 auto 1.25rem;
}
.value-title { font-weight: 800; font-size: 1rem; color: var(--kb-navy); margin-bottom: .5rem; }
.value-desc { font-size: .85rem; color: var(--kb-text-soft); line-height: 1.7; }

/* ─── Exports Process ────────────────────────────────────────── */
.export-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.export-process::before {
  content: '';
  position: absolute;
  left: 30px; top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--kb-teal), var(--kb-blue));
}
.export-step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 1.5rem 0 1.5rem 0;
  position: relative;
  z-index: 1;
}
.export-step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--kb-white);
  border: 2px solid var(--kb-teal);
  color: var(--kb-teal);
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--kb-shadow-sm);
}
.export-step-content { padding-top: .625rem; }
.export-step-title { font-weight: 800; font-size: 1rem; color: var(--kb-navy); margin-bottom: .3rem; }
.export-step-desc { font-size: .875rem; color: var(--kb-text-soft); line-height: 1.65; }

/* ─── Responsive Utilities ───────────────────────────────────── */
.text-grad {
  background: linear-gradient(135deg, #2E6BE6 0%, #0EA5E9 50%, #2E6BE6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s ease infinite;
}
.divider-grad {
  height: 3px;
  background: var(--kb-grad);
  border-radius: 3px;
  width: 60px;
  margin: 1rem 0;
}
.divider-grad.center { margin: 1rem auto; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.kb-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}
.kb-breadcrumb a { color: var(--kb-text-soft); transition: color .2s; }
.kb-breadcrumb a:hover { color: var(--kb-teal); }
.kb-breadcrumb .sep { color: var(--kb-grey-200); }
.kb-breadcrumb .current { color: var(--kb-navy); font-weight: 600; }

/* ─── Inquiry Page ───────────────────────────────────────────── */
.inquiry-benefits {
  background: var(--kb-white);
  border: 1px solid var(--kb-grey-100);
  border-radius: var(--kb-radius);
  padding: 2.5rem;
  height: fit-content;
  box-shadow: var(--kb-shadow-sm);
}
.inquiry-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--kb-grey-100);
}
.inquiry-benefit-item:last-child { border-bottom: none; }
.ib-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(26,58,143,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--kb-teal);
  font-size: .9rem;
  flex-shrink: 0;
}
.ib-title { font-weight: 700; font-size: .9rem; color: var(--kb-navy); }
.ib-desc { font-size: .8rem; color: var(--kb-text-soft); line-height: 1.55; }

/* ─── File Upload ────────────────────────────────────────────── */
.file-upload-area {
  border: 2px dashed var(--kb-grey-200);
  border-radius: var(--kb-radius-sm);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--kb-transition);
  background: var(--kb-off-white);
}
.file-upload-area:hover { border-color: var(--kb-teal); background: rgba(26,58,143,.04); }
.file-upload-area.dragover { border-color: var(--kb-teal); background: rgba(26,58,143,.08); }
.file-upload-icon { font-size: 1.75rem; color: var(--kb-teal); margin-bottom: .5rem; }
.file-upload-text { font-size: .875rem; color: var(--kb-text-soft); }
.file-upload-hint { font-size: .75rem; color: var(--kb-grey-400); margin-top: .25rem; }

/* ─── Contact Map Placeholder ────────────────────────────────── */
.map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--kb-radius);
  background: linear-gradient(135deg, var(--kb-off-white), var(--kb-grey-100));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--kb-grey-400);
  border: 1.5px dashed var(--kb-grey-200);
}
.map-placeholder i { font-size: 2.5rem; }

/* ─── Alert / Message Feedback ──────────────────────────────── */
.alert-kb {
  padding: 1rem 1.5rem;
  border-radius: var(--kb-radius-sm);
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.alert-success { background: rgba(16,185,129,.12); color: #0f7a6b; border: 1px solid rgba(16,185,129,.25); }
.alert-error   { background: rgba(229,62,62,.08);  color: #c53030; border: 1px solid rgba(229,62,62,.2); }

/* ─── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─── Responsive Breakpoints ─────────────────────────────────── */
@media (max-width: 1199px) {
  .section { padding: 1.75rem 0; }
}
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-content-inner { grid-template-columns: 1fr; }
  .modal-product-image-wrap { border-radius: var(--kb-radius-lg) var(--kb-radius-lg) 0 0; }
  .hero-search-panel { gap: 1rem; }
}
@media (max-width: 767px) {
  :root { --navbar-h: 64px; }
  .section { padding: 1.25rem 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-card:first-child { border-radius: var(--kb-radius) 0 0 0; }
  .stat-card:last-child  { border-radius: 0 0 var(--kb-radius) 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-controls { bottom: 9rem; }
  .hero-prev { left: 1rem; }
  .hero-next { right: 1rem; }
  .hero-search-panel { flex-direction: column; align-items: stretch; }
  .footer-cta-band .d-flex { justify-content: flex-start !important; }
  .floating-buttons { bottom: 16px; right: 16px; }
  .float-btn { width: 46px; height: 46px; font-size: 1.1rem; }
  .footer-legal-links { justify-content: center; }
}
@media (max-width: 576px) {
  .section-heading { font-size: 1.625rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn-primary-kb,
  .hero-cta-group .btn-outline-kb-light { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .modal-actions { flex-direction: column; }
  .modal-actions a { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ─── Print ──────────────────────────────────────────────────── */
@media print {
  .announcement-bar, .kb-navbar, .floating-buttons, .back-to-top,
  .search-overlay, .modal-overlay { display: none !important; }
  body { padding-top: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   ADDITIONS — Therapeutic Category Tiles & New Product Cards
   ════════════════════════════════════════════════════════════ */

/* ─── Hero search panel enhanced ────────────────────────────── */
.hero-search-panel {
  background: rgba(255,255,255,.10) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.hero-bottom-panel { padding: 1.5rem 0 2.5rem; }

/* ─── Therapeutic Category Tiles Section ─────────────────────── */
.th-cats-section {
  background: var(--kb-white);
  border-top: 1px solid var(--kb-grey-100);
  border-bottom: 1px solid var(--kb-grey-100);
  padding: 1.75rem 0 2rem;
  position: relative;
}
.th-cats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(8,8,8,.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.th-cats-section .section-heading.light { color: var(--kb-navy) !important; }
.th-cats-section .btn-outline-kb-light {
  border-color: var(--kb-grey-200);
  color: var(--kb-navy);
}
.th-cats-section .btn-outline-kb-light:hover {
  border-color: var(--kb-teal);
  color: var(--kb-teal);
  background: rgba(26,58,143,.05);
}
.th-cats-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.th-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1199px) { .th-cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .th-cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .th-cats-grid { grid-template-columns: 1fr; } }

.th-cat-tile {
  background: var(--kb-off-white);
  border: 1.5px solid var(--kb-grey-100);
  border-radius: var(--kb-radius);
  padding: 1.375rem 1.25rem;
  cursor: pointer;
  transition: var(--kb-transition);
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.th-cat-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--kb-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.th-cat-tile:hover, .th-cat-tile.active {
  border-color: rgba(26,58,143,.45);
  background: rgba(26,58,143,.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,58,143,.12);
}
.th-cat-tile:hover::before, .th-cat-tile.active::before { transform: scaleX(1); }

.th-cat-num {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(26,58,143,.35);
  line-height: 1;
}
.th-cat-tile.active .th-cat-num,
.th-cat-tile:hover .th-cat-num { color: var(--kb-teal); }
.th-cat-name {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--kb-navy);
  line-height: 1.3;
}
.th-cat-sub {
  font-size: .75rem;
  color: var(--kb-text-soft);
  line-height: 1.5;
}
.th-cat-count {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--kb-teal-dark);
  margin-top: .5rem;
  transition: color .25s;
}
.th-cat-tile:hover .th-cat-count,
.th-cat-tile.active .th-cat-count { color: var(--kb-teal); }
.th-cats-view-all { text-align: center; margin-top: 1.75rem; }

/* ─── Product Card — No Image (compact info style) ───────────── */
.product-card.no-img-card { flex-direction: column; }
.product-card.no-img-card .product-card-img-wrap { display: none !important; }

.pc-top {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1.25rem .75rem;
  border-bottom: 1px solid var(--kb-grey-100);
  background: linear-gradient(90deg, #111111, #1A1A1A);
  flex-shrink: 0;
}
.pc-top-num {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--kb-teal);
  line-height: 1;
  flex-shrink: 0;
}
.pc-top-cat {
  font-size: .7rem;
  font-weight: 700;
  color: var(--kb-text-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
  flex: 1;
  line-height: 1.3;
}
.pc-top-avail {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--kb-emerald);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(16,185,129,.6);
}
.pc-mid {
  padding: 1.125rem 1.25rem .875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.pc-name {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--kb-navy);
  line-height: 1.25;
  letter-spacing: -.01em;
}
.pc-molecule {
  font-size: .8rem;
  color: var(--kb-text-soft);
  line-height: 1.5;
}
.pc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .5rem;
}
.pc-pill {
  display: inline-flex;
  align-items: center;
  gap: .22rem;
  padding: .22rem .6rem;
  background: rgba(26,58,143,.08);
  border: 1px solid rgba(26,58,143,.18);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--kb-teal);
  letter-spacing: .04em;
}
.pc-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .875rem 1.25rem;
  border-top: 1px solid var(--kb-grey-100);
  background: var(--kb-off-white);
  border-radius: 0 0 var(--kb-radius-lg) var(--kb-radius-lg);
  flex-shrink: 0;
}
.pc-sku-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--kb-grey-400);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pc-actions-wrap {
  display: flex;
  gap: .4rem;
  align-items: center;
}
.pc-btn-sm-detail {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .42rem .9rem;
  background: var(--kb-grad);
  color: var(--kb-white);
  border-radius: 50px;
  font-size: .775rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--kb-transition);
  box-shadow: 0 2px 10px rgba(26,58,143,.2);
}
.pc-btn-sm-detail:hover { box-shadow: 0 4px 16px rgba(26,58,143,.35); transform: translateY(-1px); }
.pc-btn-sm-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--kb-grey-200);
  color: var(--kb-text-soft);
  font-size: .825rem;
  transition: var(--kb-transition);
}
.pc-btn-sm-inquiry:hover { border-color: var(--kb-teal); color: var(--kb-teal); background: rgba(26,58,143,.06); }
.product-card.no-img-card:hover .pc-top { background: linear-gradient(90deg, rgba(26,58,143,.08), rgba(26,58,143,.06)); }

/* ─── 4-Grid Testimonials ────────────────────────────────────── */
.testi-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:8px;
  margin-top: 2.5rem;
}
@media (max-width: 1199px) { .testi-4-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .testi-4-grid { grid-template-columns: 1fr; } }

.testi-4-card {
  background: var(--kb-white);
  border-radius: var(--kb-radius);
  padding: 1.875rem 1.625rem;
  box-shadow: var(--kb-shadow-sm);
  border: 1px solid var(--kb-grey-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--kb-transition);
  position: relative;
}
.testi-4-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--kb-grad);
  border-radius: var(--kb-radius) var(--kb-radius) 0 0;
}
.testi-4-card:hover { box-shadow: var(--kb-shadow); transform: translateY(-5px); }
.testi-stars { color: #f59e0b; font-size: .85rem; letter-spacing: .05em; }
.testi-4-quote { font-size: 2rem; color: var(--kb-teal); opacity: .2; line-height: 1; margin-bottom: -.5rem; }
.testi-4-text {
  font-size: .9rem;
  color: var(--kb-text-soft);
  line-height: 1.78;
  flex: 1;
  font-style: italic;
}
.testi-4-author { display: flex; align-items: center; gap: .75rem; padding-top: .75rem; border-top: 1px solid var(--kb-grey-100); }
.testi-4-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--kb-grad);
  color: var(--kb-white);
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-4-name { font-weight: 700; font-size: .875rem; color: var(--kb-navy); }
.testi-4-role { font-size: .75rem; color: var(--kb-text-soft); }
.testi-demo-note {
  display: inline-block;
  font-size: .72rem;
  color: var(--kb-grey-400);
  margin-top: 1.5rem;
  padding: .4rem 1rem;
  background: var(--kb-grey-100);
  border-radius: 50px;
}

/* ─── Global Market Section Enhanced ────────────────────────── */
.market-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.market-stat-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--kb-radius);
  padding: 1.25rem;
  text-align: center;
  transition: var(--kb-transition);
}
.market-stat-box:hover { border-color: rgba(26,58,143,.4); background: rgba(26,58,143,.06); }
.ms-num {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.ms-label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.5); margin-top: .2rem; }

/* ─── About Page — Process Section ──────────────────────────── */
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 991px) { .about-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .about-process-grid { grid-template-columns: 1fr; } }

.about-process-card {
  background: var(--kb-white);
  border-radius: var(--kb-radius);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--kb-grey-100);
  text-align: center;
  transition: var(--kb-transition);
  position: relative;
}
.about-process-card:hover { box-shadow: var(--kb-shadow); transform: translateY(-4px); border-color: var(--kb-teal); }
.ap-step-num {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: .875rem;
}
.ap-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,58,143,.1), rgba(26,58,143,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--kb-teal);
  margin: 0 auto .875rem;
}
.ap-title { font-weight: 800; font-size: .9375rem; color: var(--kb-navy); margin-bottom: .4rem; }
.ap-desc { font-size: .82rem; color: var(--kb-text-soft); line-height: 1.65; }

/* ─── Service Card Visual ────────────────────────────────────── */
.svc-visual-wrap {
  background: linear-gradient(135deg, #080808, #111111);
  border-radius: var(--kb-radius-lg);
  padding: 2.5rem 2rem;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.svc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  z-index: 0;
  border-radius: inherit;
  transition: transform .6s ease;
}
.svc-visual-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8,8,8,.85) 0%, rgba(8,8,8,.2) 60%, transparent 100%);
  border-radius: inherit;
}
.svc-visual-wrap:hover .svc-bg-img { transform: scale(1.06); }
.svc-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 330px;
}
.svc-card-title {
  font-family: 'EB Garamond', Garamond, serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--kb-white);
  line-height: 1.3;
}
.svc-visual-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 24px 24px;
}
.svc-main-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--kb-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--kb-white);
  position: relative;
  box-shadow: 0 12px 32px rgba(26,58,143,.3);
  flex-shrink: 0;
}
.svc-mini-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  position: relative;
}
.svc-mini-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--kb-transition);
}
.svc-mini-icon:hover { background: rgba(26,58,143,.2); border-color: var(--kb-teal); color: var(--kb-teal); }

/* ─── Stats Enhancement ──────────────────────────────────────── */
.stats-row { position: relative; z-index: 10; }
.hero-slider + .section-sm .stats-row { margin-top: -3.5rem; }

/* ─── Light Category Cards (Home Page) ──────────────────────── */
.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width:1199px) { .cat-cards-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:767px)  { .cat-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px)  { .cat-cards-grid { grid-template-columns: 1fr; } }

.cat-card-light {
  background: var(--kb-white);
  border: 1.5px solid var(--kb-grey-100);
  border-radius: var(--kb-radius);
  padding: 1.625rem 1.375rem 1.375rem;
  position: relative;
  overflow: hidden;
  display: block;
  transition: var(--kb-transition);
}
.cat-card-light:hover {
  border-color: var(--kb-teal);
  box-shadow: 0 8px 28px rgba(26,58,143,.12);
  transform: translateY(-4px);
}
.cat-card-ghost-num {
  position: absolute;
  top: -.25rem;
  right: .875rem;
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(8,8,8,.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.cat-card-name {
  font-family: 'EB Garamond', Garamond, serif;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--kb-navy);
  line-height: 1.3;
  margin-bottom: .4rem;
  position: relative;
}
.cat-card-sub {
  font-size: .8125rem;
  color: var(--kb-text-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
  position: relative;
}
.cat-card-count {
  font-size: .84rem;
  font-weight: 700;
  color: var(--kb-teal);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  position: relative;
  transition: gap .2s;
}
.cat-card-light:hover .cat-card-count { gap: .5rem; }

/* ─── Th-cats-section header row ─────────────────────────────── */
.th-cats-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* ─── Testimonials section background ───────────────────────── */
.testimonials-section { background: var(--kb-off-white); padding: 2rem 0; }

/* ─── testi-demo-note centered ──────────────────────────────── */
.testi-demo-note { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — All dark sections converted to white/light
═══════════════════════════════════════════════════════════════ */

/* ── WHY-CARD: all sections are now light — apply light card styling globally ── */
.why-card {
  background: var(--kb-white);
  border: 1.5px solid var(--kb-grey-100);
  box-shadow: var(--kb-shadow-sm);
}
.why-card:hover {
  border-color: var(--kb-teal);
  background: rgba(46,107,230,.03);
  box-shadow: var(--kb-shadow);
}
.why-number { color: rgba(26,58,143,.12); }
.why-icon   { background: linear-gradient(135deg,rgba(26,58,143,.1),rgba(26,58,143,.08)); }
.why-icon i { background: var(--kb-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.why-title  { color: var(--kb-navy); }
.why-desc   { color: var(--kb-text-soft); }

/* ── WHY KAYABIOTICS home page (was section-dark) ── */
.page-home .section-dark {
  background: var(--kb-white) !important;
}
.page-home .section-dark .section-heading.light { color: var(--kb-navy) !important; }
.page-home .section-dark .section-sub.light     { color: var(--kb-text-soft) !important; }
.page-home .section-dark .why-card              { background: var(--kb-white); border: 1.5px solid var(--kb-grey-100); box-shadow: var(--kb-shadow-sm); }
.page-home .section-dark .why-card:hover        { border-color: var(--kb-teal); box-shadow: var(--kb-shadow); }
.page-home .section-dark .why-number            { color: rgba(26,58,143,.12); }
.page-home .section-dark .why-icon              { background: linear-gradient(135deg,rgba(26,58,143,.1),rgba(26,58,143,.08)); }
.page-home .section-dark .why-icon i            { background: var(--kb-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.page-home .section-dark .why-title             { color: var(--kb-navy); }
.page-home .section-dark .why-desc              { color: var(--kb-text-soft); }

/* ── GLOBAL MARKET FOCUS — LIGHT BLUE SHOWCASE ── */
.page-home .global-section {
  background: linear-gradient(
    135deg,
    #e8f4ff 0%,
    #d4ebff 45%,
    #e8f4ff 100%
  );

  border-top: none;
  border-bottom: none;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Dot Grid */
.page-home .global-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(46,107,230,.08) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  pointer-events: none;
}

/* Blue Ambient Glow */
.page-home .global-section::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 85%;
  background: radial-gradient(
    ellipse at center right,
    rgba(46,107,230,.13) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Eyebrow */
.page-home .global-section .section-eyebrow {
  color: #1d4ed8;
  background: rgba(255,255,255,.55);
  border-color: rgba(46,107,230,.25);
}

/* MAIN HEADING — IMPORTANT */
.page-home .global-section .section-heading.light {
  color: #12336b !important;
}

/* Paragraph */
.page-home .global-section .section-sub.light {
  color: #4b6380 !important;
}

/* Divider */
.page-home .global-section .divider-grad {
  opacity: 1;
}

/* Region Chips */
.page-home .region-chip {
  background: rgba(255,255,255,.58);
  color: #34516f;
  border: 1px solid rgba(46,107,230,.16);
  backdrop-filter: blur(5px);
  transition: all .22s ease;
}

.page-home .region-chip:hover {
  background: rgba(255,255,255,.85);
  color: #1d4ed8;
  border-color: rgba(46,107,230,.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,107,230,.15);
}

/* Video / Map Container */
.page-home .world-map-container {
  background: linear-gradient(
    145deg,
    #dceeff 0%,
    #c8e3ff 55%,
    #e5f3ff 100%
  );

  border: 1px solid rgba(46,107,230,.18);

  box-shadow:
    0 25px 60px rgba(31,78,121,.18),
    0 0 0 1px rgba(255,255,255,.45) inset;
}

/* Container Glow */
.page-home .world-map-container::before {
  background: radial-gradient(
    ellipse,
    rgba(46,107,230,.12) 0%,
    transparent 70%
  );
}

/* Market Stats */
.page-home .market-stat-box {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(46,107,230,.15);
  box-shadow: 0 4px 20px rgba(31,78,121,.08);
}

.page-home .market-stat-box:hover {
  border-color: rgba(46,107,230,.35);
  box-shadow: 0 8px 30px rgba(46,107,230,.14);
}

/* Stat Label */
.page-home .ms-label {
  color: #55708d !important;
}

/* Globe */
.page-home .globe-svg {
  opacity: 1;
}
/* ── QUALITY PROCESS section-level (step/pillar rules → bottom of file) ── */
.page-home .quality-section {
  background: var(--kb-white) !important;
  border-top: 1px solid var(--kb-grey-100);
}
.page-home .quality-section .section-heading.light { color: var(--kb-navy)      !important; }
.page-home .quality-section .section-sub.light     { color: var(--kb-text-soft) !important; }
.page-home .quality-section .section-eyebrow {
  background: rgba(26,58,143,.08);
  border-color: rgba(26,58,143,.2);
}

/* ── FINAL CTA btn-outline on now-light bg ── */
.final-cta .btn-outline-kb-light {
  background: transparent;
  border-color: rgba(8,8,8,.25);
  color: var(--kb-navy);
}
.final-cta .btn-outline-kb-light:hover {
  background: var(--kb-navy);
  border-color: var(--kb-navy);
  color: var(--kb-white);
}

/* ══════════════════════════════════════════════════════════════
   VIDEO HERO — clean standalone section
══════════════════════════════════════════════════════════════ */
.hvideo-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--kb-navy);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* Left gradient — text readable on left, video visible on right */
.hvideo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,8,8,.82) 0%,
    rgba(8,8,8,.58) 38%,
    rgba(8,8,8,.22) 62%,
    transparent 80%
  );
  z-index: 1;
}
.hvideo-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--announce-h) + var(--navbar-h) + 1rem);
  padding-bottom: 4rem;
}
.hvideo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kb-teal);
  background: rgba(26,58,143,.12);
  border: 1px solid rgba(26,58,143,.35);
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hvideo-heading {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--kb-white);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hvideo-sub {
  font-size: clamp(.95rem, 1.4vw, 1.125rem);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}
.hvideo-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
@media (max-width: 576px) {
  .hvideo-ctas { flex-direction: column; align-items: flex-start; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero-scroll-line {
  width: 1.5px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), rgba(255,255,255,0));
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { transform: scaleY(1); opacity: 1; }
  70%  { transform: scaleY(1); opacity: .6; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════════════════
   QUALITY SECTION — HOME PAGE FIXES
   (white bg version — original designed for dark navy)
══════════════════════════════════════════════════════════════ */
.page-home .quality-process::before {
  background: var(--kb-grey-100);
}
.page-home .quality-step {
  background: var(--kb-white);
  border: 1.5px solid var(--kb-grey-100);
  border-radius: var(--kb-radius);
  box-shadow: var(--kb-shadow-sm);
  padding: 1.5rem 1rem;
  gap: .75rem;
}
.page-home .quality-step:hover {
  border-color: var(--kb-teal);
  box-shadow: var(--kb-shadow);
  background: rgba(26,58,143,.03);
  transform: translateY(-4px);
}
.page-home .quality-step-num {
  color: var(--kb-white);
}
.page-home .quality-step-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg,rgba(26,58,143,.1),rgba(26,58,143,.08));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  font-size: 1.125rem;
}
.page-home .quality-step-icon i {
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-home .quality-step-label { color: var(--kb-text-soft); }
.page-home .quality-pillar {
  background: var(--kb-off-white);
  border: 1.5px solid var(--kb-grey-100);
}
.page-home .quality-pillar:hover {
  border-color: var(--kb-teal);
  background: rgba(26,58,143,.04);
  transform: translateY(-4px);
}
.page-home .qp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg,rgba(26,58,143,.1),rgba(26,58,143,.08));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .875rem;
}
.page-home .qp-icon i {
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-home .qp-title { color: var(--kb-navy); }

/* ── Real image replacements for placeholder cards ──────────── */
.about-real-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--kb-radius-lg);
}
.product-card-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.product-card:hover .product-card-real-img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL LOGISTICS SECTION — stacked layout
═══════════════════════════════════════════════════════════════ */
.gl-section {
  background: var(--kb-white);
  border-top: 1px solid var(--kb-grey-100);
  padding: 3rem 0 0;
}

/* ── Text block ── */
.gl-text-block {
  text-align: center;
  max-width:1200px;
  margin: 0 auto 3.5rem;
}
.gl-eyebrow {
  background: rgba(26,58,143,.1) !important;
  border-color: rgba(26,58,143,.22) !important;
  color: var(--kb-teal-dark) !important;
}
.gl-heading {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--kb-navy);
  line-height: 1.14;
  letter-spacing: -.025em;
  margin: 1rem 0 1.25rem;
}
.gl-para {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--kb-text-soft);
  margin-bottom: 2rem;
}

/* ── Feature chips ── */
.gl-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .625rem;
}
.gl-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem 1rem;
  background: var(--kb-off-white);
  border: 1.5px solid var(--kb-grey-100);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--kb-navy);
}
.gl-chip i {
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: .85rem;
}

/* ── Video wrapper ── */
.gl-video-wrap {
  position: relative;
}
.gl-video-frame {
  position: relative;
  width: 100%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--kb-navy);
  box-shadow: 0 -8px 60px rgba(26,58,143,.08);
}
@media (max-width: 767px) {
  .gl-video-frame { aspect-ratio: 16 / 9; border-radius: 16px 16px 0 0; }
}
.gl-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay */
.gl-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,.15) 0%,
    transparent 30%,
    transparent 55%,
    rgba(8,8,8,.75) 100%
  );
  pointer-events: none;
}

/* ── Floating stat badges ── */
.gl-stat-badges {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  z-index: 2;
}
.gl-stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .6rem 1.1rem;
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(26,58,143,.25);
  border-radius: 14px;
  min-width: 90px;
}
.gl-stat-num {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--kb-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.gl-stat-num sup { font-size: .7rem; vertical-align: super; }
.gl-stat-lbl {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .2rem;
  white-space: nowrap;
}

/* ── Bottom CTA strip inside video ── */
.gl-video-cta-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(8,8,8,.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 600;
}
.gl-video-cta-strip i { color: var(--kb-teal); margin-right: .4rem; }
.gl-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  background: var(--kb-grad);
  color: var(--kb-white);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--kb-transition);
  white-space: nowrap;
}
.gl-strip-btn:hover {
  opacity: .88;
  transform: translateX(3px);
  color: var(--kb-white);
}

@media (max-width: 576px) {
  .gl-section { padding: 3rem 0 0; }
  .gl-text-block { margin-bottom: 2.5rem; }
  .gl-stat-badges { top: .75rem; right: .75rem; gap: .4rem; }
  .gl-stat-badge { padding: .45rem .75rem; min-width: 72px; }
  .gl-stat-num { font-size: 1.1rem; }
  .gl-video-cta-strip { padding: 1rem; font-size: .78rem; }
}

/* ════════════════════════════════════════════════════════════════
   SMOOTH ANIMATIONS & HOVER EFFECTS
════════════════════════════════════════════════════════════════ */

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes gradientFlow {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes softFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes iconScale {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,107,230,0); }
  50%      { box-shadow: 0 0 0 8px rgba(46,107,230,.16); }
}
@keyframes borderLight {
  0%,100% { border-color: transparent; }
  50%      { border-color: rgba(46,107,230,.5); }
}
@keyframes slideInLine {
  from { width: 0; opacity: 0; }
  to   { width: 2.5rem; opacity: 1; }
}
@keyframes countPop {
  0%  { transform: scale(1); }
  45% { transform: scale(1.1) translateY(-3px); }
  100%{ transform: scale(1); }
}
@keyframes btnBreath {
  0%,100% { box-shadow: 0 4px 16px rgba(46,107,230,.2); }
  50%      { box-shadow: 0 8px 28px rgba(46,107,230,.38); }
}

/* ── Floating badge on About page ───────────────────────────── */
.about-img-float {
  animation: softFloat 3.5s ease-in-out infinite;
}

/* ── CTA buttons ────────────────────────────────────────────── */
.btn-primary-kb {
  transition: transform .25s cubic-bezier(.22,.68,0,1.3),
              box-shadow .3s ease,
              letter-spacing .2s ease;
  animation: btnBreath 3s ease-in-out infinite;
}
.btn-primary-kb:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(46,107,230,.42);
  letter-spacing: .01em;
  animation: none;
}
.btn-primary-kb:active {
  transform: translateY(-1px) scale(1.01);
}

/* ── Section divider line animate on reveal ─────────────────── */
.divider-grad[data-reveal].revealed,
.section [data-reveal].revealed ~ .divider-grad {
  animation: slideInLine .5s ease .3s both;
}

/* ── Universal card transition base ────────────────────────── */
.trust-card,
.service-card,
.cat-card-light,
.why-card,
.quality-pillar,
.about-process-card,
.quality-step,
.value-card,
.stat-card {
  transition: transform .3s cubic-bezier(.22,.68,0,1.25),
              box-shadow .3s ease,
              border-color .22s ease !important;
  cursor: pointer;
}
.export-step {
  transition: transform .28s ease, box-shadow .28s ease !important;
  cursor: default;
}

/* ── Hover: lift + strong blue shadow ────────────────────────── */
.trust-card:hover,
.value-card:hover,
.about-process-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 52px rgba(12,30,91,.22) !important;
}
.service-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 60px rgba(12,30,91,.24) !important;
}
.cat-card-light:hover {
  transform: translateY(-10px) scale(1.025) !important;
  box-shadow: 0 26px 65px rgba(12,30,91,.26) !important;
  border-color: rgba(46,107,230,.55) !important;
}
.why-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 52px rgba(12,30,91,.22) !important;
}
.quality-pillar:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 18px 48px rgba(12,30,91,.2) !important;
}
.quality-step:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(12,30,91,.14) !important;
}
.stat-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 42px rgba(12,30,91,.18) !important;
}
.export-step:hover {
  transform: translateX(6px) !important;
  box-shadow: -4px 0 16px rgba(46,107,230,.2) !important;
}

/* ── Icon scale on hover ────────────────────────────────────── */
.trust-icon, .svc-icon, .why-icon, .qp-icon,
.value-icon, .ap-icon, .process-icon {
  transition: transform .28s cubic-bezier(.22,.68,0,1.4),
              background .22s ease, color .22s ease !important;
}
.trust-card:hover .trust-icon,
.service-card:hover .svc-icon,
.why-card:hover .why-icon,
.quality-pillar:hover .qp-icon,
.value-card:hover .value-icon,
.about-process-card:hover .ap-icon { transform: scale(1.18) !important; }

/* ── Stat number pop on hover ───────────────────────────────── */
.stat-card:hover .stat-num,
.stat-card:hover .stat-number { animation: countPop .45s ease; }

/* ── Export step num pulse ──────────────────────────────────── */
.export-step:hover .export-step-num { animation: pulseGlow .55s ease; }

/* ── Scroll-reveal base (override existing for smoother feel) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(38px) scale(0.96);
  transition: opacity .58s cubic-bezier(.25,.8,.25,1),
              transform .58s cubic-bezier(.22,.68,0,1.2) !important;
  animation: revealFallback .6s ease 1.2s forwards;
}
[data-reveal].revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  animation: none !important;
}

/* ── Stagger delays ─────────────────────────────────────────── */
[data-reveal-delay="1"] { transition-delay: .08s !important; animation-delay: 1.28s; }
[data-reveal-delay="2"] { transition-delay: .16s !important; animation-delay: 1.36s; }
[data-reveal-delay="3"] { transition-delay: .24s !important; animation-delay: 1.44s; }
[data-reveal-delay="4"] { transition-delay: .38s !important; animation-delay: 1.58s; }
[data-reveal-delay="5"] { transition-delay: .50s !important; animation-delay: 1.70s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].revealed {
    opacity: 1 !important; transform: none !important;
    transition: none !important; animation: none !important;
  }
  .text-grad, .about-img-float, .btn-primary-kb { animation: none !important; }
}


.video-container {
    width: 100%;
    height: 100%;
    min-height: 380px;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    background: #061b35;
}

.global-video {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* Mobile */
@media (max-width: 991px) {
    .video-container {
        min-height: 300px;
    }

    .global-video {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .video-container {
        min-height: 240px;
        border-radius: 14px;
    }

    .global-video {
        min-height: 240px;
        border-radius: 14px;
    }
}