:root {
  --kg:       #362C6A;
  --kg-mid:   #0b0171;
  --kg-deep:  #1a1340;
  --kg-light: #5046a0;
  --kg-pale:  #ece9f8;
  --kg-palest:#f6f4fc;
  --red:      #c8404a;
  --red-dark: #9e2f37;
  --gold:     #c9973e;
  --text:     #0f0d22;
  --text-mid: #3d3660;
  --text-soft:#7a74a8;
  --border:   rgba(54,44,106,0.1);
  --white:    #ffffff;
  --off:      #f8f7fc;
}


/* ── 2. RESET & BASE (tighter than L1 — off-white base) ─────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  background: var(--off);          /* off-white base — different from L1 white */
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


.breadcrumb {
  padding: 11px 5%; font-size: 12.5px; color: var(--text-soft);
  background: var(--white); border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--kg-light); }


/* ── 4. HERO — L2 COMPACT SPLIT HEADER ────────────────────────────
   Dark KG purple left panel + white right panel.
   Inverted colour balance from L1 (L1: white left / purple right).
   Height: auto, not min-height: 88vh — content drives height.
   ─────────────────────────────────────────────────────────────── */
.cs-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--white);
}

/* Left: dark KG purple — reversed from L1's white left panel */
.cs-hero-left {
  background: var(--kg);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
/* Ghost watermark text — dept-specific, set via content in page HTML */
.cs-hero-left::before {
  font-family: "Cormorant Garamond", serif;
  font-size: 140px; font-weight: 700;
  color: rgba(255,255,255,.03);
  position: absolute; bottom: 40px; left: -10px;
  white-space: nowrap; pointer-events: none; line-height: 1;
}

.cs-hero-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.cs-hero-tag::before { content: ""; width: 32px; height: 2px; background: var(--red); display: block; }
.cs-hero-tag span { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }

.cs-hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 46px);   /* Smaller than L1 clamp(38px, 4.5vw, 64px) */
  font-weight: 600; color: #fff; line-height: 1.1; margin-bottom: 22px;
  position: relative; z-index: 2;
}
.cs-hero-h1 em { font-style: italic; color: #b8aff0; }

.cs-hero-desc {
  font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.85;
  max-width: 420px; margin-bottom: 32px; position: relative; z-index: 2;
}
.cs-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; position: relative; z-index: 2; }

/* Stat row — compact horizontal strip */
.cs-hero-proof  { display: flex; gap: 0; position: relative; z-index: 2; }
.cs-proof-item  {
  flex: 1; padding: 18px 20px 18px 0;
  border-right: 1px solid rgba(255,255,255,.1);
}
.cs-proof-item:last-child { border-right: none; padding-right: 0; }
.cs-proof-item strong {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 32px; font-weight: 700; color: #fff; line-height: 1;
}
.cs-proof-item span { font-size: 11.5px; color: rgba(255,255,255,.45); margin-top: 4px; display: block; line-height: 1.35; }
.cs-proof-item .badge {
  font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: var(--red); color: #fff; padding: 2px 7px; border-radius: 2px;
  margin-bottom: 6px; width: fit-content; display: block;
}
.cs-proof-item .badge.gold { background: var(--gold); }

/* Right: white panel — info cards, image placeholders */
.cs-hero-right {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 24px; border-left: 1px solid var(--border);
  background: var(--white);
}

/* Buttons specific to dark L2 hero */
.btn-white-kg {
  background: #fff; color: var(--kg);
  padding: 13px 28px; border-radius: 3px;
  font-size: 14px; font-weight: 700;
  transition: all .2s; display: inline-flex; align-items: center; gap: 7px;
}
.btn-white-kg:hover { background: var(--kg-pale); transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,.8);
  padding: 12px 24px; border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,.28);
  font-size: 13.5px; font-weight: 500;
  transition: all .2s; display: inline-flex; align-items: center; gap: 7px;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.7); color: #fff; }


