
: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;
  /* Blood bank accent — deep red for blood theme */
  --blood:    #9b1c2e;
  --blood-pale: #fdf0f2;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  background: var(--off);
  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 ── */
.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); }

/* ── HERO — Magazine Spine ── */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 320px;
}
.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;
}
.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; }

/* Capabilities card */
.firsts-card { width: 290px; 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: 20px; height: 20px; border-radius: 50%;
  background: rgba(155,28,46,.12); border: 1px solid rgba(155,28,46,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--blood); flex-shrink: 0; margin-top: 1px;
}
.first-n.kg { background: rgba(54,44,106,.12); border-color: rgba(54,44,106,.25); color: var(--kg); }
.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; }

/* Hero stat strip */
.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-badge.blood { color: var(--blood); }
.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; }

/* ── BUTTONS ── */
.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-blood {
  background: var(--blood); color: #fff; padding: 14px 28px; border-radius: 3px;
  font-size: 14px; font-weight: 700; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-blood:hover { background: #7a1524; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(155,28,46,.3); }
.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; }

/* ── DONATE BANNER — blood bank specific ── */
.donate-banner {
  background: var(--blood);
  padding: 0 5%;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.donate-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center; padding: 28px 0;
}
.donate-banner h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px,2.2vw,30px); font-weight: 600; color: #fff; margin-bottom: 6px;
}
.donate-banner p { font-size: 14px; color: rgba(255,255,255,.72); max-width: 540px; line-height: 1.55; }
.donate-eligibility {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px;
}
.donate-pill {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 600; color: #fff;
}

/* ── PAGE BODY ── */
.page-body {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: 200px 1fr; gap: 0; align-items: start;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.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(--blood); color: #fff;
  font-size: 13px; font-weight: 700; padding: 10px 8px;
  border-radius: 2px; transition: background .2s;
}
.toc-cta a:hover { background: #7a1524; }
.content-col { padding: 40px 0 40px 48px; }

/* ── SECTION LABELS ── */
.sec-label   { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 6px; }
.sec-label-r { color: var(--red); }
.sec-label-blood { color: var(--blood); }
.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-p  { font-size: 15px; color: var(--text-mid); line-height: 1.8; max-width: 600px; }
.sec-header { margin-bottom: 40px; }

/* ── PROCEDURE ACCORDION ── */
.proc-set { margin-bottom: 0; }
.proc-row {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  scroll-margin-top: 100px;
  transition: background .15s;
}
.proc-row:first-child { border-top: 1px solid var(--border); }
.proc-row.featured { border-left: 3px solid var(--blood); background: var(--blood-pale); }
.proc-row.featured .proc-header:hover { background: #fce8ea; }
.proc-row.featured .proc-num { color: rgba(155,28,46,.2); }
.proc-row.featured.open .proc-num { color: var(--blood); }
.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-row.featured .proc-header:hover { margin: 0; padding: 20px 0; }
.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-badge.blood-b { background: rgba(155,28,46,.1); color: var(--blood); border: 1px solid rgba(155,28,46,.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); }
.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; }

/* Callout boxes */
.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; }

.blood-box { background: rgba(155,28,46,.05); border: 1px solid rgba(155,28,46,.15); border-radius: 3px; padding: 12px 16px; margin-top: 14px; }
.blood-box-title { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blood); margin-bottom: 8px; }
.blood-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.blood-list li { font-size: 12px; color: var(--text-mid); display: flex; gap: 7px; }
.blood-list li::before { content: "›"; color: var(--blood); font-weight: 700; flex-shrink: 0; }

