/* ============================================================
   QUALSCAN — Teleradiology & Diagnostic Imaging
   Global design systemvb
   ============================================================ */

:root {
  /* Brand palette — medical blue / teal */
  --c-navy: #00363e;
  --c-navy-2: #004e59;
  --c-blue: #004e59;
  --c-blue-light: #0a6f7c;
  --c-teal: #18b3c7;
  --c-teal-light: #4fd6e6;
  --c-cyan-glow: #5de0f0;
  --c-ink: #16263d;
  --c-body: #45556b;
  --c-muted: #7a8aa0;
  --c-line: #e3e9f2;
  --c-bg: #ffffff;
  --c-bg-alt: #f4f8fd;
  --c-bg-dark: #02191d;
  --c-white: #ffffff;

  --grad-primary: linear-gradient(135deg, #004e59 0%, #18b3c7 100%);
  --grad-dark: linear-gradient(135deg, #002129 0%, #004e59 100%);
  --grad-glow: linear-gradient(135deg, #0a6f7c 0%, #4fd6e6 100%);

  --shadow-sm: 0 2px 10px rgba(10, 31, 60, 0.06);
  --shadow-md: 0 12px 34px rgba(10, 31, 60, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 31, 60, 0.16);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--c-body);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--c-ink); line-height: 1.18; font-weight: 700; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--grad-dark); color: #c8d6ea; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.eyebrow {
  display: inline-block;
  background: #16a085;
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.eyebrow::before {
  display: none;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; letter-spacing: -0.02em; }
.section-lead { font-size: 18px; color: var(--c-body); max-width: 720px; }
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; padding: 14px 28px;
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn--primary { background: var(--grad-primary); color: #fff; box-shadow: 0 10px 26px rgba(0, 78, 89, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 78, 89, 0.45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--outline { background: transparent; color: var(--c-blue); border-color: var(--c-blue); }
.btn--outline:hover { background: var(--c-blue); color: #fff; }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 16px 0;
  /* Glassmorphism: semi-transparent + blurred, no color tint */
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  
}
.site-header.header--solid,
.site-header.is-scrolled {
  background: rgba(2, 25, 29, 0.96);
  border-bottom: 1px solid rgba(79, 214, 230, 0.18);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { padding: 12px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; font-size: 24px; letter-spacing: 0.02em; color: #fff; text-transform: uppercase; }
.is-scrolled .brand, .header--solid .brand { color: #ffffff; }
.is-scrolled .brand small, .header--solid .brand small { color: rgba(255, 255, 255, 0.72); }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-primary); color: #fff; box-shadow: 0 8px 18px rgba(0,78,89,0.4);
}
.brand-mark svg { width: 22px; height: 22px; }
/* Logo shown directly on the teal bar — no white box */
.brand-mark--logo { background: transparent; padding: 0; overflow: visible; box-shadow: none; width: 76px; height: 76px; border-radius: 0; }
.brand-mark--logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand small { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.72; }
/* On the dark solid/scrolled header, give the brand-mark a subtle glass backing
   and brighten the (light) logo so it never blends into the bar. */
.header--solid .brand-mark, .is-scrolled .brand-mark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(79, 214, 230, 0.22);
  box-shadow: 0 8px 24px rgba(79, 214, 230, 0.14);
}
/* keep the large logo image itself unboxed, just brighten it */
.header--solid .brand-mark--logo, .is-scrolled .brand-mark--logo {
  background: transparent; border: none; box-shadow: none;
}
.header--solid .brand-mark img, .is-scrolled .brand-mark img {
  filter: brightness(1.35) contrast(1.1);
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 18px; font-weight: 800; color: #050505;
  padding: 9px 16px; border-radius: 999px; transition: all 0.25s var(--ease);
}
.is-scrolled .nav-links a, .header--solid .nav-links a { color: #ffffff; }
.nav-links a:hover, .nav-links a.active { color: var(--c-teal); }
.is-scrolled .nav-links a:hover, .header--solid .nav-links a:hover,
.is-scrolled .nav-links a.active, .header--solid .nav-links a.active { color: #4fd6e6; }
.nav-cta { margin-left: 14px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s var(--ease); }
.is-scrolled .nav-toggle span, .header--solid .nav-toggle span { background: #ffffff; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  /* Header goes dark while the menu is open */
  .site-header.menu-open { background: rgba(2, 25, 29, 0.98); box-shadow: 0 12px 34px rgba(0,0,0,0.28); }
  .site-header.menu-open .brand { color: #ffffff; }
  .site-header.menu-open .nav-toggle span { background: #ffffff; }

  /* Solid full-width dropdown that slides down from below the header bar */
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(2, 25, 29, 0.98);
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 16px 24px 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    border-top: 1px solid rgba(79, 214, 230, 0.18);
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    z-index: 998;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { color: #ffffff; padding: 14px 16px; border-radius: 12px; font-size: 18px; font-weight: 800; }
  .nav-links a:hover { background: rgba(255, 255, 255, 0.08); color: #4fd6e6; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media video { animation: heroZoom 24s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) { .hero-media video { animation: none; } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(0,33,41,0.92) 0%, rgba(0,33,41,0.72) 42%, rgba(0,78,89,0.45) 100%);
}
.hero-fallback {
  position: absolute; inset: 0;
  background: var(--grad-dark);
  background-image: linear-gradient(135deg, rgba(0,33,41,0.55), rgba(0,78,89,0.45)), url('../assets/stock-radiology.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Home hero — centered headline + bottom logo/anniversary block */
.hero--clean { display: block; align-items: initial; min-height: 100vh; }
.hero--clean .hero-fallback { display: none; }
.hero--clean .hero-media::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.12) 40%, rgba(0,0,0,0.62) 100%);
}
.hero--clean .scroll-cue { display: none; }

/* Centered headline (middle) */
.hero-title {
  position: absolute; z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 56px);
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: clamp(40px, 8vw, 92px);
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255,255,255,0.4);
  opacity: 0;
  animation: heroFade 1.2s var(--ease) 0.2s forwards;
}

/* Bottom block: logo + anniversary + rule + tagline */
.hero-content {
  position: absolute; z-index: 2;
  left: 46px; right: 46px; bottom: 44px;
  display: flex; align-items: center; gap: 44px;
  opacity: 0;
  animation: heroIn 1s var(--ease) 0.45s forwards;
}
.anniversary {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  color: rgba(255,255,255,0.9);
  line-height: 0.95;
}
.anniversary img { grid-row: span 2; width: 84px; height: 84px; object-fit: contain; }
.anniversary strong, .anniversary span { display: block; font-size: 29px; font-weight: 700; line-height: 1.0; }
.anniversary span { font-size: 30px; }
.hero-rule { width: 1px; align-self: stretch; min-height: 84px; background: rgba(255,255,255,0.5); }
.hero-content p { max-width: 480px; margin: 0; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: rgba(255,255,255,0.92); }

@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero-title, .hero-content { opacity: 1; animation: none; }
}
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.scroll-cue .mouse::before { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: #fff; border-radius: 2px; animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(79,214,230,0.7); } 70% { box-shadow: 0 0 0 12px rgba(79,214,230,0); } 100% { box-shadow: 0 0 0 0 rgba(79,214,230,0); } }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero { position: relative; padding: 170px 0 80px; background: var(--grad-dark); color: #fff; overflow: hidden; }
.page-hero::before { content:""; position:absolute; right:-120px; top:-120px; width:420px; height:420px; background: radial-gradient(circle, rgba(24,179,199,0.35), transparent 70%); }
.page-hero::after { content:""; position:absolute; left:-100px; bottom:-160px; width:380px; height:380px; background: radial-gradient(circle, rgba(0,78,89,0.4), transparent 70%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color:#fff; font-size: clamp(32px, 5vw, 52px); letter-spacing:-0.02em; margin-bottom:16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 640px; }
.breadcrumb { font-size: 13px; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); margin-bottom: 18px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--c-teal-light); }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 32px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,78,89,0.12), rgba(24,179,199,0.12)); color: var(--c-blue);
  margin-bottom: 20px;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--c-body); }

/* Subspecialty card image banner */
.card .card-media {
  margin: -32px -32px 22px;
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(135deg, rgba(0,78,89,0.10), rgba(24,179,199,0.10));
}
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }

