/* ---------- Tokens (official WeKongsi brand palette) ---------- */
:root {
  /* WeKongsi teal scale built around brand colors:
     #1FA7A5 (primary brand)
     #18B7B3 (CTA button)
     #2C616E (secondary accent)
  */
  --teal-50:  #F0FBFB;
  --teal-100: #D5F4F4;
  --teal-200: #ABEAE9;
  --teal-300: #6FD7D5;
  --teal-400: #18B7B3;  /* CTA Button */
  --teal-500: #1FA7A5;  /* Primary Brand */
  --teal-600: #1A8E8C;
  --teal-700: #2C616E;  /* Secondary Accent */
  --teal-800: #234F5A;
  --teal-900: #18404B;

  /* Navy scale built around #1B3E58 (Dark Accent) */
  --navy-50:  #F1F4F7;
  --navy-100: #DDE5EB;
  --navy-200: #B3C2CE;
  --navy-400: #4A6883;
  --navy-500: #2A4866;
  --navy-700: #213F58;
  --navy-800: #1F3E58;
  --navy-900: #1B3E58;  /* Dark Accent */
  --navy-950: #11283C;

  /* Soft mint-teal — Common Illness differentiation (still in teal family) */
  --mint-50:  #ECFAFA;
  --mint-100: #CFF0EF;
  --mint-200: #9FE0DE;
  --mint-500: #50C5BF;

  /* Blue */
  --blue-50:  #EEF4FF;
  --blue-100: #DBE6FE;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;

  /* Coral — emergency/urgent only */
  --coral-50:  #FFF5F2;
  --coral-100: #FFE5DC;
  --coral-500: #FF7A59;
  --coral-600: #F86342;

  /* Ink — neutral grays based on spec
     Heading: #1F2937, Body: #6B7280, Divider: #E7EEEE, Background: #F8FAFA */
  --ink-900: #1F2937;  /* Heading Text */
  --ink-800: #2D3744;
  --ink-700: #3D4A5A;
  --ink-600: #525E6E;
  --ink-500: #6B7280;  /* Body Text */
  --ink-400: #8C95A0;
  --ink-300: #B4BCC4;
  --ink-200: #D1D8DC;
  --ink-100: #E7EEEE;  /* Section Divider */
  --ink-50:  #F8FAFA;  /* Background */
  --white:   #FFFFFF;

  /* Shadows — neutral cool gray */
  --shadow-sm:  0 1px 2px rgba(31, 41, 55, 0.06);
  --shadow:     0 4px 16px rgba(31, 41, 55, 0.06), 0 1px 3px rgba(31, 41, 55, 0.04);
  --shadow-md:  0 12px 32px rgba(31, 41, 55, 0.08), 0 2px 6px rgba(31, 41, 55, 0.04);
  --shadow-lg:  0 24px 60px rgba(31, 41, 55, 0.12);
  /* Cyan/teal glow for primary actions and active states */
  --glow-brand: 0 10px 26px -8px rgba(24, 183, 179, 0.45);
  --shadow-navy: 0 10px 26px -8px rgba(27, 62, 88, 0.40);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --container: 1180px;
  --header-h: 76px;

  /* Brand gradients */
  --grad-primary: linear-gradient(135deg, #2C616E 0%, #1FA7A5 50%, #18B7B3 100%);
  --grad-bright:  linear-gradient(135deg, #18B7B3 0%, #1FA7A5 50%, #6FD7D5 100%);
  --grad-soft:    linear-gradient(180deg, #F8FAFA 0%, #FFFFFF 100%);
  --grad-cta:     linear-gradient(135deg, #1B3E58 0%, #2C616E 55%, #1FA7A5 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink-500);
  background: var(--ink-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; color: var(--ink-900); font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.01em; }
p  { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(15, 42, 61, 0.06);
}
.nav__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 16px;
}
.nav__brand { display: inline-flex; }
.nav__logo { height: 32px; width: auto; }
.nav__links {
  margin-left: 24px;
  display: flex; gap: 22px; align-items: center; flex: 1;
}
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-700);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav__links a:hover { color: var(--teal-700); }
.nav__toggle {
  display: none;
  width: 40px; height: 40px; padding: 8px;
  border: 1px solid var(--ink-200); border-radius: 10px;
  background: var(--white);
  flex-direction: column; gap: 4px; justify-content: center; align-items: center;
}
.nav__toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink-800); border-radius: 1px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* Header action group + language switcher */
.nav__actions { display: inline-flex; align-items: center; gap: 12px; }
.nav__lang {
  display: inline-flex;
  background: rgba(27,62,88,0.06);
  border: 1px solid rgba(27,62,88,0.10);
  border-radius: 999px;
  padding: 3px;
}
.nav__lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px;
  padding: 5px 10px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-500, #5C6B73);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__lang-btn:hover { color: var(--ink-900); }
.nav__lang-btn.is-active {
  background: #fff;
  color: var(--ink-900);
  box-shadow: 0 4px 10px -3px rgba(27,62,88,0.18);
}
/* PRIMARY — official CTA Button color #18B7B3 */
.btn--primary {
  background: var(--teal-400);
  color: #fff;
  box-shadow: 0 8px 20px -4px rgba(24,183,179,0.35);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  box-shadow: 0 12px 28px -4px rgba(24,183,179,0.5), 0 0 0 1px rgba(31,167,165,0.1);
}
/* SECONDARY ghost — white bg, navy border, cyan hover */
.btn--ghost {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--navy-200);
}
.btn--ghost:hover {
  background: var(--teal-50);
  border-color: var(--teal-400);
  color: var(--teal-700);
}
.btn--outline {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--navy-200);
}
.btn--outline:hover {
  background: var(--teal-50);
  border-color: var(--teal-400);
  color: var(--teal-700);
}
.btn--white {
  background: #fff; color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md), var(--glow-cyan); }
.btn--ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: transparent;
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); }

/* ---------- Section base ---------- */
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--grad-soft); }
.section--gradient {
  background: var(--grad-cta);
  color: #fff;
}
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  margin: 12px 0 14px;
}
.lead {
  color: var(--ink-600);
  font-size: 17px;
}
.eyebrow {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--teal-100);
}
.eyebrow--center { margin: 0 auto; }
.eyebrow--light { color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
/* Premium glassmorphism eyebrow */
.eyebrow--glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(31,167,165,0.18);
  color: var(--teal-700);
  padding: 8px 16px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  box-shadow:
    0 6px 14px -6px rgba(44,97,110,0.18),
    inset 0 1px 0 0 rgba(255,255,255,0.7);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex; align-items: center;
  padding: 80px 0;
  isolation: isolate;
}
.hero__photo {
  position: absolute; inset: 0; z-index: -2;
  background: url('hero.jpg') center / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 80% at 50% 50%, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.78) 45%, rgba(255,255,255,0.5) 75%, rgba(255,255,255,0.2) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.2) 100%);
}
.hero__inner {
  display: block;
  position: relative; z-index: 1;
}
.hero__copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero__brandblock {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__logo { height: 50px; width: auto; }
.powered {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; background: #fff;
  border: 1px solid var(--ink-100); border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.powered__label { color: var(--ink-500); font-size: 13px; font-weight: 500; }
.powered__logo { height: 26px; width: auto; }
.powered--big {
  margin: 32px auto 0;
  padding: 0;
  gap: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  width: max-content;
}
.powered--big .powered__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.powered--big .powered__logo { height: 44px; }

.hero__title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 14px 0 22px;
  color: var(--ink-900);
  white-space: nowrap;
}
.grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__sub {
  color: var(--ink-700); font-size: 16.5px;
  max-width: 620px; line-height: 1.65;
  margin: 0 auto 28px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 22px; }
.hero__note {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 10px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--teal-100);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  color: var(--teal-800);
  margin-bottom: 28px;
}
.hero__noteicon {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(44,97,110,0.3);
  flex-shrink: 0;
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- WHAT IS COB minis ---------- */
.mini {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.mini__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 14px;
}
.mini__icon--teal  { background: var(--teal-50);  color: var(--teal-700); }
.mini__icon--blue  { background: var(--blue-50);  color: var(--blue-600); }
.mini__icon--mint  { background: var(--mint-50);  color: #1A8E8C; }
.mini__icon--coral { background: var(--coral-50); color: var(--coral-600); }
.mini h4 { font-size: 16.5px; margin-bottom: 4px; }
.mini p  { font-size: 14px; color: var(--ink-500); }

.partners { margin-top: 40px; text-align: center; }
.partners__note {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--ink-100);
  padding: 10px 16px; border-radius: 999px;
  font-size: 13.5px; color: var(--ink-600);
  box-shadow: var(--shadow-sm);
}
.partners__note svg { color: var(--teal-600); flex-shrink: 0; }
.partners__row {
  margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.partner-chip {
  font-size: 13px; font-weight: 600; color: var(--ink-700);
  padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px dashed var(--ink-200);
}

/* ============================================================
   WHAT IS COB — light premium feature section
   ============================================================ */
.section--what {
  position: relative;
  padding: 96px 0 80px;
  background:
    radial-gradient(55% 50% at 18% 18%, rgba(77,159,156,0.10) 0%, transparent 60%),
    radial-gradient(50% 40% at 85% 82%, rgba(203,221,220,0.50) 0%, transparent 65%),
    linear-gradient(135deg, #fff 0%, rgba(248,250,250,1) 50%, rgba(203,221,220,0.30) 100%);
  overflow: hidden;
  isolation: isolate;
}
/* Subtle grid pattern overlay */
.section--what::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,62,88,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,62,88,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -1;
}

/* Two-column grid: text left, cards right */
.what-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}
.what-grid__text { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.eyebrow--dark {
  background: #fff;
  border: 1px solid rgba(77,159,156,0.28);
  color: #2C616E;
  box-shadow: 0 4px 10px -4px rgba(27,62,88,0.10);
}
.what-grid__title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink-900);
}
.what-grid__title .grad {
  background: linear-gradient(135deg, #1B3E58 0%, #3D8287 55%, #4D9F9C 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.what-grid__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-600);
  margin: 0;
  font-weight: 450;
  max-width: 480px;
}
.btn--what-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2C616E, #3D8287 55%, #4D9F9C);
  color: #fff;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 12px;
  box-shadow:
    0 12px 24px -8px rgba(27,62,88,0.40),
    inset 0 1px 0 0 rgba(255,255,255,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--what-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px -8px rgba(27,62,88,0.50),
    inset 0 1px 0 0 rgba(255,255,255,0.28);
}
.btn--what-cta svg { transition: transform 0.2s ease; }
.btn--what-cta:hover svg { transform: translateX(3px); }

/* Card grid 2x2 */
.what-grid__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.wfeat {
  display: flex; flex-direction: column;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 20px;
  box-shadow:
    0 22px 44px -24px rgba(27,62,88,0.14),
    0 6px 14px -8px rgba(27,62,88,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wfeat:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 60px -24px rgba(27,62,88,0.22),
    0 10px 20px -8px rgba(27,62,88,0.10);
}
.wfeat__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: #2C616E;
}
.wfeat__icon--teal { background: linear-gradient(135deg, #CBDDDC, rgba(203,221,220,0.55)); }
.wfeat__icon--mint { background: linear-gradient(135deg, rgba(159,224,222,0.55), rgba(203,221,220,0.65)); color: #2C616E; }
.wfeat__icon--blue { background: linear-gradient(135deg, rgba(80,197,191,0.30), rgba(203,221,220,0.55)); color: #1B3E58; }
.wfeat h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.wfeat p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-500);
  margin: 0;
  font-weight: 450;
}

/* Stat-style card (4th cell) */
.wfeat--stat {
  background: linear-gradient(135deg, #2C616E 0%, #3D8287 60%, #4D9F9C 100%);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wfeat--stat::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(203,221,220,0.40), transparent 70%);
  filter: blur(10px);
}
.wfeat__big {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff, #CBDDDC);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.wfeat--stat h4 {
  color: #fff;
  position: relative; z-index: 1;
}
.wfeat--stat p {
  color: rgba(255,255,255,0.78);
  position: relative; z-index: 1;
}

/* Healthcare partners — light bg */
.what-partners {
  display: flex; flex-direction: column; align-items: center;
  gap: 22px;
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--ink-100);
}
.what-partners__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.what-partners__row {
  display: flex; align-items: center; justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.what-partners__row img {
  height: 48px; width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.what-partners__row img:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 20px rgba(61,130,135,0.25));
}

/* Responsive */
@media (max-width: 1024px) {
  .what-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .what-grid__desc { max-width: 100%; }
}
@media (max-width: 640px) {
  .section--what { padding: 72px 0 64px; }
  .what-grid__cards { grid-template-columns: 1fr; }
  .what-partners__row { gap: 28px; }
  .what-partners__row img { height: 36px; padding: 5px 12px; }
}

/* ---------- BENEFITS ---------- */

/* 8 Episodes — single-line display */
.ep-banner {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 760px;
}
.ep-banner__line {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink-900);
  margin: 0 0 10px;
  white-space: nowrap;
}
.ep-banner__line .grad {
  font-size: 1.4em;
  vertical-align: -0.05em;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ep-banner__sub {
  font-size: 15px;
  color: var(--ink-500);
  max-width: 560px;
  margin: 0 auto;
}

/* Section title (clean, centered, no pill) */
.benefits__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.benefits__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.benefits__sub {
  color: var(--ink-500);
  font-size: 17px;
  max-width: 560px; margin: 0 auto;
}

/* Benefits stack with vertical numbered rail */
.brows {
  position: relative;
  max-width: 1140px; margin: 0 auto;
}
/* Brand teal gradient timeline rail (now connects 2 numbers) */
.brows::before {
  content: ""; position: absolute;
  left: 27px; top: 60px; bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-400), var(--teal-500));
  opacity: 0.4;
  border-radius: 999px;
  z-index: 0;
}

.brow {
  display: grid; grid-template-columns: 64px 1fr 1fr; gap: 56px; align-items: center;
  margin-bottom: 140px;
  position: relative;
}
.brow:last-child { margin-bottom: 0; }

.brow__rail {
  position: relative; z-index: 1;
  align-self: start;
  padding-top: 30px;
}
.brow__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink-200);
  color: var(--ink-400);
  font-size: 18px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow:
    0 8px 20px -6px rgba(27,62,88,0.12),
    0 0 0 6px rgba(255,255,255,1);
  transition: all .35s ease;
}
/* Active brow — cyan gradient circle */
.brow.is-active .brow__num--teal  {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  border-color: transparent;
  box-shadow: 0 12px 28px -6px rgba(31,167,165,0.45), 0 0 0 6px rgba(255,255,255,1);
  transform: scale(1.05);
}
.brow.is-active .brow__num--mint  {
  color: #fff;
  background: linear-gradient(135deg, #1A8E8C, #50C5BF);
  border-color: transparent;
  box-shadow: 0 12px 28px -6px rgba(80,197,191,0.45), 0 0 0 6px rgba(255,255,255,1);
  transform: scale(1.05);
}
.brow.is-active .brow__num--coral {
  color: #fff;
  background: linear-gradient(135deg, var(--coral-600), var(--coral-500));
  border-color: transparent;
  box-shadow: 0 12px 28px -6px rgba(248,99,66,0.4), 0 0 0 6px rgba(255,255,255,1);
  transform: scale(1.05);
}
/* Inactive brow — navy outline (per spec) */
.brow:not(.is-active) .brow__num {
  color: var(--navy-500);
  border-color: var(--navy-100);
  background: var(--white);
}

/* Image media with premium gradient border + glassmorphism */
/* (Old .brow__media / .brow__frame / .brow__support / .brow__floater
    replaced by the .journey card layout further below.) */

/* Body content */
.brow__body { padding: 16px 0; }
.brow h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.brow__lead {
  font-size: 16.5px; color: var(--ink-600);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
  font-weight: 400;
}
.brow__pts {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px;
}
.brow__pts li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--ink-800);
  font-weight: 500;
}
.brow__check {
  width: 26px; height: 26px; border-radius: 999px;
  background: linear-gradient(135deg, #F0FBFB, #D5F4F4);
  color: var(--teal-700);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31,167,165,0.18);
}