/* ── 5. BUTTONS (shared — same values as L1) ─────────────────────── */
.btn-red {
  background: var(--red); color: #fff; padding: 14px 32px; border-radius: 3px;
  font-size: 14.5px; font-weight: 600; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,64,74,.3); }

.btn-line {
  background: transparent; color: var(--kg); padding: 13px 28px; border-radius: 3px;
  border: 1.5px solid var(--kg); font-size: 14px; font-weight: 500;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-line:hover { background: var(--kg-pale); }

.btn-white-solid {
  background: #fff; color: var(--red); padding: 14px 28px; border-radius: 3px;
  font-size: 15px; font-weight: 700; white-space: nowrap;
  transition: all .2s; display: block; text-align: center;
}
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn-transparent {
  background: transparent; color: rgba(255,255,255,.85); padding: 12px 28px;
  border-radius: 3px; border: 1.5px solid rgba(255,255,255,.4);
  font-size: 14px; font-weight: 600; white-space: nowrap;
  text-align: center; transition: all .2s; display: block;
}
.btn-transparent:hover { border-color: #fff; color: #fff; }


/* ── 6. SECTION LAYOUT — TIGHTER THAN L1 ────────────────────────── */
.section     { padding: 64px 5%; }           /* 64px vs 80px on L1 */
.section-alt { background: var(--white); }   /* white on off-white base */
.container   { max-width: 1200px; margin: 0 auto; }

.sec-label   { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 6px; }
.sec-label-w { color: rgba(255,255,255,.4); }
.sec-label-r { color: var(--red); }
.sec-h2      { font-family: "Cormorant Garamond", serif; font-size: clamp(24px, 2.5vw, 38px); font-weight: 600; color: var(--text); line-height: 1.1; margin-bottom: 12px; }
.sec-h2-w    { color: #fff; }
.sec-p       { font-size: 15px; color: var(--text-mid); line-height: 1.8; max-width: 600px; }
.sec-p-w     { color: rgba(255,255,255,.65); }
.sec-header  { margin-bottom: 40px; }


/* ── 7. EXPANDABLE PROCEDURE ACCORDIONS ───────────────────────────
   The L2 page's primary content pattern.
   Each procedure row expands into a two-column deep-dive.
   L1 uses a flat table; L2 uses deep expandable rows.
   ─────────────────────────────────────────────────────────────── */
.proc-deep { display: flex; flex-direction: column; }
.proc-deep-row {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background .18s;
}
.proc-deep-row:first-child { border-top: 1px solid var(--border); }

.proc-deep-header {
  display: grid; grid-template-columns: 56px 1fr auto auto;
  gap: 24px; padding: 24px 20px;
  align-items: center; cursor: pointer;
}
.proc-deep-header:hover { background: var(--off); }

.proc-deep-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px; font-weight: 700; color: var(--kg-pale); line-height: 1;
  transition: color .2s;
}
.proc-deep-row.open .proc-deep-num { color: var(--kg); }

.proc-deep-title  { font-size: 15.5px; font-weight: 700; color: var(--text); }
.proc-deep-sub    { font-size: 12.5px; color: var(--text-soft); margin-top: 3px; }

.proc-deep-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px; white-space: nowrap;
}
.proc-deep-badge.usp   { background: var(--kg-pale); color: var(--kg); }
.proc-deep-badge.india { background: rgba(201,151,62,.13); color: #7a5c1e; border: 1px solid rgba(201,151,62,.28); }

.proc-deep-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--kg-light);
  transition: all .25s; flex-shrink: 0;
}
.proc-deep-row.open .proc-deep-toggle {
  background: var(--kg); color: #fff; border-color: var(--kg); transform: rotate(45deg);
}

.proc-deep-body  { display: none; padding: 0 20px 28px 76px; }
.proc-deep-row.open .proc-deep-body { display: block; }

