/* DEPLOY-CHECK-QUALITY-FIX-2026-07-31-v11 */
/* ═══════════════════════════════════════
   VARIABLES & RESET
════════════════════════════════════════ */
:root {
  --navy:       #004061;
  --navy-dark:  #002840;
  --cyan:       #00B4D8;
  --cyan-light: #48CAE4;
  --lime:       #8DC63F;
  --lime-dark:  #6FA832;
  --white:      #ffffff;
  --gray-light: #f5f7fa;
  --gray:       #6b7280;
  --text:       #1a2e3b;
  --font-main:  'Poppins', sans-serif;
  --font-head:  'Montserrat', sans-serif;
  --shadow:     0 4px 24px rgba(0,64,97,0.10);
  --radius:     12px;
  --tr:         0.26s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-main); color: var(--text); background: var(--white); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px;
  font-family: var(--font-main); font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: all var(--tr); border: 2px solid transparent; letter-spacing: .3px;
  text-align: center;
}
.btn-primary      { background: var(--cyan);  color: var(--white); border-color: var(--cyan); }
.btn-primary:hover{ background: #0096b8; border-color: #0096b8; transform: translateY(-2px); }
.btn-hero-lime      { background: var(--lime);  color: var(--white); border-color: var(--lime); }
.btn-hero-lime:hover{ background: var(--lime-dark); border-color: var(--lime-dark); transform: translateY(-2px); }
.btn-outline      { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover{ background: var(--white); color: var(--navy); }
.hero-cta .btn-outline { padding: 10px 22px; font-size: .85rem; }
.btn-outline-nav  {
  background: transparent; color: var(--lime-dark); border: 2px solid var(--lime-dark);
  padding: 8px 22px; border-radius: 50px; font-weight: 600; font-size: .875rem; transition: all var(--tr);
}
.btn-outline-nav:hover  { background: var(--lime-dark); color: var(--white); }
.btn-outline-white      { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover{ background: var(--white); color: var(--navy); }

/* ═══════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,.08); height: 70px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 60px; width: auto; }
.logo-fallback { display: none; align-items: center; gap: 8px; }
.logo-text { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); }
.logo-text strong { color: var(--navy); }
.logo-text span   { color: var(--cyan); }

/* ─── NAV ─── */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-list > li { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 14px; font-size: .875rem; font-weight: 500; color: var(--navy);
  border-radius: 6px; transition: color var(--tr); white-space: nowrap; cursor: pointer;
}
.nav-link:hover { color: var(--cyan); }
.arrow { font-size: .6rem; opacity: .65; transition: transform var(--tr); }
.has-mega:hover .arrow { transform: rotate(180deg); }

/* ─── MEGA MENU ─── */
.mega-menu {
  position: fixed; top: 108px; left: 0; width: 100vw;
  background: var(--white); border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 56px rgba(0,0,0,.14), 0 0 0 1px rgba(0,0,0,.05);
  display: grid; grid-template-columns: 260px 1fr 240px;
  gap: 0; opacity: 0; visibility: hidden;
  transition: all var(--tr); z-index: 200; overflow: hidden;
}
.mega-menu--sm { grid-template-columns: 240px 1fr 220px; }

.has-mega:hover .mega-menu {
  opacity: 1; visibility: visible;
}

/* Mega intro column */
.mega-intro {
  background: var(--white); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  border-right: 1px solid #e8ecf0;
}
.mega-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: 2px;
  color: var(--cyan); text-transform: uppercase;
}
.mega-intro h3 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 800;
  color: var(--navy); line-height: 1.3;
}
.mega-desc { font-size: .8rem; color: var(--gray); line-height: 1.6; flex: 1; }
.mega-cta  { font-size: .8rem; font-weight: 700; color: var(--cyan); margin-top: auto; }
.mega-cta:hover { color: #0096b8; }

/* Mega links columns */
.mega-cols { display: flex; gap: 0; padding: 32px 28px; border-right: 1px solid #e8ecf0; }
.mega-col  { flex: 1; padding: 0 20px; }
.mega-col:first-child { padding-left: 0; border-right: 1px solid #e8ecf0; padding-right: 20px; }
.mega-col:last-child { padding-right: 0; }
.mega-col h4 {
  font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #e8ecf0;
}
.mega-col a {
  display: block; padding: 8px 0; font-size: .84rem; color: var(--gray);
  transition: all var(--tr); border-bottom: 1px solid #f2f4f6;
}
.mega-col a:last-child { border-bottom: none; }
.mega-col a:hover { color: var(--cyan); padding-left: 4px; }

/* Mega featured cards */
.mega-featured {
  background: var(--white); padding: 20px; display: flex;
  flex-direction: column; gap: 12px; justify-content: center;
}
.mega-card { background: var(--gray-light); border-radius: 10px; overflow: hidden; border: 1px solid #e8ecf0; }
.mega-card-img {
  height: 64px; display: flex; align-items: flex-end; padding: 8px;
}
.mega-card-img span {
  font-size: .65rem; font-weight: 700; color: var(--white);
  background: rgba(0,0,0,.3); padding: 2px 6px; border-radius: 4px;
  backdrop-filter: blur(4px);
}
.mega-card p {
  padding: 8px 10px; font-size: .75rem; color: var(--gray); line-height: 1.4;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--tr); }

/* ═══════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: flex-start;
  text-align: left; overflow: hidden; padding-top: 108px;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero-overlay-dark {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,20,40,0.80) 0%, rgba(0,20,40,0.5) 55%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 48px 24px; }
.hero-h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 24px;
}
.hero-tagline {
  font-size: clamp(.9rem, 1.4vw, 1.05rem); color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 40px; max-width: 600px;
}
.hero-logo-wrap { margin-bottom: 32px; }
.hero-logo { height: 72px; margin: 0 auto; }
.hero-brand { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-brand span { color: var(--white); }

.hero-content h1 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(.95rem, 1.8vw, 1.15rem); color: rgba(255,255,255,.85);
  margin-bottom: 12px; font-weight: 300; line-height: 1.7;
}
.hero-sub {
  font-size: .9rem; color: var(--cyan); font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

/* ─── HERO CAROUSEL (4 slides) ─── */
.hero-slide-tint {
  position: absolute; inset: 0; z-index: 1; opacity: 0;
  transition: opacity 1.4s ease, background 1.4s ease;
  mix-blend-mode: multiply;
}
.hero-slides { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; box-sizing: border-box; }
.hero-content.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .9s ease;
}
.hero-content.hero-slide.active {
  position: relative; opacity: 1; pointer-events: auto; visibility: visible;
}
.hero-slide-tag {
  font-size: .85rem; font-weight: 700; letter-spacing: 3px; color: var(--cyan);
  text-transform: uppercase; margin-bottom: 18px;
  animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .1s both;
}
.hero-content.hero-slide.active .hero-h1 { animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .25s both; }
.hero-content.hero-slide.active .hero-tagline { animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .5s both; }
.hero-content.hero-slide.active .hero-cta { animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .7s both; }
.hero-emphasis { color: var(--cyan); font-weight: inherit; }
.hero-h1 .hero-emphasis, .hero-slide-tag { color: var(--cyan); }

.hero-dots-wrap {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 28px; z-index: 3;
  display: flex; align-items: center; gap: 18px;
}
.hero-dots { display: flex; gap: 10px; }
.hero-arrow {
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 4px 6px;
  transition: color .3s ease;
}
.hero-arrow:hover { color: var(--white); }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.35); cursor: pointer; padding: 0;
  transition: background .3s ease, transform .3s ease;
}
.hero-dot:hover { background: rgba(255,255,255,.6); }
.hero-dot.active { background: var(--white); transform: scale(1.25); }

@media (max-width: 768px) {
  .hero-dots-wrap { bottom: 20px; }
}

.hero-slide-tint[data-tint="0"] { background: rgba(0,180,216,.10); opacity: 1; }
.hero-slide-tint[data-tint="1"] { background: rgba(141,198,63,.10); opacity: 1; }
.hero-slide-tint[data-tint="2"] { background: rgba(0,64,97,.14); opacity: 1; }
.hero-slide-tint[data-tint="3"] { background: rgba(72,202,228,.10); opacity: 1; }

/* ═══════════════════════════════════════
   SECTION LABELS & TITLES
════════════════════════════════════════ */
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 28px; position: relative; padding-bottom: 10px;
}
.section-label::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px;
  background: var(--cyan); border-radius: 2px;
}
.section-title-light {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--white); text-align: center;
  margin-bottom: 48px; letter-spacing: 2px;
}
.section-title-dark {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--navy); margin-bottom: 40px;
  position: relative; padding-bottom: 14px;
}
.section-title-dark::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 56px; height: 4px; background: var(--lime); border-radius: 2px;
}