/* Conditions — clean 2-column list, no pills */
.brow__conds {
  margin-bottom: 36px;
  padding-top: 4px;
  border-top: 1px solid var(--ink-100);
  padding-top: 24px;
}
.brow__condlabel {
  display: block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.brow__condlist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
}
.brow__condlist li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--ink-800);
  font-weight: 500;
  line-height: 1.3;
}
.brow__condlist li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--teal-500);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(31,167,165,0.12);
}
.brow[data-accent="mint"]  .brow__condlist li::before { background: #50C5BF; box-shadow: 0 0 0 3px rgba(80,197,191,0.15); }
.brow[data-accent="coral"] .brow__condlist li::before { background: var(--coral-500); box-shadow: 0 0 0 3px rgba(255,122,89,0.15); }

/* Partner — minimal elegant */
.brow__partner {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-bottom: 32px;
}
.brow__partnerlabel {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-400);
}
.brow__partnerlogo {
  height: 38px; width: auto;
}

/* ---------- BENEFIT JOURNEY (alternating content + visual journey card) ---------- */
.benefit2 {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  align-items: center;
  margin: 72px 0 32px;
}
.benefit2--reverse .benefit2__visual { order: 1; }
.benefit2--reverse .benefit2__content { order: 2; }

.benefit2__content { padding: 8px 0; }
.benefit2__tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-100);
  margin-bottom: 16px;
}
.benefit2__tag--mint { background: var(--mint-50); color: var(--teal-700); border-color: var(--mint-100); }
.benefit2__title {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--ink-900);
  margin: 0 0 18px;
}
.benefit2__desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0 0 14px;
  max-width: 480px;
}
.benefit2__notes {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.benefit2__notes li {
  font-size: 13px; color: var(--ink-500);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.benefit2__notes li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 4px; height: 4px; border-radius: 999px;
  background: var(--ink-300);
}
.benefit2__partner {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.benefit2__partnerlabel {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-400);
}
.benefit2__partnerlogo { height: 72px; width: auto; }

/* Premium support badge */
.support-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 14px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  border-left: 4px solid var(--teal-500);
  box-shadow:
    0 16px 32px -18px rgba(31,41,55,0.14),
    inset 0 1px 0 0 rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.support-badge--mint  { border-left-color: var(--mint-500); }
.support-badge__icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  color: var(--teal-600);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31,167,165,0.18);
}
.support-badge--mint .support-badge__icon {
  background: linear-gradient(135deg, var(--mint-50), var(--mint-100));
  color: var(--teal-600);
  box-shadow: inset 0 0 0 1px rgba(80,197,191,0.25);
}
.support-badge__body { display: flex; flex-direction: column; gap: 2px; }
.support-badge__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
}
.support-badge__amt {
  font-size: 14px; color: var(--ink-700); font-weight: 500;
  display: flex; align-items: baseline; gap: 6px;
}
.support-badge__amt strong {
  font-size: 24px; font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.support-badge--mint .support-badge__amt strong {
  background: linear-gradient(135deg, var(--teal-600), var(--mint-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Benefit hero image (right side of benefit row) */
.benefit2__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-width: 420px;
  margin-left: auto;
  background: var(--ink-50);
  box-shadow:
    0 40px 80px -32px rgba(31,41,55,0.22),
    0 12px 24px -8px rgba(31,41,55,0.08),
    inset 0 0 0 1px rgba(31,41,55,0.04);
}
.benefit2--reverse .benefit2__image { margin-left: 0; margin-right: auto; }
.benefit2__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.benefit2__imagebadge {
  position: absolute; top: 22px; right: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 10px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-900);
  box-shadow:
    0 14px 28px -10px rgba(31,41,55,0.22),
    0 4px 10px -2px rgba(31,41,55,0.08);
}
.benefit2__imagebadgeicon {
  width: 26px; height: 26px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  color: var(--teal-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.benefit2__imagebadgeicon--mint {
  background: linear-gradient(135deg, var(--mint-50), var(--mint-100));
  color: var(--teal-700);
}

/* Horizontal Healthcare Journey card (full width, below each benefit) */
.hjourney {
  margin: 8px auto 88px;
  max-width: 1140px;
  padding: 36px 40px 32px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 28px;
  box-shadow:
    0 28px 56px -28px rgba(31,41,55,0.16),
    inset 0 1px 0 0 rgba(255,255,255,0.8);
  position: relative; overflow: hidden;
}
.hjourney::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-primary);
}
.hjourney[data-accent="mint"]::before {
  background: linear-gradient(135deg, var(--mint-500), var(--teal-600));
}
.hjourney__header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ink-100);
}
.hjourney__pretitle {
  display: block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 4px;
}
.hjourney__title {
  display: block;
  font-size: 22px; font-weight: 800; color: var(--ink-900);
  letter-spacing: -0.015em;
}
.hjourney__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  padding-top: 22px;
}
/* connecting dashed line across the row */
.hjourney__steps::before {
  content: "";
  position: absolute;
  top: 18px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background-image: repeating-linear-gradient(to right, var(--teal-300) 0 5px, transparent 5px 11px);
  z-index: 0;
}
.hjourney[data-accent="mint"] .hjourney__steps::before {
  background-image: repeating-linear-gradient(to right, var(--mint-200) 0 5px, transparent 5px 11px);
}
.hstep {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative; z-index: 1;
}
.hstep__num {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  color: #fff;
  font-size: 13px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -4px rgba(31,167,165,0.45), 0 0 0 6px #fff;
  margin-top: -22px;
  margin-bottom: 14px;
}
.hjourney[data-accent="mint"] .hstep__num {
  background: linear-gradient(135deg, var(--teal-600), var(--mint-500));
  box-shadow: 0 6px 14px -4px rgba(80,197,191,0.45), 0 0 0 6px #fff;
}
.hstep__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  color: var(--teal-700);
  display: grid; place-items: center;
  margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px rgba(31,167,165,0.15);
}
.hjourney[data-accent="mint"] .hstep__icon {
  background: linear-gradient(135deg, var(--mint-50), var(--mint-100));
  color: var(--teal-700);
  box-shadow: inset 0 0 0 1px rgba(80,197,191,0.22);
}
.hstep h4 {
  font-size: 15px; font-weight: 700; color: var(--ink-900);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hstep p {
  font-size: 13px; color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
}

/* ============================================================
   HEALTHCARE ACCESS EXPERIENCE — trust clarification
   Two-card layout explaining WeKongsi vs HEYDOC Health roles.
   Dark healthcare image backdrop, white cards.
   ============================================================ */
.section--access {
  position: relative;
  padding: 72px 0 78px;
  background:
    linear-gradient(180deg, rgba(27,62,88,0.88) 0%, rgba(27,62,88,0.82) 50%, rgba(27,62,88,0.90) 100%),
    url('common.jpg') center/cover no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}
.section--access::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 40% at 12% 18%, rgba(77,159,156,0.22) 0%, transparent 60%),
    radial-gradient(40% 35% at 92% 88%, rgba(203,221,220,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.section--access .container { position: relative; z-index: 1; }

.access__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}
.access__head .eyebrow {
  color: rgba(203,221,220,0.85);
}
.access__title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 10px 0 12px;
  color: #fff;
  white-space: nowrap;
}
.access__title .grad {
  background: linear-gradient(135deg, #CBDDDC, #4D9F9C 60%, #CBDDDC);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.access__lead {
  font-size: 15.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin: 0;
  white-space: nowrap;
}

/* Two-card pair */
.access__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.access-card {
  position: relative;
  padding: 36px 36px 34px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 22px;
  box-shadow:
    0 28px 56px -28px rgba(0,0,0,0.30),
    0 8px 20px -10px rgba(0,0,0,0.18),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.access-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 36px 72px -28px rgba(0,0,0,0.36),
    0 12px 26px -10px rgba(0,0,0,0.22),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
}

/* Logo at top of each card — frameless, balanced sizing */
.access-card__logo {
  display: flex; align-items: center;
  margin-bottom: 24px;
  align-self: flex-start;
}
.access-card__logo img {
  height: 60px; width: auto;
  display: block;
}
.access-card--hd .access-card__logo img { height: 60px; }

.access-card__copy {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-600);
  margin: 0;
  font-weight: 450;
  letter-spacing: -0.005em;
}
/* Brand-colored emphasis: WeKongsi = dark teal, HEYDOC = dark navy */
.access-card--wk .access-card__copy strong {
  font-weight: 700;
  color: #2C616E;
}
.access-card--hd .access-card__copy strong {
  font-weight: 700;
  color: #1B3E58;
}

/* Center bridge — visual connection between the two cards */
.access__bridge {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 72px;
}
.access__bridge-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background:
    repeating-linear-gradient(90deg, rgba(203,221,220,0.55) 0 6px, transparent 6px 12px);
  transform: translateY(-50%);
}
.access__bridge-node {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4D9F9C, #3D8287, #2C616E);
  color: #fff;
  display: grid; place-items: center;
  box-shadow:
    0 10px 22px -6px rgba(0,0,0,0.45),
    inset 0 1px 0 0 rgba(255,255,255,0.30),
    inset 0 0 0 1px rgba(255,255,255,0.20),
    0 0 0 5px rgba(255,255,255,0.18);
  z-index: 1;
}

/* Bottom caption — small reassurance line under the cards */
.access__foot {
  margin-top: 36px;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.access__foot-title {
  font-size: 16.5px; font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.access__foot-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .section--access { padding: 56px 0 64px; }
  .access__title { white-space: normal; font-size: clamp(22px, 5vw, 28px); }
  .access__lead { white-space: normal; max-width: 520px; margin-left: auto; margin-right: auto; }
  .access__pair {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 18px;
  }
  .access__head { margin-bottom: 32px; }
  .access-card { padding: 28px 26px; }
}

/* ============================================================
   BENEFITS — STORY CARD REDESIGN
   Premium healthtech onboarding feel — one card per benefit,
   integrated visual healthcare journey, no separate timeline.
   ============================================================ */

/* Section-level warm tint + soft decorative backdrop */
#benefits {
  /* Refined palette mixed into the section — sophisticated teal range */
  --b-navy: #1B3E58;
  --b-deep: #2C616E;
  --b-med:  #3D8287;
  --b-turq: #4D9F9C;
  --b-soft: #CBDDDC;

  background: #fff;
  overflow: hidden;
}

/* --- Section hero with annual allocation pill --- */
.bhero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.bhero__title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 14px 0 16px;
  color: var(--ink-900);
}
.bhero__title .grad {
  background: linear-gradient(135deg, #1B3E58 0%, #2C616E 35%, #3D8287 70%, #4D9F9C 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.bhero__lead {
  font-size: 17px; color: var(--ink-500);
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 580px;
}
.bhero__ep {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 22px 44px 24px;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(77,159,156,0.20) 0%, rgba(203,221,220,0.35) 40%, transparent 75%),
    linear-gradient(180deg, #fff, rgba(203,221,220,0.55));
  border-radius: 28px;
  border: 1px solid rgba(77,159,156,0.32);
  box-shadow:
    0 40px 80px -28px rgba(27,62,88,0.30),
    0 8px 20px -4px rgba(61,130,135,0.18),
    inset 0 1px 0 0 rgba(255,255,255,0.95);
  position: relative;
  overflow: hidden;
}
.bhero__ep::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(77,159,156,0.36), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.bhero__ep::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27,62,88,0.20), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.bhero__ep > * { position: relative; z-index: 1; }
.bhero__ep-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 10px;
}
.bhero__ep-line {
  display: flex; align-items: baseline; gap: 14px;
  white-space: nowrap;
}
.bhero__ep-prefix,
.bhero__ep-suffix {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700; color: var(--ink-900);
  letter-spacing: -0.015em;
}
.bhero__ep-num {
  font-size: clamp(64px, 8.5vw, 92px);
  font-weight: 800;
  background: linear-gradient(135deg, #1B3E58 0%, #2C616E 30%, #3D8287 65%, #4D9F9C 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 0.9;
  letter-spacing: -0.045em;
  filter: drop-shadow(0 8px 20px rgba(61,130,135,0.40));
}
.bhero__ep-sub {
  font-size: 13.5px; color: var(--ink-500); margin: 10px 0 0;
}

/* --- Benefit block: split hero (image + content) above 3 info cards --- */
.bblock {
  margin: 0 0 96px;
  position: relative;
}
.bblock:last-of-type { margin-bottom: 24px; }

.bhero-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 36px;
}
.bhero-split--reverse {
  grid-template-columns: 1fr 1.15fr;
}
.bhero-split--reverse .bhero-split__image { order: -1; }