.proc-body-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; }
.proc-body-text  { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; }
.proc-body-facts { display: flex; flex-direction: column; gap: 8px; }
.proc-fact {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--text-mid);
}
.proc-fact::before { content: "→"; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* India firsts callout box inside procedure body */
.proc-india-box {
  background: rgba(201,151,62,.07);
  border: 1px solid rgba(201,151,62,.2);
  border-radius: 4px; padding: 14px 18px; margin-top: 16px;
}
.proc-india-box-title { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #7a5c1e; margin-bottom: 8px; }
.proc-india-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.proc-india-list li { font-size: 12.5px; color: var(--text-mid); display: flex; gap: 8px; }
.proc-india-list li::before { content: "›"; color: var(--gold); font-weight: 700; }


/* ── 8. DOCTOR CARDS — GROUPED BY SPECIALITY ─────────────────────
   Cards grouped under coloured section headers.
   Compact card design — more info density than L1 rows.
   Top accent bar colour = speciality group colour.
   ─────────────────────────────────────────────────────────────── */
.doc-group-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--kg);
}
.doc-group-icon {
  width: 30px; height: 30px; border-radius: 50%; background: var(--kg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.doc-group-title { font-size: 15px; font-weight: 700; color: var(--kg); }
.doc-group-sub   { font-size: 12px; color: var(--text-soft); margin-left: 6px; }

.doc-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(236px, 1fr)); gap: 14px; }

.doc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.doc-card:hover { box-shadow: 0 8px 24px rgba(54,44,106,.1); transform: translateY(-3px); }

.doc-card-bar { height: 4px; background: var(--kg); }   /* overridden per group with inline style */
.doc-card-body { padding: 20px; }

.doc-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--kg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 600; color: #fff;
}
.doc-card-name  { font-size: 14.5px; font-weight: 700; color: var(--text); line-height: 1.15; }
.doc-card-role  { font-size: 10.5px; font-weight: 600; color: var(--kg-light); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.doc-card-qual  { font-size: 11.5px; color: var(--text-soft); }
.doc-card-spec  { font-size: 12px; color: var(--text-mid); line-height: 1.6; padding-top: 10px; margin-top: 10px; border-top: 1px solid var(--border); }
.doc-card-cta   { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--red); margin-top: 12px; }

.doc-add-slot {
  background: var(--off); border: 1.5px dashed var(--border);
  border-radius: 6px; padding: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 180px;
  color: var(--text-soft); font-size: 13px; font-weight: 600;
}


/* ── 9. OT / INFRASTRUCTURE PANEL ───────────────────────────────── */
.ot-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 32px 30px;
  position: relative; overflow: hidden;
}
.ot-card::before {
  content: attr(data-num);
  font-family: "Cormorant Garamond", serif; font-size: 100px; font-weight: 700;
  color: var(--kg-pale); position: absolute; top: 10px; right: 20px;
  line-height: 1; pointer-events: none;
}
.ot-card h4 { font-size: 16px; font-weight: 700; color: var(--kg); margin-bottom: 10px; position: relative; z-index: 2; }
.ot-card p  { font-size: 13.5px; color: var(--text-soft); line-height: 1.7; margin-bottom: 16px; position: relative; z-index: 2; }
.ot-features { list-style: none; display: flex; flex-direction: column; gap: 7px; position: relative; z-index: 2; }
.ot-features li { font-size: 13px; color: var(--text-mid); display: flex; gap: 8px; align-items: flex-start; }
.ot-features li::before { content: "✓"; color: #22c55e; font-weight: 700; flex-shrink: 0; }


/* ── 10. EMERGENCY BAR (same as L1) ─────────────────────────────── */
.emergency { background: var(--red); padding: 0 5%; }
.emergency-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 48px 0; }
.emergency h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(26px, 3vw, 40px); font-weight: 600; color: #fff; margin-bottom: 8px; }
.emergency p  { font-size: 15px; color: rgba(255,255,255,.78); max-width: 500px; line-height: 1.6; }
.emergency-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }


