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

:root {
  --navy: #0A1628;
  --navy-mid: #122040;
  --blue: #0066A1;
  --blue-mid: #0A7FC4;
  --teal: #00AEEF;
  --white: #FFFFFF;
  --off-white: #F6F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #DDE3EE;
  --gray-400: #8D9EB5;
  --gray-600: #4E6177;
  --gray-800: #1E2D3D;
  --red: #E63946;
  --green: #2D9E6B;

  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.06);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.07);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.14), 0 4px 12px rgba(10,22,40,0.08);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--gray-600); line-height: 1.75; }

.text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.72); }
.text-white .label { color: var(--teal); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover {
  background: #00c6ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,174,239,0.35);
}

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn svg { width: 16px; height: 16px; }

/* ─── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--gray-200), 0 4px 24px rgba(10,22,40,0.08);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark svg { width: 20px; height: 20px; fill: var(--navy); }

.nav-logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.3s;
}
.nav-logo-text span { color: var(--teal); }
#nav.scrolled .nav-logo-text { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
#nav.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }
#nav.scrolled .nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--white); font-weight: 600; }
#nav.scrolled .nav-links a.active { color: var(--navy); }

.nav-cta { margin-left: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
#nav.scrolled .nav-hamburger span { background: var(--navy); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  padding: calc(var(--nav-h) + 32px) 32px 48px;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}
.mobile-menu a:last-of-type { border: none; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 40, 0.58);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  padding: 0 0 72px;
}

.hero-label { margin-bottom: 24px; }

.hero h1 {
  font-size: clamp(1.76rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .suffix { color: var(--teal); }

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── CATEGORIES SECTION ─────────────────────────────────── */
.categories-section { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.category-card {
  background: var(--white);
  padding: 36px 28px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
}
.category-card:hover { background: var(--navy); }
.category-card:hover::before { transform: scaleX(1); }

.cat-icon {
  width: 52px;
  height: 52px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.cat-icon svg { width: 26px; height: 26px; stroke: var(--blue); transition: stroke 0.25s; }
.category-card:hover .cat-icon { background: rgba(0,174,239,0.15); }
.category-card:hover .cat-icon svg { stroke: var(--teal); }

.category-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.25s;
}
.category-card:hover h4 { color: var(--white); }

.category-card p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.5;
  transition: color 0.25s;
}
.category-card:hover p { color: rgba(255,255,255,0.55); }

.cat-arrow {
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s var(--ease-out);
}
.category-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ─── ABOUT SPLIT ────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-visual-main {
  background: url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/cleanroom.jpg') center center / cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.about-visual-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,15,40,0.82) 0%, rgba(5,15,40,0.18) 60%, transparent 100%);
}
.about-visual-text {
  position: relative;
  z-index: 1;
}
.about-visual-text .big-num {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.about-visual-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  margin-top: 6px;
}

.about-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 16px;
  align-items: center;
}
.about-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,174,239,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge-icon svg { width: 22px; height: 22px; stroke: var(--teal); }
.about-badge-text .n { font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.about-badge-text .t { font-size: 0.75rem; color: var(--gray-400); }

.about-content .label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 20px; font-size: 1rem; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 6px;
  flex-shrink: 0;
}
.pillar strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.pillar span { font-size: 0.82rem; color: var(--gray-400); }

/* ─── QUALITY SECTION ────────────────────────────────────── */
.quality-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.quality-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.quality-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 36px;
  transition: background 0.2s;
}
.quality-card:hover { background: rgba(255,255,255,0.07); }

.quality-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,174,239,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.quality-icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.quality-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.quality-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.72); margin-bottom: 40px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom .certs {
  display: flex;
  gap: 16px;
}
.cert-badge-small {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}


.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}
textarea { resize: vertical; min-height: 100px; }