.bhero-split__content {
  display: flex; flex-direction: column;
  padding: 8px 0;
}
.bhero-split__tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: linear-gradient(135deg, #fff, rgba(203,221,220,0.65));
  color: #2C616E;
  border: 1px solid rgba(77,159,156,0.35);
  box-shadow:
    0 6px 14px -6px rgba(61,130,135,0.30),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.bhero-split__tag::before {
  content: "";
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, #2C616E, #4D9F9C);
  box-shadow: 0 0 0 3px rgba(77,159,156,0.22);
}
.bhero-split__tag--mint {
  background: linear-gradient(135deg, #fff, rgba(203,221,220,0.55));
  border-color: rgba(61,130,135,0.32);
  box-shadow:
    0 6px 14px -6px rgba(77,159,156,0.30),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
}
.bhero-split__tag--mint::before {
  background: linear-gradient(135deg, #4D9F9C, #2C616E);
  box-shadow: 0 0 0 3px rgba(61,130,135,0.22);
}
.bhero-split__title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--ink-900);
}
.bhero-split__copy {
  font-size: 16.5px; line-height: 1.7;
  color: var(--ink-600);
  font-weight: 450;
  margin: 0 0 14px;
  max-width: 520px;
}
.bhero-split__copy:last-of-type { margin-bottom: 0; }

/* Image side */
.bhero-split__image {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 460px;
  justify-self: end;
  align-self: center;
  width: 100%;
}
.bhero-split--reverse .bhero-split__image { justify-self: start; }
.bhero-split__photo {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--ink-50);
  box-shadow:
    0 60px 100px -40px rgba(31,167,165,0.30),
    0 16px 32px -10px rgba(31,41,55,0.10),
    inset 0 0 0 1px rgba(31,41,55,0.04);
}
.bhero-split__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Legacy: image with single badge inside (Clinic Visit) */
.bhero-split__image > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 32px;
  box-shadow:
    0 60px 100px -40px rgba(31,167,165,0.30),
    0 16px 32px -10px rgba(31,41,55,0.10),
    inset 0 0 0 1px rgba(31,41,55,0.04);
}
.bhero-split__badge {
  position: absolute; top: 22px; left: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 10px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700; color: var(--ink-900);
  letter-spacing: 0.02em;
  box-shadow:
    0 14px 28px -10px rgba(31,41,55,0.22),
    0 4px 10px -2px rgba(31,41,55,0.06);
}
.bhero-split__badge-dot {
  width: 26px; height: 26px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.bhero-split__badge-dot--mint {
  background: linear-gradient(135deg, var(--mint-500), var(--teal-500));
}

/* Floating overlays on telemedicine photo — solid white, no glass */
.tele-overlay {
  position: absolute;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 10px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  font-size: 12.5px; font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.005em;
  white-space: nowrap;
  box-shadow:
    0 20px 40px -14px rgba(31,41,55,0.22),
    0 4px 10px -2px rgba(31,41,55,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.7);
  z-index: 2;
}
.tele-overlay__icon {
  width: 28px; height: 28px; border-radius: 10px;
  background: linear-gradient(135deg, #2C616E, #3D8287, #4D9F9C);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.tele-overlay__icon--mint {
  background: linear-gradient(135deg, #4D9F9C, #3D8287);
}
.tele-overlay--1 { top: 28px; left: -22px; }
.tele-overlay--2 { top: 48%; right: -28px; transform: translateY(-50%); }
.tele-overlay--3 { bottom: 36px; left: -16px; }

/* Premium amount card */
.amount-card {
  display: inline-flex; align-items: center; gap: 14px;
  align-self: flex-start;
  padding: 16px 26px 16px 14px;
  background: #fff;
  border: 1px solid rgba(77,159,156,0.22);
  border-left: 5px solid #3D8287;
  border-radius: 20px;
  margin: 26px 0 22px;
  box-shadow:
    0 30px 56px -28px rgba(27,62,88,0.35),
    0 6px 14px -4px rgba(61,130,135,0.18),
    0 1px 2px 0 rgba(31,41,55,0.04),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}
.amount-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 140% at 0% 50%, rgba(77,159,156,0.14) 0%, transparent 55%),
    radial-gradient(80% 120% at 100% 0%, rgba(203,221,220,0.30) 0%, transparent 60%);
  pointer-events: none;
}
.amount-card--mint { border-left-color: #4D9F9C; border-color: rgba(61,130,135,0.28); }
.amount-card--mint {
  box-shadow:
    0 30px 56px -28px rgba(61,130,135,0.40),
    0 6px 14px -4px rgba(77,159,156,0.18),
    0 1px 2px 0 rgba(31,41,55,0.04),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
}
.amount-card--mint::before {
  background:
    radial-gradient(120% 140% at 0% 50%, rgba(77,159,156,0.16) 0%, transparent 55%),
    radial-gradient(80% 120% at 100% 0%, rgba(27,62,88,0.08) 0%, transparent 60%);
}
.amount-card__icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, #2C616E 0%, #3D8287 55%, #4D9F9C 100%);
  color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow:
    0 8px 18px -6px rgba(27,62,88,0.50),
    inset 0 1px 0 0 rgba(255,255,255,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.18);
  position: relative; z-index: 1;
}
.amount-card--mint .amount-card__icon {
  background: linear-gradient(135deg, #4D9F9C, #3D8287, #2C616E);
  box-shadow:
    0 8px 18px -6px rgba(61,130,135,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.18);
}
.amount-card__body {
  display: flex; flex-direction: column; gap: 2px;
  position: relative; z-index: 1;
}
.amount-card__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-600);
}
.amount-card__val {
  font-size: 14px; color: var(--ink-800);
  font-weight: 500;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.amount-card__val strong {
  font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, #1B3E58, #3D8287 55%, #4D9F9C);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.amount-card--mint .amount-card__val strong {
  background: linear-gradient(135deg, #2C616E, #4D9F9C);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Horizontal support row: amount card + partner side by side */
.bhero-split__support {
  display: flex; align-items: center;
  gap: 28px; flex-wrap: wrap;
  margin-top: 26px;
}
.bhero-split__support .amount-card { margin: 0; }

/* Partner inline line */
.partner-line {
  display: flex; flex-direction: column; gap: 8px;
}
.partner-line__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-400);
}
.partner-line__logo { height: 56px; width: auto; align-self: flex-start; }

/* --- Diagnosis preview (Clinic Visit) --- */
.diag-preview {
  margin: 0;
  padding: 28px 30px 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  box-shadow:
    0 28px 56px -28px rgba(31,41,55,0.18),
    0 6px 14px -6px rgba(31,41,55,0.08),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.diag-preview:hover {
  transform: translateY(-2px);
  box-shadow:
    0 36px 72px -28px rgba(31,41,55,0.22),
    0 10px 22px -8px rgba(31,41,55,0.10),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
}
.diag-preview__head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(77,159,156,0.25);
}
.diag-preview__count {
  font-size: 44px; font-weight: 800;
  background: linear-gradient(135deg, #1B3E58 0%, #3D8287 55%, #4D9F9C 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.05em;
  line-height: 1;
  filter: drop-shadow(0 6px 14px rgba(61,130,135,0.40));
}
.diag-preview__title {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.diag-preview__sub {
  display: block;
  font-size: 12.5px; color: var(--ink-500);
  margin-top: 3px;
  letter-spacing: 0;
  font-weight: 500;
}
.diag-preview__list {
  list-style: none; padding: 0;
  margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
}
.diag-preview__list li {
  font-size: 13.5px; color: var(--ink-800);
  font-weight: 500;
  display: flex; align-items: center; gap: 9px;
  line-height: 1.4;
}
.diag-preview__list li::before {
  content: "";
  width: 18px; height: 18px; border-radius: 999px;
  background:
    linear-gradient(135deg, #4D9F9C, #3D8287);
  box-shadow:
    0 4px 10px -3px rgba(61,130,135,0.45),
    inset 0 1px 0 0 rgba(255,255,255,0.30);
  flex-shrink: 0;
  position: relative;
}
.diag-preview__list li {
  position: relative;
}
.diag-preview__list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 50%;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(-45deg);
}
.diag-preview__list--more {
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.diag-preview[data-state="expanded"] .diag-preview__list--more {
  max-height: 400px;
  opacity: 1;
}
.diag-preview__actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(77,159,156,0.40);
}
.diag-preview__toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; padding: 0;
  font-family: inherit;
  font-size: 13px; font-weight: 700;
  color: #2C616E;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.diag-preview__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-500);
  text-decoration: none;
  transition: color 0.2s ease;
}
.diag-preview__link:hover { color: #2C616E; }
.diag-preview__link svg { transition: transform 0.2s ease; }
.diag-preview__link:hover svg { transform: translateX(2px); }
.diag-preview__toggle:hover { color: var(--teal-600); }
.diag-preview__toggle svg { transition: transform 0.3s ease; }
.diag-preview[data-state="expanded"] .diag-preview__toggle svg { transform: rotate(180deg); }
.diag-preview__toggle-expanded { display: none; }
.diag-preview[data-state="expanded"] .diag-preview__toggle-collapsed { display: none; }
.diag-preview[data-state="expanded"] .diag-preview__toggle-expanded { display: inline; }

/* --- Compact info cards below each benefit hero --- */
.info-cards {
  display: grid;
  gap: 20px;
  margin-top: 12px;
  align-items: stretch;
}
.info-cards--2col { grid-template-columns: 1fr 1.4fr; }
.info-cards--3col { grid-template-columns: 1fr 1fr 1.4fr; }

.info-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow:
    0 28px 56px -28px rgba(31,41,55,0.18),
    0 6px 14px -6px rgba(31,41,55,0.08),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3D8287, #4D9F9C, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 40px 80px -28px rgba(61,130,135,0.32),
    0 12px 24px -8px rgba(27,62,88,0.10),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
}
.info-card:hover::after { opacity: 1; }
.info-card--notes {
  background:
    linear-gradient(180deg, var(--ink-50), #fff 85%);
  box-shadow:
    0 18px 36px -22px rgba(31,41,55,0.08),
    inset 0 1px 0 0 rgba(255,255,255,0.8);
}
.info-card--howitworks {
  background: #fff;
  border-color: var(--ink-100);
  box-shadow:
    0 28px 56px -28px rgba(31,41,55,0.18),
    0 6px 14px -6px rgba(31,41,55,0.08),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
}
.info-card__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink-900);
  margin-bottom: 22px;
}
.info-card__label::before {
  content: "";
  width: 22px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, #2C616E, #4D9F9C);
}
.bblock[data-accent="mint"] .info-card__label::before {
  background: linear-gradient(90deg, #4D9F9C, #2C616E);
}
.info-card--notes .info-card__label { color: #2C616E; }
.info-card--notes .info-card__label::before {
  background: linear-gradient(90deg, #CBDDDC, #B4BCC4);
}
.info-card__hint {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.55;
  font-weight: 500;
}

/* Compact horizontal process strip (How It Works) */
.process-strip {
  list-style: none; padding: 4px 0; margin: 0;
  display: flex; align-items: flex-start;
  gap: 6px;
  flex-grow: 1;
}
.pstep {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 12px;
}
.pstep__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #2C616E 0%, #3D8287 55%, #4D9F9C 100%);
  color: #fff;
  display: grid; place-items: center;
  box-shadow:
    0 12px 22px -8px rgba(61,130,135,0.50),
    inset 0 1px 0 0 rgba(255,255,255,0.30),
    inset 0 0 0 1px rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.info-card--howitworks:hover .pstep__icon { transform: translateY(-2px); }
.pstep__arrow { color: #4D9F9C; opacity: 0.7; }
.pstep__name {
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-800);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.pstep__arrow {
  flex: 0 0 auto;
  display: grid; place-items: center;
  color: var(--teal-300);
  margin-top: 15px;
}

/* Checkmark list (Card 2) */
.check-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink-800);
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding-left: 30px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3D8287, #4D9F9C);
  box-shadow:
    0 6px 12px -4px rgba(61,130,135,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.30);
  flex-shrink: 0;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5.5px; top: 8px;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.bblock[data-accent="mint"] .check-list li::before {
  background: linear-gradient(135deg, #4D9F9C, #2C616E);
  box-shadow:
    0 6px 12px -4px rgba(77,159,156,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.30);
}

/* Dot list (Card 3 — muted notes) */
.dot-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.dot-list li {
  font-size: 13.5px; color: var(--ink-600);
  font-weight: 500;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.dot-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--ink-400);
}

/* Responsive */
@media (max-width: 1024px) {
  .bblock { margin-bottom: 72px; }
  .bhero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 28px;
  }
  .bhero-split--reverse .bhero-split__image { order: 0; }
  .bhero-split__image,
  .bhero-split--reverse .bhero-split__image {
    justify-self: center; max-width: 520px; aspect-ratio: 4 / 3;
  }
  .bhero { margin-bottom: 56px; }
  .info-cards--2col { grid-template-columns: 1fr; }
  .info-cards--3col {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "ben notes"
      "diag diag";
  }
  .info-cards--3col .info-card--benefits { grid-area: ben; }
  .info-cards--3col .info-card--notes { grid-area: notes; }
  .info-cards--3col .diag-preview { grid-area: diag; }
  /* Floating overlays — pull inside image bounds on tablet */
  .tele-overlay--1 { left: 14px; }
  .tele-overlay--2 { right: 14px; }
  .tele-overlay--3 { left: 14px; }
}
@media (max-width: 768px) {
  .bhero__ep { padding: 18px 28px 20px; }
  .bhero__ep-line { flex-direction: column; gap: 0; align-items: center; }
  .bhero__ep-suffix { font-size: 17px; }
  .bhero-split__image { max-width: 100%; aspect-ratio: 4 / 4; }
  .bhero-split__photo { border-radius: 24px; }
  .bhero-split__badge { top: 14px; left: 14px; font-size: 12px; padding: 8px 14px 8px 8px; }
  .tele-overlay { font-size: 11.5px; padding: 8px 14px 8px 8px; }
  .tele-overlay__icon { width: 24px; height: 24px; }
  .tele-overlay--1 { top: 14px; left: 8px; }
  .tele-overlay--2 { right: 6px; }
  .tele-overlay--3 { bottom: 18px; left: 8px; }
  .bhero-split__support { gap: 20px; }
  .amount-card { padding: 12px 18px 12px 12px; gap: 12px; }
  .amount-card__icon { width: 40px; height: 40px; }
  .amount-card__val strong { font-size: 22px; }
  .info-cards--2col,
  .info-cards--3col { grid-template-columns: 1fr; grid-template-areas: none; gap: 14px; }
  .info-card { padding: 22px 22px; }
  .process-strip { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .pstep { flex: 1 1 38%; max-width: 130px; }
  .pstep__arrow { display: none; }
  .diag-preview { padding: 22px; }
  .diag-preview__list { grid-template-columns: 1fr; gap: 10px; }
  .diag-preview__count { font-size: 36px; }
}

/* Vertical journey card */
.vjourney {
  background: #fff;
  border-radius: 28px;
  padding: 28px 32px;
  border: 1px solid var(--ink-100);
  box-shadow:
    0 40px 80px -32px rgba(31,41,55,0.20),
    0 12px 24px -8px rgba(31,41,55,0.06),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
  position: relative; overflow: hidden;
}
.vjourney::before {
  /* subtle gradient accent strip at top */
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
}
.vjourney[data-accent="mint"]::before {
  background: linear-gradient(135deg, var(--mint-500), var(--teal-600));
}
.vjourney__header {
  display: flex; flex-direction: column;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-100);
}
.vjourney__pretitle {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 4px;
}
.vjourney[data-accent="mint"] .vjourney__pretitle { color: var(--teal-700); }
.vjourney__title {
  font-size: 22px; font-weight: 800; color: var(--ink-900);
  letter-spacing: -0.015em;
}
.vjourney__steps {
  list-style: none; padding: 0; margin: 0;
  position: relative;
}
.vstep {
  display: grid; grid-template-columns: 36px 44px 1fr; gap: 14px;
  align-items: flex-start;
  padding: 14px 0 18px;
  position: relative;
}
/* connecting dashed line */
.vstep:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 17px; top: 50px; bottom: -8px;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, var(--teal-200) 0 5px, transparent 5px 10px);
  z-index: 0;
}
.vjourney[data-accent="mint"] .vstep:not(:last-child)::after {
  background-image: repeating-linear-gradient(to bottom, var(--mint-200) 0 5px, transparent 5px 10px);
}
.vstep__num {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  color: #fff;
  font-size: 13px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -4px rgba(31,167,165,0.45);
  position: relative; z-index: 1;
}
.vjourney[data-accent="mint"] .vstep__num {
  background: linear-gradient(135deg, var(--teal-600), var(--mint-500));
  box-shadow: 0 6px 14px -4px rgba(80,197,191,0.45);
}
.vstep__icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  color: var(--teal-700);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31,167,165,0.15);
}
.vjourney[data-accent="mint"] .vstep__icon {
  background: linear-gradient(135deg, var(--mint-50), var(--mint-100));
  color: var(--teal-700);
  box-shadow: inset 0 0 0 1px rgba(80,197,191,0.22);
}
.vstep__body { padding-top: 4px; }
.vstep__body h4 {
  font-size: 15.5px; font-weight: 700; color: var(--ink-900);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.vstep__body p {
  font-size: 13.5px; color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}

/* Compact 17 diagnosis list inside Clinic Visit content */
.diag-block {
  margin-bottom: 28px;
  padding: 20px 22px;
  background: linear-gradient(180deg, var(--mint-50), rgba(255,255,255,0.5));
  border: 1px solid var(--mint-100);
  border-radius: 18px;
}
.diag-block__head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 14px;
}
.diag-block__count {
  font-size: 26px; font-weight: 800; line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--teal-600), var(--mint-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.diag-block__title {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-500);
}
.diag-block__list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  list-style: none; padding: 0; margin: 0;
}
.diag-block__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-700);
  font-weight: 500;
  line-height: 1.35;
}
.diag-block__check {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* "How It Works" horizontal timeline */
.howflow {
  margin: 16px auto 96px;
  max-width: 1100px;
  padding: 28px 36px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow:
    0 14px 32px -16px rgba(31,41,55,0.10),
    inset 0 1px 0 0 rgba(255,255,255,0.7);
}
.howflow__label {
  display: block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-700);
  text-align: center;
  margin-bottom: 18px;
}
.howflow__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.hf {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  min-width: 0;
}
.hf__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  color: var(--teal-700);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(31,167,165,0.18), 0 4px 10px -4px rgba(31,167,165,0.18);
}
.hf--mint .hf__icon {
  background: linear-gradient(135deg, var(--mint-50), var(--mint-100));
  color: var(--teal-700);
  box-shadow: inset 0 0 0 1px rgba(80,197,191,0.22), 0 4px 10px -4px rgba(80,197,191,0.25);
}
.hf__title {
  font-size: 12.5px; font-weight: 600; color: var(--ink-800);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.hf__arrow {
  flex-shrink: 0;
  color: var(--teal-400);
  opacity: 0.7;
  align-self: flex-start;
  margin-top: 16px;
}
.hf__arrow--mint { color: var(--mint-500); }

/* ---------- CO-PAYMENT HERO (Benefits) ---------- */
.cob-hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.cob-hero__title {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.cob-hero__title .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cob-hero__sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-500);
  margin: 0 0 18px;
}
.cob-hero__desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-600);
  margin: 0 0 32px;
  max-width: 540px;
}
.cob-hero__desc strong { color: var(--ink-800); font-weight: 700; }
.cob-hero__image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow:
    0 30px 60px -24px rgba(31,41,55,0.22),
    0 8px 24px -8px rgba(31,41,55,0.08);
  border: 1px solid var(--ink-100);
}
.cob-hero__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Stat cards under hero copy */
.cob-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 560px;
}
.cob-stat {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 20px -12px rgba(31,41,55,0.12),
    inset 0 1px 0 0 rgba(255,255,255,0.7);
}
.cob-stat__icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  color: var(--teal-600);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31,167,165,0.18);
}
.cob-stat__body { display: flex; flex-direction: column; min-width: 0; }
.cob-stat__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
}
.cob-stat__val {
  font-size: 15.5px; font-weight: 700; color: var(--ink-900);
  letter-spacing: -0.01em; line-height: 1.25; margin: 2px 0;
}
.cob-stat__sub {
  font-size: 12.5px; color: var(--ink-500); font-weight: 500;
}

/* 3-column overview grid — Eligible / Covered / Not Covered */
.cob-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.cob-card {
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 320px;
}
.cob-card__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
}
.cob-card__icon {
  width: 38px; height: 38px; border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cob-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin: 0;
}
.cob-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.cob-card li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink-700);
  font-weight: 500;
  line-height: 1.55;
}
.cob-card li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  margin-top: 8px;
  flex-shrink: 0;
}
.cob-card__note {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px; font-weight: 600;
  text-align: center;
}