.feature-list { display: grid; gap: 14px; margin-top: 18px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.feature-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--c-teal); margin-top: 2px; }

/* Split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--grad-primary); }
.media-frame img { width:100%; height:100%; object-fit: cover; }
.media-frame .ph { position:absolute; inset:0; display:grid; place-items:center; color: rgba(255,255,255,0.85); }
.media-frame .ph svg { width: 84px; height: 84px; opacity: 0.85; }

/* Stat band */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
@media (max-width: 700px){ .statband { grid-template-columns: repeat(2,1fr); } }
.statband .num { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; background: var(--grad-glow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.statband .lbl { font-size: 14px; color: rgba(255,255,255,0.72); }

/* Pills */
.pill-row { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 8px; }
.pill { font-size: 13px; font-weight: 600; padding: 7px 15px; border-radius: 999px; background: rgba(0,78,89,0.08); color: var(--c-blue); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--grad-primary); color: #fff; border-radius: var(--radius-lg); padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color:#fff; font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 600px; margin: 0 auto 30px; }
.cta-band .btn--primary { background: #fff; color: var(--c-blue); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
@media (max-width:600px){ .cta-band { padding: 40px 24px; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--c-bg-dark); color: #9fb2cc; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color:#fff; margin-bottom: 18px; }
.footer-about p { font-size: 15px; max-width: 320px; }
.footer-col h4 { color:#fff; font-size: 15px; letter-spacing: 0.04em; margin-bottom: 18px; }
.footer-col a, .footer-col li { display:block; font-size: 14px; padding: 6px 0; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--c-teal-light); }
.footer-contact a { display: flex; gap: 10px; align-items: center; }
.footer-contact svg { width: 18px; height: 18px; color: var(--c-teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; display:flex; flex-wrap:wrap; gap:16px; justify-content: space-between; font-size: 13px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}


/* ============================================================
   Journey timeline (About)
   ============================================================ */
.journey { position: relative; max-width: 900px; margin: 0 auto; }
.journey::before { content:""; position:absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: var(--c-line); }
@media (min-width: 760px){ .journey::before { left: 50%; transform: translateX(-50%); } }
.journey-item { position: relative; padding-left: 78px; margin-bottom: 46px; }
@media (min-width: 760px){
  .journey-item { width: 50%; padding-left: 0; }
  .journey-item:nth-child(odd) { left: 0; padding-right: 60px; text-align: right; }
  .journey-item:nth-child(even) { left: 50%; padding-left: 60px; }
}
.journey-dot {
  position: absolute; left: 16px; top: 4px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-primary); border: 4px solid #fff; box-shadow: 0 0 0 3px rgba(0,78,89,0.2); z-index: 2;
}
@media (min-width: 760px){
  .journey-item:nth-child(odd) .journey-dot { left: auto; right: -13px; }
  .journey-item:nth-child(even) .journey-dot { left: -13px; }
}
.journey-year { font-size: 30px; font-weight: 800; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px; }
.journey-card { background:#fff; border:1px solid var(--c-line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.journey-card h3 { font-size: 18px; margin-bottom: 6px; }
.journey-card p { font-size: 14px; }

/* ============================================================
   Process page — scroll-triggered animated timeline
   ============================================================ */
.process-wrap { position: relative; max-width: 860px; margin: 0 auto; }
/* Connector line that draws itself */
.process-track { position: absolute; left: 39px; top: 20px; bottom: 20px; width: 4px; background: var(--c-line); border-radius: 4px; overflow: hidden; }
@media (max-width: 640px){ .process-track { left: 27px; } }
.process-progress {
  position: absolute; left: 0; top: 0; width: 100%; height: var(--progress, 0%);
  background: var(--grad-primary); border-radius: 4px;
  box-shadow: 0 0 16px rgba(24,179,199,0.6); transition: height 0.2s linear;
}
.process-step {
  position: relative; display: grid; grid-template-columns: 80px 1fr; gap: 26px; align-items: flex-start;
  padding-bottom: 56px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
@media (max-width: 640px){ .process-step { grid-template-columns: 56px 1fr; gap: 16px; } }
.process-step:last-child { padding-bottom: 0; }
.process-step.is-active { opacity: 1; transform: none; }
.process-badge {
  width: 80px; height: 80px; border-radius: 50%; display: grid; place-items: center;
  font-size: 28px; font-weight: 800; color: var(--c-muted);
  background: #fff; border: 3px solid var(--c-line); position: relative; z-index: 2;
  transition: all 0.5s var(--ease);
}
@media (max-width: 640px){ .process-badge { width: 56px; height: 56px; font-size: 20px; } }
.process-step.is-active .process-badge {
  color: #fff; background: var(--grad-primary); border-color: transparent;
  box-shadow: 0 0 0 0 rgba(24,179,199,0.55); animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(24,179,199,0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(24,179,199,0); }
  100% { box-shadow: 0 0 0 0 rgba(24,179,199,0); }
}
.process-card {
  background:#fff; border:1px solid var(--c-line); border-radius: var(--radius);
  padding: 26px 30px; box-shadow: var(--shadow-sm); margin-top: 6px;
  transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.process-step.is-active .process-card { box-shadow: var(--shadow-md); border-color: rgba(24,179,199,0.4); }
.process-card .step-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-teal); }
.process-card h3 { font-size: 21px; margin: 6px 0 8px; }
.process-card p { font-size: 15px; color: var(--c-body); }

/* ============================================================
   Geographic presence — scroll-driven map swipe
   ============================================================ */
.geo-sticky { position: relative; }
.geo-stage {
  position: sticky; top: 0; height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--grad-dark); color: #fff;
}
.geo-map-track {
  position: absolute; inset: 0; display: flex; align-items: center;
  will-change: transform;
}
.geo-map {
  position: absolute; inset: 0; opacity: 0.5;
  background-position: center; background-repeat: no-repeat; background-size: cover;
}
.geo-map svg { width: 200%; height: 100%; }
.geo-content { position: relative; z-index: 3; width: 100%; }
.geo-panels { display: flex; width: 100%; }
.geo-panel {
  min-width: 100%; padding: 0 6vw; opacity: 0.15; transition: opacity 0.5s var(--ease);
}
.geo-panel.is-active { opacity: 1; }
.geo-panel .geo-index { font-size: 14px; letter-spacing: 0.2em; color: var(--c-teal-light); text-transform: uppercase; }
.geo-panel h2 { color:#fff; font-size: clamp(34px, 6vw, 68px); letter-spacing: -0.02em; margin: 10px 0 18px; }
.geo-panel p { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 460px; }
.geo-panel .pill { background: rgba(255,255,255,0.12); color:#fff; }
.geo-panel .pill-row { margin-top: 22px; }
.geo-progress { position: absolute; bottom: 36px; left: 6vw; right: 6vw; z-index: 4; display:flex; gap: 12px; }
.geo-progress .seg { flex: 1; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.2); overflow: hidden; }
.geo-progress .seg span { display:block; height:100%; width:0%; background: var(--grad-glow); transition: width 0.2s linear; }
.geo-hint { position:absolute; top: 110px; left: 50%; transform: translateX(-50%); z-index:4; font-size: 12px; letter-spacing:0.18em; text-transform:uppercase; color: rgba(255,255,255,0.6); display:flex; align-items:center; gap:10px; }
.geo-hint .swipe-ico { width: 40px; height: 20px; }

/* Static fallback grid for geo (mobile / reduced motion) */
.geo-fallback { display: none; }
@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .geo-sticky { display: none; }
  .geo-fallback { display: grid; }
}

/* ============================================================
   Contact + lead form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info .contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info .contact-item .ic { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(0,78,89,0.12), rgba(24,179,199,0.12)); display:grid; place-items:center; color: var(--c-blue); flex-shrink:0; }
.contact-info .contact-item .ic svg { width: 22px; height: 22px; }
.contact-info .contact-item h4 { font-size: 16px; margin-bottom: 2px; }
.contact-info .contact-item a, .contact-info .contact-item p { font-size: 15px; color: var(--c-body); }
.contact-info .contact-item a:hover { color: var(--c-blue); }

.lead-form { background:#fff; border:1px solid var(--c-line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.lead-form h3 { font-size: 24px; margin-bottom: 6px; }
.lead-form > p { font-size: 15px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px){ .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display:block; font-size: 13px; font-weight: 600; color: var(--c-ink); margin-bottom: 7px; }
.field label .req { color: #e0496b; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--c-ink);
  padding: 13px 15px; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
  background: var(--c-bg-alt); transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-blue); background: #fff; box-shadow: 0 0 0 4px rgba(0,78,89,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .err { display:none; font-size: 12px; color: #e0496b; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e0496b; background: #fff5f7; }
.field.invalid .err { display: block; }
.lead-form .btn--primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none; text-align: center; padding: 20px 0;
}
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--grad-primary); display:grid; place-items:center; color:#fff; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--c-ink); }
.form-note { font-size: 12px; color: var(--c-muted); margin-top: 14px; text-align: center; }


/* ============================================================
   HOME — clean full-brightness video hero with lower tagline
   ============================================================ */
.hero--clean .hero-media::after {
  display: block;
}
/* Mobile hero: video block with centered headline, content below on dark bg */
@media (max-width: 768px) {
  .hero--clean {
    min-height: 100dvh;
    height: 100dvh;
    display: block;
    overflow: hidden;
    background: #000;
    position: relative;
  }

  .hero--clean .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero--clean .hero-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    animation: none;
  }

  .hero--clean .hero-media::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.18) 58%, #000 82%, #000 100%);
  }

  .hero-title {
    top: 39vh;
    font-size: clamp(30px, 9vw, 48px);
    letter-spacing: 0.14em;
  }

  .hero-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 34px;
    display: block;
    padding: 0;
    z-index: 3;
  }

  .anniversary { grid-template-columns: 66px 1fr; max-width: 260px; }
  .anniversary img { width: 66px; height: 66px; }
  .anniversary strong, .anniversary span { font-size: 22px; line-height: 1.05; }
  .anniversary span { font-size: 22px; }
  .hero-rule { width: 100%; height: 1px; min-height: 0; align-self: auto; margin: 12px 0 12px; }
  .hero-content p { max-width: 320px; font-size: 13px; line-height: 1.32; margin: 0; }
}