.therapy-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.therapy-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.therapy-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.therapy-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.therapy-pill:has(input:checked) {
  border-color: var(--teal);
  background: rgba(0,174,239,0.08);
  color: var(--teal);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 0.95rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px; height: 56px;
  background: rgba(45,158,107,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success .check svg { width: 28px; height: 28px; stroke: var(--green); }
.form-success h4 { color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0,174,239,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
}
.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-info-item a,
.contact-info-item span {
  font-size: 0.9rem;
  color: var(--gray-600);
}
.contact-info-item a:hover { color: var(--teal); }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(150deg, #F8FBFF 0%, #EEF5FB 100%);
  padding: calc(var(--nav-h) + 72px) 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,102,161,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 { color: var(--navy); margin-bottom: 20px; }
.page-hero p { color: var(--gray-600); max-width: 560px; font-size: 1.05rem; }
.page-hero-gradient {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at 70% 30%, rgba(0,174,239,0.12) 0%, transparent 65%);
}

/* ─── CAREERS HERO ───────────────────────────────────────── */
.careers-hero {
  background: none;
}
.careers-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.careers-hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.52);
}
.careers-hero .page-hero-gradient { display: none; }
.careers-hero::before { display: none; }
.careers-hero .page-hero-inner { position: relative; z-index: 2; }
.careers-hero .breadcrumb a,
.careers-hero .breadcrumb-sep,
.careers-hero .breadcrumb span { color: rgba(255,255,255,0.7); }
.careers-hero .label { color: #7ec8f0; }
.careers-hero h1 { color: #ffffff; }
.careers-hero p { color: rgba(255,255,255,0.82); }

/* ─── PRODUCTS HERO ──────────────────────────────────────── */
.products-hero {
  background: none;
}
.products-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}
.products-hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.55);
}
.products-hero .page-hero-gradient { display: none; }
.products-hero::before { display: none; }
.products-hero .page-hero-inner { position: relative; z-index: 2; }
.products-hero .breadcrumb a,
.products-hero .breadcrumb-sep,
.products-hero .breadcrumb span { color: rgba(255,255,255,0.7); }
.products-hero .label { color: #7ec8f0; }
.products-hero h1 { color: #ffffff; }
.products-hero p { color: rgba(255,255,255,0.82); }

/* ─── ABOUT HERO ─────────────────────────────────────────── */
.about-hero {
  background: none;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.about-hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.58);
}
.about-hero .page-hero-gradient { display: none; }
.about-hero::before { display: none; }
.about-hero .page-hero-inner { position: relative; z-index: 2; }
.about-hero .breadcrumb a,
.about-hero .breadcrumb-sep,
.about-hero .breadcrumb span { color: rgba(255,255,255,0.7); }
.about-hero .label { color: #7ec8f0; }
.about-hero h1 { color: #ffffff; }
.about-hero p { color: rgba(255,255,255,0.82); }

/* ─── CERTIFICATIONS HERO ────────────────────────────────── */
.cert-hero {
  background: none;
}
.cert-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.cert-hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.58);
}
.cert-hero .page-hero-gradient { display: none; }
.cert-hero::before { display: none; }
.cert-hero .page-hero-inner { position: relative; z-index: 2; }
.cert-hero .breadcrumb a,
.cert-hero .breadcrumb-sep,
.cert-hero .breadcrumb span { color: rgba(255,255,255,0.7); }
.cert-hero .label { color: #7ec8f0; }
.cert-hero h1 { color: #ffffff; }
.cert-hero p { color: rgba(255,255,255,0.82); }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gray-400); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--gray-600); }
.breadcrumb-sep { color: var(--gray-400); }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--blue);
  padding-top: 4px;
  padding-right: 18px;
  text-align: right;
  position: relative;
}
.timeline-year::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
  z-index: 1;
}
.timeline-content h4 { color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 0.9rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s var(--ease-out);
}
.value-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.08), var(--shadow-md);
  transform: translateY(-2px);
}
.value-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; }

.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mfg-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease-out);
}
.mfg-card:hover { box-shadow: var(--shadow-md); }
.mfg-card-inner { position: relative; z-index: 1; }
.mfg-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.mfg-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.mfg-card p { font-size: 0.85rem; color: var(--gray-600); }

/* ─── PRODUCTS PAGE ──────────────────────────────────────── */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  align-items: start;
}

.products-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 32px 0;
}

.sidebar-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0 24px;
  margin-bottom: 12px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.sidebar-nav a:hover { color: var(--navy); background: var(--gray-100); }
.sidebar-nav a.active {
  color: var(--blue);
  border-left-color: var(--teal);
  background: rgba(0,174,239,0.05);
  font-weight: 600;
}
.sidebar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
  transition: background 0.2s;
}
.sidebar-nav a.active .sidebar-dot,
.sidebar-nav a:hover .sidebar-dot { background: var(--teal); }