/* Eligible — warm cream/yellow */
.cob-card--eligible {
  background: #FEF7E3;
  border: 1px solid #FBE7A8;
}
.cob-card--eligible .cob-card__head { border-color: rgba(245,178,46,0.35); }
.cob-card--eligible .cob-card__icon { background: linear-gradient(135deg, #FCE093, #F8D77A); color: #92500F; }
.cob-card--eligible li::before { background: #F4A924; }
.cob-card--eligible .cob-card__note {
  background: rgba(252,224,147,0.55);
  color: #92500F;
}

/* Covered — brand teal */
.cob-card--covered {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
}
.cob-card--covered .cob-card__head { border-color: rgba(31,167,165,0.25); }
.cob-card--covered .cob-card__icon { background: linear-gradient(135deg, var(--teal-100), #BDEDEA); color: var(--teal-700); }
.cob-card--covered li::before { background: var(--teal-500); }

/* Not Covered — warm coral */
.cob-card--notcovered {
  background: var(--coral-50);
  border: 1px solid var(--coral-100);
}
.cob-card--notcovered .cob-card__head { border-color: rgba(248,99,66,0.25); }
.cob-card--notcovered .cob-card__icon { background: linear-gradient(135deg, #FFE5DC, #FFC4B0); color: var(--coral-600); }
.cob-card--notcovered li::before { background: var(--coral-500); }

/* ---------- JOURNEY CARD (Benefits) ---------- */
.journey {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -32px rgba(31,41,55,0.18),
    0 12px 24px -8px rgba(31,41,55,0.06),
    inset 0 1px 0 0 rgba(255,255,255,0.9);
  border: 1px solid var(--ink-100);
}
.journey__hero {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.journey__hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.journey__floater {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(31,41,55,0.2);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-900);
}
.journey__floatericon {
  width: 24px; height: 24px; border-radius: 999px;
  display: grid; place-items: center; flex-shrink: 0;
}
.journey__floatericon--teal { background: linear-gradient(135deg, var(--teal-50), var(--teal-100)); color: var(--teal-700); }
.journey__floatericon--mint { background: linear-gradient(135deg, var(--mint-50), var(--mint-100)); color: var(--teal-600); }

/* orphan legacy .journey/.jstep rules removed — see .jflow + .jstep in final design block */

/* Compact diagnosis list inside the Clinic Visit journey card */
.journey__diag {
  padding: 24px 32px 28px;
  background: linear-gradient(180deg, var(--ink-50), rgba(255,255,255,0.5));
  border-top: 1px solid var(--ink-100);
}
.journey__diaghead {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 16px;
}
.journey__diagcount {
  font-size: 28px; font-weight: 800; line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.journey__diagtitle {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
}
.journey__diaglist {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none; padding: 0; margin: 0;
}
.journey__diaglist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-700); font-weight: 500;
  line-height: 1.4;
}
.journey__diaglist li::before {
  content: "";
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--teal-500);
  flex-shrink: 0;
}

/* Inline static support card (was floating .brow__support) */
.support-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  box-shadow:
    0 16px 32px -16px rgba(31,41,55,0.12),
    inset 0 1px 0 0 rgba(255,255,255,0.7);
  margin-bottom: 24px;
  border-left: 4px solid var(--teal-500);
}
.support-card--mint  { border-left-color: var(--mint-500); }
.support-card--coral { border-left-color: var(--coral-500); }
.support-card__icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  color: var(--teal-700);
  box-shadow: inset 0 0 0 1px rgba(31,167,165,0.18);
}
.support-card--mint  .support-card__icon { background: linear-gradient(135deg, var(--mint-50), var(--mint-100)); color: var(--teal-600); box-shadow: inset 0 0 0 1px rgba(80,197,191,0.25); }
.support-card--coral .support-card__icon { background: linear-gradient(135deg, var(--coral-50), #FFE5DC); color: var(--coral-600); }
.support-card__label {
  display: block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 2px;
}
.support-card__amt {
  font-size: 14px; color: var(--ink-700); font-weight: 500;
  display: flex; align-items: baseline; gap: 6px;
}
.support-card__amt strong {
  font-size: 26px; font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.support-card--mint  .support-card__amt strong { background: linear-gradient(135deg, var(--teal-600), var(--mint-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.support-card--coral .support-card__amt strong { background: linear-gradient(135deg, var(--coral-600), var(--coral-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Important notes list under bullets */
.brow__notes {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.brow__notes li {
  font-size: 13px; color: var(--ink-500);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.brow__notes li::before {
  content: "";
  position: absolute; left: 0; top: 0.65em;
  width: 4px; height: 4px;
  background: var(--ink-300);
  border-radius: 999px;
}

/* Covered Diagnosis — clean premium 2-column list (no pills) */
.diag {
  max-width: 880px; margin: 0 auto 48px;
  padding: 40px 44px;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100);
  box-shadow:
    0 24px 56px -28px rgba(31,41,55,0.16),
    0 4px 12px -4px rgba(31,41,55,0.04);
}
.diag__list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  list-style: none;
  padding: 0; margin: 0;
}
.diag__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 15px;
  color: var(--ink-800);
  font-weight: 500;
  line-height: 1.4;
}
.diag__list li:nth-last-child(-n+2) { border-bottom: 0; }
.diag__check {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  color: var(--teal-600);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31,167,165,0.15);
}

/* Supported Panel Clinics block beneath diagnosis list */
.diag-panel {
  max-width: 880px; margin: 0 auto 48px;
  text-align: center;
  padding: 32px 40px;
  background: linear-gradient(180deg, var(--ink-50) 0%, #fff 100%);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
}
.diag-panel__title {
  font-size: 20px; font-weight: 700; margin-bottom: 10px;
  color: var(--ink-900); letter-spacing: -0.01em;
}
.diag-panel__desc {
  font-size: 14.5px; color: var(--ink-500);
  max-width: 520px; margin: 0 auto 20px; line-height: 1.6;
}
.diag-panel__logo img {
  height: 48px; width: auto; display: inline-block;
}

/* Premium CTA button — navy with cyan icon accent */
.btn-premium {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 8px 8px 26px;
  background: var(--navy-900);
  border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
  box-shadow:
    0 18px 32px -12px rgba(27,62,88,0.45),
    0 6px 12px -3px rgba(27,62,88,0.22),
    inset 0 1px 0 0 rgba(255,255,255,0.08);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-premium::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  opacity: 0; transition: opacity .25s;
}
.btn-premium > * { position: relative; z-index: 1; }
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 40px -12px rgba(27,62,88,0.55),
    0 8px 24px -8px rgba(31,167,165,0.5),
    inset 0 1px 0 0 rgba(255,255,255,0.12);
}
.btn-premium:hover::before { opacity: 1; }
.btn-premium__icon {
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  color: #fff;
  display: grid; place-items: center;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
  box-shadow: 0 4px 12px -2px rgba(31,167,165,0.5);
}
.btn-premium:hover .btn-premium__icon { transform: translateX(3px); box-shadow: 0 6px 16px -2px rgba(31,167,165,0.7); }

/* ---------- TELEMEDICINE GUIDE CAROUSEL ---------- */
.tg {
  display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.tg__visual {
  position: relative;
  display: grid; place-items: center;
}
.tg__phone {
  width: 260px; height: 520px;
  background: linear-gradient(160deg, #1B3E58, #2A4866);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(27,62,88,0.04);
  position: relative;
}
.tg__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #1B3E58;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.tg__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #1B3E58;
}
.tg__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity .45s ease;
}
.tg__slide.is-active { opacity: 1; }

.tg__info {
  max-width: 480px;
}
.tg__counter {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.tg__counter strong { font-size: 14px; font-weight: 800; color: var(--teal-800); }
.tg__counter em { font-style: normal; opacity: 0.65; }
.tg__info h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.tg__info > p {
  font-size: 15.5px;
  color: var(--ink-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 450;
}

/* Helpful note callout */
.tg__note {
  display: flex; gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff, rgba(203,221,220,0.45));
  border: 1px solid rgba(77,159,156,0.25);
  border-left: 4px solid #4D9F9C;
  border-radius: 14px;
  margin-bottom: 26px;
  box-shadow: 0 6px 16px -8px rgba(61,130,135,0.18);
}
.tg__note-icon {
  width: 26px; height: 26px; border-radius: 999px;
  background: linear-gradient(135deg, #2C616E, #4D9F9C);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -4px rgba(27,62,88,0.40);
}
.tg__note-label {
  display: block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #2C616E;
  margin-bottom: 3px;
}
.tg__note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-700);
  font-weight: 500;
}

/* Navigation buttons */
.tg__nav {
  display: flex; align-items: center; gap: 12px;
}
.tg__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.tg__btn--ghost {
  background: #fff;
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
}
.tg__btn--ghost:hover:not(:disabled) {
  color: #2C616E;
  border-color: rgba(77,159,156,0.45);
  transform: translateX(-2px);
}
.tg__btn--ghost:disabled {
  opacity: 0.45; cursor: not-allowed;
}
.tg__btn--primary {
  background: linear-gradient(135deg, #2C616E, #3D8287 55%, #4D9F9C);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  box-shadow:
    0 12px 24px -8px rgba(27,62,88,0.45),
    inset 0 1px 0 0 rgba(255,255,255,0.20);
}
.tg__btn--primary:hover:not(:disabled) {
  transform: translateX(2px) translateY(-1px);
  box-shadow:
    0 16px 32px -8px rgba(27,62,88,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.25);
}
.tg__btn--primary:disabled {
  opacity: 0.45; cursor: not-allowed;
  box-shadow: none;
}

/* ---------- ENROL STEPS — premium icon-led cards ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
  position: relative;
}
/* Soft connecting gradient line under cards */
.steps::before {
  content: "";
  position: absolute; top: 70px; left: 10%; right: 10%;
  height: 2px;
  background-image: repeating-linear-gradient(to right,
    var(--teal-300) 0 6px, transparent 6px 14px);
  opacity: 0.6;
  z-index: 0;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(27,62,88,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow:
    0 14px 32px -16px rgba(27,62,88,0.12),
    0 2px 6px -2px rgba(27,62,88,0.04);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  z-index: 1;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px -20px rgba(44,97,110,0.22),
    0 6px 14px -4px rgba(44,97,110,0.08);
  border-color: rgba(31,167,165,0.25);
}
.step__icon {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #F0FBFB 0%, #D5F4F4 100%);
  color: var(--teal-700);
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow:
    0 10px 24px -10px rgba(44,97,110,0.32),
    inset 0 1px 0 0 rgba(255,255,255,0.7),
    inset 0 0 0 1px rgba(31,167,165,0.15);
  transition: transform .3s;
}
.step:hover .step__icon { transform: scale(1.05) rotate(-2deg); }
.step__num {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 11.5px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(44,97,110,0.35);
  border: 2px solid #fff;
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.step p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.6;
}
.step p + p { margin-top: 8px; }

/* Day badge sits above the icon to show timeline position */
.step__day {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-700);
  background: linear-gradient(135deg, #E8F8F7 0%, #D2F0EE 100%);
  border: 1px solid rgba(31,167,165,0.28);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px -4px rgba(44,97,110,0.18);
}
.step__day--soft {
  color: var(--ink-700);
  background: rgba(27,62,88,0.06);
  border-color: rgba(27,62,88,0.12);
  box-shadow: none;
}
.step__day--accent {
  color: #fff;
  background: var(--grad-primary);
  border-color: transparent;
  box-shadow: 0 6px 14px -4px rgba(44,97,110,0.40);
}

.step__hint {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(31,167,165,0.08);
  border-left: 3px solid rgba(31,167,165,0.45);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.55;
}

.step__checks {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.step__checks li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-700);
  line-height: 1.5;
}
.step__checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--grad-primary);
  box-shadow: 0 3px 7px -2px rgba(44,97,110,0.40);
}
.step__checks li::after {
  content: "";
  position: absolute;
  left: 3.5px; top: 6.5px;
  width: 7px; height: 4px;
  border-left: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: rotate(-45deg);
}

/* Important Information compact card */
.enrol-info {
  margin: 36px auto 0;
  max-width: 1080px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid rgba(27,62,88,0.08);
  border-radius: 16px;
  box-shadow: 0 14px 30px -22px rgba(27,62,88,0.18);
}
.enrol-info__title {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.enrol-info__icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E8F8F7 0%, #D2F0EE 100%);
  color: var(--teal-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.enrol-info__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 28px;
}
.enrol-info__list li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-600);
  line-height: 1.6;
}
.enrol-info__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--teal-500, #1FA7A5);
}
.enrol-info__list li strong { color: var(--ink-900); font-weight: 700; }

@media (max-width: 1024px) {
  .enrol-info__list { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   ENROLMENT SECTION — navy-overlay backdrop + glassmorphism steps
   ============================================================ */
.section--enrol-bg {
  position: relative;
  background: linear-gradient(135deg, #001747 0%, #002B72 45%, #004F73 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.section--enrol-bg::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(77,197,184,0.28), transparent 65%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.section--enrol-bg::after {
  content: "";
  position: absolute;
  bottom: -140px; left: -120px;
  width: 360px; height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,134,130,0.35), transparent 65%);
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}
.section--enrol-bg .container { position: relative; z-index: 1; }
.section--enrol-bg .section__head h2 { color: #fff; }
.section--enrol-bg .section__head .lead { color: rgba(255,255,255,0.78); }
.section--enrol-bg .eyebrow--glass {
  background: rgba(77,197,184,0.16);
  border: 1px solid rgba(77,197,184,0.32);
  color: var(--tk-light);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.section--enrol-bg .grad-light {
  background: linear-gradient(135deg, var(--tk-light), #CBE9E5);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Timeline-style activation steps (white cards on dark backdrop) */
.steps--timeline {
  position: relative;
  padding-top: 32px;
}
/* Hide the base dashed connector — we render a richer timeline line below */
.steps--timeline::before { display: none; }
/* Continuous gradient timeline running across the day-chip row */
.steps--timeline::after {
  content: "";
  position: absolute;
  top: 46px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: linear-gradient(to right,
    rgba(77,197,184,0.55) 0%,
    var(--tk-light) 50%,
    rgba(77,197,184,0.55) 100%);
  border-radius: 2px;
  z-index: 0;
}
.steps--timeline .step {
  padding-top: 22px;
  box-shadow:
    0 24px 50px -22px rgba(0,0,0,0.55),
    0 6px 14px -6px rgba(0,0,0,0.30);
}
.steps--timeline .step:hover {
  box-shadow:
    0 32px 60px -22px rgba(0,0,0,0.60),
    0 10px 22px -8px rgba(0,134,130,0.20);
  border-color: rgba(31,167,165,0.30);
}

/* Day chip — connected timeline node, centered above each card */
.steps--timeline .step__day {
  position: relative;
  z-index: 2;
  align-self: center;
  margin: -42px 0 18px;
  padding: 7px 16px;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  border: 2px solid var(--tk-navy);
  border-radius: 999px;
  box-shadow:
    0 10px 22px -6px rgba(77,197,184,0.55),
    0 0 0 4px rgba(0,34,97,0.40);
}
/* Day 90 highlight — slightly bigger, brighter */
.steps--timeline .step__day--accent {
  background: linear-gradient(135deg, var(--tk-light), #93E0D6);
  color: var(--tk-navy);
  box-shadow:
    0 12px 26px -6px rgba(77,197,184,0.65),
    0 0 0 4px rgba(0,34,97,0.40);
}

/* Tighter content spacing for scannability */
.steps--timeline .step h4 { margin-bottom: 6px; }
.steps--timeline .step p { font-size: 14px; }

/* COB At A Glance — compact horizontal info strip */
.cob-glance {
  margin: 56px auto 0;
  max-width: 1100px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  box-shadow:
    0 22px 50px -24px rgba(0,0,0,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.10);
}
.cob-glance__title {
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tk-light);
  margin: 0 0 14px;
  text-align: center;
}
.cob-glance__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
}
.cob-glance__list li {
  position: relative;
  padding-left: 28px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}
.cob-glance__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  box-shadow: 0 4px 10px -2px rgba(77,197,184,0.50);
}
.cob-glance__list li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 7px;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .steps--timeline { padding-top: 24px; }
  .steps--timeline::after { display: none; }
  .steps--timeline .step__day { margin: -38px 0 16px; }

  .cob-glance__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cob-glance { padding: 20px 22px; }
  .cob-glance__list { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- EPISODES TIMELINE — supportive, guided ---------- */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative;
  margin-bottom: 56px;
}
/* Soft gradient connecting line */
.timeline::before {
  content: "";
  position: absolute;
  top: 36px; left: calc(100% / 8); right: calc(100% / 8);
  height: 2px;
  background: linear-gradient(to right, var(--teal-300), var(--teal-400) 33%, #6FD7D5 66%, var(--teal-400));
  opacity: 0.4;
  border-radius: 999px;
  z-index: 0;
}
.tl {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.tl__dot {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff;
  color: var(--teal-700);
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
  box-shadow:
    0 18px 36px -16px rgba(44,97,110,0.25),
    0 4px 10px -3px rgba(27,62,88,0.06),
    0 0 0 6px rgba(255,255,255,1),
    0 0 0 7px var(--teal-100),
    inset 0 1px 0 0 rgba(255,255,255,0.8);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.tl:hover .tl__dot { transform: translateY(-4px); }
.tl__dot--mint  { color: #1A8E8C;          box-shadow: 0 18px 36px -16px rgba(26,142,140,0.25), 0 4px 10px -3px rgba(27,62,88,0.06), 0 0 0 6px rgba(255,255,255,1), 0 0 0 7px #9FE0DE,            inset 0 1px 0 0 rgba(255,255,255,0.8); }
.tl__dot--blue  { color: var(--blue-600);  box-shadow: 0 18px 36px -16px rgba(37,99,235,0.25),  0 4px 10px -3px rgba(27,62,88,0.06), 0 0 0 6px rgba(255,255,255,1), 0 0 0 7px var(--blue-100),  inset 0 1px 0 0 rgba(255,255,255,0.8); }
.tl__dot--teal  { color: var(--teal-700);  box-shadow: 0 18px 36px -16px rgba(44,97,110,0.25), 0 4px 10px -3px rgba(27,62,88,0.06), 0 0 0 6px rgba(255,255,255,1), 0 0 0 7px var(--teal-200),  inset 0 1px 0 0 rgba(255,255,255,0.8); }
.tl__body { max-width: 240px; }
.tl h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  line-height: 1.3;
}
.tl p  {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.6;
}

.episodes__bottom {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 760px; margin: 0 auto;
  align-items: center; text-align: center;
}
.episodes__bottom .note { text-align: left; }
.note {
  display: flex; gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #F0FBFB 0%, rgba(255,255,255,0.7) 100%);
  border: 1px solid rgba(31,167,165,0.18);
  box-shadow:
    0 14px 30px -16px rgba(44,97,110,0.18),
    inset 0 1px 0 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal-700);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s, gap .2s;
}
.link-arrow:hover {
  color: var(--teal-800);
  border-bottom-color: var(--teal-300);
  gap: 10px;
}
.link-arrow svg { transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(2px); }
.note__icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--teal-100); color: var(--teal-800);
  display: grid; place-items: center; flex-shrink: 0;
}
.note strong { font-size: 16px; color: var(--ink-900); display: block; margin-bottom: 6px; }
.note p { font-size: 14px; color: var(--ink-600); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal-700); font-weight: 600; font-size: 14.5px;
}
.link-arrow:hover { color: var(--teal-800); }

/* ---------- FLOWS ---------- */
.flow {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.flow:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.flow__header {
  padding: 22px; display: flex; align-items: center; gap: 14px;
  color: #fff;
}
.flow__header--teal  { background: linear-gradient(135deg, #2C616E, #1FA7A5); }
.flow__header--mint  { background: linear-gradient(135deg, #1A8E8C, #50C5BF); }
.flow__header--blue  { background: linear-gradient(135deg, #1E40AF, #3B82F6); }
.flow__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
}
.flow h3 { color: #fff; font-size: 19px; }
.flow__steps {
  padding: 18px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.flow__steps li {
  display: flex; gap: 12px; align-items: center;
  font-size: 14.5px; color: var(--ink-700);
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--ink-50);
  position: relative;
}
.flow__steps li span {
  width: 26px; height: 26px; border-radius: 8px;
  background: #fff;
  display: grid; place-items: center;
  font-size: 12.5px; font-weight: 800; color: var(--teal-700);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

/* ---------- COVERS ---------- */
.covers .cover {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.cover__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.cover__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
}
.cover__icon--teal { background: var(--teal-50); color: var(--teal-700); }
.cover__icon--coral { background: var(--coral-50); color: var(--coral-600); }
.cover h3 { font-size: 19px; }
.cover__desc {
  font-size: 14px; color: var(--ink-500);
  margin-bottom: 14px; line-height: 1.55;
}
.cover__meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.meta-tag {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em;
  padding: 5px 10px; border-radius: 999px;
  background: var(--ink-50); color: var(--ink-600);
  border: 1px solid var(--ink-100);
}
.meta-tag--teal  { background: var(--teal-50);  color: var(--teal-700); border-color: var(--teal-100); }
.meta-tag--coral { background: var(--coral-50); color: var(--coral-600); border-color: var(--coral-100); }
.cover__sub { font-size: 14px; color: var(--ink-500); margin-bottom: 16px; font-weight: 600; }
.cover__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cover__tags li {
  font-size: 13.5px; font-weight: 500;
  padding: 8px 14px; border-radius: 999px;
  background: var(--ink-50); color: var(--ink-700);
  border: 1px solid var(--ink-100);
}
.cover__more {
  background: var(--teal-50) !important;
  color: var(--teal-700) !important;
  border-color: var(--teal-200) !important;
  font-weight: 600;
}
.covers__cta { display: flex; justify-content: center; margin-top: 32px; }
#toggleFullList svg { transition: transform .2s; }
#toggleFullList[aria-expanded="true"] svg { transform: rotate(180deg); }
.fulllist { margin-top: 32px; }

/* Emergency escalation callout */
.emergency {
  margin-top: 48px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #FFF5F2 0%, #FFFFFF 100%);
  border: 1px solid var(--coral-100);
  box-shadow: var(--shadow);
}
.emergency__head {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 16px;
}
.emergency__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--coral-500); color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(248,99,66,0.3);
}
.emergency h3 {
  font-size: 18px; margin-bottom: 4px;
}
.emergency__head p {
  font-size: 14px; color: var(--ink-600);
}
.emergency__list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 14px;
}
.emergency__list li {
  font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 8px;
  background: #fff; color: var(--coral-600);
  border: 1px solid var(--coral-100);
}
.emergency__note {
  font-size: 12.5px;
  color: var(--ink-500);
  font-style: italic;
}

/* ---------- E-CARD section ---------- */
.section--gradient .eyebrow--light { color: #fff; }
.ecard {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.ecard__title {
  font-size: clamp(28px, 3.4vw, 40px); color: #fff;
  margin: 12px 0 14px;
}
.ecard__lead { color: rgba(255,255,255,0.86); font-size: 17px; margin-bottom: 24px; }
.ecard__points { display: flex; flex-direction: column; gap: 12px; }
.ecard__points li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: rgba(255,255,255,0.96); }
.ecard__bullet {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
}

.ecard__visual { display: grid; place-items: center; gap: 18px; }
.ecard__image {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  border-radius: 36px;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.45),
    0 12px 24px -8px rgba(0,0,0,0.20);
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ecard__image:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.55),
    0 16px 32px -8px rgba(0,0,0,0.25);
}
.ecard__present {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.16); color: #fff;
  font-size: 13px; font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px;
}
.faq-tab {
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--ink-200);
  background: #fff;
  color: var(--ink-600);
  font-weight: 600; font-size: 14px;
  transition: all .2s;
}
.faq-tab:hover { color: var(--teal-700); border-color: var(--teal-200); }
.faq-tab.is-active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(44,97,110,0.28);
}
.faq-panel { display: none; max-width: 880px; margin: 0 auto; }
.faq-panel.is-active { display: flex; flex-direction: column; gap: 12px; }

.faq {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq[open] { border-color: var(--teal-200); box-shadow: var(--shadow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: 16px; color: var(--ink-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq__chev {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink-50);
  position: relative; flex-shrink: 0;
  transition: background .2s, transform .25s;
}
.faq__chev::before, .faq__chev::after {
  content: ""; position: absolute; background: var(--ink-700);
  border-radius: 1px;
}
.faq__chev::before {
  width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq__chev::after {
  width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform .25s;
}
.faq[open] .faq__chev { background: var(--teal-100); }
.faq[open] .faq__chev::before { background: var(--teal-700); }
.faq[open] .faq__chev::after { transform: translate(-50%, -50%) scaleY(0); background: var(--teal-700); }
.faq__body { padding: 0 22px 20px; color: var(--ink-600); font-size: 15px; }
.faq__body ol { padding-left: 20px; line-height: 1.7; display: flex; flex-direction: column; gap: 4px; }
.faq__body ul {
  list-style: none;
  padding-left: 0;
  margin: 6px 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.faq__body ul li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}
.faq__body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--grad-primary);
  box-shadow: 0 3px 8px -2px rgba(44,97,110,0.40);
}
.faq__body ul li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 9px;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.faq__body p + p { margin-top: 8px; }
.faq__body p + ul, .faq__body p + ol { margin-top: 4px; }
.faq__body ul + p, .faq__body ol + p { margin-top: 10px; }

/* ---------- FINAL CTA ---------- */
.cta {
  background: var(--grad-cta);
  color: #fff;
  position: relative; overflow: hidden;
}
.cta__inner {
  text-align: center;
  position: relative; z-index: 1;
  max-width: 760px;
}
.cta h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.cta p  { color: rgba(255,255,255,0.86); font-size: 17px; margin-bottom: 28px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta__blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.4;
}
.cta__blob--1 { width: 380px; height: 380px; background: #1FA7A5; top: -80px; left: -80px; }
.cta__blob--2 { width: 420px; height: 420px; background: #50C5BF; bottom: -120px; right: -100px; }

/* ---------- FOOTER ---------- */
.footer {
  background: #1B3E58;
  color: rgba(255,255,255,0.85);
  padding: 28px 0 0;
}
.footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px;
  padding-bottom: 40px;
}
.footer__brand p { margin-top: 12px; color: rgba(255,255,255,0.6); font-size: 14px; }
.footer__logo {
  height: 34px; width: auto;
  background: #fff; padding: 6px 10px; border-radius: 8px;
}
.footer__powered { display: flex; align-items: center; gap: 10px; align-self: end; }
.footer__powered span { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer__plogo { height: 24px; background: #fff; padding: 4px 8px; border-radius: 6px; }
.footer__partners { align-self: end; }
.footer__partlabel { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); display: block; margin-bottom: 8px; }
.footer__plist { display: flex; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.footer__bottom .container {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps::before { display: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .timeline::before { display: none; }
  .ecard { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .ecard__points { display: inline-flex; }
  .hero { min-height: 640px; }
  .hero__copy { max-width: 720px; }
  .hero__overlay {
    background:
      radial-gradient(75% 85% at 50% 50%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 50%, rgba(255,255,255,0.5) 80%, rgba(255,255,255,0.2) 100%);
  }
  .cob-hero { grid-template-columns: 1fr; gap: 36px; }
  .cob-hero__image { order: -1; max-width: 560px; margin: 0 auto; }
  .cob-stats { max-width: 100%; }
  .cob-grid { grid-template-columns: 1fr; gap: 18px; }
  .benefit2 { grid-template-columns: 1fr; gap: 36px; margin: 48px 0 24px; }
  .benefit2--reverse .benefit2__image { order: -1; }
  .benefit2--reverse .benefit2__content { order: 0; }
  .benefit2__image { max-width: 560px; margin: 0 auto; aspect-ratio: 4 / 4; }
  .vjourney { padding: 24px 24px; }
  .howflow { padding: 22px 24px; margin-bottom: 64px; }
  .hjourney { padding: 28px 24px 24px; margin-bottom: 64px; }
  .hjourney__steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hjourney__steps::before { display: none; }
  .hstep__num { margin-top: 0; }
  .hjourney__steps { padding-top: 0; }

  /* Telemed carousel — stack vertically */
  .tg { grid-template-columns: 1fr; gap: 40px; }
  .tg__info { max-width: 100%; text-align: center; }
  .tg__note { text-align: left; }
  .tg__nav { justify-content: center; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 8px 16px 16px;
    border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--shadow);
  }
  .nav.is-open .nav__links a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--ink-100);
  }
  .section { padding: 72px 0; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .tl { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; }
  .tl__dot { margin-bottom: 0; flex-shrink: 0; }
  .tl__body { max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom .container { justify-content: center; text-align: center; }

  /* Hero on mobile: stronger white wash for legibility, photo visible behind */
  .hero { padding: 56px 0; min-height: auto; }
  .hero__photo { background-position: center; }
  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.88) 60%,
        rgba(255,255,255,0.6) 85%,
        rgba(255,255,255,0.2) 100%);
  }
  .hero__title { font-size: clamp(26px, 7vw, 36px); white-space: normal; }
  .hero__sub { font-size: 15.5px; }

  /* 8-episodes block reflows cleanly with its own layout */
  .ep-banner { margin-bottom: 56px; }
  .benefits__title { font-size: clamp(26px, 7vw, 34px); }
  .ep-banner__line { font-size: clamp(24px, 6vw, 32px); white-space: normal; }
  .cob-hero__title { font-size: clamp(28px, 7.5vw, 38px); }
  .cob-stats { grid-template-columns: 1fr; }
  .cob-card { min-height: auto; padding: 24px; }
  /* Benefit journey adjustments */
  .benefit2__title { font-size: clamp(26px, 7vw, 32px); }
  .vjourney { padding: 22px 20px; }
  .vstep { grid-template-columns: 30px 38px 1fr; gap: 12px; padding: 12px 0 14px; }
  .vstep__num { width: 30px; height: 30px; font-size: 12px; }
  .vstep__icon { width: 38px; height: 38px; }
  .vstep:not(:last-child)::after { left: 14px; top: 42px; }
  .vstep__body h4 { font-size: 14.5px; }
  .vstep__body p { font-size: 13px; }
  .diag-block__list { grid-template-columns: 1fr; gap: 8px; }
  /* How It Works — stack into rows on small screens */
  .howflow { padding: 20px 18px; }
  .howflow__row { flex-direction: column; gap: 14px; }
  .hf { flex-direction: row; gap: 14px; text-align: left; width: 100%; }
  .hf__title { font-size: 13.5px; }
  .hf__arrow { transform: rotate(90deg); align-self: center; margin: 0; }
  /* Horizontal journey — 1 column on phones */
  .hjourney__steps { grid-template-columns: 1fr; gap: 22px; }
  .hjourney__title { font-size: 20px; }
  .hstep h4 { font-size: 14.5px; }
  .hstep p { font-size: 13px; }
  .benefit2__imagebadge { top: 14px; right: 14px; font-size: 12px; padding: 8px 14px 8px 8px; }

  /* Telemed carousel — even smaller phone on mobile */
  .tg__phone { width: 230px; height: 460px; padding: 10px; border-radius: 36px; }
  .tg__notch { width: 80px; height: 20px; top: 10px; }
  .tg__screen { border-radius: 26px; }
  .tg__nav { flex-direction: column-reverse; width: 100%; }
  .tg__btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__brandblock { gap: 12px; margin-bottom: 28px; }
  .hero__logo { height: 38px; }
  .powered { padding: 6px 10px; }
  .powered__logo { height: 16px; }
  .btn { padding: 12px 18px; font-size: 14.5px; }
}

/* ============================================================
   ★ FINAL LANDING PAGE — clean rebuild (May 2026)
   Direct, minimal, generous whitespace. Apple-onboarding style.
   ============================================================ */

/* Shared design tokens */
:root {
  --b-navy: #1B3E58;
  --b-deep: #2C616E;
  --b-med:  #3D8287;
  --b-turq: #4D9F9C;
  --b-soft: #CBDDDC;
}

/* Section base — alternate background rhythm */
.section--quiet {
  background: linear-gradient(180deg, #fff 0%, rgba(203,221,220,0.20) 100%);
}

/* Refined gradient text — use locally */
.grad {
  background: linear-gradient(135deg, #1B3E58 0%, #3D8287 55%, #4D9F9C 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   2. WHAT IS COB — clean 2-col overview
   ============================================================ */
.overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.overview__head { display: flex; flex-direction: column; gap: 18px; }
.overview__head .eyebrow { align-self: flex-start; }
.overview__title {
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink-900);
}
.overview__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-600);
  font-weight: 450;
  margin: 0;
}
.overview__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.overview__list li {
  display: flex; gap: 16px; align-items: flex-start;
}
.overview__check {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #3D8287, #4D9F9C);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -4px rgba(61,130,135,0.45);
}
.overview__list li > div { display: flex; flex-direction: column; gap: 3px; }
.overview__list li strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.overview__list li span {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ============================================================
   3 & 4. FEATURE SPLITS — Telemedicine, Clinic Visit
   ============================================================ */
.feat-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.feat-split--reverse .feat-split__image { order: -1; }

.feat-split__content { display: flex; flex-direction: column; gap: 18px; }
.feat-split__content .eyebrow { align-self: flex-start; }
.feat-split__title {
  font-size: clamp(36px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink-900);
}
.feat-split__copy {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-600);
  margin: 0;
  font-weight: 450;
  max-width: 520px;
}
.feat-split__copy strong {
  color: var(--ink-900);
  font-weight: 700;
}

/* Cap row: amount card + partner mini */
.feat-split__cap {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  margin-top: 12px;
}
.feat-split__cap-amount {
  display: flex; flex-direction: column;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-left: 4px solid var(--b-med);
  border-radius: 14px;
  box-shadow: 0 12px 28px -16px rgba(27,62,88,0.20);
}
.feat-split__cap-amount--mint { border-left-color: var(--b-turq); }
.feat-split__cap-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.feat-split__cap-val {
  font-size: 15px; color: var(--ink-800);
  font-weight: 500;
}
.feat-split__cap-val strong {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--b-navy), var(--b-med), var(--b-turq));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-right: 4px;
}
.feat-split__cap-partner {
  display: flex; flex-direction: column; gap: 6px;
}
.feat-split__cap-partner span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.feat-split__cap-partner img { height: 36px; width: auto; }

/* Image side */
.feat-split__image {
  position: relative;
  aspect-ratio: 4 / 3.4;
  max-width: 520px;
  justify-self: end;
  width: 100%;
  z-index: 1;
}
.feat-split--reverse .feat-split__image { justify-self: start; }
.feat-split__photo {
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 50px 90px -32px rgba(27,62,88,0.30),
    0 14px 28px -10px rgba(27,62,88,0.10);
}
.feat-split__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Floating solid overlays (no glass) */
.feat-overlay {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-900);
  box-shadow:
    0 18px 36px -14px rgba(27,62,88,0.25),
    0 4px 10px -2px rgba(27,62,88,0.08);
  z-index: 2;
  white-space: nowrap;
}
.feat-overlay svg { color: var(--b-turq); }
.feat-overlay__dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: linear-gradient(135deg, var(--b-med), var(--b-turq));
  box-shadow: 0 0 0 3px rgba(77,159,156,0.22);
}
.feat-overlay__dot--mint {
  background: linear-gradient(135deg, var(--b-turq), var(--b-med));
}
.feat-overlay--1 { top: 28px; left: -22px; }
.feat-overlay--2 { bottom: 36px; right: -24px; }
.feat-overlay--3 { top: 28px; right: -22px; }
.feat-overlay--4 { bottom: 36px; left: -24px; }

/* Diagnoses expandable */
.diag-toggle {
  margin-top: 16px;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: 14px 18px;
  background: #fff;
  max-width: 520px;
}
.diag-toggle summary {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--ink-800);
}
.diag-toggle summary::-webkit-details-marker { display: none; }
.diag-toggle__count {
  font-size: 18px; font-weight: 800;
  background: linear-gradient(135deg, var(--b-deep), var(--b-turq));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.diag-toggle__label { flex: 1; font-size: 14px; }
.diag-toggle__chev { color: var(--ink-500); transition: transform 0.25s ease; }
.diag-toggle[open] .diag-toggle__chev { transform: rotate(180deg); }
.diag-toggle__list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--ink-100);
}
.diag-toggle__list li {
  font-size: 13.5px;
  color: var(--ink-700);
  position: relative;
  padding-left: 18px;
}
.diag-toggle__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--b-turq);
}

/* ============================================================
   5. HOW TO START — 4 steps + PDF button
   ============================================================ */
.start { max-width: 1080px; margin: 0 auto; }
.start__head {
  display: flex; flex-direction: column; gap: 14px;
  text-align: center;
  align-items: center;
  margin-bottom: 56px;
}
.start__title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink-900);
}
.start__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-600);
  font-weight: 450;
  margin: 0;
  max-width: 640px;
}

.start__steps {
  list-style: none; padding: 0; margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.start__steps::before {
  content: "";
  position: absolute;
  top: 14px; left: 12%; right: 12%;
  height: 2px;
  background-image: linear-gradient(to right, var(--b-turq) 50%, transparent 50%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  opacity: 0.45;
  z-index: 0;
}
.start__steps li {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  text-align: left;
}
.start__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--b-med);
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--b-turq);
  align-self: flex-start;
  margin-bottom: 14px;
}
.start__steps h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.start__steps p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}

