/* ============================================================
   UNILAB CHEMICALS — Master Stylesheet
   Aesthetic: Refined industrial × botanical sustainability
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand teals */
  --teal-50:  #EAF5F5;
  --teal-100: #D5EBEC;
  --teal-200: #A6D2D4;
  --teal-300: #6FB5B8;
  --teal-400: #3CB4B5;          /* Logo teal */
  --teal-500: #0E7C7B;          /* Primary */
  --teal-600: #0A5F5F;
  --teal-700: #083F42;
  --teal-800: #062E2F;          /* Near-black teal — headings on light */
  --teal-900: #041F22;

  /* Botanical accent (sustainability / PCI) */
  --leaf-500: #2D6A4F;
  --leaf-600: #1F4E3A;

  /* Gold accent (trust badges) */
  --gold-500: #C8973B;
  --gold-600: #A07429;

  /* Neutrals */
  --bg:        #FBFCFC;
  --bg-warm:   #F4F7F7;
  --surface:   #FFFFFF;
  --ink:       #0C2126;
  --ink-soft:  #2E4549;
  --muted:     #6B7C7E;
  --line:      #E2EAEB;
  --line-soft: #EEF3F3;

  /* Type scale */
  --f-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(16px, 2.5vw, 32px);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(6, 46, 47, 0.06);
  --shadow-sm: 0 2px 8px rgba(6, 46, 47, 0.06), 0 1px 2px rgba(6, 46, 47, 0.04);
  --shadow-md: 0 12px 28px rgba(6, 46, 47, 0.08), 0 4px 10px rgba(6, 46, 47, 0.05);
  --shadow-lg: 0 28px 60px rgba(6, 46, 47, 0.12), 0 10px 24px rgba(6, 46, 47, 0.06);
  --shadow-glow: 0 0 0 6px rgba(14, 124, 123, 0.10);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
  --t-slow: 600ms;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--f-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--teal-800); }
p { margin: 0; }

/* Focus */
:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 3px; border-radius: 4px; }

/* Selection */
::selection { background: var(--teal-500); color: #fff; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow .dot { width: 7px; height: 7px; background: var(--teal-500); border-radius: 50%; box-shadow: 0 0 0 4px rgba(14, 124, 123, 0.15); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(14, 124, 123, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(14, 124, 123, 0.05); }
}
.serif-italic { font-family: var(--f-display); font-style: normal; font-weight: 700; color: var(--teal-500); }
.accent { color: var(--teal-500); font-weight: 700; }
.section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.section-head { max-width: 760px; margin: 0 0 56px; }
.section-head h2 {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.section-head p { color: var(--muted); font-size: 18px; max-width: 620px; margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--f-body); font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform var(--t-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--teal-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-600); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--teal-700); border: 1.5px solid var(--teal-200); }
.btn-ghost:hover { border-color: var(--teal-500); background: var(--teal-50); }
.btn-dark { background: var(--teal-800); color: #fff; }
.btn-dark:hover { background: var(--teal-900); transform: translateY(-1px); }
.btn-leaf { background: var(--leaf-500); color: #fff; }
.btn-leaf:hover { background: var(--leaf-600); transform: translateY(-1px); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--teal-800);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar a { color: inherit; transition: color var(--t-fast); }
.topbar a:hover { color: var(--teal-200); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar .sep { opacity: 0.4; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.95); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.brand-name { font-family: var(--f-display); font-size: 15px; font-weight: 700; color: var(--teal-800); letter-spacing: -0.01em; }
.brand-sub  { font-family: var(--f-body); font-size: 12px; font-weight: 500; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.main-nav > a, .main-nav .nav-trigger {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color var(--t-fast);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.main-nav > a:hover, .main-nav .nav-trigger:hover { color: var(--teal-600); }
.main-nav > a.active, .main-nav .nav-trigger.active { color: var(--teal-600); }
.main-nav > a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--teal-500); border-radius: 2px;
}
.nav-item { position: relative; }
.has-dropdown { position: relative; }
.caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -3px; opacity: 0.6;
  transition: transform var(--t-base) var(--ease);
}
.has-dropdown:hover .caret { transform: rotate(225deg); margin-top: 3px; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--t-base), visibility var(--t-base), transform var(--t-base) var(--ease);
  z-index: 50;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14.5px; color: var(--ink-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.dropdown a:hover { background: var(--teal-50); color: var(--teal-600); }

.cta-header { padding: 12px 20px; font-size: 14px; }
.mobile-menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; flex-direction: column; justify-content: space-around; }
.mobile-menu-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t-base) var(--ease), opacity var(--t-base); }
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(80px, 9vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(14, 124, 123, 0.10) 0%, rgba(14, 124, 123, 0) 60%),
    radial-gradient(45% 60% at 0% 100%, rgba(45, 106, 79, 0.07) 0%, rgba(45, 106, 79, 0) 70%),
    var(--bg);
}
.hero::before {
  /* Subtle grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14, 124, 123, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 124, 123, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  opacity: 0.6;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-text { position: relative; }
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 22px 0 28px;
  color: var(--teal-800);
}
.hero-title .highlight { color: var(--teal-800); }
.hero-title em.serif-italic {
  display: inline-block;
  font-size: 1.05em;
  color: var(--teal-500);
  font-style: normal;
  font-weight: 400;
}
.hero-lead {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  margin-left: auto;
  justify-self: end;
}
.hero-photo {
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #E8F4F4 0%, #D5EBEC 100%);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo svg { width: 100%; height: 100%; }

/* Floating trust badges card on hero */
.hero-badges {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 14px;
  min-width: 220px;
  z-index: 3;
}
.badge-item { display: flex; align-items: center; gap: 12px; font-size: 13.5px; line-height: 1.3; }
.badge-item .badge-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--teal-50);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--teal-500);
}
.badge-item .badge-icon svg { width: 18px; height: 18px; }
.badge-item .badge-text { display: flex; flex-direction: column; }
.badge-item .badge-text strong { font-weight: 600; color: var(--teal-800); font-size: 13.5px; }
.badge-item .badge-text span { color: var(--muted); font-size: 12px; }