/* ── 11. FAQ (same as L1 — two-column layout in HTML) ────────────── */
.faq-wrap  { max-width: 820px; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text); transition: color .2s;
}
.faq-q:hover { color: var(--kg); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--kg); flex-shrink: 0; transition: all .2s;
}
.faq-item.open .faq-icon { background: var(--kg); color: #fff; border-color: var(--kg); transform: rotate(45deg); }
.faq-a { display: none; font-size: 14.5px; color: var(--text-mid); line-height: 1.8; padding-bottom: 20px; }
.faq-item.open .faq-a { display: block; }


/* ── 12. IMAGE PLACEHOLDER ───────────────────────────────────────── */
.img-placeholder {
  background: var(--kg-pale); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; display: block; }
.img-placeholder-inner { text-align: center; padding: 28px; position: relative; z-index: 2; }


/* ── 13. FOOTER (same as L1) ──────────────────────────────────────── */
.footer { background: var(--kg-deep); padding: 56px 5% 28px; }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.75; margin-top: 12px; max-width: 240px; }
.footer-col h5  { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col li a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }


/* ── 14. RESPONSIVE ────────────────────────────────────────────── */
@media(max-width:900px) {
  .cs-hero          { grid-template-columns: 1fr; }
  .cs-hero-left     { padding: 56px 5%; min-height: auto; }
  .cs-hero-right    { padding: 40px 5%; border-left: none; border-top: 1px solid var(--border); }
  .proc-body-grid   { grid-template-columns: 1fr; }
  .proc-deep-header { grid-template-columns: 40px 1fr auto; }
  .proc-deep-badge  { display: none; }
  .proc-deep-body   { padding-left: 20px; }
  .emergency-inner  { grid-template-columns: 1fr; }
  .emergency-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}
@media(max-width:640px) {
  .nav-links  { display: none; }
  .topbar     { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   OPTION A — Magazine Long-form
   Page-specific styles only.
   All shared tokens, nav, footer, FAQ, buttons
   come from kgh-subpage-l2.css above.
═══════════════════════════════════════════ */

/* ── HERO: White bg, vertical spine + editorial header ── */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 320px;
}

/* Vertical spine — the defining Option A element */
.hero-spine {
  background: var(--kg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  gap: 0;
  flex-shrink: 0;
}
.hero-spine-line {
  flex: 1;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.hero-spine-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 12px 0;
  white-space: nowrap;
}

/* Main header content */
.hero-main {
  padding: 40px 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}
.hero-overline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.hero-overline::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--red);
  display: block;
  flex-shrink: 0;
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-h1 em { font-style: italic; color: var(--kg); }
.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 20px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* India firsts card — right side of hero */
.firsts-card {
  width: 280px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.firsts-card-head {
  background: var(--kg);
  padding: 10px 16px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.firsts-card-head::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.firsts-card-head span { color: var(--gold); }
.firsts-card-body { background: var(--off); padding: 14px 16px; }
.first-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.first-row:last-child { border-bottom: none; }
.first-n {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201,151,62,.15);
  border: 1px solid rgba(201,151,62,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.first-title { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.3; }
.first-sub   { font-size: 10.5px; color: var(--text-soft); margin-top: 2px; }
.firsts-more {
  padding: 8px 16px;
  background: var(--kg-pale);
  font-size: 11px;
  color: var(--text-soft);
}
.firsts-more a { color: var(--kg); font-weight: 600; }

/* Stat strip — bottom of hero, full width */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  margin: 0 -48px -36px;
}
.hero-stat {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-badge {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}
.hero-stat-badge.gold { color: var(--gold); }
.hero-stat strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--kg);
  line-height: 1;
}
.hero-stat span {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.3;
}

/* ── BODY: Left ToC + right content ── */
.page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: start;
}

/* Table of Contents sidebar */
.toc {
  position: sticky;
  top: 88px;
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--border);
}
.toc-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.toc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-soft);
  cursor: pointer;
  transition: color .15s;
  line-height: 1.3;
}
.toc-item:hover { color: var(--kg); }
.toc-item.active { color: var(--kg); font-weight: 700; }
.toc-item .toc-arrow { font-size: 10px; opacity: .5; transition: all .15s; }
.toc-item:hover .toc-arrow,
.toc-item.active .toc-arrow { opacity: 1; color: var(--red); }
.toc-divider { height: 1px; background: var(--border); margin: 14px 0; }
.toc-cta {
  background: var(--kg);
  border-radius: 3px;
  padding: 14px 12px;
  text-align: center;
  margin-top: 14px;
}
.toc-cta-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.toc-cta a {
  display: block;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 2px;
  transition: background .2s;
}
.toc-cta a:hover { background: var(--red-dark); }