.start__cta { display: flex; justify-content: center; }
.btn-pdf {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 28px 18px 22px;
  background: linear-gradient(135deg, var(--b-deep), var(--b-med) 55%, var(--b-turq));
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  box-shadow:
    0 22px 44px -16px rgba(27,62,88,0.40),
    inset 0 1px 0 0 rgba(255,255,255,0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-pdf:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 56px -16px rgba(27,62,88,0.50),
    inset 0 1px 0 0 rgba(255,255,255,0.25);
}
.btn-pdf__icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.btn-pdf__body { display: flex; flex-direction: column; gap: 2px; }
.btn-pdf__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.btn-pdf__sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}

/* ============================================================
   6. HOW EPISODES WORK — compact stat row
   ============================================================ */
.episodes { max-width: 1080px; margin: 0 auto; }
.episodes__head {
  display: flex; flex-direction: column; gap: 14px;
  text-align: center;
  align-items: center;
  margin-bottom: 56px;
}
.episodes__title {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink-900);
}
.episodes__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-600);
  font-weight: 450;
  margin: 0;
  max-width: 680px;
}
.episodes__desc strong { color: var(--ink-900); }

.episodes__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.estat {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 18px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  box-shadow: 0 14px 32px -18px rgba(27,62,88,0.16);
}
.estat--primary {
  background: linear-gradient(135deg, var(--b-deep), var(--b-med) 55%, var(--b-turq));
  border-color: transparent;
  box-shadow:
    0 22px 44px -18px rgba(27,62,88,0.40),
    inset 0 1px 0 0 rgba(255,255,255,0.20);
}
.estat__num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--b-navy), var(--b-med), var(--b-turq));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.estat--primary .estat__num {
  background: linear-gradient(135deg, #fff, var(--b-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.estat__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.estat--primary .estat__label { color: rgba(255,255,255,0.92); }
.estat__label em {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: var(--ink-500);
}
.estat--primary .estat__label em { color: rgba(255,255,255,0.72); }

.episodes__foot {
  text-align: center;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 640px;
}
.episodes__foot strong { color: var(--ink-900); font-weight: 700; }

/* ============================================================
   7. HEALTHCARE ECOSYSTEM
   ============================================================ */
.ecosystem { max-width: 1080px; margin: 0 auto; }
.ecosystem__head {
  display: flex; flex-direction: column; gap: 14px;
  text-align: center;
  align-items: center;
  margin-bottom: 56px;
}
.ecosystem__title {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink-900);
}
.ecosystem__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-600);
  font-weight: 450;
  margin: 0;
  max-width: 720px;
}