/* Floating molecules in hero */
.molecule {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}
.molecule-1 { top: 8%; left: 4%; width: 90px; animation: float-y 11s ease-in-out infinite; }
.molecule-2 { bottom: 6%; right: 4%; width: 70px; animation: float-y 14s ease-in-out infinite 2s; }
.molecule-3 { top: 12%; right: 50%; width: 90px; animation: float-y 13s ease-in-out infinite 1s; opacity: 0.35; }
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-18px) rotate(8deg); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  position: relative;
  margin-top: -60px;
  padding: 0 var(--gutter);
  z-index: 3;
}
.stats-inner {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-700) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px clamp(20px, 3vw, 48px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  max-width: var(--container);
  margin-inline: auto;
}
.stats-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(40% 80% at 100% 0%, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.stat { display: flex; align-items: center; gap: 16px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: -8px; top: 14%; bottom: 14%;
  width: 1px; background: rgba(255, 255, 255, 0.12);
}
.stat-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--teal-200);
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-body { line-height: 1.2; }
.stat-number {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}
.stat-number .plus { color: var(--teal-200); margin-left: 2px; }
.stat-label { font-size: 13px; color: rgba(255, 255, 255, 0.75); margin-top: 2px; }

/* ============================================================
   DIVISIONS
   ============================================================ */
.divisions { padding-top: clamp(120px, 12vw, 180px); }
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.division-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base);
  display: flex; flex-direction: column;
}
.division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.division-illustration {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.division-illustration svg { width: 100%; height: 100%; }
.division-card.api .division-illustration  { background: linear-gradient(135deg, #EAF5F5 0%, #D5EBEC 100%); }
.division-card.ff  .division-illustration  { background: linear-gradient(135deg, #DCEBEC 0%, #B7D8DA 100%); }
.division-card.pci .division-illustration  { background: linear-gradient(135deg, #E3EFE7 0%, #C9DECF 100%); }

.division-body { padding: 28px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.division-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--teal-50); color: var(--teal-600);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  align-self: flex-start;
}
.division-card.pci .division-tag { background: #E3EFE7; color: var(--leaf-500); }
.division-card.ff  .division-tag { background: var(--teal-50); color: var(--teal-600); }
.division-card h3 {
  font-size: 26px; font-weight: 500; margin-top: 14px; margin-bottom: 12px;
  color: var(--teal-800); letter-spacing: -0.01em;
}
.division-card h3 .sub { display: block; font-size: 14px; color: var(--muted); font-family: var(--f-body); font-weight: 500; margin-top: 2px; letter-spacing: 0; }
.division-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-bottom: 24px; flex: 1; }
.division-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal-600); font-weight: 600; font-size: 14.5px;
  transition: gap var(--t-base) var(--ease), color var(--t-base);
  align-self: flex-start;
}
.division-card.pci .division-link { color: var(--leaf-500); }
.division-card.pci .division-link:hover { color: var(--leaf-600); }
.division-link:hover { gap: 14px; color: var(--teal-700); }

/* ============================================================
   MANUFACTURING (dark)
   ============================================================ */
.manufacturing {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 46, 47, 0.92) 0%, rgba(10, 95, 95, 0.85) 100%),
    #062E2F;
  color: #fff;
  border-radius: var(--radius-xl);
  margin-inline: var(--gutter);
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) clamp(28px, 5vw, 64px);
}
.manufacturing-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}
.manufacturing .eyebrow { color: var(--teal-200); }
.manufacturing .eyebrow .dot { background: var(--teal-200); box-shadow: 0 0 0 4px rgba(166, 210, 212, 0.15); }
.manufacturing h2 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.04;
  margin: 14px 0 20px;
}
.manufacturing h2 em { color: var(--teal-200); font-style: normal; font-weight: 700; }
.manufacturing-lead { color: rgba(255, 255, 255, 0.78); font-size: 17px; max-width: 520px; margin-bottom: 32px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  max-width: 540px;
}
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--teal-200);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-text { line-height: 1.4; }
.pillar-text strong { font-family: var(--f-display); font-size: 17px; font-weight: 500; color: #fff; display: block; margin-bottom: 2px; }
.pillar-text span { font-size: 14px; color: rgba(255, 255, 255, 0.65); }

.manufacturing-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.manufacturing-actions .btn-primary { background: var(--teal-400); color: var(--teal-900); }
.manufacturing-actions .btn-primary:hover { background: #fff; }
.manufacturing-actions .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.manufacturing-actions .btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); }