.products-main {
  padding: 48px 0 48px 48px;
  border-left: 1px solid var(--gray-200);
}

.therapy-section {
  padding: 0 0 72px;
  scroll-margin-top: calc(var(--nav-h) + 32px);
}
.therapy-section:last-child { padding-bottom: 0; }

.therapy-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-100);
}
.therapy-header .label { margin-bottom: 8px; }
.therapy-header h2 { font-size: 1.75rem; margin-bottom: 10px; }
.therapy-header p { font-size: 0.9rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s var(--ease-out);
}
.product-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.08), var(--shadow-sm);
  transform: translateY(-1px);
}
.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.product-card h4 { font-size: 0.95rem; color: var(--navy); }
.product-ref {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.product-card p {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(0,102,161,0.07);
  border-radius: 20px;
  padding: 3px 10px;
}

/* ─── CERTIFICATIONS ─────────────────────────────────────── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cert-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.cert-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cert-card:hover::before { transform: scaleX(1); }

.cert-logo {
  width: 80px;
  height: 80px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.cert-logo span {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.cert-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.cert-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cert-card .cert-name { font-size: 0.8rem; font-weight: 600; color: var(--teal); margin-bottom: 16px; }
.cert-card p { font-size: 0.875rem; }

a.cert-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.cert-pdf-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.01em;
}
.cert-card--linked:hover .cert-pdf-link { text-decoration: underline; }

.compliance-strip {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.compliance-strip h3 { margin-bottom: 12px; }
.compliance-strip p { font-size: 0.9rem; max-width: 540px; }
.reg-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.reg-logo {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gray-600);
  letter-spacing: 0.04em;
}

/* ─── CAREERS ────────────────────────────────────────────── */
.careers-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cv-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease-out);
}
.cv-card:hover { box-shadow: var(--shadow-md); }
.cv-card-inner { position: relative; z-index: 1; }
.cv-icon {
  width: 48px; height: 48px;
  background: rgba(0,174,239,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cv-icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.cv-card h4 { color: var(--navy); margin-bottom: 10px; }
.cv-card p { font-size: 0.875rem; color: var(--gray-600); }

.jobs-list { margin-top: 16px; }

.job-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: all 0.2s var(--ease-out);
}
.job-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.job-item:last-child { margin-bottom: 0; }
.job-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.job-meta { display: flex; gap: 16px; }
.job-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--gray-600);
}
.job-tag.dept { background: rgba(0,102,161,0.08); color: var(--blue); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { display: none; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { display: none; }
  .products-main { padding: 32px 0; border-left: none; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .compliance-strip { grid-template-columns: 1fr; gap: 24px; }
  .reg-logos { justify-content: flex-start; }
  .careers-values { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .manufacturing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .quality-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
  .compliance-strip { padding: 32px; }
}

@media (max-width: 540px) {
  .categories-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .careers-values { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
}

/* ─── LOGO IMAGE ─────────────────────────────────────────── */
.nav-logo-mark {
  background: none;
  padding: 0;
  border-radius: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* ─── NAV PAGE (nav.html) ────────────────────────────────── */
.nav-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}
.nav-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.nav-page > * { position: relative; z-index: 1; }

.nav-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 960px;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.nav-tile {
  background: rgba(10,22,40,0.7);
  padding: 48px 40px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.nav-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out);
}
.nav-tile:hover { background: rgba(255,255,255,0.07); }
.nav-tile:hover::after { transform: scaleX(1); }

.nav-tile-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,174,239,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.25s;
}
.nav-tile-icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.nav-tile:hover .nav-tile-icon { background: rgba(0,174,239,0.18); }

.nav-tile h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.nav-tile p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .nav-tiles { grid-template-columns: 1fr 1fr; }
  .nav-page { padding: 100px 20px 60px; }
}
@media (max-width: 480px) {
  .nav-tiles { grid-template-columns: 1fr; }
}

/* ─── PRODUCT IMAGES ──────────────────────────────────────── */
.product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 12px;
  display: block;
  margin-bottom: 16px;
}

