/* ============================================================
   SHERYL PHARMACEUTICALS — Global Design System
   ============================================================ */

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

/* ── Custom Properties (Design Tokens) ── */
:root {
  /* Brand Colors */
  --navy:        #0A1F3C;
  --navy-light:  #112A50;
  --navy-dark:   #060F1E;
  --green:       #1A7A4A;
  --green-light: #22A060;
  --green-pale:  #EAF5EF;
  --gold:        #C9A84C;
  --gold-light:  #E4C46A;
  --gold-pale:   #FBF5E6;

  /* Neutrals */
  --white:       #FFFFFF;
  --bg:          #F7F8FA;
  --bg-alt:      #EEF0F5;
  --border:      #DDE1EA;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A5568;
  --text-muted:  #8892A4;

  /* Typography */
  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container:   1200px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(10,31,60,0.08);
  --shadow-md:   0 8px 32px rgba(10,31,60,0.12);
  --shadow-lg:   0 24px 64px rgba(10,31,60,0.16);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  /* Transitions — Apple-like fluid cubic-bezier */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --trans-fast:  0.22s var(--ease);
  --trans-mid:   0.38s var(--ease);
  --trans-slow:  0.65s var(--ease);

  /* Shimmer animation gradient */
  --shimmer-angle: 130deg;

  /* Glassmorphism tokens */
  --glass-bg:       rgba(255,255,255,0.08);
  --glass-border:   rgba(255,255,255,0.14);
  --glass-blur:     blur(20px);
  --glass-bg-light: rgba(255,255,255,0.72);
  --glass-border-light: rgba(255,255,255,0.9);
  --glass-blur-light: blur(24px);
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }

/* ── Layout Utilities ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.global-page-hero + .section,
.page-hero + .section,
.careers-hero-section + .section,
.apply-hero + .section {
  padding-top: 20px;
}
.section-alt { background: var(--bg); }
.section-navy { background: var(--navy); }
.section-dark { background: var(--navy-dark); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header h2.light { color: var(--white); }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }
.section-header p.light { color: rgba(255,255,255,0.7); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all var(--trans-mid);
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    var(--shimmer-angle),
    transparent 0%,
    rgba(255,255,255,0.22) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  transition: left 0.55s var(--ease), opacity 0.3s var(--ease);
}
.btn:hover::after {
  left: 130%;
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(26,122,74,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,122,74,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ── Divider ── */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px auto;
}
.gold-line.left { margin-left: 0; }

/* ── Tag / Pill ── */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--green-pale);
  color: var(--green);
}
.tag-gold {
  background: var(--gold-pale);
  color: #8a6a1e;
}
.tag-navy {
  background: rgba(10,31,60,0.08);
  color: var(--navy);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--trans-mid), box-shadow var(--trans-mid), border-color var(--trans-mid);
  padding: 16px 0;
  background: rgba(6, 15, 30, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 32px rgba(10,31,60,0.12);
  border-bottom: 1px solid rgba(10,31,60,0.06);
  padding: 16px 0;
}
#navbar.scrolled .nav-logo img {
  height: 80px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img,
#navbar.scrolled .nav-logo img {
  height: 110px !important;
  width: auto !important;
  max-width: 320px;
  object-fit: contain;
  transition: transform var(--trans-fast);
  filter: none;
}
.nav-logo:hover img { transform: scale(1.03); }

/* Dark navbar — white logo visible, colored hidden */
.logo-dark  { display: block !important; }
.logo-light { display: none !important; }

/* Scrolled navbar — colored logo visible, white hidden */
#navbar.scrolled .logo-dark  { display: none !important; }
#navbar.scrolled .logo-light { display: block !important; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--gold-light); }
/* On scrolled navbar */
#navbar.scrolled .nav-link { color: var(--navy); }
#navbar.scrolled .nav-link:hover { color: var(--green); background: rgba(10,31,60,0.05); }
#navbar.scrolled .nav-link.active { color: var(--green); }
#navbar.scrolled .hamburger span { background: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(26,122,74,0.35);
  transition: all var(--trans-mid);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,122,74,0.45);
  filter: brightness(1.08);
}
#navbar.scrolled .nav-cta { color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.38s var(--ease), transform 0.42s var(--ease);
}
.mobile-nav.open { display: flex; opacity: 1; transform: translateX(0); }
.mobile-nav .nav-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
}
.mobile-nav .nav-link:hover { color: var(--gold-light); background: none; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--trans-fast);
}
.mobile-nav-close:hover { opacity: 1; }

/* ============================================================
   PAGE HERO BANNERS
   ============================================================ */
/* ============================================================
   PAGE HERO BANNERS (All Non-Home Pages) — Global Reusable Hero Class
   ============================================================ */
.global-page-hero,
.page-hero,
.careers-hero-section,
.apply-hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  height: 580px;
  min-height: 580px;
  display: flex;
  align-items: center;
}

/* Ensure .container inside flex hero stretches full width */
.global-page-hero .container,
.page-hero .container,
.careers-hero-section .container,
.apply-hero .container {
  width: 100%;
  position: relative;
  z-index: 3;
}

/* Background image + gradient overlay */
.global-page-hero::before,
.page-hero::before,
.careers-hero-section::before,
.apply-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(6, 15, 30, 0.98) 0%, rgba(10, 31, 60, 0.94) 40%, rgba(10, 31, 60, 0.55) 75%, rgba(10, 31, 60, 0.12) 100%),
    url('../assets/images/hero.png') center/cover no-repeat;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

/* Consistent bottom curve */
.global-page-hero::after,
.page-hero::after,
.careers-hero-section::after,
.apply-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
  z-index: 2;
}

.global-page-hero.alt-bg::after,
.page-hero.alt-bg::after,
.careers-hero-section.alt-bg::after,
.apply-hero.alt-bg::after {
  background: var(--bg);
}

.global-page-hero .page-hero-content,
.global-page-hero .careers-hero-inner,
.global-page-hero .apply-hero-inner,
.page-hero-content,
.careers-hero-inner,
.apply-hero-inner {
  position: relative;
  z-index: 3;
  padding: 160px 0 100px;
  max-width: 740px;
  width: 100%;
}

.global-page-hero .eyebrow,
.page-hero-content .eyebrow,
.careers-hero-inner .eyebrow,
.apply-hero-inner .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.global-page-hero .eyebrow::before,
.page-hero-content .eyebrow::before,
.careers-hero-inner .eyebrow::before,
.apply-hero-inner .eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  flex-shrink: 0;
}

/* High-contrast white (#FFFFFF) for all hero typography */
.global-page-hero h1,
.global-page-hero h2,
.global-page-hero h3,
.global-page-hero p,
.page-hero-content h1,
.page-hero-content h2,
.page-hero-content h3,
.page-hero-content p,
.careers-hero-inner h1,
.careers-hero-inner h2,
.careers-hero-inner h3,
.careers-hero-inner p,
.apply-hero-inner h1,
.apply-hero-inner h2,
.apply-hero-inner h3,
.apply-hero-inner p {
  color: #FFFFFF !important;
}

.global-page-hero h1,
.page-hero-content h1,
.careers-hero-inner h1,
.apply-hero-inner h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}