/* ============================================================
   PURPOSE — scroll-reveal word text + animated background
   ============================================================ */
.purpose { position: relative; overflow: hidden; background: linear-gradient(180deg, #001E22 0%, #002A30 40%, #00363E 75%, #003C46 100%); color: #fff; padding: 120px 0 130px; }
.purpose-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* Organic blob SVGs — morphing shapes with floating motion */
.purpose-bg .blob {
  position: absolute;
  opacity: 0.9;
  will-change: transform;
}
.purpose-bg .blob--1 {
  width: 55%; top: -15%; left: -10%;
  animation: blobFloat1 18s ease-in-out infinite;
}
.purpose-bg .blob--2 {
  width: 50%; top: 10%; right: -12%;
  animation: blobFloat2 22s ease-in-out infinite;
}
.purpose-bg .blob--3 {
  width: 45%; bottom: -18%; left: 25%;
  animation: blobFloat3 20s ease-in-out infinite;
}
.purpose-bg .blob--4 {
  width: 60%; top: 20%; left: 10%;
  animation: blobFloat4 26s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, 30px) rotate(5deg); }
  66% { transform: translate(-20px, 50px) rotate(-3deg); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-35px, 40px) rotate(-4deg); }
  66% { transform: translate(25px, -30px) rotate(6deg); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -40px) rotate(4deg); }
  66% { transform: translate(-40px, 20px) rotate(-5deg); }
}
@keyframes blobFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(-20px, 30px) scale(1.05) rotate(3deg); }
  66% { transform: translate(30px, -20px) scale(0.95) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .purpose-bg .blob { animation: none; }
  .purpose-bg .blob path animate { display: none; }
}
.purpose .container { position: relative; z-index: 2; }
.purpose-intro {
  font-size: clamp(16px, 2vw, 21px); color: rgba(255,255,255,0.82); max-width: 720px;
  margin: 0 auto 48px; text-align: center; line-height: 1.7;
}
.purpose-statement {
  color: #fff; font-size: clamp(36px, 7vw, 80px); font-weight: 200; line-height: 1.15;
  letter-spacing: -0.01em; max-width: 1000px;
}
.purpose-statement .word {
  display: inline-block; opacity: 0.16; transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.4s var(--ease);
}
.purpose-statement .word.lit {
  opacity: 1; transform: none; color: #fff; -webkit-text-fill-color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .purpose-statement .word { opacity: 1; transform: none; }
}
.purpose-link {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 48px;
  font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em; transition: color 0.3s var(--ease);
}
.purpose-link:hover { color: #fff; }
.purpose-link .arrow { font-size: 24px; transition: transform 0.3s var(--ease); }
.purpose-link:hover .arrow { transform: translateX(6px); }

/* ============================================================
   PARALLAX image section
   ============================================================ */
.parallax-section { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.parallax-bg {
  position: absolute; inset: -12% 0; z-index: 0;
  background-size: cover; background-position: center; will-change: transform;
}
.parallax-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(0,33,41,0.86) 0%, rgba(0,33,41,0.55) 50%, rgba(0,33,41,0.30) 100%); }
.parallax-content { position: relative; z-index: 2; }
.parallax-content > div { max-width: 620px; }
.parallax-content h2 { color: #fff; font-size: clamp(30px, 5vw, 56px); font-weight: 200; letter-spacing: -0.01em; margin-bottom: 0; line-height: 1.18; }
.parallax-cta {
  margin-top: 30px;
  box-shadow: 0 14px 34px rgba(0,78,89,0.45);
}
.parallax-content p { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.85); max-width: 540px; }