/* ─── PRODUCT GALLERY ─────────────────────────────────────── */
.product-gallery { position: relative; }
.gallery-img-wrap { position: relative; display: block; }
.gallery-img-wrap .product-img { cursor: pointer; user-select: none; margin-bottom: 0; display: block; }
.gallery-dots { display: flex; gap: 5px; justify-content: center; padding: 8px 0 12px; }
.gallery-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); transition: background 0.2s; flex-shrink: 0; }
.gallery-dot.active { background: var(--teal); }
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 400;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.18s, background 0.15s, box-shadow 0.15s;
  z-index: 2;
  line-height: 1;
  padding: 0;
}
.product-gallery:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.gallery-arrow-prev { left: 8px; }
.gallery-arrow-next { right: 8px; }

/* ─── PRODUCT DETAIL PAGE ─────────────────────────────────── */
.detail-section { padding: 64px 0 80px; }
.detail-layout { display: grid; grid-template-columns: 460px 1fr; gap: 64px; align-items: start; }
.detail-gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.detail-main-wrap { position: relative; background: var(--off-white); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.detail-main-wrap .product-img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 24px; display: block; margin: 0; }
.detail-main-wrap .gallery-arrow { opacity: 1; }
.detail-thumbnails { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.detail-thumbnails::-webkit-scrollbar { height: 4px; }
.detail-thumbnails::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }
.detail-thumb { flex: 0 0 72px; height: 72px; border-radius: 8px; background: var(--off-white); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s; padding: 0; }
.detail-thumb.active { border-color: var(--teal); }
.detail-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; display: block; }
.detail-info { padding-top: 48px; }
.detail-info .label { display: block; margin-bottom: 10px; }
.detail-info h2 { font-size: 2rem; margin-bottom: 12px; line-height: 1.2; }
.detail-info .product-ref { margin-bottom: 20px; display: inline-block; }
.detail-info > p { color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; font-size: 1rem; }
.detail-features { list-style: none; padding: 0; margin: 0 0 24px; }
.detail-features li { padding: 9px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.5; }
.detail-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 6px; }
.detail-info .product-tags { margin-bottom: 32px; }
.detail-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-tabs { display: flex; border-bottom: 2px solid var(--gray-200); margin: 56px 0 0; }
.detail-tab { padding: 12px 28px; border: none; background: none; color: var(--gray-600); font-size: 0.9rem; font-weight: 500; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 0.15s, border-color 0.15s; }
.detail-tab.active { color: var(--navy); border-bottom-color: var(--teal); }
.detail-tab-panel { padding: 32px 0 64px; }
.detail-tab-panel h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 20px; }
.detail-features-full { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.detail-features-full li { padding: 12px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.5; }
.detail-features-full li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 6px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr:nth-child(even) td { background: var(--gray-100); }
.spec-table td { padding: 12px 20px; font-size: 0.875rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-200); }
.spec-table td:first-child { color: var(--gray-400); font-weight: 600; width: 30%; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.04em; }
.product-detail-link { font-size: 0.8rem; color: var(--blue); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; }
.product-detail-link:hover { color: var(--teal); }
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .detail-gallery { position: static; }
  .detail-info h2 { font-size: 1.6rem; }
  .detail-features-full { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .detail-tab { padding: 10px 16px; font-size: 0.82rem; }
}

/* ─── eIFU & RESOURCES TAB ────────────────────────────────── */
.resources-intro { margin-bottom: 28px; }
.resources-intro p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; }
.resources-intro a { color: var(--blue); }
.resources-list { list-style: none; padding: 0; margin: 0 0 40px; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.resource-item { display: flex; align-items: center; gap: 20px; padding: 18px 24px; border-bottom: 1px solid var(--gray-200); background: var(--white); transition: background 0.15s; }
.resource-item:last-child { border-bottom: none; }
.resource-item:hover { background: var(--gray-100); }
.resource-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px; background: rgba(0,174,239,0.08); display: flex; align-items: center; justify-content: center; color: var(--teal); }
.resource-meta { flex: 1; min-width: 0; }
.resource-meta strong { display: block; font-size: 0.875rem; color: var(--navy); margin-bottom: 3px; }
.resource-meta span { font-size: 0.8rem; color: var(--gray-400); line-height: 1.5; }
.resource-request { flex-shrink: 0; font-size: 0.8rem; font-weight: 600; color: var(--blue); text-decoration: none; white-space: nowrap; padding: 6px 14px; border: 1px solid var(--gray-200); border-radius: 6px; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.resource-request:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.resources-contact { display: flex; align-items: flex-start; gap: 16px; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px 24px; }
.resources-contact-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px; background: rgba(0,102,161,0.08); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.resources-contact strong { display: block; font-size: 0.875rem; color: var(--navy); margin-bottom: 4px; }
.resources-contact p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; margin: 0; }
.resources-contact a { color: var(--blue); }
@media (max-width: 600px) {
  .resource-item { flex-wrap: wrap; gap: 12px; }
  .resource-meta { width: calc(100% - 60px); }
  .resource-request { margin-left: 60px; }
}