.ecosystem__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.eco-card {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  box-shadow: 0 16px 36px -22px rgba(27,62,88,0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eco-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px -22px rgba(27,62,88,0.22);
}
.eco-card img {
  height: 44px; width: auto;
  margin-bottom: 16px;
}
.eco-card__role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: -0.005em;
}

/* ============================================================
   8. EMERGENCY STRIP — compact safety banner
   ============================================================ */
.emergency-strip {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.emergency-strip__inner {
  display: flex; gap: 16px; align-items: flex-start;
  max-width: 980px;
  margin: 0 auto;
}
.emergency-strip__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--coral-50);
  color: var(--coral-600);
  display: grid; place-items: center;
}
.emergency-strip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-600);
}
.emergency-strip p strong {
  color: var(--ink-900);
  font-weight: 700;
  display: inline-block;
  margin-right: 4px;
}

/* ============================================================
   RESPONSIVE — final landing
   ============================================================ */
@media (max-width: 1024px) {
  .overview { grid-template-columns: 1fr; gap: 48px; }
  .feat-split { grid-template-columns: 1fr; gap: 48px; }
  .feat-split--reverse .feat-split__image { order: 0; }
  .feat-split__image,
  .feat-split--reverse .feat-split__image { justify-self: center; max-width: 560px; }
  .start__steps { grid-template-columns: repeat(2, 1fr); }
  .start__steps::before { display: none; }
  .episodes__row { grid-template-columns: repeat(2, 1fr); }
  .ecosystem__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .overview__list li strong { font-size: 16px; }
  .feat-overlay { font-size: 11.5px; padding: 8px 14px; }
  .feat-overlay--1 { left: 12px; top: 16px; }
  .feat-overlay--2 { right: 12px; bottom: 20px; }
  .feat-overlay--3 { right: 12px; top: 16px; }
  .feat-overlay--4 { left: 12px; bottom: 20px; }
  .feat-split__cap { flex-direction: column; align-items: flex-start; gap: 18px; }
  .start__steps { grid-template-columns: 1fr; gap: 22px; }
  .episodes__row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .estat { padding: 24px 14px; }
  .estat__num { font-size: 44px; }
  .ecosystem__row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .btn-pdf { padding: 14px 22px 14px 18px; gap: 12px; }
  .btn-pdf__title { font-size: 14.5px; }
  .btn-pdf__sub { font-size: 12px; }
  .diag-toggle__list { grid-template-columns: 1fr; }
}

/* ============================================================
   ★★ FULL COPY ALIGNMENT — May 2026 final
   ============================================================ */

/* HERO additions */
.hero__sub-muted {
  display: inline-block;
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 14.5px;
  font-weight: 500;
}
.hero__pills {
  list-style: none; padding: 0; margin: 8px 0 24px;
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.hero__copy[class*="left"] .hero__pills { justify-content: flex-start; }
.hero__pills li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px 8px 12px;
  background: #fff;
  border: 1px solid rgba(77,159,156,0.30);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  box-shadow: 0 6px 14px -8px rgba(27,62,88,0.18);
}
.hero__pills li svg {
  color: #fff;
  background: linear-gradient(135deg, var(--b-med), var(--b-turq));
  border-radius: 999px;
  padding: 3px;
  box-sizing: content-box;
  box-shadow: 0 4px 10px -3px rgba(61,130,135,0.50);
}
.hero__actions {
  display: flex; gap: 14px; justify-content: center; margin: 8px 0 24px;
  flex-wrap: wrap;
}

/* SECTION 2 — overview cards (right side, staggered floating) */
.overview__cta { align-self: flex-start; margin-top: 12px; }

/* Why COB — highlight feature card (replaces the old CTA button) */
.overview__feature {
  align-self: stretch;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(31,167,165,0.08) 0%, rgba(31,167,165,0.02) 100%);
  border: 1px solid rgba(31,167,165,0.22);
  border-left: 3px solid var(--teal-500, #1FA7A5);
  border-radius: 16px;
  box-shadow: 0 14px 30px -22px rgba(27,62,88,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.overview__feature:hover {
  transform: translateY(-3px);
  border-color: rgba(31,167,165,0.40);
  box-shadow: 0 22px 44px -22px rgba(31,167,165,0.30);
}
.overview__feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-primary);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 22px -8px rgba(44,97,110,0.45);
}
.overview__feature-body { display: flex; flex-direction: column; gap: 4px; }
.overview__feature-body h3 {
  font-size: 16px; font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0; line-height: 1.3;
}
.overview__feature-body p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--ink-500);
  margin: 0; font-weight: 450;
}
.overview__cards {
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.ocard {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  box-shadow:
    0 24px 48px -22px rgba(27,62,88,0.18),
    0 6px 14px -6px rgba(27,62,88,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 460px;
  width: 100%;
}
/* Staggered horizontal offsets — zigzag flowing pattern */
.ocard--a { align-self: flex-end; transform: translateX(16px); }
.ocard--b { align-self: flex-start; transform: translateX(-32px); }
.ocard--c { align-self: flex-end; transform: translateX(32px); }

.ocard--a:hover { transform: translateX(16px) translateY(-3px); }
.ocard--b:hover { transform: translateX(-32px) translateY(-3px); }
.ocard--c:hover { transform: translateX(32px) translateY(-3px); }

.ocard:hover {
  box-shadow:
    0 32px 60px -22px rgba(27,62,88,0.26),
    0 10px 22px -6px rgba(27,62,88,0.10);
}

/* Icon variants — different look per card, mirrors reference */
.ocard__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ocard__icon--dark {
  background: linear-gradient(135deg, var(--b-navy), var(--b-deep));
  color: #fff;
  box-shadow:
    0 10px 22px -8px rgba(27,62,88,0.50),
    inset 0 1px 0 0 rgba(255,255,255,0.12);
}
.ocard__icon--primary {
  background: linear-gradient(135deg, var(--b-deep), var(--b-med) 50%, var(--b-turq));
  color: #fff;
  box-shadow:
    0 12px 26px -8px rgba(61,130,135,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.22);
}
.ocard__icon--soft {
  background: linear-gradient(135deg, var(--b-soft), rgba(203,221,220,0.60));
  color: var(--b-deep);
  border: 1px solid rgba(77,159,156,0.18);
}
.ocard__body h4 {
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 6px;
}
.ocard__body p {
  font-size: 13.5px; line-height: 1.6;
  color: var(--ink-500);
  margin: 0;
  font-weight: 450;
}

/* FEATURE-DETAIL row inside feat-split */
.feat-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-100);
}
.feat-detail__title {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--b-deep);
  margin: 0 0 14px;
}
.feat-check {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.feat-check li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  font-weight: 500;
}
.feat-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--b-med), var(--b-turq));
  box-shadow: 0 4px 10px -3px rgba(61,130,135,0.45);
}
.feat-check li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 6.5px;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.feat-notes {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.feat-notes li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.55;
  font-weight: 450;
}
.feat-notes li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--ink-400);
}
.feat-split__actions {
  margin-top: 8px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* JOURNEY FLOW — used under Section 3 and Section 4 */
.jflow {
  margin-top: 64px;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  box-shadow: 0 18px 40px -24px rgba(27,62,88,0.14);
}
.jflow__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 32px;
}
.jflow__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  position: relative;
}
.jstep {
  display: flex; flex-direction: column;
  position: relative;
}
.jstep__num {
  display: inline-block;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--b-med);
  background: linear-gradient(135deg, #fff, var(--b-soft));
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(77,159,156,0.30);
  align-self: flex-start;
  margin-bottom: 12px;
}
.jstep h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.jstep p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
  font-weight: 450;
}
.jflow__note {
  text-align: center;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px dashed var(--ink-100);
  font-size: 13px;
  color: var(--ink-500);
}

/* DIAGNOSIS CARD — full visible list on Section 4 */
.diag-card {
  margin-top: 64px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #fff 0%, rgba(203,221,220,0.30) 100%);
  border: 1px solid rgba(77,159,156,0.22);
  border-radius: 24px;
  box-shadow: 0 22px 48px -28px rgba(61,130,135,0.22);
}
.diag-card__head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(77,159,156,0.25);
}
.diag-card__count {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--b-navy), var(--b-med), var(--b-turq));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.diag-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 4px;
}
.diag-card__sub {
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
}
.diag-card__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 28px;
}
.diag-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  line-height: 1.45;
}
.diag-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--b-med), var(--b-turq));
}
.diag-card__list li::after {
  content: "";
  position: absolute;
  left: 3.5px; top: 6px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* SECTION 6 — Episode stages: horizontal timeline with circle icons */
.estages {
  list-style: none; padding: 0; margin: 0 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  align-items: start;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
/* Solid connecting line at icon-center height */
.estages::before {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(12.5% + 36px); right: calc(12.5% + 36px);
  height: 1.5px;
  background: rgba(77,159,156,0.40);
  z-index: 0;
}
.estage {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.estage__icon {
  width: 70px; height: 70px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(77,159,156,0.30);
  color: var(--b-deep);
  display: grid; place-items: center;
  box-shadow:
    0 10px 24px -10px rgba(27,62,88,0.14),
    0 0 0 8px #fff;
  margin-bottom: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.estage:hover .estage__icon {
  transform: translateY(-3px);
  box-shadow:
    0 16px 32px -10px rgba(27,62,88,0.22),
    0 0 0 8px #fff;
}
.estage--active .estage__icon {
  color: var(--b-navy);
  background: #fff;
  border-color: rgba(27,62,88,0.55);
  box-shadow:
    0 12px 28px -10px rgba(27,62,88,0.30),
    0 0 0 8px #fff,
    inset 0 0 0 1px rgba(27,62,88,0.10);
}
.estage h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 220px;
}
.estage p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
  font-weight: 450;
  max-width: 240px;
}

/* Episode note card — soft mint, icon left, text right */
.enote {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 28px;
  background:
    linear-gradient(135deg, rgba(203,221,220,0.50), rgba(203,221,220,0.30));
  border: 1px solid rgba(77,159,156,0.20);
  border-radius: 18px;
  max-width: 880px;
  margin: 0 auto 24px;
}
.enote__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.85);
  color: var(--b-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.enote__body h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 4px;
}
.enote__body p {
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
  font-weight: 450;
}

/* FAQ link — centered below note */
.enote__faq-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 8px auto 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--b-deep);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s ease;
}
.enote__faq-link:hover { color: var(--b-turq); }
.enote__faq-link svg { transition: transform 0.2s ease; }
.enote__faq-link:hover svg { transform: translateX(3px); }
.episodes { display: flex; flex-direction: column; }
.episodes .enote__faq-link { align-self: center; }