/* Cardiac ECG line (transparent background) */
.ecg-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 120px;
  margin: 24px 0 6px;
  overflow: hidden;
}
.ecg-wrap::before {
  content: "";
  position: absolute;
  inset: 24px 0;
  background-image:
    linear-gradient(rgba(70,247,238,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,247,238,.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .45;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}
.ecg-wrap svg { position: relative; width: 100%; height: 100%; overflow: visible; }
.ecg-glow, .ecg-line { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ecg-glow { stroke: #46f7ee; stroke-width: 10; opacity: .18; filter: blur(8px); }
.ecg-line {
  stroke: #46f7ee; stroke-width: 3.5;
  filter: drop-shadow(0 0 8px #46f7ee);
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  animation: drawLine 2.8s ease-in-out infinite;
}
.pulse-dot {
  fill: #46f7ee;
  filter: drop-shadow(0 0 10px #46f7ee);
  offset-path: path("M20 78 H110 L126 78 L140 58 L156 88 L172 78 H235 L248 78 L260 105 L278 28 L296 104 L315 78 H410 L432 78 L455 48 L482 78 H520 L538 72 L554 78 H640 L660 78");
  animation: moveDot 2.8s ease-in-out infinite;
}
.scan-light {
  position: absolute; top: 50%; left: 0;
  width: 120px; height: 90px;
  transform: translate(-130px, -50%);
  background: linear-gradient(90deg, transparent, rgba(70,247,238,.3), transparent);
  filter: blur(18px);
  animation: scan 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes moveDot { from { offset-distance: 0%; } to { offset-distance: 100%; } }
@keyframes scan { to { transform: translate(calc(100vw + 130px), -50%); } }
@media (prefers-reduced-motion: reduce) {
  .ecg-line, .pulse-dot, .scan-light { animation: none; }
  .ecg-line { stroke-dashoffset: 0; }
}

/* Mobile: text on top of the section */
@media (max-width: 768px) {
  .parallax-section { align-items: flex-start; min-height: 0; padding: 22px 0 40px; }
  .parallax-content > div { max-width: 100%; }
  .ecg-wrap { margin-inline: auto; }
}
.eyebrow--light { color: white; }
.eyebrow--light::before { display: none; }

/* ============================================================
   HEALTHCARE STATISTICS — premium scroll-triggered stat cards
   ============================================================ */
.stats-section {
  background: var(--c-bg-alt);
  padding: 120px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

.stats-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 22px;
  padding: 52px 28px 44px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10, 31, 60, 0.06);
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  will-change: transform, opacity;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient accent on top edge */
.stats-card::before {
  content: "";
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stats-card:hover::before { opacity: 1; }

/* Visible state — triggered by IntersectionObserver */
.stats-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover: lift + shadow expansion */
.stats-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 56px rgba(10, 31, 60, 0.10),
    0 8px 20px rgba(0, 78, 89, 0.06);
  border-color: rgba(0, 78, 89, 0.12);
}
.stats-card.is-visible:hover {
  transform: translateY(-8px);
}

/* Number — large, bold, gradient focal point */
.stats-card__number {
  font-size: clamp(46px, 6vw, 66px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

/* Label — clean, readable, beneath the metric */
.stats-card__label {
  font-size: 15px;
  color: var(--c-body);
  font-weight: 500;
  line-height: 1.45;
  max-width: 200px;
  margin: 0 auto;
}

/* Staggered reveal — 0.15s cascade left to right */
.stats-card[data-card]:nth-child(1).is-visible { transition-delay: 0s; }
.stats-card[data-card]:nth-child(2).is-visible { transition-delay: 0.15s; }
.stats-card[data-card]:nth-child(3).is-visible { transition-delay: 0.30s; }
.stats-card[data-card]:nth-child(4).is-visible { transition-delay: 0.45s; }

/* Accessibility: no animation if reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .stats-card { opacity: 1; transform: none; transition: none; }
  .stats-card:hover { transform: none; }
}


/* ============================================================
   MAP CAROUSEL — infinite auto-scrolling region showcase
   ============================================================ */
.map-carousel-section {
  overflow: hidden;
  background: var(--c-bg-dark);
  color: #fff;
  padding-bottom: 100px;
}
.map-carousel-section .section-title { color: #fff; }
.map-carousel-section .section-lead { color: rgba(255,255,255,0.7); }
.map-carousel-section .eyebrow { color: white; }
.map-carousel-section .eyebrow::before { display: none; }

.map-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 0;
}
/* Soft edge fade for depth */
.map-carousel::before,
.map-carousel::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.map-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--c-bg-dark), transparent);
}
.map-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--c-bg-dark), transparent);
}

.map-track {
  display: flex;
  gap: 60px;
  animation: mapScroll 14s linear infinite;
  width: max-content;
}
@keyframes mapScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Pause on hover for accessibility/interaction */
.map-carousel:hover .map-track {
  animation-play-state: paused;
}

.map-slide {
  flex-shrink: 0;
  width: 520px;
  text-align: center;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.map-slide:hover {
  transform: scale(1.02);
}

.map-slide__img {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.map-slide:hover .map-slide__img {
  border-color: rgba(24,179,199,0.3);
  box-shadow: 0 12px 40px rgba(24,179,199,0.12);
}
.map-slide__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.3s var(--ease);
}
.map-slide:hover .map-slide__img img {
  filter: brightness(1.1) contrast(1.1);
}

.map-slide__name {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s var(--ease);
}
.map-slide:hover .map-slide__name {
  color: var(--c-teal-light);
}

/* Responsive: full-width cards on mobile */
@media (max-width: 640px) {
  .map-slide { width: 85vw; }
  .map-slide__img { height: 280px; padding: 16px; }
  .map-slide__name { font-size: 18px; }
  .map-track { gap: 32px; animation-duration: 10s; }
}

/* Reduced motion: no scrolling, static display */
@media (prefers-reduced-motion: reduce) {
  .map-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .map-slide { width: 200px; }
}


/* ============================================================
   SPECIALTIES CAROUSEL — infinite auto-scroll (reverse direction)
   ============================================================ */
.spec-carousel-section {
  overflow: hidden;
  background: var(--c-bg);
  padding-bottom: 100px;
}

.spec-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 0;
}

.spec-track {
  display: flex;
  gap: 44px;
  animation: specScroll 18s linear infinite;
  width: max-content;
}
@keyframes specScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Pause on hover */
.spec-carousel:hover .spec-track {
  animation-play-state: paused;
}

.spec-slide {
  flex-shrink: 0;
  width: 420px;
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.spec-slide:hover {
  transform: scale(1.03);
}

.spec-slide__img {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.spec-slide:hover .spec-slide__img {
  border-color: rgba(0,78,89,0.25);
  box-shadow: 0 16px 48px rgba(0,78,89,0.10);
}
.spec-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
  transition: transform 0.4s var(--ease);
}
.spec-slide:hover .spec-slide__img img {
  transform: scale(1.05);
}

.spec-slide__name {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  transition: color 0.3s var(--ease);
}
.spec-slide:hover .spec-slide__name {
  color: var(--c-blue);
}

/* Responsive */
@media (max-width: 640px) {
  .spec-slide { width: 80vw; }
  .spec-slide__img { height: 240px; }
  .spec-slide__name { font-size: 17px; }
  .spec-track { gap: 24px; animation-duration: 12s; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .spec-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 20px; }
  .spec-slide { width: 280px; }
}


/* ============================================================
   LEAD CAPTURE FORM — home page (no image, form-focused)
   ============================================================ */
.lead-section {
  background: var(--c-bg-alt);
  padding: 100px 0 120px;
}
.lead-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.lead-header {
  margin-bottom: 40px;
}
.lead-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.lead-header h2 .highlight {
  color: var(--c-blue);
}
.lead-header p {
  font-size: 17px;
  color: var(--c-body);
}

.lead-form-grid .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 540px) {
  .lead-form-grid .form-row { grid-template-columns: 1fr; }
}
.lead-form-grid .field {
  margin-bottom: 22px;
}
.lead-form-grid .field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.lead-form-grid .field label .req {
  color: #e0496b;
}
.lead-form-grid .field input,
.lead-form-grid .field select,
.lead-form-grid .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-ink);
  padding: 14px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.lead-form-grid .field input:focus,
.lead-form-grid .field select:focus,
.lead-form-grid .field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(0,78,89,0.10);
}
.lead-form-grid .field textarea {
  resize: vertical;
  min-height: 110px;
}
.lead-form-grid .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2345556b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lead-form-grid .field.invalid input,
.lead-form-grid .field.invalid select,
.lead-form-grid .field.invalid textarea {
  border-color: #e0496b;
  background: #fff5f7;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
  margin-top: 8px;
}

.lead-section .form-note {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 16px;
  text-align: center;
}

.lead-section .form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.lead-section .form-success.show {
  display: block;
}
.lead-section .form-success .check {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  color: #fff;
}
.lead-section .form-success .check svg {
  width: 36px; height: 36px;
}
.lead-section .form-success h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.lead-section .form-success p {
  font-size: 16px;
  color: var(--c-body);
}


/* ============================================================
   CAROUSEL GRAPHICS — premium scan/float/signal effects
   ============================================================ */
.spec-track {
  animation-duration: 32s;
}

.spec-slide {
  perspective: 900px;
}

.spec-slide:nth-child(odd) .spec-slide__img {
  animation: diagnosticFloatA 5.6s ease-in-out infinite;
}

.spec-slide:nth-child(even) .spec-slide__img {
  animation: diagnosticFloatB 6.4s ease-in-out infinite;
}

.spec-slide__img {
  position: relative;
  isolation: isolate;
  box-shadow:
    0 18px 50px rgba(10,31,60,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.65);
  transition:
    transform 0.55s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.spec-slide__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(93,224,240,0.00) 32%, rgba(93,224,240,0.40) 48%, rgba(255,255,255,0.55) 50%, rgba(93,224,240,0.32) 54%, transparent 72%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.00) 0 18px, rgba(93,224,240,0.10) 19px 20px);
  mix-blend-mode: screen;
  opacity: 0.52;
  transform: translateX(-115%);
  animation: scanBeam 4.8s ease-in-out infinite;
}