.global-page-hero p,
.page-hero-content p,
.careers-hero-inner p,
.apply-hero-inner p {
  font-size: 1.08rem;
  max-width: 580px;
  line-height: 1.85;
  font-weight: 400;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-dark);
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.home-hero-bg.loaded { transform: scale(1); }
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,15,30,0.92) 0%,
    rgba(10,31,60,0.82) 50%,
    rgba(6,15,30,0.7) 100%
  );
}
.home-hero > .container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Push content down below the fixed navbar (~80px) and up above the stats bar (~100px) */
  padding-top: 80px;
  padding-bottom: 100px;
}
.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.home-hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.home-hero-content .eyebrow::before,
.home-hero-content .eyebrow::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 1px;
}
.home-hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
}
.home-hero-content h1 span { color: var(--gold-light); }
.home-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero Stats Strip */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}

/* ============================================================
   WHO WE ARE — Centered Light Section (Home)
   ============================================================ */
.about-strip {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Decorative gradient washes */
.about-strip::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,122,74,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-strip::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Center header */
.who-center-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
  position: relative;
  z-index: 1;
}
.who-center-header .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  padding: 6px 18px;
  border-radius: 50px;
  background: var(--green-pale);
  border: 1px solid rgba(26,122,74,0.2);
}
.who-center-header h2 {
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.who-center-header h2 span {
  background: linear-gradient(135deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-line-center {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  margin: 0 auto 24px;
}
.who-center-header p {
  color: var(--text-mid);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* 4 short rectangle feature containers (no emojis) */
.who-glass-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.who-glass-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: left;
  transition: all var(--trans-mid);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.who-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-mid);
}
.who-glass-card:hover {
  background: var(--white);
  border-color: rgba(26,122,74,0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.who-glass-card:hover::before { transform: scaleX(1); }
.who-card-top {
  margin-bottom: 14px;
}
.who-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 6px;
}
.who-glass-card h4 {
  color: var(--navy-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.who-glass-card p {
  color: var(--text-mid);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

/* Centered quote card in light theme */
.who-quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 64px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-md);
}
.who-quote-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 40px;
  font-size: 10rem;
  font-family: Georgia, serif;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  pointer-events: none;
}
.who-quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.5;
  max-width: 720px;
}
.who-quote-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.who-quote-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Value chips — light card context */
.value-chip {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: var(--bg);
  transition: all var(--trans-fast);
  cursor: default;
}
.value-chip:hover {
  border-color: var(--gold);
  color: var(--navy-dark);
  background: var(--gold-pale);
}

/* Responsive */
@media (max-width: 1024px) {
  .who-glass-features { grid-template-columns: repeat(2, 1fr); }
  .who-quote-card { padding: 40px 40px; }
}
@media (max-width: 768px) {
  .who-glass-features { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .who-quote-card { padding: 32px 24px; }
  .who-quote-text { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .who-glass-features { grid-template-columns: 1fr; }
}

/* ── Glassmorphism Utility Classes ── */
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
}
.glass-card-light {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(10,31,60,0.1);
}

/* Preserve old about-text chip styles used elsewhere on light backgrounds */
.about-text .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-text .values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.about-text .value-chip {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: var(--white);
  transition: all var(--trans-fast);
}
.about-text .value-chip:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}


/* ============================================================
   THERAPEUTIC SEGMENTS (Home) — Dark Alternating Section
   ============================================================ */
.segments-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.segments-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.segments-section .section-header { position: relative; z-index: 1; }
.segments-section .section-header h2 { color: var(--white); }
.segments-section .section-header p { color: rgba(255,255,255,0.72); }
.segments-section .grid-6 { position: relative; z-index: 1; }
.segments-section .segment-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.segments-section .segment-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-light);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.segments-section .segment-card h3 { color: var(--white); }
.segments-section .segment-card p { color: rgba(255,255,255,0.65); }
.segments-section .segment-icon {
  background: rgba(26,122,74,0.35);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
}
.segments-section .segment-card:hover .segment-icon {
  background: linear-gradient(135deg, var(--gold), var(--green));
  color: var(--white);
  border-color: var(--gold-light);
}

.segment-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 20px rgba(10,31,60,0.04);
  transition: all var(--trans-mid);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.segment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}
.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,31,60,0.1);
  border-color: rgba(26,122,74,0.35);
  background: rgba(255,255,255,0.95);
}
.segment-card:hover::before { transform: scaleX(1); }
.segment-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: all var(--trans-mid);
}
.segment-card:hover .segment-icon {
  background: var(--green);
  transform: scale(1.08);
}
.segment-card h3 { margin-bottom: 10px; font-size: 1rem; }
.segment-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   BUSINESS MODEL
   ============================================================ */
.business-model { background: var(--white); }
.model-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: all var(--trans-mid);
  overflow: hidden;
}
.model-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  transform: scaleX(0);
  transition: transform cubic-bezier(0.16, 1, 0.3, 1);
}
.model-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.model-card:hover::after { transform: scaleX(1); }
.model-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--bg-alt);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}
.model-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.model-icon svg { stroke: var(--green); }
.model-card h3 { margin-bottom: 12px; color: var(--navy); }
.model-card p { font-size: 0.9rem; }

/* model-icon on dark backgrounds (mfg-strip supply chain cards) */
.mfg-strip .model-icon,
[style*="background:rgba(255,255,255,0.06)"] .model-icon {
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
}
.mfg-strip .model-icon svg {
  stroke: var(--gold-light);
}

/* ============================================================
   PRODUCTS (Home Featured)
   ============================================================ */
.products-section { background: var(--bg); }
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--trans-mid);
  position: relative;
  overflow: hidden;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-head);
  background: var(--green-pale);
  color: var(--green);
}
.product-icon { font-size: 2.4rem; margin-bottom: 16px; }
.product-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-card p  { font-size: 0.88rem; margin-bottom: 20px; }
.product-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans-fast);
}
.product-link:hover { gap: 10px; }

/* ============================================================
   MANUFACTURING (Home Strip)
   ============================================================ */
.mfg-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.mfg-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/manufacturing.png') center/cover no-repeat;
  opacity: 0.08;
}
.mfg-strip .section-header h2.light { margin-bottom: 16px; }
.mfg-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mfg-feature:last-child { border-bottom: none; }
.mfg-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(26,122,74,0.35));
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all var(--trans-mid);
}
.mfg-feature-icon svg {
  stroke: var(--gold-light);
  stroke-width: 2.2px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.mfg-feature:hover .mfg-feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--green));
  border-color: var(--gold-light);
  color: var(--white);
  transform: scale(1.08);
}
.mfg-feature:hover .mfg-feature-icon svg {
  stroke: var(--white);
}
.mfg-feature h4 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.mfg-feature p  { color: rgba(255,255,255,0.55); font-size: 0.85rem; }

/* Light-background variant used in distribution network section */
.distrib-feature { border-bottom-color: var(--border); }
.distrib-feature h4 { color: var(--navy) !important; }
.distrib-feature p  { color: var(--text-mid) !important; }
.mfg-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.mfg-img-wrap img { width: 100%; height: 460px; object-fit: cover; }

/* ============================================================
   QUALITY STRIP
   ============================================================ */
.quality-strip { background: var(--bg); }
.quality-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 24px rgba(10,31,60,0.04);
  transition: all var(--trans-mid);
  text-align: left;
}
.quality-card:hover {
  box-shadow: 0 16px 40px rgba(10,31,60,0.12);
  transform: translateY(-4px);
  border-color: rgba(26,122,74,0.4);
  background: rgba(255,255,255,0.95);
}
.quality-card .q-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--green);
}
.quality-card .q-icon svg { stroke: var(--green); }
.quality-card:hover .q-icon {
  background: var(--green);
  color: var(--white);
}
.quality-card:hover .q-icon svg { stroke: var(--white); }
.quality-card h3 { font-size: 1rem; margin-bottom: 10px; }
.quality-card p  { font-size: 0.875rem; }

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.global-section { background: var(--navy-dark); }
.world-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  min-height: 380px;
  height: 380px;
  display: block;
}
.world-map-wrap iframe,
.world-map-wrap #global-map,
.world-map-wrap #home-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: var(--radius-lg);
}
.world-svg {
  width: 100%;
  max-width: 700px;
  opacity: 0.6;
}
.global-market-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.market-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}
.market-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.35);
}
.market-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.market-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 500;
}