/* SECTION 7 — dark healthcare access experience */
.section--dark {
  background:
    radial-gradient(50% 40% at 18% 18%, rgba(77,159,156,0.18) 0%, transparent 60%),
    radial-gradient(45% 35% at 85% 80%, rgba(61,130,135,0.20) 0%, transparent 60%),
    linear-gradient(135deg, #1B3E58 0%, #1F4664 50%, #1B3E58 100%);
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section--dark::before { display: none; }
.section--dark .ecosystem__head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ecosystem__title {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #fff;
}
.grad-light {
  background: linear-gradient(135deg, #CBDDDC, #4D9F9C 60%, #CBDDDC);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section--dark .ecosystem__desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-weight: 450;
}
.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.eco4 {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px 24px;
  box-shadow:
    0 22px 48px -22px rgba(0,0,0,0.45),
    0 6px 14px -6px rgba(0,0,0,0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eco4:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 60px -22px rgba(0,0,0,0.55),
    0 10px 22px -8px rgba(0,0,0,0.28);
}
.eco4__logo {
  display: flex; align-items: center; justify-content: flex-start;
  height: 64px;
  margin-bottom: 14px;
}
.eco4__logo img {
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.eco4__name {
  display: inline-block;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 10px;
  align-self: flex-start;
}
.eco4 p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-600);
  margin: 0;
  font-weight: 450;
}

/* FOOTER — expanded with partners + disclaimer */
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-top: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 12px 0 0; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.footer__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: #fff; }

/* Simplified footer — 2-col brand + contact only */
.footer__top--simple {
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer__contact {
  display: flex; flex-direction: column; gap: 10px;
}
.footer__contact a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__contact a:hover { color: #fff; }
.footer__contact a span { font-size: 14px; }

/* Minimal footer — single column, slim */
.footer--minimal { padding: 22px 0 0; }
.footer--minimal .footer__row {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 12px;
  padding-bottom: 10px;
}
.footer--minimal .footer__site {
  font-size: 14px; font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.footer--minimal .footer__site:hover { color: var(--tk-light, #4dc5b8); }
.footer--minimal .footer__meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
}
.footer--minimal .footer__meta a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer--minimal .footer__meta a:hover { color: #fff; }
.footer--minimal .footer__sep { color: rgba(255,255,255,0.30); }
.footer--minimal .footer__address {
  margin: 6px 0 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer--minimal .footer__disclaimer {
  padding: 12px 0 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer--minimal .footer__disclaimer p {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 100%;
}

/* ============================================================
   Slim structured footer
   ============================================================ */
.footer--slim { padding: 22px 0 0; }
.footer--slim .footer__wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer--slim .footer__brand-row {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer--slim .footer__brand-mark {
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff;
}
.footer--slim .footer__brand-mark span {
  background: linear-gradient(135deg, #4dc5b8, #93E0D6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer--slim .footer__tagline {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  font-weight: 450;
}

.footer--slim .footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 36px;
  padding: 14px 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer--slim .footer__col { display: flex; flex-direction: column; gap: 6px; }
.footer--slim .footer__heading {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.footer--slim .footer__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 5px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.45;
}
.footer--slim .footer__list li {
  display: flex; align-items: flex-start; gap: 8px;
}
.footer--slim .footer__list li span[aria-hidden] {
  flex-shrink: 0;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 1px;
}
.footer--slim .footer__list strong {
  font-weight: 700;
  color: #fff;
}
.footer--slim .footer__list a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer--slim .footer__list a:hover { color: #fff; }

.footer--slim .footer__disclaimer {
  padding: 12px 0 12px;
}
.footer--slim .footer__disclaimer p {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin: 0 0 4px;
  max-width: 100%;
}
.footer--slim .footer__disclaimer p:last-child { margin-bottom: 0; }

.footer--slim .footer__langnote {
  margin: 12px 0 6px;
  padding: 10px 14px;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  background: rgba(77,197,184,0.10);
  border-left: 3px solid rgba(77,197,184,0.55);
  border-radius: 8px;
}
.footer--slim .footer__langnote strong { color: var(--tk-light, #4dc5b8); font-weight: 700; }

.footer--slim .footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 9px 0;
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.footer--slim .footer__bottom .footer__wrap { display: block; }

@media (max-width: 760px) {
  .footer--slim .footer__cols { grid-template-columns: 1fr; gap: 22px; }
}

.footer__partners {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.footer__partlabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer__plogos {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.footer__plogos img {
  height: 28px; width: auto;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}
.footer__disclaimer {
  padding: 16px 0;
}
.footer__disclaimer p {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0 0 6px;
  max-width: 920px;
}
.footer__disclaimer p:last-child { margin-bottom: 0; }

/* RESPONSIVE adjustments for new components */
@media (max-width: 1024px) {
  .overview__cards { gap: 14px; }
  .ocard { max-width: 100%; }
  .ocard--a,
  .ocard--b,
  .ocard--c { align-self: stretch; transform: none; }
  .ocard--a:hover,
  .ocard--b:hover,
  .ocard--c:hover { transform: translateY(-3px); }
  .feat-detail { grid-template-columns: 1fr; gap: 24px; }
  .diag-card { padding: 28px 28px; }
  .diag-card__list { grid-template-columns: repeat(2, 1fr); }
  .estages { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .estages::before { display: none; }
  .ecosystem__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .hero__pills li { font-size: 12px; padding: 7px 12px 7px 10px; }
  .hero__actions { flex-direction: column-reverse; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .ocard { padding: 18px 18px; gap: 14px; }
  .ocard__icon { width: 40px; height: 40px; }
  .jflow { padding: 28px 22px; }
  .jflow__steps { gap: 18px; }
  .diag-card__list { grid-template-columns: 1fr; }
  .diag-card__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .diag-card__count { font-size: 44px; }
  .estages { grid-template-columns: 1fr; }
  .enote { grid-template-columns: 40px 1fr; }
  .enote__link { grid-column: 1 / -1; justify-self: flex-end; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__plogos { gap: 16px; }
  .footer__plogos img { height: 30px; padding: 5px 10px; }
  .ecosystem__grid { grid-template-columns: 1fr; gap: 14px; }
  .eco4 { padding: 22px 22px 20px; }
}

/* ============================================================
   TELECONSULTATION — engaging design with connected journey
   Brand colors: Primary #008682, Light #4dc5b8, Navy #002261
   ============================================================ */
:root {
  --tk-primary: #008682;
  --tk-light:   #4dc5b8;
  --tk-navy:    #002261;
  --tk-tint:    #E8F6F5;
}

.tk-section {
  background: #fff;
  padding: 24px 0 64px;
  position: relative;
  overflow: visible;
}
/* Benefits intro — compact heading section that flows into Teleconsult/Clinic Visits */
.benefits-intro { padding: 56px 0 24px; }
.benefits-intro .section__head { margin-bottom: 0; }
.tk__eyebrow { align-self: flex-start; margin-bottom: -4px; }

/* Main container — transparent, no backdrop. Sits on white. */
.tk {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* Hero split: image backdrop right + overlapping content panel left */
.tk__hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 560px;
  margin-bottom: 56px;
}

.tk__image {
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 62%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -36px rgba(0,34,97,0.40),
    0 12px 28px -10px rgba(0,134,130,0.18);
  z-index: 1;
}
.tk__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Floating "Medication Support" card — bottom-right corner of backdrop image */
.tk__overlay {
  position: absolute;
  right: 20px; bottom: 20px;
  width: auto; max-width: 280px;
  padding: 16px 20px 18px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow:
    0 18px 36px -12px rgba(0,34,97,0.30),
    0 4px 10px -2px rgba(0,134,130,0.12),
    inset 0 1px 0 0 rgba(255,255,255,0.85);
  z-index: 3;
}
.tk__overlay-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.tk__overlay-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(0,134,130,0.50);
}
.tk__overlay-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tk-navy);
}
.tk__overlay-amount {
  display: flex; align-items: baseline; gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.tk__overlay-prefix {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,34,97,0.55);
}
.tk__overlay-big {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tk__overlay-suffix {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tk-navy);
}
.tk__overlay-sub {
  margin: 0;
  font-size: 11.5px;
  color: rgba(0,34,97,0.55);
  line-height: 1.5;
  font-weight: 500;
}

/* Overlapping white content panel (title + lead + 3 cards) */
.tk__head {
  position: relative;
  z-index: 2;
  width: 56%;
  display: flex; flex-direction: column;
  text-align: left;
  gap: 18px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 40px 36px;
  box-shadow:
    0 36px 80px -32px rgba(0,34,97,0.30),
    0 12px 28px -10px rgba(0,134,130,0.14);
}
.tk__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--tk-navy);
  margin: 0;
}
.tk__title-grad {
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tk__lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(0,34,97,0.65);
  margin: 0;
  font-weight: 450;
}
.tk__note {
  display: flex; align-items: center; gap: 8px;
  margin: 14px 0 0;
  padding: 10px 14px;
  background: rgba(77,197,184,0.10);
  border: 1px solid rgba(0,134,130,0.22);
  border-left: 3px solid var(--tk-primary);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--tk-navy);
  font-weight: 500;
}
.tk__note svg { color: var(--tk-primary); flex-shrink: 0; }
.tk__note a {
  color: var(--tk-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tk__note a:hover { color: var(--tk-navy); }

/* 3 feature cards — stacked vertically, horizontal layout per card */
.tk-cards {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.tk-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(0,134,130,0.18);
  border-radius: 16px;
  box-shadow: 0 14px 30px -22px rgba(0,34,97,0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tk-card:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 40px -22px rgba(0,134,130,0.28);
}
.tk-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77,197,184,0.20), rgba(0,134,130,0.10));
  color: var(--tk-primary);
  display: grid; place-items: center;
  border: 1px solid rgba(0,134,130,0.22);
  flex-shrink: 0;
}
.tk-card__body { display: flex; flex-direction: column; gap: 3px; }
.tk-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tk-navy);
  margin: 0;
}
.tk-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0,34,97,0.60);
  margin: 0;
  font-weight: 450;
}
.tk-card p strong { color: var(--tk-navy); font-weight: 700; }

/* Primary highlighted card — turquoise gradient */
.tk-card--primary {
  background: linear-gradient(160deg, var(--tk-primary) 0%, var(--tk-light) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 30px 60px -22px rgba(0,134,130,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.20);
  position: relative;
  overflow: hidden;
}
.tk-card--primary::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
  pointer-events: none;
}
.tk-card--primary .tk-card__icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  position: relative;
}
.tk-card--primary h3 { color: #fff; position: relative; }
.tk-card--primary p { color: rgba(255,255,255,0.90); position: relative; }
.tk-card--primary p strong { color: #fff; }
.tk-card--primary:hover {
  transform: translateX(4px);
  box-shadow:
    0 24px 50px -18px rgba(0,134,130,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.25);
}
.tk-card--primary {
  box-shadow:
    0 18px 40px -18px rgba(0,134,130,0.45),
    inset 0 1px 0 0 rgba(255,255,255,0.20);
}

/* ============================================================
   FLOATING JOURNEY PANEL — overlaps section bottom
   ============================================================ */
.tk-journey {
  position: relative;
  margin-top: 64px;
  padding: 48px 56px 44px;
  background: var(--tk-navy);
  border-radius: 28px;
  box-shadow:
    0 50px 100px -40px rgba(0,34,97,0.55),
    0 16px 36px -10px rgba(0,34,97,0.30);
  color: #fff;
  z-index: 2;
  overflow: hidden;
}
.tk-journey::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(77,197,184,0.30), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.tk-journey::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,134,130,0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.tk-journey__head {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
}
.tk-journey__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tk-light);
  padding: 6px 14px;
  background: rgba(77,197,184,0.16);
  border: 1px solid rgba(77,197,184,0.32);
  border-radius: 999px;
  margin-bottom: 16px;
}
.tk-journey__title {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}
.tk-journey__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-weight: 450;
}

/* 4-step white cards on dark navy panel */
.tk-journey__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.tk-jstep {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 24px 22px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 18px 40px -18px rgba(0,0,0,0.45),
    0 6px 14px -6px rgba(0,0,0,0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tk-jstep:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 50px -18px rgba(0,0,0,0.50),
    0 10px 20px -8px rgba(0,0,0,0.25);
}
/* Chevron connectors between cards (desktop) */
.tk-jstep:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 14px; height: 14px;
  border-top: 2px solid rgba(77,197,184,0.65);
  border-right: 2px solid rgba(77,197,184,0.65);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.tk-jstep__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px -8px rgba(0,134,130,0.55);
}
.tk-jstep__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tk-primary);
  background: rgba(0,134,130,0.10);
  border: 1px solid rgba(0,134,130,0.20);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tk-jstep h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--tk-navy);
  margin: 0 0 6px;
  line-height: 1.3;
}
.tk-jstep p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(0,34,97,0.70);
  margin: 0;
  font-weight: 500;
}

/* CTA below journey */
.tk-cta {
  display: flex; justify-content: center;
  margin-top: 36px;
}
.tk-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  box-shadow:
    0 18px 36px -10px rgba(0,134,130,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tk-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 44px -10px rgba(0,134,130,0.65),
    inset 0 1px 0 0 rgba(255,255,255,0.28);
}
.tk-btn svg { transition: transform 0.2s ease; }
.tk-btn:hover svg { transform: translateX(3px); }

/* Pharmacy utility row — glass strip inside the navy journey panel */
.tk-utility {
  margin-top: 28px;
  padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(77,197,184,0.28);
  border-left: 3px solid var(--tk-light);
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
.tk-utility__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.tk-utility__btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  color: #fff;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow:
    0 12px 24px -8px rgba(77,197,184,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tk-utility__btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 28px -8px rgba(77,197,184,0.65),
    inset 0 1px 0 0 rgba(255,255,255,0.28);
}
.tk-utility__btn svg { transition: transform 0.2s ease; }
.tk-utility__btn:hover svg { transform: translateX(2px); }

@media (max-width: 640px) {
  .tk-utility {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px 20px;
  }
  .tk-utility__btn { justify-content: center; }
}

/* Responsive */
@media (max-width: 1024px) {
  .tk-section { padding: 20px 0 56px; }
  .benefits-intro { padding: 40px 0 16px; }
  /* Stack hero: image on top, panel slides up under it */
  .tk__hero {
    min-height: 0;
    display: flex; flex-direction: column;
    margin-bottom: 48px;
  }
  .tk__image {
    position: relative;
    width: 100%;
    height: 320px;
    top: auto; bottom: auto; right: auto;
    border-radius: 22px;
  }
  .tk__head {
    width: calc(100% - 32px);
    margin: -56px auto 0;
    padding: 32px 30px 28px;
    border-radius: 20px;
    text-align: left;
    align-items: stretch;
  }
  .tk__head .tk-cards { width: 100%; max-width: none; }
  .tk-card { text-align: left; }
  .tk-journey { padding: 40px 36px; margin-top: 56px; }
  .tk-journey__steps { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  /* Chevron between row pairs only: right of cards 1 and 3 */
  .tk-jstep:nth-child(2)::after,
  .tk-jstep:nth-child(4)::after { display: none; }
  .tk-jstep:nth-child(1)::after,
  .tk-jstep:nth-child(3)::after {
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(45deg);
  }
}
@media (max-width: 640px) {
  .tk-section { padding: 16px 0 44px; }
  .tk__image { height: 240px; border-radius: 18px; }
  .tk__head {
    width: calc(100% - 24px);
    margin-top: -44px;
    padding: 26px 22px 24px;
    border-radius: 18px;
  }
  .tk__overlay { right: 12px; bottom: 12px; max-width: calc(100% - 24px); padding: 12px 16px; }
  .tk__overlay-big { font-size: 28px; }
  .tk-card { padding: 24px 22px; }
  .tk-journey { padding: 32px 24px; margin-top: 48px; border-radius: 22px; }
  .tk-journey__steps { grid-template-columns: 1fr; gap: 36px; }
  .tk-btn { width: 100%; justify-content: center; }
  /* Rotate connector chevron downward when cards stack */
  .tk-jstep:not(:last-child)::after {
    top: auto;
    bottom: -24px;
    right: 50%;
    transform: translateX(50%) rotate(135deg);
  }
  .tk-jstep:nth-child(1)::after,
  .tk-jstep:nth-child(3)::after { display: block; }
}

/* ============================================================
   CLINIC VISIT & OUTPATIENT TREATMENT — Benefit 02
   Reuses --tk-* brand color tokens (#008682 / #4dc5b8 / #002261)
   ============================================================ */
.cv-section {
  background: #fff;
  padding: 24px 0 120px;
  position: relative;
}

/* Hero split: healthcare image right + overlapping content panel left */
.cv-hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 520px;
  margin-bottom: 64px;
}
.cv-hero-split__image {
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 62%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -36px rgba(0,34,97,0.40),
    0 12px 28px -10px rgba(0,134,130,0.18);
  z-index: 1;
}
.cv-hero-split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cv-hero-split__badge {
  position: absolute;
  bottom: 24px; right: 24px;
  display: flex; align-items: baseline; gap: 8px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow:
    0 18px 36px -12px rgba(0,34,97,0.30),
    inset 0 1px 0 0 rgba(255,255,255,0.85);
}
.cv-hero-split__badge-prefix { font-size: 12px; font-weight: 600; color: rgba(0,34,97,0.55); }
.cv-hero-split__badge-amount {
  font-size: 26px; font-weight: 800; line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cv-hero-split__badge-suffix { font-size: 12px; font-weight: 600; color: var(--tk-navy); }

.cv-hero-split__panel {
  position: relative;
  z-index: 2;
  width: 56%;
  background: #fff;
  border-radius: 24px;
  padding: 44px 44px 40px;
  box-shadow:
    0 36px 80px -32px rgba(0,34,97,0.30),
    0 12px 28px -10px rgba(0,134,130,0.14);
  display: flex; flex-direction: column;
  gap: 14px;
}
.cv-hero-split__eyebrow {
  align-self: flex-start;
  margin: 0 0 2px;
}
.cv-hero-split__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--tk-navy);
  margin: 0;
}
.cv-hero-split__desc {
  font-size: 15px; line-height: 1.7;
  color: rgba(0,34,97,0.65);
  margin: 0; font-weight: 450;
}
/* Powered By — inline within hero panel */
.cv-poweredby {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,134,130,0.18);
}
.cv-poweredby__label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(0,34,97,0.55);
}
.cv-poweredby__logo {
  height: 64px;
  width: auto;
  display: block;
}

/* Legacy centered head still supported */
.cv-head { margin-bottom: 48px; }
.cv-head__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--tk-navy);
  margin: 0 0 14px;
}
.cv-head__grad {
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cv-head__desc {
  font-size: 16px; line-height: 1.7;
  color: rgba(0,34,97,0.65);
  margin: 0 auto; font-weight: 450;
  max-width: 760px;
}

/* 4-card responsive feature grid */
.cvf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 64px;
}
.cvf-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,134,130,0.14);
  border-radius: 20px;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  gap: 12px;
  overflow: hidden;
  box-shadow:
    0 18px 40px -22px rgba(0,34,97,0.18),
    0 4px 10px -4px rgba(0,134,130,0.08);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