.manufacturing-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.manufacturing-visual img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02) saturate(0.95); }
.manufacturing-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 46, 47, 0.4) 100%);
}
.manufacturing-meta {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px;
  color: #fff; z-index: 2;
}
.manufacturing-meta .loc { font-family: var(--f-display); font-size: 22px; font-weight: 500; }
.manufacturing-meta .loc small { display: block; font-family: var(--f-body); font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; }
.manufacturing-meta .est { font-size: 12px; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.35); border-radius: 999px; backdrop-filter: blur(6px); }

/* ============================================================
   COMPLIANCE STRIP
   ============================================================ */
.compliance {
  padding: clamp(56px, 7vw, 80px) 0;
  background: var(--bg-warm);
  border-block: 1px solid var(--line-soft);
}
.compliance-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: center; }
.compliance-head h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 500; line-height: 1.1; }
.compliance-head p { color: var(--muted); font-size: 15px; margin-top: 10px; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cert-badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.cert-badge::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--teal-500), var(--leaf-500));
  opacity: 0; transition: opacity var(--t-base);
}
.cert-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert-badge:hover::before { opacity: 1; }
.cert-name { font-family: var(--f-display); font-weight: 600; font-size: 18px; color: var(--teal-700); letter-spacing: -0.01em; }
.cert-desc { font-size: 11.5px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-products {
  padding: clamp(80px, 9vw, 120px) 0;
  background:
    radial-gradient(50% 60% at 100% 20%, rgba(14, 124, 123, 0.06), transparent 60%),
    var(--bg);
}
.featured-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.featured-header .section-head { margin: 0; max-width: 600px; }
.product-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 540px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  min-height: 220px;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card.feature {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-700) 100%);
  color: #fff;
  padding: 36px;
  border: none;
}
.product-card.feature h3 { color: #fff; font-size: clamp(28px, 3vw, 38px); line-height: 1.05; max-width: 320px; }
.product-card.feature p  { color: rgba(255,255,255,0.78); margin-top: 16px; max-width: 380px; }
.product-card.feature .product-link { color: #fff; }
.product-card.feature .product-illu { color: var(--teal-200); }

.product-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-600); background: var(--teal-50);
  padding: 5px 10px; border-radius: 999px; align-self: flex-start;
}
.product-card.feature .product-tag { background: rgba(255,255,255,0.12); color: var(--teal-200); }
.product-card h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; line-height: 1.15; margin-top: 12px;
  color: var(--teal-800);
  letter-spacing: -0.01em;
}
.product-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-top: 8px; }
.product-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--teal-600);
  transition: gap var(--t-base) var(--ease);
}
.product-link:hover { gap: 14px; }
.product-illu {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 130px; height: 130px;
  color: var(--teal-200); opacity: 0.7;
  pointer-events: none;
}
.product-card.feature .product-illu { width: 200px; height: 200px; right: -20px; bottom: -20px; opacity: 0.6; }

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.global {
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--bg-warm);
  position: relative;
}
.global-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.global-text h2 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.04; }
.global-text p { color: var(--muted); font-size: 17px; margin-top: 20px; max-width: 460px; }
.global-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px; margin-top: 36px; max-width: 460px; }
.global-stat { border-top: 1px solid var(--line); padding-top: 16px; }
.global-stat .num { font-family: var(--f-display); font-size: 38px; font-weight: 500; color: var(--teal-700); letter-spacing: -0.02em; line-height: 1; }
.global-stat .num .plus { color: var(--teal-400); margin-left: 2px; }
.global-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; letter-spacing: 0.03em; }
.world-map { position: relative; }
.world-map svg { width: 100%; height: auto; }
.map-pin {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--teal-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(14, 124, 123, 0.5);
  animation: ping 2.4s var(--ease) infinite;
  z-index: 2;
}
.map-pin::after {
  content: ""; position: absolute; inset: 3px;
  background: #fff; border-radius: 50%;
}
.map-pin.pin-hq {
  width: 18px; height: 18px;
  background: var(--gold-500);
  box-shadow: 0 0 0 0 rgba(200, 151, 59, 0.5);
}
.map-pin.pin-hq::after { inset: 4px; }
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(14, 124, 123, 0.45); }
  100% { box-shadow: 0 0 0 22px rgba(14, 124, 123, 0); }
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why { padding: clamp(80px, 9vw, 120px) 0; background: var(--bg); }
.why-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.why-head .section-head { margin: 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.why-num {
  font-family: var(--f-display); font-style: normal;
  font-size: 18px; color: var(--teal-400); font-weight: 400; letter-spacing: 0.04em;
}
.why-item h4 { font-family: var(--f-display); font-size: 22px; font-weight: 500; margin: 14px 0 10px; color: var(--teal-800); letter-spacing: -0.01em; }
.why-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.why-icon { color: var(--teal-500); margin-bottom: 14px; }
.why-icon svg { width: 32px; height: 32px; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  padding: clamp(56px, 7vw, 88px) 0;
}
.cta-inner {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 80% at 100% 0%, rgba(255,255,255,0.12), transparent 60%),
    radial-gradient(50% 100% at 0% 100%, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
}
.cta-inner h2 { color: #fff; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; position: relative; }
.cta-inner h2 em { color: var(--teal-200); font-style: normal; font-weight: 700; }
.cta-inner p { color: rgba(255,255,255,0.85); margin-top: 14px; max-width: 480px; position: relative; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; position: relative; }
.cta-actions .btn-primary { background: #fff; color: var(--teal-700); }
.cta-actions .btn-primary:hover { background: var(--teal-100); }
.cta-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-actions .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.7);
  padding: clamp(56px, 7vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-logo { height: 50px; }
.footer-brand .brand-name { color: #fff; font-size: 17px; }
.footer-brand .brand-sub  { color: rgba(255,255,255,0.55); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; margin-top: 18px; max-width: 320px; }
.footer-col h5 { color: #fff; font-family: var(--f-body); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 14.5px; transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }
.footer-contact .row { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
.footer-contact .row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal-300); margin-top: 2px; }
.footer-newsletter { margin-top: 18px; }
.footer-newsletter p { font-size: 13px; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 4px;
  max-width: 320px;
}
.newsletter-form input {
  flex: 1; padding: 10px 16px; background: transparent; border: none; color: #fff;
  font: 14px/1 var(--f-body); outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  width: 38px; height: 38px;
  background: var(--teal-400); color: var(--teal-900);
  border-radius: 50%; display: grid; place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.newsletter-form button:hover { background: #fff; transform: scale(1.05); }

.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.footer-bottom .socials a:hover { background: var(--teal-700); border-color: var(--teal-500); color: #fff; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0,0,0,0.1);
  z-index: 90;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37,211,102,0.5); }
.whatsapp-fab::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid #25D366; opacity: 0;
  animation: wa-ping 2.4s var(--ease) infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }
.reveal.delay-4 { transition-delay: 400ms; }
.no-js .reveal { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1480px) {
  .main-nav > a, .main-nav .nav-trigger { padding: 10px 11px; font-size: 14px; }
  .cta-header { padding: 11px 16px; font-size: 13.5px; }
  .header-inner { gap: 18px; }
}
@media (max-width: 1240px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 14px; }
  .main-nav > a { padding: 10px 11px; font-size: 14px; }
  .cta-header { padding: 11px 16px; font-size: 13.5px; }
}
@media (max-width: 1100px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(4), .stat:nth-child(5) { grid-column: span 1; }
  .product-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .product-card.feature { grid-row: span 1; grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-newsletter { grid-column: span 3; }
}
@media (max-width: 900px) {
  .main-nav, .cta-header { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/5; }
  .hero-badges { position: static; transform: none; margin-top: -32px; margin-inline: auto; max-width: 420px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .divisions-grid { grid-template-columns: 1fr; }
  .manufacturing-inner { grid-template-columns: 1fr; }
  .compliance-inner { grid-template-columns: 1fr; gap: 32px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .global-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: span 2; }
  .footer-brand { grid-column: span 2; }
  .topbar-left, .topbar-right { gap: 8px; font-size: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card.feature { grid-column: span 1; }
}
@media (max-width: 540px) {
  .topbar .sep { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-left { display: none; }
  .brand-logo { height: 38px; }
  .brand-text { display: none; }
  .molecule { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .stats-band { margin-top: -40px; padding: 0 16px; }
  .stats-inner { padding: 24px 20px; gap: 20px; }
  .cert-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand, .footer-newsletter { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .whatsapp-fab { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(6, 46, 47, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
  padding: 100px var(--gutter) 40px;
  overflow-y: auto;
}
.mobile-drawer.open { opacity: 1; visibility: visible; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer a {
  display: block; padding: 16px 0;
  font-family: var(--f-display); font-size: 28px; font-weight: 400;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
}
.mobile-drawer a:hover { color: var(--teal-200); }
.mobile-drawer .submenu { padding-left: 16px; padding-bottom: 12px; }
.mobile-drawer .submenu a { font-size: 18px; padding: 10px 0; border: none; color: rgba(255,255,255,0.75); }
.mobile-drawer .drawer-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-drawer .drawer-cta .btn {
  display: flex !important;     /* override the .mobile-drawer a { display:block } above */
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 16px 24px;
  border-bottom: none !important;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.mobile-drawer .drawer-cta .btn-primary { color: #fff; }
.mobile-drawer .drawer-cta .btn-ghost { color: #fff !important; }

/* ============================================================
   IMAGE PLACEHOLDER SYSTEM
   Drop a photo into images/[filename] and it auto-appears.
   ============================================================ */
.hero-photo > img,
.subhero-visual > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 500ms ease;
}
.hero-photo > img.loaded,
.subhero-visual > img.loaded { opacity: 1; }

.media-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; text-align: center; padding: 32px;
  z-index: 1;
}
.media-placeholder::before,
.media-placeholder::after {
  content: ""; position: absolute;
  width: 42px; height: 42px;
  border: 2px solid var(--teal-400);
  opacity: 0.45; pointer-events: none;
}
.media-placeholder::before {
  top: 22px; left: 22px;
  border-right: none; border-bottom: none;
  border-top-left-radius: 6px;
}
.media-placeholder::after {
  bottom: 22px; right: 22px;
  border-left: none; border-top: none;
  border-bottom-right-radius: 6px;
}
.ph-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid; place-items: center;
  color: var(--teal-600);
  box-shadow: 0 8px 24px rgba(14, 124, 123, 0.12);
}
.ph-icon-wrap svg { width: 30px; height: 30px; }
.ph-label {
  font-family: var(--f-display);
  font-size: 17px; font-weight: 500;
  color: var(--teal-800);
  letter-spacing: 0.03em;
  margin: 0;
}
.ph-hint {
  font-size: 12px;
  color: var(--teal-700);
  font-family: var(--f-body);
  opacity: 0.9; margin: 0;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; justify-content: center;
}
.ph-hint code {
  background: rgba(255, 255, 255, 0.85);
  padding: 5px 10px;
  border-radius: 5px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--teal-800);
  border: 1px solid rgba(14, 124, 123, 0.15);
  font-weight: 500;
  letter-spacing: 0;
}
/* PCI green variant */
.pci .ph-icon-wrap { color: var(--leaf-500); }
.pci .ph-label { color: var(--leaf-600); }
.pci .ph-hint { color: var(--leaf-600); }
.pci .ph-hint code { color: var(--leaf-600); border-color: rgba(45, 106, 79, 0.2); }
.pci .media-placeholder::before,
.pci .media-placeholder::after { border-color: var(--leaf-500); }
/* END placeholder system */

/* ============================================================
   DIVISION SUB-PAGES (api / fdf / pci)
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--teal-600); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.4; }
.breadcrumb .current { color: var(--teal-700); font-weight: 600; }

/* Sub-page hero */
.subhero {
  position: relative;
  padding: 40px 0 clamp(72px, 8vw, 110px);
  overflow: hidden;
}
.subhero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.subhero-text { position: relative; z-index: 2; }
.subhero h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  color: var(--teal-800);
}
.subhero h1 em { color: var(--teal-500); font-style: normal; font-weight: 700; }
.subhero h1 .small { display: block; font-size: 0.42em; color: var(--muted); font-style: normal; font-weight: 500; margin-top: 14px; letter-spacing: 0; }
.subhero p { font-size: clamp(15.5px, 1.3vw, 18px); color: var(--ink-soft); max-width: 540px; line-height: 1.65; margin-bottom: 30px; }

.subhero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  justify-self: end;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.subhero-visual svg { width: 100%; height: 100%; display: block; }

/* Division-specific subhero backgrounds */
.subhero.api .subhero-visual { background: linear-gradient(135deg, #EAF5F5 0%, #B7D8DA 100%); }
.subhero.ff  .subhero-visual { background: linear-gradient(135deg, #DCEBEC 0%, #95C2C5 100%); }
.subhero.pci .subhero-visual { background: linear-gradient(135deg, #E3EFE7 0%, #B5D2C0 100%); }

.subhero.api { background:
  radial-gradient(50% 70% at 90% 20%, rgba(14, 124, 123, 0.10), transparent 60%),
  var(--bg); }
.subhero.ff { background:
  radial-gradient(50% 70% at 10% 80%, rgba(10, 95, 95, 0.10), transparent 60%),
  radial-gradient(50% 70% at 90% 20%, rgba(14, 124, 123, 0.08), transparent 60%),
  var(--bg); }
.subhero.pci { background:
  radial-gradient(50% 70% at 90% 20%, rgba(45, 106, 79, 0.10), transparent 60%),
  var(--bg); }

.pci .subhero h1 em { color: var(--leaf-500); }
.pci .btn-primary { background: var(--leaf-500); }
.pci .btn-primary:hover { background: var(--leaf-600); }

/* Trust strip below subhero */
.trust-strip {
  padding: 28px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  text-align: left;
  position: relative;
}
.trust-item + .trust-item::before {
  content: ""; position: absolute; left: -12px; top: 20%; bottom: 20%;
  width: 1px; background: var(--line);
}
.trust-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--teal-50);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--teal-600);
}
.pci .trust-icon { background: #E3EFE7; color: var(--leaf-500); }
.trust-icon svg { width: 18px; height: 18px; }
.trust-label { font-size: 13px; line-height: 1.3; color: var(--ink-soft); font-weight: 500; }

/* Category section */
.categories {
  padding: clamp(72px, 8vw, 110px) 0;
  background: var(--bg);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base), border-color var(--t-base);
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.pci .cat-card:hover { border-color: #B5D2C0; }
.cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-50);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--teal-600);
}
.pci .cat-icon { background: #E3EFE7; color: var(--leaf-500); }
.cat-icon svg { width: 22px; height: 22px; }
.cat-card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--teal-800);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cat-card ul {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 22px;
  flex: 1;
}
.cat-card li {
  font-size: 14.5px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.4;
}
.cat-card li::before {
  content: ""; width: 5px; height: 5px;
  background: var(--teal-400); border-radius: 50%; flex-shrink: 0;
}
.pci .cat-card li::before { background: var(--leaf-500); }
.cat-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--teal-600);
  align-self: flex-start;
  transition: gap var(--t-base) var(--ease);
}
.cat-link:hover { gap: 14px; color: var(--teal-700); }
.pci .cat-link { color: var(--leaf-500); }
.pci .cat-link:hover { color: var(--leaf-600); }

/* Why partner block */
.why-partner {
  padding: clamp(72px, 8vw, 110px) 0;
}
.why-partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-700) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.pci .why-partner-inner { background: linear-gradient(135deg, var(--leaf-600) 0%, #2D6A4F 100%); }
.why-partner-inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
}
.why-partner h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  position: relative;
}
.why-partner h2 em { color: var(--teal-200); font-style: normal; font-weight: 700; }
.pci .why-partner h2 em { color: #B5D2C0; }
.why-partner-lead { color: rgba(255, 255, 255, 0.78); margin-top: 18px; font-size: 16px; position: relative; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; position: relative; }
.why-list .item { display: flex; gap: 14px; align-items: flex-start; }
.why-list .item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--teal-200);
}
.pci .why-list .item-icon { color: #B5D2C0; }
.why-list .item-icon svg { width: 18px; height: 18px; }
.why-list .item-text strong { display: block; color: #fff; font-family: var(--f-display); font-weight: 500; font-size: 16px; }
.why-list .item-text span { font-size: 13.5px; color: rgba(255, 255, 255, 0.7); }

/* Brand showcase (FDF only) */
.brands {
  padding: clamp(72px, 8vw, 110px) 0;
  background: var(--bg-warm);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
}
.brand-name {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--teal-700);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  display: block;
}
.brand-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 14px;
  display: block;
}
.brand-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* Sub-page CTA / catalogue */
.cat-cta {
  padding: clamp(56px, 7vw, 88px) 0;
}
.cat-cta-inner {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pci .cat-cta-inner { background: linear-gradient(135deg, var(--leaf-500) 0%, var(--leaf-600) 100%); }
.cat-cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 100% at 100% 0%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.cat-cta-inner h2 {
  color: #fff; font-size: clamp(26px, 3vw, 36px); line-height: 1.1; position: relative;
}
.cat-cta-inner h2 em { color: var(--teal-200); font-style: normal; }
.pci .cat-cta-inner h2 em { color: #B5D2C0; }
.cat-cta-inner p { color: rgba(255,255,255,0.85); margin-top: 8px; max-width: 480px; position: relative; }
.cat-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.cat-cta-actions .btn-primary { background: #fff; color: var(--teal-700); }
.cat-cta-actions .btn-primary:hover { background: var(--teal-100); }
.pci .cat-cta-actions .btn-primary { color: var(--leaf-600); }
.cat-cta-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.cat-cta-actions .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* Section head centered */
.section-head.center { text-align: center; margin-inline: auto; max-width: 700px; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center p { margin-inline: auto; }

/* Responsive */
@media (max-width: 1100px) {
  .subhero-inner { grid-template-columns: 1fr; }
  .subhero-visual { max-width: 100%; margin: 0; justify-self: stretch; }
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .trust-item:nth-child(4), .trust-item:nth-child(5) { grid-column: span 1; }
  .trust-item + .trust-item::before { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .why-partner-inner { grid-template-columns: 1fr; gap: 30px; }
  .why-list { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .cat-cta-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   v2 ADDITIONS — modal, forms, photo cards, contact, about
   ============================================================ */

/* MODAL (Catalogue download form) */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6, 46, 47, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; animation: mfade 0.25s ease; }
@keyframes mfade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  position: relative;
  animation: mslide 0.35s var(--ease-out);
}
@keyframes mslide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.modal-close:hover { background: var(--teal-100); color: var(--teal-700); }
.modal-close svg { width: 18px; height: 18px; }
.modal-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 8px;
}
.modal h3 {
  font-size: 22px; font-weight: 700;
  color: var(--teal-800);
  margin-bottom: 6px;
}
.modal .lead {
  color: var(--muted); font-size: 14px;
  margin-bottom: 22px;
}

/* FORM */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-group label .req { color: #d44; margin-left: 2px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.12);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-actions { margin-top: 18px; }
.form-actions .btn { width: 100%; justify-content: center; }
.form-status {
  font-size: 13px; padding: 10px 14px; border-radius: 8px;
  margin-top: 12px; display: none;
}
.form-status.success { display: block; background: #E8F5E8; color: #1F4E3A; }
.form-status.error { display: block; background: #FBE7E7; color: #962020; }
.form-status.loading { display: block; background: var(--teal-50); color: var(--teal-700); }

/* CONTACT PAGE */
.contact-page { padding-top: 32px; }
.contact-hero { padding-top: 40px; padding-bottom: 30px; }
.contact-hero > * { max-width: 820px; }
.contact-hero h1 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 14px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.contact-hero p { color: var(--ink-soft); font-size: 16px; max-width: 600px; line-height: 1.6; }
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding-bottom: clamp(64px, 8vw, 100px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
  color: var(--teal-800);
}
.contact-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--teal-50);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--teal-600);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-row .label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-row .value {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
.contact-row .value a { color: var(--teal-700); }
.contact-row .value a:hover { color: var(--teal-500); }
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
}
.contact-form-wrap h2 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 6px;
}
.contact-form-wrap .lead {
  color: var(--muted); font-size: 14.5px; margin-bottom: 24px;
}
.map-embed {
  width: 100%; height: 360px;
  border: 0; border-radius: var(--radius);
  filter: saturate(0.85) contrast(0.95);
}

/* ABOUT PAGE */
.about-hero {
  padding: 40px 0 clamp(56px, 7vw, 80px);
}
.about-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .about-hero-grid { grid-template-columns: 1fr; } }
.about-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.about-hero p {
  font-size: 16.5px; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.about-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: clamp(40px, 5vw, 70px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat { text-align: center; padding: 16px; }
.about-stat .num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; color: var(--teal-700);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat .lbl { font-size: 13.5px; color: var(--muted); }

.values {
  padding: clamp(64px, 8vw, 100px) 0;
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 48px; height: 48px;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 {
  font-size: 19px; font-weight: 700;
  margin-bottom: 10px;
}
.value-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

/* PHOTO DIVISION CARDS (replaces SVG illustrations on homepage) */
.div-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  background: var(--teal-50);
  position: relative;
}
.div-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.division-card:hover .div-card-photo img { transform: scale(1.06); }

/* Spacing fix on division cards */
.division-card .brand-list { margin: 12px 0 18px !important; line-height: 1.6 !important; }
.division-card .desc { margin-top: 6px !important; }

/* WORLD MAP IMG (replace SVG-based map) */
.world-map-img {
  width: 100%;
  max-width: 980px;
  aspect-ratio: 2 / 1.4;
  background: url('images/world-map-teal.png') center / contain no-repeat;
  margin-inline: auto;
  position: relative;
}

/* FEATURED PRODUCT CARDS — clickable */
.feature-card { cursor: pointer; transition: transform var(--t-base) var(--ease), box-shadow var(--t-base); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .view-spec {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal-600);
  margin-top: auto; padding-top: 14px;
}

/* LINKEDIN icon button */
.linkedin-link {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: 8px;
  transition: background var(--t-fast), color var(--t-fast);
}
.linkedin-link:hover { background: var(--teal-600); color: #fff; }
.linkedin-link svg { width: 16px; height: 16px; }

/* CATALOGUE CARD (in division pages) */
.catalogue-card {
  display: flex; gap: 18px; align-items: center;
  background: linear-gradient(135deg, var(--teal-50), #fff);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 36px 0;
}
.catalogue-card .cat-icon-big {
  width: 56px; height: 56px; flex-shrink: 0;
  background: #fff;
  color: var(--teal-600);
  border-radius: 14px;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(14, 124, 123, 0.10);
}
.catalogue-card .cat-icon-big svg { width: 26px; height: 26px; }
.catalogue-card .cat-text { flex: 1; }
.catalogue-card h4 {
  font-size: 16px; font-weight: 700;
  color: var(--teal-800);
  margin-bottom: 4px;
}
.catalogue-card p {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.5;
}
.catalogue-card .btn { white-space: nowrap; }
@media (max-width: 700px) {
  .catalogue-card { flex-direction: column; align-items: flex-start; }
}

/* Logo — fully transparent, no card wrapper */
.brand-logo {
  background: transparent !important;
  border-radius: 0;
  padding: 0;
  height: 40px !important;
  width: auto;
}
.site-footer .brand-logo { background: transparent; padding: 0; height: 48px !important; }
.mobile-drawer .brand-logo { background: transparent; padding: 0; }

/* Hide the header CTA on the Contact page itself */
body.page-contact .site-header .btn-primary, body.current-contact .site-header .btn-primary { display: none !important; }

/* ============================================================
   v2.1 — MOBILE & SPACING POLISH
   ============================================================ */
@media (max-width: 768px) {
  /* Contact hero: keep container padding so headline doesn't touch screen edge */
  .contact-hero > * { max-width: 100%; }
  .contact-hero h1 { font-size: clamp(28px, 8vw, 40px); }

  /* About hero stacks properly */
  .about-hero-grid { gap: 28px; }
  .about-hero h1 { font-size: clamp(30px, 8vw, 44px); }

  /* Hero title on home — smaller line breaks */
  .hero-title { font-size: clamp(32px, 9vw, 48px); }

  /* Stats band — 2x2 on mobile, not 5-wide cramped */
  .stats-band .stats-grid { grid-template-columns: repeat(2, 1fr) !important; row-gap: 24px; }

  /* Catalogue card: stack to full-width */
  .catalogue-card { padding: 18px; gap: 14px; }
  .catalogue-card h4 { font-size: 15px; }
  .catalogue-card p { font-size: 13px; }
  .catalogue-card .btn { width: 100%; justify-content: center; }

  /* Modal padding mobile */
  .modal { padding: 26px 20px; }
  .modal h3 { font-size: 19px; }

  /* About stats — 2 per row */
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Why partner stacks */
  .why-partner-inner { grid-template-columns: 1fr !important; }

  /* Contact grid — info above form */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-wrap { padding: 22px 18px; }

  /* Trust strip — 2 per row on mobile, not cramped */
  .trust-strip { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }

  /* Division card photo */
  .div-card-photo { aspect-ratio: 16 / 10; }
  
  /* Featured product cards stack one column */
  .product-grid { grid-template-columns: 1fr !important; }

  /* Headline accents wrap nicely */
  h1, h2 { word-break: break-word; hyphens: auto; }

  /* Form row stacks */
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Tablet refinements */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-grid { gap: 32px; }
  .about-hero-grid { gap: 36px; }
  .stats-band .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
}

/* Brand-card highlight on anchor jump */
.brand-card:target {
  outline: 3px solid var(--teal-400);
  outline-offset: 4px;
  animation: highlight 1.8s ease;
}
@keyframes highlight {
  0%   { box-shadow: 0 0 0 0 rgba(14, 124, 123, 0.6); }
  60%  { box-shadow: 0 0 0 14px rgba(14, 124, 123, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 124, 123, 0); }
}

/* Standardize button gap and ensure spacing under headlines */
.hero-actions { gap: 14px; }
.section-head { margin-bottom: 24px; }

/* Subtle anti-AI polish: smoother section padding rhythm */
section { scroll-margin-top: 96px; }

/* ============================================================
   FEATURE CARD WITH PHOTO — Povidone Iodine on home page
   The .product-card.feature occupies the leftmost column of a 3-col grid
   and spans 2 rows — i.e. it's a TALL narrow card. So we lay it out vertically:
   photo on top, text below.
   ============================================================ */
.product-card.feature.has-photo {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px;
  background: linear-gradient(135deg, #0E7C7B 0%, #095B5B 100%);
  color: #ffffff;
  border: none;
  overflow: hidden;
}
.product-card.feature.has-photo::before,
.product-card.feature.has-photo .product-illu { display: none !important; }
.product-card.feature.has-photo .feature-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a4a4a;
  width: 100%;
  aspect-ratio: 16 / 11;
  flex-shrink: 0;
}
.product-card.feature.has-photo .feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card.feature.has-photo .feature-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-card.feature.has-photo .product-tag {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  align-self: flex-start;
  backdrop-filter: blur(4px);
}
.product-card.feature.has-photo h3 {
  color: #ffffff;
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.15;
  margin: 0;
  max-width: 100%;
}
.product-card.feature.has-photo p {
  color: rgba(255,255,255,0.86);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 100%;
}
.product-card.feature.has-photo .feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 10px;
  align-items: center;
}
.product-card.feature.has-photo .view-spec {
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
}
.product-card.feature.has-photo .view-spec span { color: #ffffff; }
.onepager-btn {
  appearance: none;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.34);
  font: 600 12px/1 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.onepager-btn:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .product-card.feature.has-photo {
    padding: 20px;
  }
  .product-card.feature.has-photo .feature-photo {
    aspect-ratio: 16 / 10;
  }
}

/* ============================================================
   ONE-PAGER BANNER — Povidone Iodine resource CTA
   ============================================================ */
.onepager-banner {
  margin-top: 36px;
  background: linear-gradient(135deg, #ECF6F6 0%, #DCEBEC 100%);
  border: 1px solid rgba(14,124,123,0.18);
  border-radius: 22px;
  padding: 30px 36px;
  position: relative;
  overflow: hidden;
}
.onepager-banner::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(14,124,123,0.18) 0%, transparent 65%);
  z-index: 0;
}
.onepager-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.onepager-banner-text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 8px 0 6px;
  color: #062E2F;
  line-height: 1.18;
}
.onepager-banner-text h3 em {
  color: #0E7C7B;
  font-style: italic;
}
.onepager-banner-text p {
  margin: 0;
  color: #4a5e60;
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 640px;
}
@media (max-width: 768px) {
  .onepager-banner { padding: 24px 22px; }
  .onepager-banner-inner { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   EXHIBITIONS / EVENTS — horizontal sliding marquee (single row)
   ============================================================ */
.exhibitions {
  padding: 96px 0 80px;
  background:
    radial-gradient(900px 480px at 80% 0%, rgba(14,124,123,0.06), transparent 60%),
    linear-gradient(180deg, #FBFCFC 0%, #F2F7F7 100%);
  overflow: hidden;          /* hide the off-screen part of the track */
}
.exhibitions .section-head { margin-bottom: 44px; }

.exhibitions-marquee {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(
    90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.exhibitions-track {
  display: flex;
  gap: 22px;
  width: max-content;        /* let it grow as wide as the cards need */
  padding: 8px 0;            /* breathing room for hover lift + shadow */
  animation: exhibitions-scroll 60s linear infinite;
  will-change: transform;
}
.exhibitions-marquee:hover .exhibitions-track,
.exhibitions-marquee:focus-within .exhibitions-track {
  animation-play-state: paused;
}

@keyframes exhibitions-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }   /* loops exactly halfway: run 2 = run 1 */
}

.exhibit-card {
  flex: 0 0 320px;           /* fixed card width — one row scroll */
  width: 320px;
  margin: 0;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(6,46,47,0.08);
  border: 1px solid rgba(14,124,123,0.10);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.exhibit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(6,46,47,0.14);
}
.exhibit-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #DCEBEC;
}
.exhibit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.exhibit-card:hover .exhibit-photo img { transform: scale(1.04); }
.exhibit-card figcaption {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exhibit-year {
  display: inline-block;
  font: 700 11px/1 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0E7C7B;
  background: #ECF6F6;
  padding: 5px 9px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 6px;
}
.exhibit-card figcaption strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #062E2F;
  line-height: 1.3;
}
.exhibit-loc {
  font-size: 12.5px;
  color: #5a6a6c;
}

@media (max-width: 768px) {
  .exhibitions { padding: 72px 0 60px; }
  .exhibit-card { flex: 0 0 260px; width: 260px; }
  .exhibit-card figcaption { padding: 12px 14px 14px; }
  .exhibitions-track { gap: 16px; animation-duration: 50s; }
}
@media (max-width: 480px) {
  .exhibit-card { flex: 0 0 230px; width: 230px; }
}

/* Respect reduced motion: still show all cards, but no continuous scroll */
@media (prefers-reduced-motion: reduce) {
  .exhibitions-track { animation: none; }
  .exhibitions-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
    scroll-snap-type: x mandatory;
  }
  .exhibit-card { scroll-snap-align: start; }
}

/* ============================================================
   FOOTER LINKEDIN BUTTON (inside Contact Us column)
   ============================================================ */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 16px;
  background: #0A66C2;
  color: #ffffff !important;
  font: 600 13px/1 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.01em;
  border-radius: 8px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 10px rgba(10,102,194,0.28);
}
.footer-linkedin:hover {
  background: #0858A8;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,102,194,0.40);
}
.footer-linkedin svg {
  flex-shrink: 0;
}

/* ============================================================
   NEWSLETTER STATUS MESSAGE (footer)
   ============================================================ */
.newsletter-status {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  min-height: 1em;
  transition: color .25s ease;
}
.newsletter-status.success { color: #5DDDB9; font-weight: 500; }
.newsletter-status.error   { color: #FFB4B4; font-weight: 500; }