/* ============================================================
   NEWS
   ============================================================ */
.news-section { background: var(--bg); }
.news-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 24px rgba(10,31,60,0.04);
  transition: all var(--trans-mid);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: 0 16px 40px rgba(10,31,60,0.12);
  transform: translateY(-4px);
  border-color: rgba(26,122,74,0.35);
  background: rgba(255,255,255,0.95);
}
.news-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.news-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 500;
  margin-bottom: 10px;
}
.news-card h3 { font-size: 1rem; margin-bottom: 10px; }
.news-card p  { font-size: 0.88rem; margin-bottom: 20px; flex: 1; }
.news-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans-fast);
}
.news-link:hover { gap: 10px; }

/* News — Coming Soon */
.news-coming-soon {
  text-align: center;
  padding: 64px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 520px;
  margin: 0 auto;
}
.news-coming-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--green);
}
.news-coming-icon svg { stroke: var(--green); }
.news-coming-soon h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; }
.news-coming-soon p  { color: var(--text-mid); font-size: 0.95rem; max-width: 380px; margin: 0 auto; }

/* ============================================================
   CONTACT CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(26,122,74,0.92) 0%, rgba(34,160,96,0.92) 40%, rgba(14,90,54,0.95) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  /* Show logo naturally on dark footer — no color inversion */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)) brightness(1.1);
  margin-bottom: 20px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--trans-fast);
}
.social-link:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--trans-fast);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item .icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.footer-contact-item .text { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact-item .text strong { color: rgba(255,255,255,0.8); display: block; font-size: 0.8rem; margin-bottom: 2px; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.82rem; transition: color var(--trans-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   PREMIUM CORPORATE FORM STYLES
   ============================================================ */
.form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 12px 48px rgba(10, 31, 60, 0.07), 0 2px 6px rgba(10, 31, 60, 0.04);
  border: 1px solid rgba(203, 210, 224, 0.7);
  position: relative;
  overflow: hidden;
}

/* Header inside form card */
.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.form-eyebrow {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}
.form-header h3, .form-header h2 {
  font-size: 1.55rem;
  color: var(--navy-dark);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: #F4F6F9;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.form-header-badge svg { color: var(--green); }
.form-divider {
  height: 1px;
  background: linear-gradient(90deg, #DCE2ED 0%, rgba(220, 226, 237, 0.15) 100%);
  margin-bottom: 32px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1E293B;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-group label span {
  color: var(--green);
  font-weight: 700;
  margin-left: 3px;
}
.form-control {
  padding: 14px 18px;
  border: 1px solid #CBD2E0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--navy-dark);
  background: #FCFDFE;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
  width: 100%;
  box-shadow: 0 1px 2px rgba(10,31,60,0.02) inset;
}
.form-control:hover {
  border-color: #A4B0C5;
  background: var(--white);
}
.form-control:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,122,74,0.12), 0 1px 2px rgba(10,31,60,0.02) inset;
}
.form-control::placeholder {
  color: #94A1B5;
  font-weight: 400;
}
textarea.form-control { resize: vertical; min-height: 120px; line-height: 1.6; }
select.form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Section Title Inside Forms */
.form-section-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 32px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1 / -1;
}
.form-section-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Radio Group */
.radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid #CBD2E0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 0.88rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: #475569;
  background: #FCFDFE;
  box-shadow: 0 1px 2px rgba(10,31,60,0.02);
}
.radio-option input[type="radio"] { display: none; }
.radio-option:has(input:checked) {
  border-color: var(--green);
  background: #EAF5EF;
  color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,74,0.1);
}
.radio-option:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--white);
}

/* File Upload Area */
.file-upload-area {
  border: 1.5px dashed #CBD2E0;
  border-radius: 14px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  background: #FCFDFE;
  position: relative;
}
.file-upload-area:hover, .file-upload-area.drag-over {
  border-color: var(--green);
  background: #F2FAF6;
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-upload-icon { color: var(--navy); margin-bottom: 12px; }
.file-upload-area h4 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
  font-weight: 700;
}
.file-upload-area p { font-size: 0.82rem; color: var(--text-muted); }
.file-upload-area .file-types {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
}
.file-type-badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: #E2E8F0;
  color: #475569;
}
.file-selected-name {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 500;
}
.file-selected-name.show { display: flex; }

/* Submit Action Bar */
.form-submit-bar {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.form-submit-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-submit-note svg {
  color: var(--green);
  flex-shrink: 0;
}
.btn-submit-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, #15663E 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(26, 122, 74, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.btn-submit-pro:hover {
  background: linear-gradient(135deg, #1D8853 0%, var(--green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 122, 74, 0.35);
}
.btn-submit-pro:active {
  transform: translateY(0);
}

.form-submit { text-align: right; margin-top: 8px; }
.form-message {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}
.form-message.success { background: var(--green-pale); color: var(--green); border: 1px solid rgba(26,122,74,0.2); display: block; }
.form-message.error   { background: #FEF2F2; color: #DC2626; border: 1px solid rgba(220,38,38,0.2); display: block; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-intro { background: var(--bg); }
.careers-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.careers-value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--trans-mid);
}
.careers-value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cv-icon { font-size: 2.2rem; margin-bottom: 16px; }
.cv-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.cv-text { font-size: 0.88rem; color: var(--text-muted); }

.job-listings { background: var(--white); }
.job-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all var(--trans-mid);
  margin-bottom: 16px;
}
.job-card:last-child { margin-bottom: 0; }
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--green); transform: translateX(4px); }
.job-info { flex: 1; }
.job-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.job-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; color: var(--text-muted); }
.job-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.job-type { font-size: 0.75rem; font-weight: 600; font-family: var(--font-head); }

/* Apply Form Page */
.apply-section { background: var(--bg); }
.apply-progress {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px;
  border: 1px solid var(--border);
}
.apply-step {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--trans-fast);
}
.apply-step.active { background: var(--navy); color: var(--white); }
.apply-step.done { color: var(--green); }

/* ============================================================
   ABOUT PAGE DEEP
   ============================================================ */
.vision-mission { background: var(--white); }
.vm-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  border-radius: 2px 0 0 2px;
}
.vm-card.vision::before { background: linear-gradient(to bottom, var(--navy), var(--green)); }
.vm-card.mission::before { background: linear-gradient(to bottom, var(--gold), var(--gold-light)); }
.vm-icon { font-size: 2.8rem; margin-bottom: 20px; }
.vm-card h3 { margin-bottom: 16px; }