/* Content column */
.content-col {
  padding: 40px 0 40px 48px;
}

/* ── PROCEDURE ROWS ── */
.proc-set { margin-bottom: 0; }
.proc-row {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  scroll-margin-top: 100px;
}
.proc-row:first-child { border-top: 1px solid var(--border); }
.proc-header {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 16px;
  padding: 20px 0;
  align-items: center;
  cursor: pointer;
  transition: background .15s;
}
.proc-header:hover { background: var(--off); margin: 0 -48px; padding: 20px 48px; }
.proc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--kg-pale);
  line-height: 1;
  transition: color .2s;
}
.proc-row.open .proc-num { color: var(--kg); }
.proc-title  { font-size: 15px; font-weight: 700; color: var(--text); }
.proc-sub    { font-size: 12px; color: var(--text-soft); margin-top: 3px; }
.proc-badge  {
  font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px; white-space: nowrap;
}
.proc-badge.excl  { background: var(--kg-pale); color: var(--kg); }
.proc-badge.india { background: rgba(201,151,62,.12); color: #7a5c1e; border: 1px solid rgba(201,151,62,.25); }
.proc-badge.emerg { background: rgba(200,64,74,.1); color: var(--red); border: 1px solid rgba(200,64,74,.2); }
.proc-toggle {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--text-soft);
  transition: all .2s; flex-shrink: 0;
}
.proc-row.open .proc-toggle { background: var(--kg); color: #fff; border-color: var(--kg); transform: rotate(45deg); }

/* Expanded body */
.proc-body { display: none; padding: 0 0 24px 64px; }
.proc-row.open .proc-body { display: block; }
.proc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 36px; }
.proc-text  { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.proc-facts { display: flex; flex-direction: column; gap: 7px; }
.proc-fact  { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--text-mid); }
.proc-fact::before { content: "→"; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* India firsts callout inside proc body */
.india-box {
  background: rgba(201,151,62,.07);
  border: 1px solid rgba(201,151,62,.18);
  border-radius: 3px;
  padding: 12px 16px;
  margin-top: 14px;
}
.india-box-title { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #7a5c1e; margin-bottom: 8px; }
.india-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.india-list li { font-size: 12px; color: var(--text-mid); display: flex; gap: 7px; }
.india-list li::before { content: "›"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── SECTION: OT Specs ── */
.ot-section {
  padding: 56px 5%;
  background: var(--off);
  border-top: 1px solid var(--border);
}
.ot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.ot-checklist { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.ot-check { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-mid); align-items: flex-start; }
.ot-check::before { content: "✓"; color: #22c55e; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Image placeholder */
.img-ph {
  background: var(--kg-pale);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-ph img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.img-ph-inner { text-align: center; padding: 28px; position: relative; z-index: 2; }

/* ── SECTION: Doctors ── */
.docs-section { padding: 56px 5%; background: var(--white); border-top: 1px solid var(--border); }
.docs-inner { max-width: 1200px; margin: 0 auto; }
.docs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.doc-group { margin-bottom: 36px; }
.doc-group-hd {
  display: flex; align-items: center; gap: 11px;
  margin-bottom: 16px; padding-bottom: 11px;
  border-bottom: 2px solid var(--kg);
}
.doc-group-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--kg); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.doc-group-name { font-size: 14.5px; font-weight: 700; color: var(--kg); }
.doc-group-sub  { font-size: 11.5px; color: var(--text-soft); margin-left: 4px; }
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.doc-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.doc-card:hover { box-shadow: 0 6px 20px rgba(54,44,106,.1); transform: translateY(-2px); }
.doc-card-top { height: 3px; background: var(--kg); }
.doc-card-body { padding: 18px; }
.doc-av { width: 44px; height: 44px; border-radius: 50%; background: var(--kg); display: flex; align-items: center; justify-content: center; font-family: "Cormorant Garamond", serif; font-size: 17px; font-weight: 600; color: #fff; flex-shrink: 0; }
.doc-name { font-size: 14px; font-weight: 700; color: var(--text); }
.doc-role { font-size: 10px; font-weight: 700; color: var(--kg-light); text-transform: uppercase; letter-spacing: .05em; margin-top: 1px; }
.doc-qual { font-size: 11px; color: var(--text-soft); }
.doc-spec { font-size: 11.5px; color: var(--text-mid); line-height: 1.55; padding-top: 9px; margin-top: 9px; border-top: 1px solid var(--border); }
.doc-cta { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 600; color: var(--red); margin-top: 11px; }
.doc-add { background: var(--off); border: 1.5px dashed var(--border); border-radius: 4px; padding: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 160px; }
.doc-add span { font-size: 12.5px; font-weight: 600; color: var(--text-soft); }
.doc-add small { font-size: 11px; color: var(--text-soft); opacity: .7; margin-top: 4px; }

/* ── SECTION: FAQ ── */
.faq-section { padding: 56px 5%; background: var(--off); border-top: 1px solid var(--border); }
.faq-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.faq-aside { position: sticky; top: 88px; }

/* Emergency bar — reuse from L2 CSS .emergency class */

/* ── FOOTER from L2 CSS .footer class ── */

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .page-body { grid-template-columns: 1fr; }
  .toc { display: none; }
  .content-col { padding: 32px 0; }
  .proc-header { grid-template-columns: 40px 1fr auto; }
  .proc-badge { display: none; }
  .proc-body  { padding-left: 0; }
  .proc-grid  { grid-template-columns: 1fr; }
  .hero-top   { grid-template-columns: 1fr; }
  .firsts-card { width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin: 0 -28px -28px; }
  .hero-main  { padding: 28px 28px 24px; }
  .ot-inner   { grid-template-columns: 1fr; }
  .faq-inner  { grid-template-columns: 1fr; }
  .faq-aside  { position: static; }
}
@media(max-width:640px) {
  .page-hero  { grid-template-columns: 10px 1fr; }
  .hero-spine { padding: 20px 0; }
  .hero-spine-text { display: none; }
  .nav-links  { display: none; }
  .topbar     { justify-content: center; }
  .footer-top { grid-template-columns: 1fr !important; }
  .hero-stats { grid-template-columns: 1fr 1fr; margin: 0 -20px -20px; }
  .hero-main  { padding: 24px 20px 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   KG Hospital — Level 3 Procedure Deep-Dive CSS
   kgh-subpage-l3.css  (extends kgh-subpage-l2.css + Option A)

   APPLIES TO: Single-procedure deep-dive pages
   Examples: /robotic-cardiac-surgery, /cabg-bypass-surgery,
             /heart-valve-replacement, /minimally-invasive-cardiac-surgery

   HIERARCHY:
     Home                     kgh-homepage.css
     L1  /kg-heart-center     kgh-subpage-l1.css
     L2  /cardiac-surgery     kgh-subpage-l2.css + Option A
     L3  /robotic-cardiac-surgery   THIS FILE (adds to L2 + Option A)

   DESIGN DIFFERENCES FROM L2:
     • Hero: same Option A spine — but right panel is a comparison
       table (Robotic vs MICS vs Open) not a firsts/cath-lab card
     • Hero stat strip: only 3 stats, larger numbers — single claim, bold
     • No multi-procedure ToC. Single sticky "On this page" section nav
     • No accordion rows. Content flows as editorial long-form sections
     • India Firsts get their own full dedicated section, not a side card
     • "Who is a candidate?" section — unique to L3 procedure pages
     • "What to expect" patient journey section — unique to L3
     • Section padding: 56px (tighter than L2 64px)
     • No section alternation rule change — same white/off-white

   SHARED WITH L2: All tokens, nav, breadcrumb, emergency, FAQ, footer,
   .btn-red, .btn-line, .btn-white-solid, .btn-transparent
═══════════════════════════════════════════════════════════════ */

/* Override section padding to 56px (L2 is 64px) */
.section { padding: 56px 5%; }

/* ── L3 HERO: Same spine, different right panel ── */
/* Inherits .page-hero, .hero-spine, .hero-main, .hero-overline,
   .hero-h1, .hero-desc, .hero-ctas from Option A CSS.
   Only changes: stat strip to 3 cols, right panel = compare table */
.hero-stats { grid-template-columns: repeat(3, 1fr); }

/* ── L3 BODY: Single-topic section nav (not multi-proc ToC) ── */
.l3-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: start;
}
.l3-nav {
  position: sticky;
  top: 88px;
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--border);
}
.l3-nav-label {
  font-size: 9px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 14px;
}
.l3-nav-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-soft);
  cursor: pointer; transition: color .15s; line-height: 1.3;
}
.l3-nav-item:hover { color: var(--kg); }
.l3-nav-item.active { color: var(--kg); font-weight: 700; }
.l3-nav-item .arrow { font-size: 10px; opacity: .5; transition: all .15s; }
.l3-nav-item:hover .arrow, .l3-nav-item.active .arrow { opacity: 1; color: var(--red); }
.l3-nav-divider { height: 1px; background: var(--border); margin: 12px 0; }
.l3-nav-cta {
  background: var(--kg); border-radius: 3px;
  padding: 14px 12px; text-align: center; margin-top: 14px;
}
.l3-nav-cta-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.55); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.l3-nav-cta a {
  display: block; background: var(--red); color: #fff;
  font-size: 13px; font-weight: 700; padding: 10px 8px;
  border-radius: 2px; transition: background .2s;
}
.l3-nav-cta a:hover { background: var(--red-dark); }
.l3-content {
  padding: 48px 0 48px 52px;
}

/* ── L3 SECTION ANCHORS ── */
.l3-section {
  padding: 0 0 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  scroll-margin-top: 100px;
}
.l3-section:last-child { border-bottom: none; }
.l3-section-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px; padding-top: 48px;
}
.l3-section-label::before {
  content: ""; width: 20px; height: 1.5px; background: var(--red); display: block; flex-shrink: 0;
}
.l3-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600; color: var(--text); line-height: 1.15; margin-bottom: 14px;
}
.l3-section h2 em { font-style: italic; color: var(--kg); }
.l3-body-text {
  font-size: 14.5px; color: var(--text-mid); line-height: 1.85;
  max-width: 680px; margin-bottom: 20px;
}
.l3-body-text strong { color: var(--text); }
.l3-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; }