.spec-slide__img::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 1px solid rgba(93,224,240,0.36);
  border-radius: 14px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.spec-slide__img img {
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.7s var(--ease), filter 0.35s var(--ease);
}

.spec-slide:hover {
  transform: translateY(-10px) scale(1.025);
}

.spec-slide:hover .spec-slide__img {
  animation-play-state: paused;
  border-color: rgba(0,78,89,0.38);
  box-shadow:
    0 26px 70px rgba(10,31,60,0.16),
    0 0 0 1px rgba(24,179,199,0.12),
    0 0 48px rgba(0,78,89,0.12);
}

.spec-slide:hover .spec-slide__img::after {
  opacity: 1;
  transform: scale(1);
}

.spec-slide:hover .spec-slide__img img {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.08) brightness(1.03);
}

.spec-slide:hover .spec-slide__name {
  transform: translateY(-2px);
  text-shadow: 0 12px 28px rgba(0,78,89,0.18);
}

/* Country / map slide graphics — drifting grid + pulsing signal */
.map-slide__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(79,214,230,0.00) 0 23px, rgba(79,214,230,0.07) 24px 25px),
    repeating-linear-gradient(90deg, rgba(79,214,230,0.00) 0 23px, rgba(79,214,230,0.07) 24px 25px);
  background-size: 72px 72px, 72px 72px;
  opacity: 0.5;
  animation: globalGridDrift 9s linear infinite;
}

.map-slide__img::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  z-index: 3;
  border-radius: 50%;
  background: #5de0f0;
  box-shadow: 0 0 0 0 rgba(79,214,230,0.48), 0 0 22px rgba(79,214,230,0.75);
  pointer-events: none;
  animation: mapSignalPulse 2.4s ease-in-out infinite;
}

@keyframes globalGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 72px, 72px 72px; }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes mapSignalPulse {
  0% { opacity: 0.9; box-shadow: 0 0 0 0 rgba(79,214,230,0.48), 0 0 22px rgba(79,214,230,0.75); }
  70% { opacity: 0.95; box-shadow: 0 0 0 24px rgba(79,214,230,0), 0 0 34px rgba(79,214,230,0.65); }
  100% { opacity: 0.9; box-shadow: 0 0 0 0 rgba(79,214,230,0), 0 0 22px rgba(79,214,230,0.75); }
}

@keyframes diagnosticFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes diagnosticFloatB {
  0%, 100% { transform: translateY(-6px); }
  50% { transform: translateY(4px); }
}

@keyframes scanBeam {
  0%, 36% { transform: translateX(-115%); opacity: 0; }
  48% { opacity: 0.62; }
  66%, 100% { transform: translateX(115%); opacity: 0; }
}

@media (max-width: 640px) {
  .map-track { animation-duration: 22s; }
  .spec-track { animation-duration: 24s; }
  .spec-slide:nth-child(odd) .spec-slide__img,
  .spec-slide:nth-child(even) .spec-slide__img { animation: none; }
}
.scroll-down-cue {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(24, 179, 199, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  margin: 40px auto 54px;
  color: #18b3c7;
  background: rgba(0, 78, 89, 0.08);
  box-shadow: 0 0 24px rgba(24, 179, 199, 0.2), inset 0 0 18px rgba(24, 179, 199, 0.12);
}

.scroll-down-cue span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg);
  animation: scrollCueMove 1.5s ease-in-out infinite;
}

.scroll-down-cue span:first-child {
  top: 21px;
}

.scroll-down-cue span:last-child {
  top: 33px;
  animation-delay: 0.18s;
}