.values-grid { background: var(--navy); padding: 80px 0; }
.value-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.value-item:last-child { border-right: none; }
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  margin: 0 auto 16px;
  transition: all var(--trans-mid);
}
.value-item:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border-color: var(--gold-light);
  transform: scale(1.08);
}
.value-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.value-desc { font-size: 0.83rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--trans-mid);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.contact-card h4 { margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; }
.contact-card a { color: var(--green); font-weight: 600; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 64px;
  border: 1px solid var(--border);
  height: 380px;
  background: linear-gradient(135deg, #e8edf5, #d4dce8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}
.map-embed .map-icon { font-size: 3rem; color: var(--navy); opacity: 0.3; }
.map-embed p { font-size: 0.9rem; }

/* ============================================================
   THERAPEUTIC SEGMENTS PAGE
   ============================================================ */
.segment-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-mid);
}
.segment-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sfcard-head {
  padding: 36px 36px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
}
.sfcard-icon { font-size: 3rem; display: block; margin-bottom: 16px; color: var(--gold-light); }
.sfcard-head h3 { color: var(--white); }
.sfcard-head p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.sfcard-body { padding: 28px 36px; }
.sfcard-body ul { display: flex; flex-direction: column; gap: 10px; }
.sfcard-body ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
}
.sfcard-body ul li::before {
  content: '';
  width: 6px; height: 6px; min-width: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ============================================================
   GLOBAL BUSINESS PAGE — Enquiry Form
   ============================================================ */
.business-enquiry { background: var(--bg); }
.enquiry-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.enquiry-info-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--white);
}
.enquiry-info-card h3 { color: var(--white); margin-bottom: 12px; }
.enquiry-info-card p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.enquiry-markets { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.eq-market {
  padding: 6px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--trans-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.portfolio-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--trans-mid);
}
.portfolio-item:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.pi-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  position: relative;
}
.pi-body { padding: 24px; }
.pi-body h4 { margin-bottom: 6px; font-size: 0.95rem; }
.pi-body p  { font-size: 0.83rem; margin-bottom: 14px; }
.pi-body .tag { font-size: 0.7rem; }

/* ============================================================
   NEWS & INSIGHTS PAGE
   ============================================================ */