/* Top accent stripe */
.cvf-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  opacity: 0.85;
}
/* Soft corner glow */
.cvf-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(77,197,184,0.16), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}
.cvf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,134,130,0.30);
  box-shadow:
    0 30px 56px -22px rgba(0,134,130,0.35),
    0 10px 22px -8px rgba(0,134,130,0.18);
}
.cvf-card:hover::after { opacity: 1; }

.cvf-card__icon {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(77,197,184,0.18), rgba(0,134,130,0.10));
  color: var(--tk-primary);
  display: grid; place-items: center;
  border: 1px solid rgba(0,134,130,0.18);
  box-shadow: 0 8px 20px -8px rgba(0,134,130,0.30);
  margin-bottom: 4px;
}
.cvf-card__title {
  position: relative;
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--tk-navy);
  margin: 0; line-height: 1.3;
}
.cvf-card__desc {
  position: relative;
  font-size: 14px; line-height: 1.6;
  color: rgba(0,34,97,0.65);
  margin: 0; font-weight: 450;
}

/* Per-card accent variations */
.cvf-card--primary::before { background: linear-gradient(135deg, var(--tk-primary), var(--tk-light)); }
.cvf-card--primary .cvf-card__icon {
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  color: #fff;
  border-color: transparent;
}

.cvf-card--navy::before { background: linear-gradient(135deg, var(--tk-navy), #1F4664); }
.cvf-card--navy .cvf-card__icon {
  background: linear-gradient(135deg, var(--tk-navy), #1F4664);
  color: #fff;
  border-color: transparent;
}
.cvf-card--navy::after { background: radial-gradient(circle, rgba(0,34,97,0.12), transparent 70%); }

.cvf-card--accent::before { background: linear-gradient(135deg, var(--tk-light), #93E0D6); }
.cvf-card--accent .cvf-card__icon {
  background: linear-gradient(135deg, var(--tk-light), #93E0D6);
  color: var(--tk-navy);
  border-color: transparent;
}
.cvf-card--accent::after { background: radial-gradient(circle, rgba(77,197,184,0.22), transparent 70%); }

.cvf-card--soft::before { background: linear-gradient(135deg, rgba(0,134,130,0.55), rgba(77,197,184,0.40)); }
.cvf-card--soft .cvf-card__icon {
  background: linear-gradient(135deg, #E8F6F5, #D2F0EE);
  color: var(--tk-primary);
  border-color: rgba(0,134,130,0.25);
}

/* ============================================================
   PREMIUM E-CARD VERIFICATION — gradient panel
   ============================================================ */
.cv-verify {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 44px 48px;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(77,197,184,0.22) 0%, transparent 60%),
    linear-gradient(135deg, #002261 0%, #003d7a 55%, #005b7a 100%);
  border-radius: 26px;
  box-shadow:
    0 40px 80px -30px rgba(0,34,97,0.55),
    0 12px 30px -10px rgba(0,134,130,0.20);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 48px;
  align-items: center;
  isolation: isolate;
}
.cv-verify::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 360px; height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(77,197,184,0.28), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.cv-verify::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,134,130,0.40), transparent 65%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.cv-verify > * { position: relative; z-index: 1; }

.cv-verify__visual {
  display: flex; justify-content: center; align-items: center;
}
.cv-verify__cardimg {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 30px 60px -16px rgba(0,0,0,0.55),
    0 12px 24px -6px rgba(0,134,130,0.30);
  transition: transform 0.35s ease;
}
.cv-verify__cardimg:hover {
  transform: translateY(-4px);
}

.cv-verify__body { display: flex; flex-direction: column; gap: 12px; }
.cv-verify__eyebrow {
  display: inline-block; align-self: flex-start;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tk-light);
  padding: 6px 14px;
  background: rgba(77,197,184,0.16);
  border: 1px solid rgba(77,197,184,0.34);
  border-radius: 999px;
}
.cv-verify__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1.2;
}
.cv-verify__desc {
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0; font-weight: 450;
}
.cv-verify__list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.cv-verify__list li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px; font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.cv-verify__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  box-shadow:
    0 4px 10px -2px rgba(0,134,130,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.30);
}
.cv-verify__list li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 7px;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ============================================================
   PREMIUM EXPANDABLE CONDITIONS CARD
   ============================================================ */
.cv-cond {
  max-width: 1100px;
  margin: 0 auto 36px;
  padding: 32px 36px 28px;
  background: linear-gradient(180deg, #fff 0%, #F8FCFC 100%);
  border: 1px solid rgba(0,134,130,0.16);
  border-radius: 22px;
  box-shadow:
    0 22px 50px -28px rgba(0,34,97,0.18),
    0 6px 14px -6px rgba(0,134,130,0.08);
}
.cv-cond__head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,134,130,0.14);
}
.cv-cond__title {
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--tk-navy);
  margin: 4px 0 4px;
}
.cv-cond__desc {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(0,34,97,0.60);
  margin: 0; font-weight: 450;
}

.cv-cond__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 28px;
}
.cv-cond__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px; font-weight: 600;
  color: var(--tk-navy);
  line-height: 1.5;
}
.cv-cond__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  box-shadow: 0 3px 8px -2px rgba(0,134,130,0.40);
}
.cv-cond__list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 7.5px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.cv-cond__list li sup {
  color: var(--tk-primary);
  font-weight: 800;
  margin-left: 2px;
}

.cv-cond__note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(77,197,184,0.10);
  border: 1px solid rgba(0,134,130,0.22);
  border-left: 3px solid var(--tk-primary);
  border-radius: 12px;
  box-sizing: border-box;
}
.cv-cond__note svg {
  color: var(--tk-primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.cv-cond__note p {
  margin: 0;
  font-size: 13.5px; line-height: 1.55;
  color: var(--tk-navy);
  font-weight: 500;
}
.cv-cond__note p strong { font-weight: 700; }

/* ============================================================
   IMPORTANT NOTES — compact lightweight section
   ============================================================ */
.cv-notes {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 4px;
}
.cv-notes__title {
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--tk-navy);
  margin: 0 0 6px;
}
.cv-notes__intro {
  font-size: 14px; line-height: 1.55;
  color: rgba(0,34,97,0.62);
  margin: 0 0 14px;
  font-weight: 450;
}
.cv-notes__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.cv-notes__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px; font-weight: 500;
  color: rgba(0,34,97,0.78);
  line-height: 1.55;
}
.cv-notes__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  box-shadow: 0 3px 8px -2px rgba(0,134,130,0.40);
}
.cv-notes__list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 7.5px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.cv-notes__list li strong { color: var(--tk-navy); font-weight: 700; }

/* Warning row — amber/red accent (no checkmark; uses ⚠ glyph) */
.cv-notes__list li.cv-notes__warn {
  color: #8a4a00;
  font-weight: 600;
}
.cv-notes__list li.cv-notes__warn::before {
  content: "⚠";
  background: none;
  box-shadow: none;
  left: 0; top: 1px;
  width: auto; height: auto;
  border-radius: 0;
  font-size: 14px;
  color: #d97706;
  display: flex; align-items: center; justify-content: center;
}
.cv-notes__list li.cv-notes__warn::after { content: none; }

/* ============================================================
   APP CTA — MiCare MyMed onboarding guide section
   ============================================================ */
.app-cta {
  padding: 44px 0;
  background:
    radial-gradient(60% 60% at 95% 20%, rgba(77,197,184,0.18) 0%, transparent 65%),
    linear-gradient(135deg, #F4FBFA 0%, #ECF6F5 100%);
  position: relative;
  overflow: hidden;
}
.app-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 48px;
  align-items: center;
}
.app-cta__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.app-cta__eyebrow {
  align-self: flex-start;
  background: rgba(77,197,184,0.16);
  border: 1px solid rgba(0,134,130,0.28);
  color: var(--tk-primary);
  margin-bottom: 2px;
}
.app-cta__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--tk-navy);
  margin: 0;
}
.app-cta__grad {
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.app-cta__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(0,34,97,0.70);
  margin: 0;
  font-weight: 450;
  max-width: 620px;
}
.app-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--tk-primary), var(--tk-light));
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow:
    0 12px 24px -10px rgba(0,134,130,0.55),
    inset 0 1px 0 0 rgba(255,255,255,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.app-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 28px -10px rgba(0,134,130,0.65),
    inset 0 1px 0 0 rgba(255,255,255,0.28);
}
.app-cta__btn svg { transition: transform 0.2s ease; width: 16px; height: 16px; }
.app-cta__btn:hover svg { transform: translateX(2px); }
.app-cta__note {
  font-size: 12.5px;
  color: rgba(0,34,97,0.55);
  margin: 4px 0 0;
  font-weight: 500;
}
.app-cta__visual {
  display: flex; justify-content: center; align-items: center;
}
.app-cta__phone {
  width: auto;
  height: 440px;
  filter: drop-shadow(0 40px 60px rgba(0,34,97,0.30)) drop-shadow(0 14px 26px rgba(0,134,130,0.22));
  transition: transform 0.4s ease;
}
.app-cta__phone:hover { transform: translateY(-4px); }

@media (max-width: 1024px) {
  .app-cta { padding: 36px 0; }
  .app-cta__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .app-cta__copy { align-items: center; }
  .app-cta__desc { margin-left: auto; margin-right: auto; }
  .app-cta__phone { height: 340px; }
}
@media (max-width: 640px) {
  .app-cta { padding: 28px 0; }
  .app-cta__btn { padding: 12px 22px; }
  .app-cta__phone { height: 270px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .cv-section { padding: 20px 0 100px; }
  .cv-head { margin-bottom: 40px; }
  .cvf-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 56px; }

  /* Stack hero split: image on top, panel below */
  .cv-hero-split {
    min-height: 0;
    display: flex; flex-direction: column;
    gap: 0;
    margin-bottom: 56px;
  }
  .cv-hero-split__image {
    position: relative;
    width: 100%;
    height: 320px;
    top: auto; bottom: auto; right: auto;
    border-radius: 22px;
  }
  .cv-hero-split__panel {
    width: calc(100% - 32px);
    margin: -56px auto 0;
    padding: 32px 30px 28px;
    border-radius: 20px;
  }
  .cv-hero-split__badge { bottom: 16px; right: 16px; padding: 12px 18px; }
  .cv-hero-split__badge-amount { font-size: 22px; }
  .cv-hero-split__logo { top: 16px; right: 16px; padding: 10px 16px 10px 12px; gap: 10px; border-radius: 14px; }
  .cv-hero-split__logo img { height: 34px; }
  .cv-hero-split__logo span { font-size: 11.5px; }

  .cv-verify {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 32px;
    text-align: center;
  }
  .cv-verify__body { align-items: center; }
  .cv-verify__eyebrow { align-self: center; }
  .cv-verify__list { align-self: center; text-align: left; }
  .cv-verify__cardimg { max-width: 280px; }

  .cv-cond { padding: 28px 28px 24px; margin-bottom: 32px; }
  .cv-cond__list { grid-template-columns: repeat(2, 1fr); gap: 10px 22px; }
}
@media (max-width: 640px) {
  .cv-section { padding: 16px 0 80px; }
  .cvf-grid { grid-template-columns: 1fr; gap: 14px; }
  .cvf-card { padding: 24px 22px 22px; }

  .cv-hero-split__image { height: 240px; border-radius: 18px; }
  .cv-hero-split__panel {
    width: calc(100% - 24px);
    margin-top: -44px;
    padding: 26px 22px 24px;
    border-radius: 18px;
  }
  .cv-hero-split__title { font-size: 22px; }

  .cv-poweredby { align-items: center; }
  .cv-poweredby__logo { height: 54px; }

  .cv-verify { padding: 30px 22px; border-radius: 20px; }
  .cv-verify__title { font-size: 20px; }
  .cv-verify__cardimg { max-width: 260px; }

  .cv-cond { padding: 24px 22px; border-radius: 18px; }
  .cv-cond__list { grid-template-columns: 1fr; }
  .cv-cond__title { font-size: 17px; }
}


/* ============================================================
   Benefit copy refresh — June 2026
   ============================================================ */

/* Single full-width info card row (Teleconsultation) */
.info-cards--1col { grid-template-columns: 1fr; }

/* Check-list in 2-column layout when wide */
.check-list--2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

/* CTA button row inside hero-split content */
.bhero-split__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}

/* Full diagnoses card — always visible, no toggle */
.diag-full {
  margin-top: 28px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 22px;
  box-shadow: 0 18px 40px -24px rgba(27,62,88,0.14);
}
.diag-full__head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-100);
}
.diag-full__count {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--b-deep), var(--b-turq));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.diag-full__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 4px;
}
.diag-full__sub {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}
.diag-full__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 28px;
}
.diag-full__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  font-weight: 500;
}
.diag-full__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--b-med), var(--b-turq));
  box-shadow: 0 4px 10px -3px rgba(61,130,135,0.40);
}
.diag-full__list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .check-list--2col { grid-template-columns: 1fr; gap: 12px; }
  .diag-full__list { grid-template-columns: repeat(2, 1fr); }
  .diag-full { padding: 28px 26px; }
}
@media (max-width: 560px) {
  .diag-full__list { grid-template-columns: 1fr; }
  .diag-full__head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