/* Signpost */
.l3-signpost { margin-top: 20px; background: var(--kg-palest); border: 1px solid var(--border); border-left: 3px solid var(--kg); border-radius: 4px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.l3-signpost-label { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 4px; }
.l3-signpost-title { font-size: 14px; font-weight: 700; color: var(--kg); margin-bottom: 3px; }
.l3-signpost-desc { font-size: 12.5px; color: var(--text-mid); line-height: 1.5; }
.l3-signpost-cta { background: var(--kg); color: #fff; padding: 10px 20px; border-radius: 3px; font-size: 13px; font-weight: 700; white-space: nowrap; transition: all .2s; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
.l3-signpost-cta:hover { background: var(--kg-light); transform: translateY(-1px); }

/* ── BLOOD COMPONENT CARDS (grid tiles) ── */
.component-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px; margin-top: 20px; }
.component-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 20px 18px;
  transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.component-card:hover { box-shadow: 0 4px 16px rgba(54,44,106,.09); transform: translateY(-2px); }
.component-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.component-card.rbc::before   { background: var(--blood); }
.component-card.plasma::before{ background: var(--gold); }
.component-card.plt::before   { background: #3b82f6; }
.component-card.cryo::before  { background: #7c3aed; }
.component-card.gran::before  { background: #16a34a; }
.component-card.whole::before { background: var(--kg); }
.component-tag { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); border: 1px solid var(--border); border-radius: 2px; padding: 2px 7px; width: fit-content; margin-bottom: 10px; }
.component-card h4 { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.component-card p  { font-size: 12px; color: var(--text-soft); line-height: 1.6; }
.component-temp { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 600; color: var(--text-mid); margin-top: 8px; }
.component-temp::before { content: "🌡"; font-size: 12px; }

/* ── DONOR ELIGIBILITY TABLE ── */
.eligibility-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 20px; }
.eligibility-table th {
  padding: 10px 14px; background: var(--kg); color: rgba(255,255,255,.8);
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-align: left; border-bottom: 2px solid rgba(255,255,255,.1);
}
.eligibility-table td {
  padding: 11px 14px; border-bottom: 1px solid var(--border);
  color: var(--text-mid); vertical-align: middle;
}
.eligibility-table td:first-child { font-weight: 600; color: var(--text); width: 42%; }
.eligibility-table tr:last-child td { border-bottom: none; }
.eligibility-table tr:nth-child(even) td { background: var(--off); }
.tag-ok  { display: inline-block; background: #dcfce7; color: #15803d; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 2px; }
.tag-no  { display: inline-block; background: rgba(200,64,74,.1); color: var(--red); font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 2px; }

/* ── TESTING STEPS ── */
.test-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; margin-top: 20px; }
.test-step {
  background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 18px 16px;
  position: relative;
}
.test-step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px; font-weight: 700; color: var(--kg-pale); line-height: 1; margin-bottom: 6px;
}
.test-step h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.test-step p  { font-size: 11.5px; color: var(--text-soft); line-height: 1.55; }

/* ── OT / INFRASTRUCTURE ── */
.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-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; }
.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; }

/* ── 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; }

/* ── 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; }
.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; }

/* ── EMERGENCY ── */
.emergency { background: var(--blood); 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; }

/* ── FOOTER ── */
.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; }

/* ── IMG 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-inner { text-align: center; padding: 28px; position: relative; z-index: 2; }

/* ── WHY BEST ── */
.why-best { max-width: 800px; }
.why-best h3 { font-family: "Cormorant Garamond", serif; font-size: 21px; font-weight: 600; color: var(--text); margin-bottom: 10px; margin-top: 32px; }
.why-best h3:first-of-type { margin-top: 0; }
.why-best p  { font-size: 14.5px; color: var(--text-mid); line-height: 1.88; margin-bottom: 4px; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .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; }
  .page-body   { grid-template-columns: 1fr; }
  .toc { display: none; }
  .content-col { padding: 32px 0; }
  .ot-inner    { grid-template-columns: 1fr; }
  .faq-inner   { grid-template-columns: 1fr; }
  .faq-aside   { position: static; }
  .emergency-inner { grid-template-columns: 1fr; }
  .emergency-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .proc-header { grid-template-columns: 40px 1fr auto; }
  .proc-badge  { display: none; }
  .proc-body   { padding-left: 0; }
  .proc-grid   { grid-template-columns: 1fr; }
  .donate-banner-inner { grid-template-columns: 1fr; }
}
@media(max-width:640px) {
  .nav-links  { display: none; }
  .topbar     { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; margin: 0 -20px -20px; }
  .hero-main  { padding: 24px 20px 20px; }
  .page-hero  { grid-template-columns: 10px 1fr; }
  .hero-spine-text { display: none; }
  .component-grid { grid-template-columns: 1fr 1fr; }
  .test-steps { grid-template-columns: 1fr 1fr; }
  .l3-signpost { flex-direction: column; align-items: flex-start; }
}