.news-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 56px;
  box-shadow: var(--shadow-md);
}
.news-featured-img {
  background: linear-gradient(135deg, var(--navy), var(--green));
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.2);
}
.news-featured-body {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.news-featured-body .tag { margin-bottom: 20px; }
.news-featured-body h2 { font-size: 1.6rem; margin-bottom: 16px; }
.news-featured-body p  { margin-bottom: 24px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

/* Only hide elements if JS has loaded — prevents invisible content on JS failure */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Mobile — lighter, faster, GPU-smooth reveal animations */
@media (max-width: 768px) {
  .js-ready .reveal {
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  .js-ready .reveal-left {
    transform: translateX(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  .js-ready .reveal-right {
    transform: translateX(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  /* Reduce stagger delays on mobile for snappier feel */
  .reveal-delay-1 { transition-delay: 0.04s !important; }
  .reveal-delay-2 { transition-delay: 0.08s !important; }
  .reveal-delay-3 { transition-delay: 0.12s !important; }
  .reveal-delay-4 { transition-delay: 0.16s !important; }
  .reveal-delay-5 { transition-delay: 0.20s !important; }
}

/* Visible state — applied by JS */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Smooth hover on cards */
.quality-card, .model-card, .segment-card, .who-glass-card,
.news-card, .vm-card, .cert-card {
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold-light));
  z-index: 9999;
  transition: width 0.12s linear;
  pointer-events: none;
}

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

/* ============================================================
   MANUFACTURING PAGE
   ============================================================ */
.mfg-process { background: var(--white); }
.mfg-process {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-mid);
}
.process-step:last-child { margin-bottom: 0; border-bottom: 1px solid var(--border); }
.process-step:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.step-num {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 10px; }

/* ============================================================
   QUALITY & COMPLIANCE PAGE
   ============================================================ */
.quality-deep { background: var(--bg); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: all var(--trans-mid);
}
.cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cert-icon { font-size: 2.4rem; margin-bottom: 14px; }
.cert-card h4 { font-size: 0.9rem; margin-bottom: 6px; }
.cert-card p  { font-size: 0.8rem; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans-mid);
  z-index: 900;
  border: 2px solid rgba(255,255,255,0.1);
}
#back-to-top.show { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--green); transform: translateY(-4px); }

/* ============================================================
   INTRO SPLASH SCREEN — Pure CSS Animated (No Video)
   ============================================================ */

/* ── Base container ── */
.intro-splash {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 99999;
  /* Deep navy matching brand */
  background: radial-gradient(ellipse at 50% 60%, #0d2244 0%, #060f1e 65%, #030810 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* No transition on base — exit is handled by curtains */
}

/* ── Floating particles ── */
.intro-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.55);
  animation: ip-float var(--dr) var(--d) ease-in-out infinite alternate,
             ip-fade 3s var(--d) ease-in-out infinite alternate;
  box-shadow: 0 0 calc(var(--s) * 2) rgba(201, 168, 76, 0.3);
}
@keyframes ip-float {
  0%   { transform: translateY(0) translateX(0) scale(1); }
  50%  { transform: translateY(-28px) translateX(12px) scale(1.15); }
  100% { transform: translateY(-52px) translateX(-8px) scale(0.85); }
}
@keyframes ip-fade {
  0%   { opacity: 0.15; }
  50%  { opacity: 0.7; }
  100% { opacity: 0.2; }
}

/* ── Central ambient glow orb ── */
.intro-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(70vw, 500px);
  height: min(70vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(26, 122, 74, 0.18) 0%,
    rgba(201, 168, 76, 0.08) 40%,
    transparent 70%
  );
  animation: glow-pulse 3s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glow-pulse {
  0%   { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* ── Main content wrapper ── */
.intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px;
  animation: intro-content-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes intro-content-in {
  from { opacity: 0; transform: scale(0.82) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Logo ── */
.intro-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-logo {
  width: min(340px, 72vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(26, 122, 74, 0.4))
          drop-shadow(0 0 60px rgba(201, 168, 76, 0.2));
}

/* ── Tagline ── */
.intro-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  animation: tagline-in 0.4s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.intro-tagline span {
  color: #E4C46A;
  font-weight: 600;
}
@keyframes tagline-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Progress bar ── */
.intro-bar-wrap {
  width: min(280px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
  animation: bar-wrap-in 0.3s 0.3s ease both;
}
@keyframes bar-wrap-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.intro-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1A7A4A, #C9A84C, #E4C46A);
  border-radius: 2px;
  animation: bar-fill 0.9s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}
@keyframes bar-fill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Split curtain exit animation ── */
.intro-curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #060f1e;
  z-index: 10;
  transform: scaleX(0);
  pointer-events: none;
}
.intro-curtain-left  { left: 0;  transform-origin: left; }
.intro-curtain-right { right: 0; transform-origin: right; }

/* When JS adds .exiting — curtains close, content fades */
.intro-splash.exiting .intro-curtain-left {
  animation: curtain-close 0.4s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
.intro-splash.exiting .intro-curtain-right {
  animation: curtain-close 0.4s 0.03s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}
.intro-splash.exiting .intro-content,
.intro-splash.exiting .intro-glow,
.intro-splash.exiting .intro-particles {
  animation: content-fade-exit 0.25s ease forwards;
}
@keyframes curtain-close {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes content-fade-exit {
  from { opacity: 1; }
  to   { opacity: 0; }
}



/* ============================================================
   RESPONSIVE — Comprehensive Non-Desktop Overhaul
   ============================================================ */

/* Prevent ALL horizontal overflow site-wide */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

/* ── TABLET (max-width: 1024px) ── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  /* Grids → 2 columns */
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid-6 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grid-2 { gap: 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 22px 20px; }
  .stat-number { font-size: 1.8rem; }

  /* Hero banners */
  .global-page-hero, .page-hero, .careers-hero-section, .apply-hero {
    height: auto; min-height: 360px;
  }
  .page-hero-content, .careers-hero-inner, .apply-hero-inner {
    padding: 100px 0 80px;
  }

  /* News */
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 200px; }

  /* Who we are cards */
  .who-glass-features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .who-glass-card { padding: 20px 18px; }
  .who-quote-card { padding: 36px 32px; }

  /* Section headers */
  .section-header { margin-bottom: 44px; }
  .who-center-header { margin-bottom: 40px; }

  /* Model cards */
  .model-card { padding: 28px 24px; }
  .model-number { font-size: 3rem; }

  /* Segment full cards */
  .sfcard-head { padding: 28px 28px 22px; }
  .sfcard-body { padding: 22px 28px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Cert grid */
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Quality cards */
  .quality-card { padding: 24px; }

  /* Contact info */
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Careers */
  .careers-values { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* VM cards */
  .vm-card { padding: 36px 32px; }

  /* Values grid */
  .values-grid { padding: 60px 0; }
  .value-item { padding: 24px 16px; }

  /* Logo sizing */
  .nav-logo img,
  #navbar.scrolled .nav-logo img {
    height: 80px !important;
    max-width: 240px;
  }
}

/* ── MOBILE (max-width: 768px) ── */
@media (max-width: 768px) {
  :root { --section-pad: 48px; }

  /* --- Typography scale --- */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.05rem; }
  p { font-size: 0.92rem; }

  /* --- Overflow guard --- */
  .container { width: 100%; padding-left: 20px; padding-right: 20px; }
  .nav-inner { flex-wrap: nowrap; }

  /* --- Navigation --- */
  .nav-links { display: none; }
  .nav-actions .nav-cta { display: none; }
  .hamburger { display: flex; flex-shrink: 0; }
  .nav-logo img,
  #navbar.scrolled .nav-logo img {
    height: 60px !important;
    max-width: 180px;
  }

  /* --- Page hero — compact, not full-screen --- */
  .global-page-hero, .page-hero, .careers-hero-section, .apply-hero {
    height: auto; min-height: 280px;
  }
  .page-hero-content, .careers-hero-inner, .apply-hero-inner {
    padding: 130px 0 56px;
    max-width: 100%;
  }
  .page-hero-content h1, .careers-hero-inner h1, .apply-hero-inner h1 {
    font-size: 1.6rem; margin-bottom: 12px;
  }
  .page-hero-content p, .careers-hero-inner p, .apply-hero-inner p {
    font-size: 0.88rem; line-height: 1.7; max-width: 100%;
  }
  .page-hero::after, .global-page-hero::after,
  .careers-hero-section::after, .apply-hero::after {
    height: 40px;
  }

  /* --- Home Hero — 75vh layout --- */
  .home-hero { min-height: 75vh; flex-direction: column; }
  .home-hero > .container { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
  .home-hero-content {
    padding-top: 60px;
    padding-bottom: 40px;
    max-width: 100%;
    margin-bottom: 0;
  }
  .home-hero-content h1 { font-size: 2rem; margin-bottom: 18px; }
  .home-hero-content p { font-size: 1rem; margin-bottom: 32px; max-width: 340px; }
  .home-hero-content .eyebrow { font-size: 0.72rem; margin-bottom: 16px; }

  /* Hero buttons — side by side compact */
  .hero-btns {
    flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: center;
  }
  .hero-btns .btn {
    padding: 12px 24px; font-size: 0.82rem;
  }
  .hero-scroll { display: none; }

  /* --- Stats bar — redesigned as pill-style 2×2 grid --- */
  .hero-stats {
    position: relative;
    width: 100%;
    background: rgba(10,31,60,0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 18px 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: center;
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { border-bottom: none; }
  .stat-number {
    font-size: 1.75rem;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label { font-size: 0.7rem; letter-spacing: 0.03em; }

  /* --- Section header compact --- */
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 0.9rem; }
  .who-center-header { margin-bottom: 32px; }
  .who-center-header h2 { font-size: 1.5rem; }
  .who-center-header p { font-size: 0.92rem; }

  /* --- Grids — 2-col on mobile for cards --- */
  .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* --- Who We Are cards — 2-col compact --- */
  .who-glass-features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .who-glass-card {
    padding: 16px 14px;
  }
  .who-glass-card h4 { font-size: 0.92rem; margin-bottom: 4px; }
  .who-glass-card p { font-size: 0.78rem; line-height: 1.5; }
  .who-tag { font-size: 0.62rem; padding: 3px 8px; }
  .who-card-top { margin-bottom: 8px; }

  /* Who quote card — compact */
  .who-quote-card {
    padding: 28px 20px; gap: 20px;
  }
  .who-quote-text { font-size: 1rem; }
  .who-quote-card::before { font-size: 6rem; top: -8px; left: 16px; }
  .value-chip { font-size: 0.75rem; padding: 6px 14px; }

  /* --- Model cards — 2-col compact grid --- */
  .model-card {
    padding: 22px 18px;
  }
  .model-number { font-size: 2.6rem; top: 12px; right: 14px; }
  .model-icon {
    width: 44px; height: 44px; margin-bottom: 14px;
    font-size: 1.6rem;
  }
  .model-icon svg { width: 22px; height: 22px; }
  .model-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
  .model-card p { font-size: 0.82rem; }

  /* --- Segment cards (home) — 2-col compact --- */
  .segment-card {
    padding: 22px 16px;
  }
  .segment-icon {
    width: 52px; height: 52px; margin-bottom: 12px;
    font-size: 1.4rem;
  }
  .segment-icon svg { width: 20px; height: 20px; }
  .segment-card h3 { font-size: 0.88rem; margin-bottom: 6px; }
  .segment-card p { font-size: 0.78rem; }

  /* --- Segment full cards (therapeutic page) --- */
  .segment-full-card { border-radius: var(--radius-md); }
  .sfcard-head {
    padding: 24px 20px 18px;
  }
  .sfcard-head h3 { font-size: 1.05rem; }
  .sfcard-head p { font-size: 0.82rem; }
  .sfcard-icon { font-size: 2rem; margin-bottom: 10px; }
  .sfcard-icon svg { width: 28px; height: 28px; }
  .sfcard-body {
    padding: 18px 20px;
  }
  .sfcard-body ul { gap: 7px; }
  .sfcard-body ul li { font-size: 0.82rem; gap: 8px; }

  /* --- Manufacturing section --- */
  .mfg-feature { padding: 14px 0; gap: 12px; }
  .mfg-feature-icon {
    width: 42px; height: 42px; min-width: 42px;
    border-radius: 10px; font-size: 1.1rem;
  }
  .mfg-feature-icon svg { width: 18px; height: 18px; }
  .mfg-feature h4 { font-size: 0.88rem; }
  .mfg-feature p { font-size: 0.78rem; }
  .mfg-img-wrap img { height: 220px; }
  .mfg-strip .section-header { margin-bottom: 24px !important; }

  /* --- Quality cards — 2-col compact --- */
  .quality-card {
    padding: 20px 16px;
  }
  .quality-card .q-icon {
    width: 44px; height: 44px; margin-bottom: 14px;
    font-size: 1.2rem;
  }
  .quality-card h3 { font-size: 0.92rem; }
  .quality-card p { font-size: 0.8rem; }

  /* --- News cards --- */
  .news-card-img { height: 140px; font-size: 2rem; }
  .news-card-body { padding: 18px; }
  .news-card h3 { font-size: 0.92rem; }
  .news-card p { font-size: 0.82rem; margin-bottom: 14px; }
  .news-date { font-size: 0.72rem; }
  .news-coming-soon { padding: 40px 20px; }
  .news-coming-soon h3 { font-size: 1.2rem; }

  /* --- Global presence --- */
  .world-map-wrap { min-height: 240px; height: 240px; }
  .global-market-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .market-item { padding: 10px 12px; }
  .market-item span { font-size: 0.8rem; }

  /* --- Contact page --- */
  .contact-info-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-card { padding: 24px 20px; }
  .contact-card-icon {
    width: 48px; height: 48px; margin-bottom: 14px;
    font-size: 1.2rem;
  }
  .contact-card h4 { font-size: 0.95rem; }
  .contact-card p { font-size: 0.85rem; }
  .map-embed { height: 240px; margin-bottom: 40px; }

  /* --- Forms --- */
  .form-wrap { padding: 24px 18px; border-radius: 14px; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-grid .form-group.full { grid-column: 1; }
  .form-header { gap: 12px; margin-bottom: 18px; }
  .form-header h3, .form-header h2 { font-size: 1.2rem; }
  .form-control { padding: 12px 14px; font-size: 0.88rem; }
  .form-group label { font-size: 0.8rem; }
  .form-section-title { font-size: 0.76rem; margin: 20px 0 14px; }
  .form-submit-bar { flex-direction: column; gap: 14px; align-items: stretch; }
  .btn-submit-pro { width: 100%; padding: 14px 24px; font-size: 0.88rem; }
  .form-submit-note { font-size: 0.76rem; justify-content: center; }
  .radio-group { gap: 8px; }
  .radio-option { padding: 9px 16px; font-size: 0.82rem; }
  .file-upload-area { padding: 28px 18px; }

  /* --- Portfolio --- */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .portfolio-filter { gap: 8px; margin-bottom: 32px; }
  .filter-btn { padding: 8px 16px; font-size: 0.76rem; }
  .pi-img { height: 110px; font-size: 2.8rem; }
  .pi-body { padding: 16px; }
  .pi-body h4 { font-size: 0.88rem; }
  .pi-body p { font-size: 0.78rem; margin-bottom: 10px; }

  /* --- Careers --- */
  .careers-values { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .careers-value-card { padding: 22px 18px; }
  .cv-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .cv-title { font-size: 0.92rem; }
  .cv-text { font-size: 0.8rem; }

  /* --- Inline Container Overrides --- */
  /* Quality Pledge */
  section[aria-labelledby="q-philosophy-heading"] .reveal-right > div { padding: 32px 24px !important; }
  section[aria-labelledby="q-philosophy-heading"] .reveal-right > div > div:first-child { font-size: 2.2rem !important; margin-bottom: 16px !important; }
  /* Manufacturing Stats */
  section[aria-labelledby="mfg-overview-heading"] .reveal-right > div:last-child { gap: 16px !important; justify-content: space-around; }
  section[aria-labelledby="mfg-overview-heading"] .reveal-right > div:last-child > div > div:first-child { font-size: 1.6rem !important; }
  /* Target Markets */
  section[aria-labelledby="distrib-heading"] .reveal-right > div { padding: 32px 24px !important; }
  section[aria-labelledby="global-map-heading"] .container > div:last-child { gap: 8px !important; }
  section[aria-labelledby="global-map-heading"] .container > div:last-child > span { padding: 6px 14px !important; font-size: 0.78rem !important; }

  /* Catch-all for hardcoded inline paddings and gaps on secondary pages */
  div[style*="padding:48px"] { padding: 32px 24px !important; }
  div[style*="padding:40px"] { padding: 24px 20px !important; }
  div[style*="padding:32px"] { padding: 20px 16px !important; }
  div[style*="gap:48px"] { gap: 24px !important; }
  div[style*="gap:32px"] { gap: 20px !important; }
  div[style*="margin-top:56px"] { margin-top: 32px !important; }

  .job-card {
    flex-direction: column; align-items: flex-start;
    gap: 12px; padding: 20px;
  }
  .job-title { font-size: 1rem; }
  .job-meta { gap: 10px; }
  .job-meta-item { font-size: 0.78rem; }
  .job-actions { width: 100%; justify-content: flex-start; }

  /* --- About deep — VM cards --- */
  .vm-card { padding: 20px 16px; border-radius: var(--radius-md); }
  .vm-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .vm-card h3 { font-size: 1rem; margin-bottom: 8px; }
  .vm-card p { font-size: 0.8rem; line-height: 1.5; }

  /* Force grid layout for cards instead of full width */
  .grid-2:has(> .vm-card),
  .grid-2:has(> .quality-card),
  .grid-2:has(> .segment-full-card) {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .quality-card { padding: 20px 16px !important; }
  .quality-card h3 { font-size: 1rem; }
  .quality-card p { font-size: 0.8rem; }
  .quality-card li { font-size: 0.75rem !important; }

  .segment-full-card .sfcard-head { padding: 20px 16px !important; }
  .segment-full-card .sfcard-head h3 { font-size: 1rem !important; margin-bottom: 6px !important; }
  .segment-full-card .sfcard-head p { font-size: 0.8rem !important; }
  .segment-full-card .sfcard-body li { font-size: 0.75rem !important; }

  /* Fix manufacturing stats wrapping */
  section[aria-labelledby="mfg-overview-heading"] .reveal-right > div:last-child {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  section[aria-labelledby="mfg-overview-heading"] .reveal-right > div:last-child > div > div:first-child {
    font-size: 1.4rem !important;
  }
  section[aria-labelledby="mfg-overview-heading"] .reveal-right > div:last-child > div > div:last-child {
    font-size: 0.7rem !important;
  }

  /* --- Values grid (about page) --- */
  .values-grid { padding: 48px 0; }
  .value-item {
    padding: 20px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .value-item:last-child { border-bottom: none; }
  .value-icon {
    width: 48px; height: 48px; font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .value-name { font-size: 0.9rem; }
  .value-desc { font-size: 0.78rem; }

  /* --- Cert grid (Quality page) --- */
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cert-card { padding: 20px 16px; }
  .cert-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .cert-card h4 { font-size: 0.82rem; }
  .cert-card p { font-size: 0.74rem; }

  /* --- Process steps (Manufacturing page) --- */
  .process-step {
    padding: 20px 18px; gap: 16px;
    flex-direction: row; align-items: flex-start;
    margin-bottom: 12px;
  }
  .step-num {
    width: 42px; height: 42px; min-width: 42px;
    font-size: 0.95rem;
  }
  .step-content h3 { font-size: 0.95rem; }
  .step-content p { font-size: 0.82rem; }

  /* --- Global business page --- */
  .enquiry-info-card { padding: 24px 20px; }
  .enquiry-info-card h3 { font-size: 1.05rem; }
  .enquiry-info-card p { font-size: 0.82rem; }
  .eq-market { padding: 5px 10px; font-size: 0.72rem; }

  /* --- CTA Banner --- */
  .cta-banner { padding: 48px 0; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 0.92rem; margin-bottom: 24px; }
  .cta-btns { gap: 10px; }
  .cta-btns .btn { padding: 12px 24px; font-size: 0.82rem; }

  /* --- Footer --- */
  .footer { padding: 48px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-brand img { height: 44px; margin-bottom: 14px; }
  .footer-brand p { font-size: 0.82rem; margin-bottom: 16px; }
  .footer-col h5 { font-size: 0.78rem; margin-bottom: 14px; }
  .footer-links a { font-size: 0.82rem; }
  .footer-links { gap: 8px; }
  .footer-contact-item { margin-bottom: 12px; gap: 10px; }
  .footer-contact-item .text { font-size: 0.78rem; }
  .footer-contact-item .text strong { font-size: 0.74rem; }
  .footer-contact-item .icon { width: 28px; height: 28px; min-width: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 16px 0; }
  .footer-bottom p { font-size: 0.76rem; }
  .footer-bottom-links { gap: 16px; }
  .footer-bottom-links a { font-size: 0.76rem; }
  .social-link { width: 34px; height: 34px; font-size: 0.82rem; }

  /* --- About page image --- */
  .about-img-wrap img { height: 240px; }
  .about-img-badge { bottom: 16px; right: 16px; padding: 14px 16px; }
  .about-img-badge .num { font-size: 1.5rem; }
  .about-img-badge .lbl { font-size: 0.7rem; }

  /* --- Buttons general --- */
  .btn { padding: 12px 24px; font-size: 0.82rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.88rem; }
  .btn-sm { padding: 9px 18px; font-size: 0.78rem; }

  /* --- Apply page progress --- */
  .apply-progress { margin-bottom: 28px; padding: 6px; }
  .apply-step { padding: 10px 8px; font-size: 0.72rem; }

  /* --- Back to top --- */
  #back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 0.95rem; }

  /* --- News featured --- */
  .news-featured { grid-template-columns: 1fr; margin-bottom: 32px; }
  .news-featured-img { min-height: 160px; font-size: 3rem; }
  .news-featured-body { padding: 28px 24px; }
  .news-featured-body h2 { font-size: 1.2rem; }

  /* --- Divider gold-line --- */
  .gold-line { margin: 14px auto; }
  .gold-line-center { margin-bottom: 16px; }

  /* --- Tags --- */
  .tag { font-size: 0.68rem; padding: 4px 10px; }
}

/* ── SMALL MOBILE (max-width: 480px) ── */
@media (max-width: 480px) {
  :root { --section-pad: 36px; }
  .container { padding-left: 16px; padding-right: 16px; }

  /* --- Typography --- */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 0.95rem; }

  /* --- Page hero — very compact --- */
  .global-page-hero, .page-hero, .careers-hero-section, .apply-hero {
    min-height: 240px;
  }
  .page-hero-content, .careers-hero-inner, .apply-hero-inner {
    padding: 110px 0 44px;
  }
  .page-hero-content h1, .careers-hero-inner h1, .apply-hero-inner h1 {
    font-size: 1.4rem;
  }
  .page-hero-content p, .careers-hero-inner p, .apply-hero-inner p {
    font-size: 0.84rem;
  }
  .page-hero::after, .global-page-hero::after,
  .careers-hero-section::after, .apply-hero::after {
    height: 30px;
  }

  /* --- Home Hero --- */
  .home-hero { min-height: 75vh; flex-direction: column; }
  .home-hero > .container { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
  .home-hero-content {
    padding-top: 80px; padding-bottom: 0; margin-bottom: 0;
  }
  .home-hero-content h1 { font-size: 1.7rem; }
  .home-hero-content p { font-size: 0.9rem; margin-bottom: 24px; }
  .hero-btns { gap: 8px; }
  .hero-btns .btn { padding: 11px 20px; font-size: 0.78rem; }

  /* --- Stats bar — tighter --- */
  .stat-item { padding: 12px 8px; }
  .stat-number { font-size: 1.35rem; }
  .stat-label { font-size: 0.65rem; }

  /* --- Grids — still prefer 2-col where sensible --- */
  .grid-6 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* --- Who We Are cards --- */
  .who-glass-features { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .who-glass-card { padding: 14px 12px; }
  .who-glass-card h4 { font-size: 0.85rem; }
  .who-glass-card p { font-size: 0.74rem; }
  .who-tag { font-size: 0.58rem; padding: 2px 6px; }

  /* --- Model cards --- */
  .model-card { padding: 18px 14px; }
  .model-number { font-size: 2.2rem; top: 8px; right: 10px; }
  .model-icon { width: 38px; height: 38px; margin-bottom: 10px; }
  .model-icon svg { width: 18px; height: 18px; }
  .model-card h3 { font-size: 0.88rem; }
  .model-card p { font-size: 0.78rem; }

  /* --- Segment cards (home) --- */
  .segment-card { padding: 18px 12px; }
  .segment-icon { width: 44px; height: 44px; margin-bottom: 10px; }
  .segment-card h3 { font-size: 0.82rem; }
  .segment-card p { font-size: 0.74rem; }

  /* --- Segment full cards (therapeutic page) — 1 col --- */
  .sfcard-head { padding: 20px 16px 14px; }
  .sfcard-body { padding: 16px; }
  .sfcard-body ul li { font-size: 0.78rem; }

  /* --- Portfolio --- */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pi-img { height: 90px; font-size: 2rem; }
  .pi-body { padding: 12px; }
  .pi-body h4 { font-size: 0.82rem; }
  .pi-body p { font-size: 0.74rem; }
  .filter-btn { padding: 7px 12px; font-size: 0.72rem; }

  /* --- Careers --- */
  .careers-values { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .careers-value-card { padding: 18px 14px; }
  .cv-icon { font-size: 1.4rem; margin-bottom: 8px; }
  .cv-title { font-size: 0.85rem; }
  .cv-text { font-size: 0.76rem; }
  .job-card { padding: 16px; }
  .job-title { font-size: 0.92rem; }

  /* --- Navbar Mobile Overrides --- */
  #navbar, #navbar.scrolled { padding: 0 !important; }
  .nav-inner { justify-content: center !important; position: relative; width: 100%; }
  .nav-actions { position: absolute !important; right: 0; top: 50%; transform: translateY(-50%); margin: 0 !important; }
  .nav-logo img,
  #navbar.scrolled .nav-logo img {
    height: 82px !important;
    max-width: 240px !important;
  }

  /* --- Manufacturing Strip Mobile Overrides --- */
  .mfg-strip .section-header { text-align: center !important; }
  .mfg-strip .gold-line { margin: 20px auto !important; }
  .mfg-feature { padding: 12px 0 !important; gap: 12px !important; }
  .mfg-feature-icon { width: 44px !important; height: 44px !important; min-width: 44px !important; font-size: 1.2rem !important; }
  .mfg-feature h4 { font-size: 0.9rem !important; margin-bottom: 2px !important; }
  .mfg-feature p { font-size: 0.78rem !important; line-height: 1.4 !important; margin: 0 !important; }
  #mfg-learn-more-btn { display: block !important; width: fit-content !important; margin: 24px auto 0 !important; }

  /* --- Inline Container Overrides --- */
  section[aria-labelledby="q-philosophy-heading"] .reveal-right > div { padding: 20px 16px !important; }
  section[aria-labelledby="q-philosophy-heading"] .reveal-right > div > div:first-child { margin-bottom: 12px !important; }
  section[aria-labelledby="q-philosophy-heading"] .reveal-right > div > div:first-child svg { width: 32px !important; height: 32px !important; }
  section[aria-labelledby="q-philosophy-heading"] .reveal-right > div > h3 { margin-bottom: 10px !important; font-size: 1.1rem !important; }
  section[aria-labelledby="q-philosophy-heading"] .reveal-right > div > p { font-size: 0.85rem !important; line-height: 1.5 !important; }
  section[aria-labelledby="q-philosophy-heading"] .reveal-right > div > div:last-child { margin-top: 16px !important; padding-top: 16px !important; }
  section[aria-labelledby="mfg-overview-heading"] .reveal-right > div:last-child { gap: 12px !important; justify-content: space-between; }
  section[aria-labelledby="mfg-overview-heading"] .reveal-right > div:last-child > div > div:first-child { font-size: 1.4rem !important; }
  section[aria-labelledby="distrib-heading"] .reveal-right > div { padding: 24px 16px !important; }
  section[aria-labelledby="global-map-heading"] .container > div:last-child { gap: 6px !important; }
  section[aria-labelledby="global-map-heading"] .container > div:last-child > span { padding: 4px 10px !important; font-size: 0.72rem !important; }

  /* Catch-all for hardcoded inline paddings and gaps on secondary pages */
  div[style*="padding:48px"] { padding: 24px 16px !important; }
  div[style*="padding:40px"] { padding: 20px 16px !important; }
  div[style*="padding:32px"] { padding: 16px 12px !important; }
  div[style*="gap:48px"] { gap: 16px !important; }
  div[style*="gap:32px"] { gap: 16px !important; }
  div[style*="margin-top:56px"] { margin-top: 24px !important; }

  /* --- Cert grid --- */
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cert-card { padding: 12px 8px; }
  .cert-icon { font-size: 1.2rem; margin-bottom: 8px; }
  .cert-card h4 { font-size: 0.85rem; }

  /* Revert back to 1-column stack on small mobile screens to prevent squishing text */
  .grid-2:has(> .vm-card),
  .grid-2:has(> .quality-card),
  .grid-2:has(> .segment-full-card) {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .vm-card { padding: 16px 12px; }
  .vm-card h3 { font-size: 0.95rem; margin-bottom: 4px !important; }
  .vm-card p { font-size: 0.75rem; line-height: 1.4 !important; }
  .vm-icon { font-size: 1.4rem; margin-bottom: 8px !important; }

  .quality-card { padding: 16px 12px !important; }
  .quality-card h3 { font-size: 0.95rem; margin-bottom: 4px !important; }
  .quality-card p { font-size: 0.75rem; line-height: 1.4 !important; }
  .quality-card ul { margin-top: 10px !important; gap: 6px !important; }
  .quality-card li { font-size: 0.72rem !important; gap: 6px !important; }
  .quality-card .q-icon { margin-bottom: 8px !important; width: 28px !important; height: 28px !important; }
  .quality-card .gold-line { margin: 10px 0 !important; }
  
  .segment-full-card .sfcard-head { padding: 16px 12px !important; }
  .segment-full-card .sfcard-head h3 { font-size: 0.95rem !important; margin-bottom: 4px !important; }
  .segment-full-card .sfcard-head p { font-size: 0.75rem !important; line-height: 1.4 !important; }
  .segment-full-card .sfcard-icon { margin-bottom: 8px !important; font-size: 1.8rem !important; }
  .segment-full-card .sfcard-icon svg { width: 28px !important; height: 28px !important; }
  .segment-full-card .sfcard-body { padding: 12px 16px !important; }
  .segment-full-card .sfcard-body ul { gap: 6px !important; }
  .segment-full-card .sfcard-body li { font-size: 0.72rem !important; }
  .cert-card p { font-size: 0.7rem; }

  /* --- Process steps --- */
  .process-step { flex-direction: row; padding: 16px 14px; gap: 12px; }
  .step-num { width: 36px; height: 36px; min-width: 36px; font-size: 0.85rem; }
  .step-content h3 { font-size: 0.88rem; }
  .step-content p { font-size: 0.78rem; }

  /* --- Quality cards --- */
  .quality-card { padding: 16px 14px; }
  .quality-card .q-icon { width: 38px; height: 38px; margin-bottom: 10px; font-size: 1rem; }
  .quality-card h3 { font-size: 0.85rem; }
  .quality-card p { font-size: 0.76rem; }

  /* --- Contact & Forms --- */
  .contact-card { padding: 12px 10px !important; }
  .contact-card-icon { width: 32px !important; height: 32px !important; margin-bottom: 8px !important; }
  .contact-card-icon svg { width: 16px !important; height: 16px !important; }
  .contact-card h4 { margin-bottom: 4px !important; font-size: 0.9rem !important; }
  .contact-card p { font-size: 0.75rem !important; line-height: 1.4 !important; margin: 0 !important; }
  
  .form-wrap { padding: 16px 14px; }
  .form-header { margin-bottom: 12px; }
  .form-header h3, .form-header h2 { font-size: 1.05rem; }
  .form-header-badge { font-size: 0.65rem; padding: 4px 8px; }
  .form-divider { margin-bottom: 16px; }
  
  .form-grid { gap: 12px; }
  .form-group { gap: 4px; }
  .form-group label { margin-bottom: 4px; font-size: 0.75rem; }
  .form-control { padding: 8px 12px; font-size: 0.82rem; }
  textarea.form-control { min-height: 80px !important; }
  
  .form-submit-bar { margin-top: 16px; padding-top: 16px; gap: 12px; }
  .form-submit-note { font-size: 0.72rem; }
  .btn-full { padding: 12px !important; font-size: 0.85rem !important; }

  /* --- Global market --- */
  .global-market-list { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .market-item { padding: 8px 10px; }
  .market-item span { font-size: 0.74rem; }
  .world-map-wrap { min-height: 200px; height: 200px; }

  /* --- Footer --- */
  .footer { padding: 32px 0 0 !important; }
  .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .footer-brand, .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col h5 { margin-bottom: 8px !important; font-size: 0.85rem !important; }
  .footer-links { gap: 4px !important; }
  .footer-links a { font-size: 0.8rem !important; padding: 2px 0 !important; }
  .footer-brand p { margin-bottom: 12px !important; font-size: 0.8rem !important; line-height: 1.5 !important; }
  .footer-social { justify-content: flex-start; gap: 8px !important; }
  .footer-contact-item { margin-bottom: 12px !important; gap: 10px !important; }
  .footer-contact-item .icon { width: 28px !important; height: 28px !important; min-width: 28px !important; margin-top: 2px !important; }
  .footer-contact-item .text { line-height: 1.4 !important; }

  /* --- CTA --- */
  .cta-banner { padding: 36px 0; }
  .cta-banner h2 { font-size: 1.2rem; }
  .cta-banner p { font-size: 0.85rem; margin-bottom: 20px; }
  .cta-btns .btn { padding: 10px 20px; font-size: 0.78rem; }

  /* --- Apply page --- */
  .apply-layout { grid-template-columns: 1fr; }
  .enquiry-side, .form-wrap { width: 100%; }

  /* --- Who quote --- */
  .who-quote-card { padding: 22px 16px; gap: 16px; }
  .who-quote-text { font-size: 0.92rem; }

  /* --- VM cards --- */
  .vm-card { padding: 22px 18px; }

  /* --- Values grid --- */
  .values-grid { padding: 36px 0; }

  /* --- News featured --- */
  .news-featured-img { font-size: 2.4rem; min-height: 120px; }
  .news-featured-body { padding: 22px 18px; }
  .news-featured-body h2 { font-size: 1.1rem; }
}

/* ── VERY SMALL (max-width: 360px) — edge case safeguard ── */
@media (max-width: 360px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .who-glass-features { grid-template-columns: 1fr; gap: 10px; }
  .grid-4 { grid-template-columns: 1fr; gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.6rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .home-hero-content h1 { font-size: 1.35rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .careers-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