@keyframes scrollCueMove {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(-4px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-slide__img::before,
  .map-slide__img::after,
  .spec-slide__img::before,
  .spec-slide:nth-child(odd) .spec-slide__img,
  .spec-slide:nth-child(even) .spec-slide__img {
    animation: none;
  }
}


/* ============================================================
   GLOBAL PRESENCE — world map (white section)
   ============================================================ */
.world-section { background: #fff; }
.world-section .eyebrow { color: #ffffff; }
.world-section .eyebrow::before { display: none; }
.world-section .section-title { color: var(--c-ink); }
.world-map {
  max-width: 1000px;
  margin: 44px auto 0;
  position: relative;
}
.world-map img {
  width: 100%;
  height: auto;
  display: block;
}
.world-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 72px;
  margin-top: 52px;
}
.world-stat { text-align: center; }
.world-stat__num {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.world-stat__label {
  margin-top: 10px;
  font-size: 15px;
  color: var(--c-body);
  font-weight: 500;
}
@media (max-width: 600px) {
  .world-map { margin-top: 30px; }
  .world-stats { gap: 30px 44px; margin-top: 38px; }
}

/* ============================================================
   KINETIC MARQUEE — large animated statement
   ============================================================ */
.marquee-section {
  background: var(--c-bg-dark);
  padding: 70px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100%;
  animation: marqueeScroll 28s linear infinite;
}
.marquee--reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 34s;
}
.marquee-track span {
  font-size: clamp(34px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.marquee-track .outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,0.55);
}
.marquee-track .sep {
  color: var(--c-teal-light);
  font-weight: 400;
  font-size: clamp(22px, 4vw, 44px);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Mobile world map */
@media (max-width: 640px) {
  .world-map { margin-top: 32px; }
  .region-pill { font-size: 13px; padding: 8px 16px; }
  .marquee-section { padding: 44px 0; }
}


/* ============================================================
   STAGGERED STATS REVEAL — drop-down blocks
   ============================================================ */
.er-stat-section {
  --er-primary: #004e59;
  --er-white: #ffffff;
  width: 100%;
  overflow: hidden;
  background: var(--er-white);
}
.er-stat-section .row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  column-gap: 18px;
}
.er-stat-section .stat-item { min-width: 0; }
.er-stat-wrap {
  background: var(--er-primary);
  border-bottom-left-radius: 2.2rem;
  border-bottom-right-radius: 2.2rem;
  border-top-right-radius: 0;
  padding: 1.8rem 10% 2.6rem;
  transform: translateY(-100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  will-change: transform;
}

.er-stat-wrap.stat-1 { height: clamp(215px, 30vh, 245px); }
.er-stat-wrap.stat-2 { height: clamp(260px, 37vh, 300px); }
.er-stat-wrap.stat-3 { height: clamp(305px, 44vh, 355px); }
.er-stat-wrap.stat-4 { height: clamp(350px, 51vh, 410px); }
/* Stat card icon — top center */
.er-stat-wrap { position: relative; }
.er-stat-icon {
  flex-shrink: 0;
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 14px;
}
.er-stat-icon svg { width: 32px; height: 32px; }
.er-stat-content {
  opacity: 0;
  text-align: center;
  transform: translateY(40%);
  width: 100%;
  margin-top: auto;
}
.er-stat-section .stat-number {
  margin: 0 0 .5rem;
  color: var(--er-white);
  font-size: clamp(40px, 3.7vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}
.er-stat-section .stat-label {
  display: block;
  max-width: 240px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.3;
  color: var(--er-white);
}
.er-stat-wrap.animate-in {
  animation: animateStatsY 3s cubic-bezier(.1, 1, 0, 1) forwards;
}
.er-stat-wrap.animate-in .er-stat-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(.13, .485, .27, .95);
  transition-delay: .5s;
}
@keyframes animateStatsY { to { transform: translateY(0); } }
@keyframes animateStatsX { to { transform: translateX(0); } }

@media (max-width: 989px) {
  .er-stat-section .container {
    padding: 0;
  }
  .er-stat-section .row {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .er-stat-wrap {
    height: 150px !important;
    margin: 1rem auto 0 0;          /* left-aligned, flush to the left wall */
    padding: 1.2rem 22px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 2.2rem;
    border-top-right-radius: 2.2rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    transform: translateX(-100%);
  }
  .er-stat-wrap.stat-1 { width: 70vw; }
  .er-stat-wrap.stat-2 { width: 76vw; }
  .er-stat-wrap.stat-3 { width: 82vw; }
  .er-stat-wrap.stat-4 { width: 88vw; }
  .er-stat-icon {
    margin: 0 16px 0 0;             /* icon on the left */
    width: 52px; height: 52px;
  }
  .er-stat-icon svg { width: 26px; height: 26px; }
  .er-stat-content {
    margin-top: 0;
    text-align: left;
    flex: 1;
    min-width: 0;
  }
  .er-stat-wrap.animate-in {
    animation: animateStatsX 3s cubic-bezier(.1, 1, 0, 1) forwards;
  }
}
@media (max-width: 560px) {
  .er-stat-section .stat-number { font-size: 38px; }
  .er-stat-icon { width: 46px; height: 46px; }
  .er-stat-icon svg { width: 23px; height: 23px; }
}
@media (prefers-reduced-motion: reduce) {
  .er-stat-wrap { transform: none; }
  .er-stat-content { opacity: 1; transform: none; }
}

.process-scroll {
      position: relative;
      height: 500vh;
      margin-top: 20px;
    }

    .process-stage {
      position: sticky;
      top: 78px;
      min-height: calc(100vh - 78px);
      display: grid;
      grid-template-columns: minmax(580px, 1.05fr) minmax(310px, 0.75fr);
      align-items: center;
      gap: clamp(28px, 4vw, 70px);
      padding: 18px 0 34px;
    }

    .process-wheel-wrap {
      display: grid;
      place-items: center;
      min-width: 0;
    }

    .process-wheel {
      width: min(78vw, 830px, calc((100vh - 100px) * 1.2));
      min-width: 0;
      aspect-ratio: 1;
      position: relative;
      filter: drop-shadow(0 24px 36px rgba(9, 36, 75, 0.28));
    }

    .wheel-svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .segment {
      transform-origin: 250px 250px;
      transition: transform 1s cubic-bezier(0.2, 0.9, 0.2, 1), filter 1s ease, opacity 1s ease;
      cursor: pointer;
    }

    .segment path {
      stroke: rgba(3, 22, 49, 0.66);
      stroke-width: 8;
      stroke-linejoin: round;
    }

    .segment.is-active {
      transform: scale(1.14);
      filter: drop-shadow(0 0 30px rgba(47, 143, 229, 0.58));
    }

    .segment:not(.is-active) {
      opacity: 0.88;
      transform: scale(0.985);
    }

    .segment-label {
      position: absolute;
      width: 124px;
      display: grid;
      justify-items: center;
      gap: 7px;
      color: white;
      text-align: center;
      font-size: clamp(12px, 1vw, 16px);
      line-height: 1;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-shadow: 0 6px 16px rgba(0, 0, 0, 0.42);
      pointer-events: auto;
      cursor: pointer;
      transition: transform 0.45s ease;
      z-index: 4;
    }

    .label-1 { left: 65%; top: 31%; transform: translate(-50%, -50%); }
    .label-2 { left: 74%; top: 58%; transform: translate(-50%, -50%); }
    .label-3 { left: 50%; top: 74%; transform: translate(-50%, -50%); }
    .label-4 { left: 26%; top: 58%; transform: translate(-50%, -50%); }
    .label-5 { left: 35%; top: 31%; transform: translate(-50%, -50%); }

    .label-active {
      transform: translate(-50%, -50%) scale(1.12);
    }

    .process-icon {
      width: clamp(46px, 4.4vw, 64px);
      height: clamp(46px, 4.4vw, 64px);
      color: white;
      filter: drop-shadow(0 0 12px rgba(142, 239, 255, 0.72));
    }

    .label-1 .process-icon,
    .label-2 .process-icon {
      width: clamp(58px, 5vw, 78px);
      height: clamp(58px, 5vw, 78px);
    }

    .center-core {
      position: absolute;
      inset: 50%;
      z-index: 3;
      width: clamp(116px, 14vw, 174px);
      height: clamp(116px, 14vw, 174px);
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, #0c3665 0 34%, #061c3b 35% 61%, #02142f 62% 100%);
      border: 13px solid rgba(0, 19, 46, 0.96);
      box-shadow: inset 0 0 18px rgba(34, 212, 239, 0.18), 0 0 28px rgba(34, 212, 239, 0.2);
      display: grid;
      place-items: center;
    }

    .center-core::before,
    .center-core::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      inset: 18px;
      border: 2px dashed rgba(34, 212, 239, 0.46);
      animation: spin 12s linear infinite;
    }

    .center-core::after {
      inset: 27px;
      border-style: solid;
      border-color: transparent transparent var(--cyan) var(--cyan);
      animation-duration: 6s;
    }

    .shield {
      width: 72px;
      height: 72px;
      color: #a5f4ff;
      z-index: 2;
      filter: drop-shadow(0 0 13px rgba(34, 212, 239, 0.85));
    }

    .process-panel {
      justify-self: end;
      width: min(100%, 430px);
      color: var(--ink);
      animation: panelPop 0.48s cubic-bezier(0.2, 0.9, 0.2, 1);
    }

    .process-photo {
      width: min(250px, 100%);
      aspect-ratio: 1.18;
      margin-bottom: 26px;
      border-radius: 8px;
      background: linear-gradient(145deg, #f2fdff, #c7f2ff);
      display: grid;
      place-items: center;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .process-photo svg {
      width: 86%;
      height: 86%;
    }

    .process-panel h3 {
      margin: 0 0 20px;
      color: var(--ink);
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 900;
      font-size: clamp(38px, 4vw, 62px);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .accent-line {
      width: 72px;
      height: 4px;
      margin-bottom: 24px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), #3858d7);
    }

    .process-panel p {
      margin: 0;
      color: #183554;
      font-size: 18px;
      line-height: 1.7;
      font-weight: 500;
    }

    .process-dots {
      display: flex;
      gap: 9px;
      margin-top: 26px;
    }

    .process-dots button {
      width: 12px;
      height: 12px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: #c5d7e8;
      cursor: pointer;
    }

    .process-dots button.is-active {
      width: 34px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), var(--blue));
    }

    .cta-band {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
      padding: clamp(28px, 5vw, 54px);
      border-radius: 8px;
      background:
        radial-gradient(circle at 88% 18%, rgba(34, 212, 239, 0.18), transparent 28%),
        linear-gradient(135deg, #08234a, #0b3f76);
      color: white;
      box-shadow: var(--shadow);
    }

    .cta-band h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -0.025em;
    }

    .cta-band p {
      margin: 12px 0 0;
      color: #d9edff;
      font-size: 17px;
      line-height: 1.6;
    }

    .site-footer {
      padding: 70px 0 30px;
      background: #06172f;
      color: white;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 0.7fr);
      gap: 34px;
    }

    .footer-about p,
    .footer-col a,
    .footer-bottom {
      color: #bdd0e2;
    }

    .footer-col {
      display: grid;
      align-content: start;
      gap: 11px;
    }

    .footer-col h4 {
      margin: 0 0 4px;
      color: white;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 14px;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    @keyframes panelPop {
      0% { opacity: 0; transform: translateY(24px) scale(0.98); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }

  @media (max-width: 980px) {
  .process-stage {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 22px;
  }

  .process-wheel {
    width: min(100%, 560px);
    min-width: 0;
  }

  .process-panel {
    justify-self: stretch;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(118px, 0.9fr) minmax(0, 1.1fr);
    column-gap: 18px;
    align-items: center;
  }

  .process-photo {
    width: min(150px, 42vw);
    margin: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .process-panel h3 {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0;
    text-align: center;
    font-size: clamp(16px, 5vw, 24px);
    line-height: 1.18;
  }

  .accent-line,
  .process-panel p,
  .process-dots {
    grid-column: 1 / -1;
  }

  .accent-line {
    margin-top: 18px;
  }

  .process-panel p {
    font-size: 15px;
    line-height: 1.58;
  }

  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

    @media (max-width: 560px) {
      .container {
        width: min(100% - 20px, 420px);
      }

      .page-hero {
        padding: 54px 0 44px;
      }

      .section {
        padding: 56px 0;
      }

      .section-head {
        margin-bottom: 22px;
      }

      .process-scroll {
        height: 760vh;
      }

       .process-stage {
    top: 86px;
    min-height: calc(100vh - 86px);
    padding: 0 0 10px;
    gap: 6px;
    align-content: start;
  }

  .process-wheel {
    width: min(calc(100vw - 54px), 340px);
  }

  .process-panel {
    margin-top: 0;
  }

  .process-photo {
    width: min(104px, 28vw);
  }

  .process-panel h3 {
    font-size: clamp(16px, 4.5vw, 20px);
  }
      .accent-line {
        display: none;
      }

      .process-panel p {
        grid-column: 2;
        margin-top: 7px;
        font-size: 11.2px;
        line-height: 1.28;
      }

      .process-dots {
        display: none;
      }

      .segment-label {
        width: 78px;
        font-size: 8.5px;
        gap: 5px;
      }

      .label-1 { left: 61%; top: 33%; }
      .label-2 { left: 70%; top: 55%; }
      .label-3 { left: 50%; top: 70%; }
      .label-4 { left: 30%; top: 55%; }
      .label-5 { left: 39%; top: 33%; }

      .label-1,
      .label-5 {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 4px;
      }

      .process-icon {
        width: 38px;
        height: 38px;
      }

      .label-1 .process-icon,
      .label-2 .process-icon {
        width: 48px;
        height: 48px;
      }

      .center-core {
        width: 104px;
        height: 104px;
        border-width: 9px;
      }

      .shield {
        width: 52px;
        height: 52px;
      }
       @media (max-width: 560px) {
  
    padding: 8px 0;
  }

  .brand-mark--logo {
    width: 46px;
    height: 46px;
  }

  .brand {
    font-size: 20px;
    gap: 10px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .page-hero {
    padding-top: 118px;
  }
       
  .process-photo {
    width: min(155px, 40vw);
  }

  .process-panel h3 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.12;
    font-weight: 800;
  }

  .process-panel p {
    grid-column: 1 / -1;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 12px;
  }
       .process-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

  }
.scroll-down-cue--bottom {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  margin: 0;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-down-cue--bottom.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.process-scroll {
  height: auto;
}

.process-stage {
  position: relative;
  top: auto;
  min-height: auto;
}

.segment,
.segment-label,
.process-dots button {
  cursor: pointer;
}

.segment-label {
  pointer-events: auto;
}


/* ============================================================
   ABOUT PAGE — vibrant highlight cards
   Scoped to .vibe-card so other pages' .card styling is untouched
   ============================================================ */
.about-highlights { gap: 30px; }

.vibe-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  border: 1px solid var(--card-border, rgba(0, 78, 89, 0.16));
  background: var(--card-bg, #fff);
  box-shadow: 0 18px 44px rgba(0, 54, 62, 0.08);
  isolation: isolate;
}

/* colored left accent bar */
.vibe-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--ac-grad);
}

/* angled translucent accent panel */
.vibe-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 42%;
  background: var(--accent-panel);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 12% 100%);
  z-index: -1;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.vibe-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--icon-bg, var(--ac-grad));
  color: var(--icon-color, #fff);
  box-shadow: 0 10px 22px var(--ac-shadow);
  border: 1px solid var(--icon-border, transparent);
  transition: transform 0.45s var(--ease);
}

.vibe-card .icon svg { width: 28px; height: 28px; }

.vibe-card h3 {
  position: relative;
  margin-bottom: 10px;
  color: var(--title-color, #004e59);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 800;
}

.vibe-card .feature-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  list-style: none;
}

.vibe-card .feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--item-color, var(--c-ink));
  font-size: 15px;
  font-weight: 500;
}

/* colored check badges */
.vibe-card .feature-list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 50%;
  color: var(--check-color, #fff);
  background: var(--check-bg, var(--ac-grad));
  box-shadow: 0 4px 10px var(--ac-shadow);
  margin-top: 0;
}

.vibe-card .feature-list li strong {
  font-weight: 800;
  color: var(--strong-color, var(--title-color, var(--c-ink)));
}

.vibe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px var(--ac-shadow);
  border-color: transparent;
}
.vibe-card:hover::after { transform: translateX(-10px); }
.vibe-card:hover .icon { transform: scale(1.08) rotate(-4deg); }