/* ─── NAV SEARCH ─────────────────────────────────────────────── */
.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.nav-search-btn:hover { background: rgba(255,255,255,0.1); }
#nav.scrolled .nav-search-btn { color: var(--navy); }
#nav.scrolled .nav-search-btn:hover { background: var(--gray-100); }
.nav-search-btn.active { background: rgba(255,255,255,0.12); }
#nav.scrolled .nav-search-btn.active { background: var(--gray-100); }

#nav-search-overlay {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s var(--ease-out), opacity 0.18s;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
}
#nav-search-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-search-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.nav-search-input-wrap svg {
  position: absolute;
  left: 14px;
  color: var(--gray-400);
  pointer-events: none;
  flex-shrink: 0;
}
#nav-search-input {
  width: 100%;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  color: var(--navy);
  padding: 11px 16px 11px 44px;
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
#nav-search-input::placeholder { color: var(--gray-400); }
#nav-search-input:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(0,174,239,0.1); }
#nav-search-input::-webkit-search-cancel-button { display: none; }
.nav-search-submit {
  flex-shrink: 0;
  background: var(--teal);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-search-submit:hover { background: var(--blue); }
.nav-search-close-btn {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
  padding: 0;
}
.nav-search-close-btn:hover { color: var(--navy); background: var(--gray-100); }

/* Mobile search row inside hamburger menu */
.mobile-search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.mobile-search-form input[type="search"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: var(--font);
}
.mobile-search-form input[type="search"]::placeholder { color: rgba(255,255,255,0.38); }
.mobile-search-form input[type="search"]::-webkit-search-cancel-button { display: none; }
.mobile-search-go {
  background: none;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  padding: 13px 16px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.mobile-search-go:hover { color: var(--white); background: rgba(255,255,255,0.07); }

@media (max-width: 768px) {
  .nav-search-btn { margin-left: auto; }
}

/* ─── PRODUCTS PAGE SEARCH ───────────────────────────────────── */
.products-search-wrap { margin-bottom: 40px; }
.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-input-wrap:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}
.search-input-icon {
  position: absolute;
  left: 16px;
  color: var(--gray-400);
  pointer-events: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
#product-search {
  width: 100%;
  border: none;
  outline: none;
  padding: 14px 48px 14px 48px;
  font-size: 0.975rem;
  font-family: var(--font);
  color: var(--navy);
  background: transparent;
  border-radius: var(--radius-lg);
}
#product-search::placeholder { color: var(--gray-400); }
#product-search::-webkit-search-cancel-button { display: none; }
.search-clear-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
  padding: 0;
}
.search-clear-btn:hover { color: var(--navy); background: var(--gray-100); }
.search-results-count {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.search-no-results {
  text-align: center;
  padding: 64px 24px;
  color: var(--gray-500);
}
.search-no-results p { font-size: 1rem; line-height: 1.6; }
.search-no-results strong { color: var(--navy); }
.product-card.search-hidden,
.therapy-section.search-hidden { display: none !important; }

/* ─── THERAPY CATEGORY CARD IMAGES ───────────────────────── */
.cat-infusion {
  background:
    linear-gradient(rgba(248,251,255,0.88), rgba(248,251,255,0.88)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/infusion.jpg') center/cover no-repeat;
}
.cat-infusion:hover {
  background:
    linear-gradient(rgba(5,15,40,0.87), rgba(5,15,40,0.87)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/infusion.jpg') center/cover no-repeat;
}

.cat-anesthesia {
  background:
    linear-gradient(rgba(248,251,255,0.88), rgba(248,251,255,0.88)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/anesthesia.jpg') center/cover no-repeat;
}
.cat-anesthesia:hover {
  background:
    linear-gradient(rgba(5,15,40,0.87), rgba(5,15,40,0.87)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/anesthesia.jpg') center/cover no-repeat;
}

.cat-gastro {
  background:
    linear-gradient(rgba(248,251,255,0.88), rgba(248,251,255,0.88)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/gastroenterology.jpg') center/cover no-repeat;
}
.cat-gastro:hover {
  background:
    linear-gradient(rgba(5,15,40,0.87), rgba(5,15,40,0.87)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/gastroenterology.jpg') center/cover no-repeat;
}

.cat-surgery {
  background:
    linear-gradient(rgba(248,251,255,0.88), rgba(248,251,255,0.88)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/surgery.jpg') center/cover no-repeat;
}
.cat-surgery:hover {
  background:
    linear-gradient(rgba(5,15,40,0.87), rgba(5,15,40,0.87)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/surgery.jpg') center/cover no-repeat;
}

.cat-nephrology {
  background:
    linear-gradient(rgba(248,251,255,0.88), rgba(248,251,255,0.88)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/nephrology.jpg') center/cover no-repeat;
}
.cat-nephrology:hover {
  background:
    linear-gradient(rgba(5,15,40,0.87), rgba(5,15,40,0.87)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/nephrology.jpg') center/cover no-repeat;
}

.cat-blood {
  background:
    linear-gradient(rgba(248,251,255,0.88), rgba(248,251,255,0.88)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/blood.jpg') center/cover no-repeat;
}
.cat-blood:hover {
  background:
    linear-gradient(rgba(5,15,40,0.87), rgba(5,15,40,0.87)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/blood.jpg') center/cover no-repeat;
}

.cat-urology {
  background:
    linear-gradient(rgba(248,251,255,0.88), rgba(248,251,255,0.88)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/urology.jpg') center/cover no-repeat;
}
.cat-urology:hover {
  background:
    linear-gradient(rgba(5,15,40,0.87), rgba(5,15,40,0.87)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/urology.jpg') center/cover no-repeat;
}

.cat-critical {
  background:
    linear-gradient(rgba(248,251,255,0.88), rgba(248,251,255,0.88)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/critical-care.jpg') center/cover no-repeat;
}
.cat-critical:hover {
  background:
    linear-gradient(rgba(5,15,40,0.87), rgba(5,15,40,0.87)),
    url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/therapy/critical-care.jpg') center/cover no-repeat;
}

/* ─── MANUFACTURING CARD IMAGES ───────────────────────────── */
.mfg-cleanroom,
.mfg-moulds,
.mfg-sterilization,
.mfg-ai {
  border: none;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}
.mfg-cleanroom {
  background-image: url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/cleanroom.jpg');
}
.mfg-moulds {
  background-image: url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/manufacturing/moulds.jpg');
}
.mfg-sterilization {
  background-image: url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/manufacturing/sterilization.jpg');
}
.mfg-ai {
  background-image: url('https://kwuvxpzwbylcujlhyusa.supabase.co/storage/v1/object/public/site-assets/manufacturing/ai-inspection.jpg');
}

.mfg-cleanroom::before,
.mfg-moulds::before,
.mfg-sterilization::before,
.mfg-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,15,40,0.55) 0%, rgba(5,15,40,0.78) 100%);
}

.mfg-cleanroom h4,
.mfg-moulds h4,
.mfg-sterilization h4,
.mfg-ai h4 {
  color: var(--white);
}
.mfg-cleanroom p,
.mfg-moulds p,
.mfg-sterilization p,
.mfg-ai p {
  color: rgba(255,255,255,0.72);
}

/* ─── CONTACT HERO ────────────────────────────────────────── */
.contact-hero {
  background: none;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.contact-hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.58);
}
.contact-hero .page-hero-gradient { display: none; }
.contact-hero::before { display: none; }
.contact-hero .page-hero-inner { position: relative; z-index: 2; }
.contact-hero .breadcrumb a,
.contact-hero .breadcrumb-sep,
.contact-hero .breadcrumb span { color: rgba(255,255,255,0.7); }
.contact-hero .label { color: #7ec8f0; }
.contact-hero h1 { color: #ffffff; }
.contact-hero p { color: rgba(255,255,255,0.82); }

/* ─── CERTIFICATION LOGO IMAGES ──────────────────────────── */
img.reg-logo {
  padding: 10px 16px;
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  box-sizing: border-box;
}