/* ═══════════════════════════════════════
   SOLUTIONS / TABS
════════════════════════════════════════ */
.solutions { padding: 96px 0 80px; background: var(--white); }

.solutions-tabs {
  display: flex; border-bottom: 2px solid #e5e7eb; align-items: stretch;
  margin-bottom: 48px; overflow-x: auto; scrollbar-width: none; gap: 0;
}
.solutions-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none; border: none; padding: 14px 22px;
  font-family: var(--font-main); font-size: .875rem; font-weight: 600;
  color: var(--gray); cursor: pointer; position: relative; white-space: nowrap;
  transition: all .25s ease; display: flex; flex-direction: row;
  align-items: center; gap: 8px; border-radius: 0;
}
.tab-icon { display: flex; align-items: center; flex-shrink: 0; }
.tab-icon svg { width: 14px; height: 20px; stroke: currentColor; transition: all .25s ease; }
.capsule-icon { width: 32px; height: 32px; object-fit: contain; transition: transform .25s ease; }
.tab-btn:hover .capsule-icon { transform: scale(1.15); }
.tab-btn::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 3px; background: var(--cyan); transform: scaleX(0);
  transition: transform var(--tr); border-radius: 2px 2px 0 0;
}
.tab-btn.active { color: var(--cyan); }
.tab-btn.active .tab-icon svg { stroke: var(--cyan); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--cyan); background: rgba(0,180,216,.04); }
.tab-btn:hover .tab-icon svg { stroke: var(--cyan); transform: scale(1.2); }