/* ── COMPARISON TABLE ── */
.compare-wrap {
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; margin-top: 0;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare-table th {
  padding: 11px 14px; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border); text-align: center;
}
.compare-table th:first-child { text-align: left; background: var(--off); }
.compare-table th.col-robotic { background: var(--kg); color: #fff; }
.compare-table th.col-mics    { background: var(--kg-pale); color: var(--kg); }
.compare-table th.col-open    { background: #fff; color: var(--text-soft); }
.compare-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  color: var(--text-mid); text-align: center; vertical-align: middle;
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text); background: var(--off); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.col-robotic { background: rgba(54,44,106,.04); font-weight: 700; color: var(--kg); }
.compare-table td.win { color: #15803d; font-weight: 700; }
.compare-table td.mid { color: var(--text-mid); }
.compare-table td.low { color: var(--text-soft); }

/* ── PROCEDURE TILES (L3 — not accordion rows) ── */
.proc-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-top: 20px; }
.proc-tile {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 22px 20px;
  transition: box-shadow .2s, transform .2s;
}
.proc-tile:hover { box-shadow: 0 6px 20px rgba(54,44,106,.1); transform: translateY(-2px); }
.proc-tile-num {
  font-family: "Cormorant Garamond", serif; font-size: 32px;
  font-weight: 700; color: var(--kg-pale); line-height: 1; margin-bottom: 8px;
}
.proc-tile h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.proc-tile p  { font-size: 12.5px; color: var(--text-soft); line-height: 1.6; }
.proc-tile .india-tag {
  display: inline-block; background: rgba(201,151,62,.12);
  border: 1px solid rgba(201,151,62,.28); color: #7a5c1e;
  font-size: 9.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 2px;
  margin-top: 10px;
}

/* ── INDIA FIRSTS — dedicated section ── */
.firsts-grid { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.first-row-l3 {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.first-row-l3:last-child { border-bottom: none; }
.first-num-l3 {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201,151,62,.12); border: 1px solid rgba(201,151,62,.28);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif; font-size: 18px;
  font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.first-title-l3 { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.first-sub-l3   { font-size: 13px; color: var(--text-soft); line-height: 1.6; }
.first-sub-l3 strong { color: var(--text-mid); }

/* ── CANDIDATE ASSESSMENT ── */
.candidate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.candidate-card {
  border-radius: 4px; padding: 20px 22px; border: 1px solid var(--border);
}
.candidate-card.good { background: #f0fdf4; border-color: #bbf7d0; }
.candidate-card.less { background: #faf9fd; }
.candidate-card-title {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px; display: flex; align-items: center; gap: 7px;
}
.candidate-card.good .candidate-card-title { color: #15803d; }
.candidate-card.less .candidate-card-title { color: var(--text-soft); }
.candidate-item { display: flex; gap: 9px; font-size: 13px; color: var(--text-mid); margin-bottom: 8px; line-height: 1.5; }
.candidate-card.good  .candidate-item::before { content: "✓"; color: #15803d; font-weight: 700; flex-shrink: 0; }
.candidate-card.less  .candidate-item::before { content: "→"; color: var(--text-soft); flex-shrink: 0; }

/* ── PATIENT JOURNEY ── */
.journey { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.journey-step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 16px; padding: 18px 0; position: relative;
}
.journey-step::after {
  content: ""; position: absolute; left: 20px; top: 54px;
  bottom: 0; width: 1px; background: var(--border);
}
.journey-step:last-child::after { display: none; }
.journey-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--kg); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; position: relative; z-index: 2;
}
.journey-step.done .journey-num { background: #22c55e; }
.journey-title { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.journey-desc  { font-size: 13px; color: var(--text-soft); line-height: 1.65; }
.journey-time  { font-size: 11px; font-weight: 600; color: var(--kg-light); margin-top: 4px; }

/* ── IMAGE PLACEHOLDER (L3 — same pattern, different sizing) ── */
.img-ph {
  background: var(--kg-pale); border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.img-ph img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.img-ph-inner { text-align: center; padding: 24px; position: relative; z-index: 2; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .l3-body { grid-template-columns: 1fr; }
  .l3-nav  { display: none; }
  .l3-content { padding: 32px 0; }
  .l3-two-col { grid-template-columns: 1fr; }
  .candidate-grid { grid-template-columns: 1fr; }
}
@media(max-width:640px) {
  .proc-tiles { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* Spine watermark specific to this page */
.hero-spine-text::after { content: "ROBOTIC"; }