/* per-card color themes — dark gradient panels on the brand palette */
.vibe-card--teal {
  --card-bg: linear-gradient(135deg, #02191d 0%, #00363e 58%, #004e59 100%);
  --card-border: rgba(79, 214, 230, 0.30);
  --ac-grad: linear-gradient(180deg, #85eef8 0%, #18b3c7 100%);
  --accent-panel: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(79,214,230,0.08));
  --ac-shadow: rgba(0, 78, 89, 0.32);
  --title-color: #ffffff;
  --item-color: rgba(255, 255, 255, 0.9);
  --icon-bg: rgba(255, 255, 255, 0.12);
  --icon-color: #ffffff;
  --icon-border: rgba(255, 255, 255, 0.22);
  --check-bg: #ffffff;
  --check-color: #006b78;
}
.vibe-card--blue {
  --card-bg: linear-gradient(135deg, #00535f 0%, #0795a7 56%, #4fd6e6 100%);
  --card-border: rgba(181, 248, 255, 0.38);
  --ac-grad: linear-gradient(180deg, #ffffff 0%, #d8fbff 100%);
  --accent-panel: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.05));
  --ac-shadow: rgba(24, 179, 199, 0.32);
  --title-color: #ffffff;
  --item-color: rgba(255, 255, 255, 0.94);
  --icon-bg: rgba(255, 255, 255, 0.16);
  --icon-color: #ffffff;
  --icon-border: rgba(255, 255, 255, 0.28);
  --check-bg: #ffffff;
  --check-color: #007989;
}
.vibe-card--violet {
  --card-bg: linear-gradient(135deg, #082f49 0%, #075985 58%, #0ea5c9 100%);
  --card-border: rgba(125, 211, 252, 0.35);
  --ac-grad: linear-gradient(180deg, #e0f7ff 0%, #7dd3fc 100%);
  --accent-panel: linear-gradient(135deg, rgba(224,247,255,0.18), rgba(125,211,252,0.08));
  --ac-shadow: rgba(7, 89, 133, 0.34);
  --title-color: #ffffff;
  --item-color: rgba(255, 255, 255, 0.9);
  --icon-bg: rgba(255, 255, 255, 0.13);
  --icon-color: #ffffff;
  --icon-border: rgba(255, 255, 255, 0.20);
  --check-bg: #ffffff;
  --check-color: #075985;
}
.vibe-card--amber {
  --card-bg: linear-gradient(135deg, #064e3b 0%, #0f766e 56%, #2dd4bf 100%);
  --card-border: rgba(153, 246, 228, 0.35);
  --ac-grad: linear-gradient(180deg, #ecfeff 0%, #99f6e4 100%);
  --accent-panel: linear-gradient(135deg, rgba(236,254,255,0.18), rgba(153,246,228,0.08));
  --ac-shadow: rgba(15, 118, 110, 0.34);
  --title-color: #ffffff;
  --item-color: rgba(255, 255, 255, 0.9);
  --icon-bg: rgba(255, 255, 255, 0.12);
  --icon-color: #ffffff;
  --icon-border: rgba(255, 255, 255, 0.22);
  --check-bg: #ffffff;
  --check-color: #0f766e;
}
.vibe-card--rose {
  --card-bg: linear-gradient(135deg, #003a44 0%, #026876 56%, #22c0d6 100%);
  --card-border: rgba(150, 240, 255, 0.35);
  --ac-grad: linear-gradient(180deg, #eafcff 0%, #7fe3f0 100%);
  --accent-panel: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.05));
  --ac-shadow: rgba(2, 104, 118, 0.32);
  --title-color: #ffffff;
  --item-color: rgba(255, 255, 255, 0.92);
  --icon-bg: rgba(255, 255, 255, 0.14);
  --icon-color: #ffffff;
  --icon-border: rgba(255, 255, 255, 0.24);
  --check-bg: #ffffff;
  --check-color: #026876;
}
.vibe-card--green {
  --card-bg: linear-gradient(135deg, #05463a 0%, #0c7d63 56%, #34d8a8 100%);
  --card-border: rgba(153, 246, 228, 0.35);
  --ac-grad: linear-gradient(180deg, #ecfffb 0%, #8ff0d6 100%);
  --accent-panel: linear-gradient(135deg, rgba(236,255,251,0.18), rgba(153,246,228,0.08));
  --ac-shadow: rgba(12, 125, 99, 0.32);
  --title-color: #ffffff;
  --item-color: rgba(255, 255, 255, 0.92);
  --icon-bg: rgba(255, 255, 255, 0.12);
  --icon-color: #ffffff;
  --icon-border: rgba(255, 255, 255, 0.22);
  --check-bg: #ffffff;
  --check-color: #0c7d63;
}

/* body copy + pills sit on the dark panel, so keep them light */
.vibe-card p {
  position: relative;
  color: var(--item-color, rgba(255, 255, 255, 0.9));
}

.vibe-card .pill-row { position: relative; }

.vibe-card .pill {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 700;
}

/* Decorative scroll cue — non-interactive on every page */
.scroll-down-cue--bottom { cursor: default; pointer-events: none; }