.tabs-more-indicator {
  margin-left: auto; color: var(--cyan); font-size: 1rem;
  font-weight: 900; letter-spacing: 3px; padding: 0 12px;
  display: flex; align-items: center; flex-shrink: 0;
  animation: pulse-dots 2s ease-in-out infinite;
}
@keyframes pulse-dots { 0%,100%{opacity:.3} 50%{opacity:1} }

.tab-content { display: none; animation: fadeUp .3s ease; }
.tab-content.active { display: flex; gap: 64px; align-items: center; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.solutions-left { flex: 1; }
.solutions-left h2 {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 18px;
}
.solutions-left p { color: var(--gray); line-height: 1.7; margin-bottom: 22px; font-size: .95rem; }
.check-list { margin-bottom: 30px; }
.check-list li { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: .9rem; }
.check-list li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.solutions-right { flex: 1; }

/* ─── YouTube embed ─── */
.yt-wrapper { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: var(--navy-dark); }
.yt-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.yt-thumb {
  position: relative; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  cursor: pointer; background: linear-gradient(135deg, var(--navy-dark) 0%, #005a7a 100%);
}
.yt-thumb::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(0,180,216,.18) 0%, transparent 70%);
}
.yt-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }

.yt-play {
  position: relative; z-index: 2; background: none; border: none; cursor: pointer;
  transition: transform var(--tr);
}
.yt-play:hover { transform: scale(1.1); }
.yt-play-shape { fill: #ff0000; }
.yt-play-arrow { fill: #fff; }

.yt-label {
  position: relative; z-index: 2; color: rgba(255,255,255,.7);
  font-size: .85rem; font-family: var(--font-main);
}

/* ═══════════════════════════════════════
   THERAPEUTIC AREAS — CSS SPRITE
════════════════════════════════════════ */
.therapeutic {
  padding: 80px 0;
  background: linear-gradient(160deg, #003050 0%, #005a7a 50%, #003050 100%);
}
.therapeutic-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.ta-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px 16px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  transition: all var(--tr); cursor: default; text-align: center;
}
.ta-item:hover { background: rgba(0,180,216,.15); border-color: var(--cyan); transform: translateY(-4px); }

.ta-icon-img {
  width: 100%;
  height: auto;
  display: block;
}

.ta-item span {
  font-size: .68rem; font-weight: 700; letter-spacing: .8px;
  color: rgba(255,255,255,.85); text-transform: uppercase; line-height: 1.4;
}

/* ═══════════════════════════════════════
   STATS / EXPERTISE
════════════════════════════════════════ */
.expertise { padding: 96px 0 40px; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.stats-carousel-wrap { position: relative; overflow: hidden; }
.stats-page {
  transition: opacity .5s ease;
}
.stats-page:not(.active) { display: none; }
.stats-nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 24px;
}
.stats-arrow {
  background: none; border: none; color: var(--gray);
  font-size: 1.2rem; line-height: 1; cursor: pointer; padding: 4px 6px;
  transition: color .3s ease;
}
.stats-arrow:hover { color: var(--navy); }
.stats-dots { display: flex; gap: 8px; }
.stats-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: #d1d5db; cursor: pointer; padding: 0;
  transition: background .3s ease, transform .3s ease;
}
.stats-dot.active { background: var(--navy); transform: scale(1.2); }
.stat-card { border-radius: 16px; padding: 28px 24px; text-align: left; transition: transform var(--tr); position: relative; overflow: hidden; aspect-ratio: 4/3; display: flex; flex-direction: column; justify-content: flex-start; }
.stat-card:hover { transform: translateY(-4px); }
.stat-card.cyan      { background: var(--cyan);       color: var(--white); }
.stat-card.lime      { background: var(--lime);       color: var(--white); }
.stat-card.navy      { background: var(--navy);       color: var(--white); }
.stat-card.light-cyan{ background: var(--cyan-light); color: var(--white); }
.stat-number { font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1; margin-bottom: 10px; position: relative; z-index: 2; }
.stat-label  { font-size: .88rem; font-weight: 600; opacity: .9; line-height: 1.5; position: relative; z-index: 2; max-width: 60%; }
.stat-fig { position: absolute; bottom: -10px; right: -10px; width: auto; height: 110%; z-index: 1; opacity: .5; object-fit: contain; }

.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.metric-item  { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--gray-light); border-radius: var(--radius); }
.metric-bar   { width: 4px; height: 48px; border-radius: 2px; flex-shrink: 0; }
.metric-bar.cyan       { background: var(--cyan); }
.metric-bar.navy       { background: var(--navy); }
.metric-bar.lime       { background: var(--lime); }
.metric-bar.light-cyan { background: var(--cyan-light); }
.metric-text { display: flex; flex-direction: column; gap: 4px; }
.metric-text strong { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.metric-text span   { font-size: .78rem; color: var(--gray); line-height: 1.35; }

/* ═══════════════════════════════════════
   CAREERS BANNER
════════════════════════════════════════ */
.careers-banner {
  position: relative; padding: 0; min-height: 420px; display: flex; align-items: center;
  background: url('assets/careers-bg.jpg') center/cover no-repeat;
  background-color: var(--navy); overflow: hidden;
}
.careers-card {
  position: relative; z-index: 2; background: rgba(50,50,50,.65); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); padding: 48px 44px; margin: 40px 0;
  border-radius: 20px; max-width: 460px; text-align: left;
}
.careers-label {
  font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
}
.careers-card h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--white); margin-bottom: 20px; line-height: 1.2;
}
.careers-desc {
  font-size: .92rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 28px;
}
.careers-cta {
  display: inline-block; padding: 12px 28px; border: 2px solid rgba(255,255,255,.6);
  border-radius: 50px; color: var(--white); font-weight: 600; font-size: .88rem;
  text-decoration: none; transition: all var(--tr);
}
.careers-cta:hover { background: var(--white); color: var(--navy); }

/* ═══════════════════════════════════════
   LATEST NEWS
════════════════════════════════════════ */
.news { padding: 96px 0; background: var(--gray-light); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform var(--tr); }
.news-card:hover { transform: translateY(-6px); }

.news-img {
  height: 220px; overflow: hidden; background: var(--navy);
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-img img { transform: scale(1.04); }

/* Fallback gradient if image missing */
.news-img.gradient-1 { background: linear-gradient(135deg, #004061, #00B4D8); }
.news-img.gradient-2 { background: linear-gradient(135deg, #005a7a, #48CAE4); }
.news-img.gradient-3 { background: linear-gradient(135deg, #003050, #8DC63F); }

.news-body { padding: 24px; }
.news-tag {
  display: inline-block; background: rgba(0,180,216,.1); color: var(--cyan);
  font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; margin-bottom: 12px;
}
.news-body h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.news-body p  { font-size: .85rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.news-link    { font-size: .85rem; font-weight: 600; color: var(--cyan); }
.news-link:hover { color: var(--navy); }

/* ═══════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section { padding: 96px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.contact-card { border-radius: 16px; padding: 36px 24px; display: flex; flex-direction: column; gap: 14px; transition: transform var(--tr); }
.contact-card:hover { transform: translateY(-4px); }
.contact-card.lime { background: var(--lime); }
.contact-card.navy { background: var(--navy); }
.contact-card.teal { background: var(--cyan);  }
.contact-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.contact-card p  { font-size: .875rem; color: rgba(255,255,255,.85); line-height: 1.6; flex: 1; }
.contact-btn { font-size: .85rem; font-weight: 700; color: var(--white); border-top: 1px solid rgba(255,255,255,.25); padding-top: 14px; transition: opacity var(--tr); }
.contact-btn:hover { opacity: .75; }

.contact-info { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; padding: 32px; background: var(--gray-light); border-radius: 16px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--navy); font-weight: 500; }
.contact-info-item a { color: var(--navy); }
.contact-info-item a:hover { color: var(--cyan); }
.ci-icon { font-size: 1.1rem; }

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 0; position: relative; overflow: hidden; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 48px; }
.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo-img  { height: 72px; width: auto; }
.footer-brand { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.footer-brand strong { color: var(--white); }
.brand-col { position: relative; padding-right: 40px; z-index: 2; border-right: 1px solid rgba(255,255,255,.12); }
.brand-col::before { display: none; }
.brand-col p { font-size: .85rem; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,.55); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; background: var(--navy-dark); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--white); font-weight: 700; transition: all var(--tr);
}
.social-links a:hover { background: var(--cyan); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .mega-menu { grid-template-columns: 200px 1fr 180px; }
  .mega-menu--sm { grid-template-columns: 180px 1fr 160px; }
}

@media (max-width: 1024px) {
  .stats-grid, .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .therapeutic-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .brand-col { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav, .btn-outline-nav { display: none; }
  .hamburger { display: flex; }
  .tab-content.active { flex-direction: column; }
  .therapeutic-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .brand-col { grid-column: 1 / -1; }
  .contact-info { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
}

@media (max-width: 480px) {
  .therapeutic-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* ─── TOP BAR (contact info above header) ─── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: #f5f7fa; border-bottom: 1px solid rgba(0,0,0,.06);
  height: 38px; display: flex; align-items: center;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: flex-end; gap: 32px;
}
.top-bar-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: #4a5568; font-weight: 500;
  text-decoration: none; white-space: nowrap;
}
.top-bar-item:hover { color: var(--cyan); }
.top-bar-icon { font-size: .85rem; }

/* Push header down to make room for top bar */
.site-header { top: 38px; }

/* Push hero down to account for both bars */
.hero { padding-top: 108px; }

@media (max-width: 768px) {
  .top-bar { display: none; }
  .site-header { top: 0; }
  .hero { padding-top: 70px; }
}

@media (max-width: 768px) {
  .careers-card { margin: 24px; max-width: none; padding: 36px 28px; }
}

/* ─── THERAPEUTIC LAYOUT (two-column with carousel) ─── */
.therapeutic-layout { display: flex; gap: 48px; align-items: flex-start; }
.therapeutic-left { flex: 0 0 38%; }
.therapeutic-right { flex: 1; }
.ta-label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.ta-title { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 24px; letter-spacing: 1px; }
.ta-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 32px; text-align: justify; }
.btn-ta-cta { display: inline-block; padding: 14px 32px; border: 2px solid rgba(255,255,255,.5); border-radius: 50px; color: var(--white); font-weight: 700; font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all var(--tr); }
.btn-ta-cta:hover { background: var(--white); color: var(--navy); }

.therapeutic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ta-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; transition: all var(--tr); cursor: default; text-align: center; min-height: 160px; }
.ta-item:hover { background: rgba(0,180,216,.15); border-color: var(--cyan); transform: translateY(-4px); }
.ta-icon-img { width: 100%; height: auto; object-fit: contain; }
.ta-item span { font-size: .68rem; font-weight: 700; letter-spacing: .8px; color: rgba(255,255,255,.85); text-transform: uppercase; line-height: 1.4; }

.ta-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.ta-arrow { background: none; border: none; color: rgba(255,255,255,.6); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; transition: color var(--tr); }
.ta-arrow:hover { color: var(--white); }
.ta-dots { display: flex; gap: 8px; }
.ta-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; cursor: pointer; transition: all var(--tr); padding: 0; }
.ta-dot.active { background: var(--white); }

@media (max-width: 1024px) {
  .therapeutic-layout { flex-direction: column; }
  .therapeutic-left { flex: none; }
}
@media (max-width: 768px) {
  .therapeutic-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── HERO LOGO BADGE ─── */
.hero-logo-badge {
  display: inline-block; background: var(--white); padding: 12px 24px;
  border-radius: 14px; margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.hero-logo-img { height: 64px; width: auto; display: block; }

/* ─── HERO TEXT ENTRANCE ANIMATION ─── */
.hero-h1 {
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .3s both;
}
.hero-tagline {
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .55s both;
}
.hero-cta {
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .75s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   SHARED SECTION TEXT PATTERN
════════════════════════════════════════ */
.section-tag {
  font-family: var(--font-main); font-weight: 700; font-size: .82rem;
  letter-spacing: 1px; color: var(--cyan); text-transform: none;
  margin-bottom: 9px; text-align: left;
}
.section-tag-light { color: var(--cyan-light); }
.section-title {
  font-family: var(--font-main); font-weight: 600; font-size: clamp(1.3rem, 2.3vw, 1.55rem);
  letter-spacing: .2px; color: var(--navy); text-transform: uppercase;
  margin-bottom: 19px; text-align: left; line-height: 1.3;
}
.section-title-light { color: var(--white); }
.section-intro {
  font-family: var(--font-main); font-weight: 400; font-size: .84rem;
  color: #374151; text-align: left; line-height: 1.6; margin-bottom: 14px;
}
.section-intro strong { font-weight: 700; }
.section-intro-light { color: rgba(255,255,255,.85); }
.section-phrase {
  font-family: var(--font-main); font-weight: 500; font-size: .84rem;
  color: #374151; text-align: left; line-height: 1.6; margin: 16px 0 20px;
}
.section-links {
  display: flex; gap: 40px; margin-top: 24px; padding-top: 16px;
  border-top: 1px dashed #d1d5db;
}
.section-link {
  font-family: var(--font-main); font-weight: 500; font-size: .72rem;
  letter-spacing: .5px; text-transform: uppercase; color: var(--cyan);
  text-decoration: none; transition: color .3s ease;
}
.section-link:hover { color: var(--navy); }
.section-links-light { border-top-color: rgba(255,255,255,.25); }
.section-link-light { color: var(--cyan-light); }
.section-link-light:hover { color: var(--white); }

.check-list-2col {
  list-style: none; margin: 18px 0 8px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px;
}
.check-list-2col li {
  display: flex; align-items: flex-start; gap: 9px;
  font-family: var(--font-main); font-weight: 500; font-size: .75rem;
  color: var(--cyan); line-height: 1.4;
}
.check-list-2col li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }
.check-list-light li { color: var(--cyan-light); }

/* ═══════════════════════════════════════
   BRCR HISTORY
════════════════════════════════════════ */
.brcr-history { padding: 40px 0 80px; background: var(--white); position: relative; overflow: hidden; }
.history-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.history-video-frame { position: relative; border-radius: 16px; overflow: hidden; }
.history-img { width: 100%; height: auto; display: block; aspect-ratio: 16/10; object-fit: cover; }
.history-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--cyan); color: var(--white); border-radius: 16px 0 16px 0;
  padding: 10px 18px; display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; line-height: 1.2;
}
.history-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   FEATURE SECTIONS (Site Network / FSP / Quality)
════════════════════════════════════════ */
.feature-section { padding: 80px 0; background: var(--white); position: relative; overflow: hidden; }
.feature-dotted {
  background-color: var(--gray-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='500' viewBox='0 0 800 500'%3E%3Cg stroke='%2300B4D8' stroke-opacity='0.18' stroke-width='1.5' fill='none'%3E%3Cline x1='40' y1='60' x2='180' y2='140'/%3E%3Cline x1='180' y1='140' x2='340' y2='90'/%3E%3Cline x1='340' y1='90' x2='500' y2='160'/%3E%3Cline x1='500' y1='160' x2='660' y2='70'/%3E%3Cline x1='660' y1='70' x2='760' y2='150'/%3E%3Cline x1='120' y1='300' x2='260' y2='250'/%3E%3Cline x1='260' y1='250' x2='420' y2='320'/%3E%3Cline x1='420' y1='320' x2='580' y2='260'/%3E%3Cline x1='580' y1='260' x2='720' y2='340'/%3E%3Cline x1='60' y1='420' x2='220' y2='380'/%3E%3Cline x1='220' y1='380' x2='380' y2='440'/%3E%3Cline x1='380' y1='440' x2='540' y2='400'/%3E%3C/g%3E%3Cg fill='%2300B4D8' fill-opacity='0.28'%3E%3Ccircle cx='40' cy='60' r='4'/%3E%3Ccircle cx='180' cy='140' r='4'/%3E%3Ccircle cx='340' cy='90' r='4'/%3E%3Ccircle cx='500' cy='160' r='4'/%3E%3Ccircle cx='660' cy='70' r='4'/%3E%3Ccircle cx='760' cy='150' r='4'/%3E%3Ccircle cx='120' cy='300' r='4'/%3E%3Ccircle cx='260' cy='250' r='4'/%3E%3Ccircle cx='420' cy='320' r='4'/%3E%3Ccircle cx='580' cy='260' r='4'/%3E%3Ccircle cx='720' cy='340' r='4'/%3E%3Ccircle cx='60' cy='420' r='4'/%3E%3Ccircle cx='220' cy='380' r='4'/%3E%3Ccircle cx='380' cy='440' r='4'/%3E%3Ccircle cx='540' cy='400' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: cover; background-position: center;
}
.feature-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.feature-layout-reverse .feature-media { order: 2; }
.feature-layout-reverse .feature-text { order: 1; }
.feature-media { position: relative; border-radius: 16px; overflow: hidden; }
.feature-img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; }
.feature-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--cyan); color: var(--white); border-radius: 16px 0 16px 0;
  padding: 10px 18px; display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600;
}
.feature-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Quality section (background image + overlay) */
.feature-quality { padding: 40px 0 90px; }
.section-spacer-white { background: var(--white); height: 40px; width: 100%; }

.quality-text .section-tag {
  color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 12px;
}
.quality-text .section-title {
  color: #2b6ca8; font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700;
  margin-bottom: 20px;
}
.quality-text .section-intro {
  color: #374151; font-size: 1rem; line-height: 1.7; margin-bottom: 16px;
}
.quality-text .check-list-2col { gap: 12px 40px; margin: 20px 0 12px; }
.quality-text .check-list-2col li { color: var(--white); font-size: .92rem; }
.quality-text .section-link { color: #2b6ca8; font-size: .78rem; }
.quality-text .section-link:hover { color: var(--white); }
.quality-text .section-links { border-top: 1px dashed rgba(255,255,255,.7); }
.feature-quality-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.feature-quality-content {
  position: relative; z-index: 2;
}
.feature-quality-content > * { max-width: 620px; }

/* ═══════════════════════════════════════
   NETWORK MAP / FLAGS
════════════════════════════════════════ */
.network-map-section {
  background: var(--navy-dark); padding: 80px 0 32px; position: relative;
}
.network-map-section .container { position: relative; }
.network-map-section .section-intro-light { max-width: 620px; text-align: left; margin-bottom: 48px; }
.flags-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px 16px;
  margin-top: 48px; position: relative; z-index: 2;
}
.flag-item {
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .3s ease;
}
.flag-item:hover { transform: translateY(-4px); }
.flag-item img {
  width: 64px; height: 44px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}
.flag-item span {
  font-family: var(--font-main); font-weight: 700; font-size: .68rem;
  letter-spacing: .5px; color: var(--white); text-transform: uppercase; text-align: center;
}
.flag-item.active span { color: var(--cyan-light); }

.network-highlight-box {
  background: rgba(0,180,216,.08); border: 1px solid rgba(0,180,216,.25);
  border-left: 3px solid var(--cyan); border-radius: 10px;
  padding: 24px 28px; margin-top: 40px; position: relative; z-index: 2;
}
.network-highlight-box p {
  font-family: var(--font-main); font-weight: 400; font-size: .8rem;
  color: rgba(255,255,255,.85); line-height: 1.6; margin: 0;
}

.country-popup {
  display: none; position: absolute; z-index: 10;
  background: var(--white); border-radius: 14px; padding: 20px 22px;
  width: 280px; box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.country-popup.visible { display: block; }
.country-popup-connector {
  position: absolute; z-index: 9; background: var(--cyan);
  width: 2px; display: none;
}
.country-popup-connector.visible { display: block; }
.country-popup-dot {
  position: absolute; z-index: 9; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); display: none; transform: translate(-50%, -50%);
}
.country-popup-dot.visible { display: block; }
.country-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-weight: 800; font-size: .85rem;
  color: var(--navy); margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.country-popup-close {
  background: none; border: none; color: var(--gray); cursor: pointer; font-size: .85rem;
}
.country-popup-body { max-height: 220px; overflow-y: auto; }
.popup-site {
  padding: 10px 0; border-bottom: 1px solid #f0f2f5;
}
.popup-site:last-child { border-bottom: none; }
.popup-site-name { font-weight: 700; font-size: .75rem; color: var(--navy); margin-bottom: 4px; }
.popup-site-address { font-size: .7rem; color: var(--gray); line-height: 1.4; }
.popup-site-phone { font-size: .7rem; color: var(--cyan); margin-top: 4px; display: block; }

@media (max-width: 900px) {
  .history-layout, .feature-layout { grid-template-columns: 1fr; }
  .feature-layout-reverse .feature-media,
  .feature-layout-reverse .feature-text { order: initial; }
  .flags-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-quality-content { margin-left: 24px; margin-right: 24px; }
  .feature-quality-content > * { max-width: none; }
}
