/* =============================================================
   Biruni Hospital — Oncology Center: page-specific components.
   Loaded after style.css, reuses the same design tokens
   (--navy-900, --blue-600, --cyan-500, --radius-lg, --shadow-*).
   ============================================================= */

.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-head .eyebrow { display: block; }
.section-head p { color: var(--text-body); font-size: 15.5px; line-height: 1.65; margin-top: 8px; }

/* ---------- Technologies. Renamed onco-tech-* (not tech-*): the shared
   style.css inherited from KVC already defines a small text-only, dark
   glassmorphism .tech-card/.tech-grid for a different context — reusing
   those names would collide with it. This is a bigger, image-led card:
   a full-bleed cover photo (not contain+padding, which read as "tiny
   device floating in whitespace") with the category as an overlay chip
   on the image itself, echoing .onco-service-card's treatment elsewhere
   on this page. ---------- */
.section-tech { padding: 88px 0; }
.onco-tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.onco-tech-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.onco-tech-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.onco-tech-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(160deg, #eef4f9, #dce8f2); }
.onco-tech-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.onco-tech-card:hover .onco-tech-img img { transform: scale(1.07); }
.onco-tech-cat {
  position: absolute; top: 14px; inset-inline-start: 14px; z-index: 1;
  background: var(--navy-900); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; letter-spacing: .02em;
}
.onco-tech-body { padding: 22px 22px 26px; }
.onco-tech-body h3 { font-size: 19px; margin-bottom: 10px; }
.onco-tech-body p { color: var(--text-body); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- Quality / stats section ---------- */
.onco-stats { padding: 88px 0; background: var(--surface-alt); }
.onco-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.onco-quality-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-900), var(--blue-600));
  padding: 40px; display: flex; align-items: flex-end; min-height: 340px;
}
.onco-quality-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.onco-quality-content { position: relative; z-index: 1; color: #fff; }
.onco-quality-badge { width: 72px; height: auto; margin-bottom: 20px; }
.onco-quality-content h2 { color: #fff; font-size: 26px; margin-bottom: 10px; }
.onco-quality-content p { color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.6; }

.onco-stat-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.onco-stat-tile {
  border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column;
  justify-content: center; min-height: 155px; position: relative; overflow: hidden;
}
.onco-stat-tile strong { font-family: var(--font-head); font-size: 34px; font-weight: 800; margin-bottom: 6px; }
.onco-stat-tile span { font-size: 14.5px; }
.onco-stat-tile-dark { background: linear-gradient(160deg, var(--navy-900), var(--blue-600)); color: #fff; }
.onco-stat-tile-light { background: #fff; color: var(--navy-900); box-shadow: var(--shadow-card); }

.onco-services-intro { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.onco-services-intro p { color: var(--text-body); font-size: 15.5px; line-height: 1.65; margin: 12px 0 24px; }
.onco-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.onco-service-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden; min-height: 220px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-card);
}
.onco-service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.onco-service-card:hover img { transform: scale(1.06); }
.onco-service-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,58,.88), rgba(15,32,58,0) 65%);
}
.onco-service-card span { position: relative; z-index: 1; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 17px; padding: 20px; }

/* ---------- Cancer types ---------- */
.onco-cancer-types { padding: 88px 0; }
.onco-cancer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 48px;
  background: var(--surface-alt); border-radius: var(--radius-lg); padding: 28px;
}
.onco-cancer-item {
  display: flex; align-items: center; gap: 10px; background: #fff; border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 14px; font-weight: 500; color: var(--navy-800);
}
.onco-check {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(48,123,196,.12);
  color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
}
.onco-cta-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-900); }
.onco-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.onco-cta-content { position: relative; z-index: 1; padding: 64px 24px; text-align: center; max-width: 680px; margin: 0 auto; color: #fff; }
.onco-cta-quote { font-family: var(--font-head); font-style: italic; font-size: 24px; color: #9fd4ea; margin-bottom: 12px; }
.onco-cta-sub { font-size: 19px; margin-bottom: 28px; }
.onco-cta-btns { display: flex; justify-content: center; }
.onco-cta-btns .btn-lg { padding: 16px 44px; font-size: 16px; }

/* ---------- Doctors section: card styles come from shared/css/style.css (dr-* classes) ---------- */
.section-doctors { padding: 88px 0; }

/* CV modal */
.cv-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cv-modal[hidden] { display: none; }
.cv-modal-backdrop { position: absolute; inset: 0; background: rgba(15,32,58,.65); }
.cv-modal-dialog {
  position: relative; background: #fff; border-radius: var(--radius-lg); max-width: 640px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 36px 32px; box-shadow: var(--shadow-lift);
}
.cv-modal-close {
  position: absolute; top: 18px; inset-inline-end: 18px; width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--surface-alt); color: var(--navy-800); display: flex; align-items: center;
  justify-content: center; cursor: pointer;
}
.cv-modal-name { font-size: 22px; margin-bottom: 6px; padding-inline-end: 40px; }
.cv-modal-specialty { color: var(--blue-600); font-weight: 600; font-size: 14px; margin-bottom: 24px; }
.cv-modal-section { background: var(--surface-alt); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 14px; }
.cv-modal-section h4 { font-size: 14.5px; color: var(--navy-900); margin-bottom: 10px; }
.cv-modal-section ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cv-modal-section li { font-size: 13.5px; color: var(--text-body); line-height: 1.5; padding-inline-start: 18px; position: relative; }
.cv-modal-section li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-600); }
[dir="rtl"] .cv-modal-section li::before { left: auto; right: 0; }

/* ---------- FAQ (standalone section) ---------- */
.section-faq { padding: 88px 0; background: var(--surface-alt); }
.faq-panel { max-width: 800px; margin: 0 auto; }
.faq-panel > .section-head { margin-bottom: 32px; }

/* ---------- International patients: widen the shared .section-hero-content
   for this page's richer service-card grid. ---------- */
#international .section-hero-content { max-width: 980px; padding: 72px 24px; }
.onco-intl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 34px; margin-top: 36px; }
.onco-intl-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md); padding: 18px 20px; color: #fff; text-align: start;
}

/* ---------- Split section (image + content, e.g. "All Under One Roof") ---------- */
.section-split { padding: 88px 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); height: 100%; }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-content p { color: var(--text-body); font-size: 15.5px; line-height: 1.65; margin: 12px 0 20px; }
.split-features { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.split-features li {
  background: var(--surface-alt); border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 14px; font-weight: 500; color: var(--navy-800); position: relative; padding-inline-start: 40px;
}
.split-features li::before {
  content: "✓"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--blue-600); font-weight: 800;
}
[dir="rtl"] .split-features li { padding-inline-start: 16px; padding-inline-end: 40px; }
[dir="rtl"] .split-features li::before { left: auto; right: 14px; }
.split-whatsapp-note {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600)); border-radius: var(--radius-md); padding: 20px 24px;
}
.split-whatsapp-note strong { display: block; color: #fff; margin-bottom: 4px; }
.split-whatsapp-note span { color: rgba(255,255,255,.82); font-size: 14px; }
.split-whatsapp-note .cs-btn.cs-style-1 { background: #fff; }
.split-whatsapp-note .cs-btn.cs-style-1::before, .split-whatsapp-note .cs-btn.cs-style-1::after { display: none; }
.split-whatsapp-note .cs-btn.cs-style-1 span { color: var(--navy-800); }

/* ---------- Contact / final CTA section: the shared style.css never gave
   .section-contact its own padding (only the generic .section utility
   class did, which this page doesn't use), so it sat flush against its
   neighbors. ---------- */
.section-contact { padding: 88px 0; }

/* ---------- CTA strip: smaller than the shared style.css default (76px),
   this page already ends with a full contact section right above it, so
   the closing strip only needs to be a slim reinforcement, not another
   full-height block. ---------- */
.cta-strip { padding: 40px 0; }
.cta-strip-inner h2 { font-size: 24px; }
.cta-strip-inner p { margin-bottom: 20px; }
.cta-strip-btns { margin-bottom: 18px; }
.cta-strip-btns .btn { padding: 12px 26px; font-size: 14.5px; }

/* ---------- Section rhythm: a hairline seam between stacked sections so
   each block reads as distinct rather than bleeding into the next
   (skipped on the CTA strip, which already has its own gradient edge). ---------- */
main > section + section:not(.cta-strip) { border-top: 1px solid var(--border); }

/* International patients: the intro paragraph had no color rule of its own
   (only .section-hero-sub did) and was invisible against the dark overlay. */
#international .section-hero-content > p { color: rgba(255,255,255,.88); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .onco-stats-grid { grid-template-columns: 1fr; }
  .onco-services-grid { grid-template-columns: repeat(2, 1fr); }
  .onco-cancer-grid { grid-template-columns: repeat(3, 1fr); }
  .onco-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .onco-intl-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; }
  .split-media { max-height: 340px; }
}
@media (max-width: 767px) {
  .onco-cancer-grid { grid-template-columns: repeat(2, 1fr); padding: 18px; gap: 10px; }
  .onco-services-grid { grid-template-columns: 1fr; }
  .onco-intl-grid { grid-template-columns: 1fr; }
  .onco-stat-tiles { grid-template-columns: 1fr; }
  .cv-modal-dialog { padding: 26px 20px; }
  .section-faq, .section-split, .section-contact,
  .onco-stats, .onco-cancer-types, .section-doctors, .section-tech { padding: 56px 0; }
  .onco-tech-grid { grid-template-columns: 1fr; }
}

/* ---------- Hero title: on mobile, override the shared style.css defaults
   (which center-wrap at 25-30px) — smaller and reading-start aligned.
   .hero-grid's mobile media query only redeclares display/flex-direction/gap,
   so it still inherits align-items:center from the desktop grid rule above
   it — that's what was actually centering the title's box (text-align alone
   can't fix a shrink-to-fit + centered box). Restore flex's own default
   (stretch) so text content goes full-width again. ---------- */
@media (max-width: 991px) {
  .hero-grid { align-items: stretch; }
}

/* ---------- WhatsApp float icon centering fix: .whatsapp-float and .float-btn
   are combined on the SAME <a> element in the markup, but .whatsapp-float
   sets align-items:flex-end + flex-direction:column (meant for a separate
   icon+tooltip wrapper elsewhere) which overrides .float-btn's own
   align-items:center for THIS element's cross axis — pushing the icon to
   one side instead of centering it, reading as "crooked" in the circle. */
.whatsapp-float.float-btn { flex-direction: row; align-items: center; justify-content: center; }

@media (max-width: 767px) {
  .hero-title { font-size: 22px; text-align: start; }
  .hero-title-break { display: none; }
}

/* ---------- WhatsApp chat teaser: proactive invitation bubble, shown a
   few seconds after load (see js/main.js), positioned above the WhatsApp
   float button it belongs to. Hidden by default; .is-open (added by JS)
   fades/slides it in. ---------- */
.onco-wa-teaser {
  position: fixed; z-index: 9997; bottom: 96px; inset-inline-end: 30px; width: 300px; max-width: calc(100vw - 40px);
  background: #fff; border-radius: 16px; box-shadow: 0 20px 50px rgba(20,43,77,.25);
  padding: 14px 16px 16px; opacity: 0; visibility: hidden; transform: translateY(16px) scale(.96);
  transition: opacity .35s ease, transform .35s ease, visibility .35s; pointer-events: none;
}
.onco-wa-teaser.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.onco-wa-teaser-close {
  position: absolute; top: 8px; inset-inline-end: 8px; width: 22px; height: 22px; border-radius: 50%;
  border: none; background: var(--surface-alt); color: var(--text-body); cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.onco-wa-teaser-close:hover { background: var(--border); }
.onco-wa-teaser-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding-inline-end: 16px; }
.onco-wa-teaser-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(160deg,#3ddc63,#25d366);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.onco-wa-teaser-meta { min-width: 0; }
.onco-wa-teaser-meta strong { display: block; font-size: 13.5px; color: var(--navy-900); line-height: 1.3; }
.onco-wa-teaser-meta em {
  font-style: normal; font-size: 11.5px; color: #1f9d55; display: flex; align-items: center; gap: 4px;
}
.onco-wa-teaser-meta em::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #1f9d55; display: inline-block; flex: none; }
.onco-wa-teaser-bubble {
  background: var(--surface-alt); border-radius: 12px; padding: 10px 12px; font-size: 13px; color: var(--navy-800);
  line-height: 1.5; margin-bottom: 12px; text-align: start;
}
.onco-wa-teaser-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: linear-gradient(160deg,#3ddc63,#25d366); color: #fff; font-weight: 600; font-size: 13.5px;
  padding: 10px; border-radius: 999px; transition: transform .2s ease;
}
.onco-wa-teaser-cta:hover { transform: translateY(-2px); }
@media (max-width: 991px) { .onco-wa-teaser { bottom: 92px; } }
@media (max-width: 575px) { .onco-wa-teaser { inset-inline-end: 18px; width: 260px; } }

/* =====================================================================
   Brochure-derived sections (Biruni Oncology Brochure-EN).
   All reuse the page's existing tokens; no new colors are introduced.
   ===================================================================== */

/* A section-head reversed out on the dark bands. `em` carries the accent
   half of a two-tone heading (the light sections use a plain <h2>). */
.onco-head-invert h2 { color: #fff; }
.onco-head-invert h2 em { font-style: normal; color: var(--cyan-500); }
.onco-head-invert p { color: rgba(255, 255, 255, .78); }
.onco-head-invert .eyebrow { color: var(--cyan-500); }
.onco-head-start { margin-inline-start: 0; text-align: start; }

/* ---------- Who we care for: a dark qualifying band placed high on the
   page, so a visitor can self-identify before reading the cancer list. --- */
.onco-audience {
  padding: 88px 0; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900), #14315c);
}
.onco-aud-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 44px; }
.onco-aud-item { display: flex; gap: 14px; align-items: flex-start; }
.onco-aud-tick {
  flex: none; width: 30px; height: 30px; border-radius: 9px; margin-top: 2px;
  background: rgba(90, 200, 225, .16); border: 1px solid rgba(90, 200, 225, .4);
  color: var(--cyan-500); display: flex; align-items: center; justify-content: center;
}
.onco-aud-item h3 { color: #fff; font-size: 16.5px; margin: 0 0 5px; }
.onco-aud-item p { color: rgba(255, 255, 255, .7); font-size: 14px; line-height: 1.6; margin: 0; }

.onco-aud-note {
  margin-top: 44px; padding: 26px 30px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07); border-inline-start: 4px solid var(--cyan-500);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.onco-aud-note p { color: rgba(255, 255, 255, .86); font-size: 14.5px; line-height: 1.7; margin: 0; flex: 1 1 460px; }
.onco-aud-note strong { color: #fff; }

/* ---------- One center / what sets us apart ---------- */
.onco-onecenter { padding: 88px 0; background: var(--surface-alt); }
.onco-apart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.onco-apart-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-card);
}
.onco-apart-ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(160deg, var(--navy-900), var(--blue-600));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.onco-apart-item h3 { font-size: 16px; line-height: 1.3; margin: 0 0 7px; }
.onco-apart-item p { color: var(--text-body); font-size: 14px; line-height: 1.6; margin: 0; }

/* The brochure's "why choose us" numbers, kept as a compact proof row rather
   than a second six-card grid saying much the same thing. */
.onco-fact-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 22px; }
.onco-fact {
  background: linear-gradient(160deg, var(--navy-900), var(--blue-600)); color: #fff;
  border-radius: var(--radius-lg); padding: 24px 22px;
}
.onco-fact-ic { display: block; color: var(--cyan-500); margin-bottom: 12px; }
.onco-fact strong { display: block; font-family: var(--font-head); font-size: 23px; font-weight: 800; margin-bottom: 5px; }
.onco-fact span { color: rgba(255, 255, 255, .8); font-size: 13.5px; line-height: 1.5; }

.onco-accred-line {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 28px 0 0; color: var(--text-muted); font-size: 14.5px; text-align: center;
}
.onco-accred-line span { color: var(--blue-600); display: flex; }

/* ---------- Tumor board ---------- */
.onco-board { padding: 88px 0; }
.onco-board-who {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 30px; margin-bottom: 40px;
}
.onco-board-who h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-600); margin: 0 0 18px;
}
.onco-board-who h3 span { display: flex; }
.onco-board-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.onco-board-chips li {
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 22px; font-size: 14.5px; font-weight: 600; color: var(--navy-800);
}

.onco-board-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.onco-step { display: flex; gap: 20px; align-items: flex-start; padding: 18px 0; position: relative; }
/* A hairline rail joining the numbered markers, so the five steps read as one
   sequence instead of five unrelated rows. */
.onco-step::before {
  content: ""; position: absolute; top: 56px; bottom: -4px; inset-inline-start: 21px;
  width: 1.5px; background: var(--border);
}
.onco-step:last-child::before { display: none; }
.onco-step-num {
  flex: none; width: 44px; height: 44px; border-radius: 50%; position: relative; z-index: 1;
  border: 2px solid var(--blue-600); background: #fff; color: var(--blue-600);
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.onco-step-body h3 { font-size: 17.5px; margin: 8px 0 7px; }
.onco-step-tag {
  display: inline-block; vertical-align: middle; margin-inline-start: 8px;
  background: rgba(48, 123, 196, .12); color: var(--blue-600);
  font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.onco-step-body p { color: var(--text-body); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---------- Minimally invasive & robotic surgery ---------- */
.onco-robotic {
  padding: 88px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--blue-600) 100%);
}
.onco-robotic-pattern {
  position: absolute; inset-inline-end: -60px; top: -40px; width: 380px; height: 380px;
  opacity: .12; pointer-events: none;
}
.onco-robotic > .container { position: relative; z-index: 1; }
.onco-robo-benefits {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 26px;
}
.onco-robo-benefits h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan-500); margin: 0 0 18px;
}
.onco-robo-benefits h3 span { display: flex; }
.onco-robo-benefits ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px;
}
.onco-robo-benefits li {
  color: rgba(255, 255, 255, .92); font-size: 15px; line-height: 1.5;
  position: relative; padding-inline-start: 20px;
}
.onco-robo-benefits li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-500);
}
.onco-robo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.onco-robo-card {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg); padding: 24px 22px;
}
.onco-robo-ic { display: block; color: var(--cyan-500); margin-bottom: 12px; }
.onco-robo-card h3 { color: #fff; font-size: 17px; margin: 0 0 8px; }
.onco-robo-card p { color: rgba(255, 255, 255, .76); font-size: 14px; line-height: 1.6; margin: 0; }
.onco-robo-note {
  margin: 26px 0 0; padding: 18px 24px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07); border-inline-start: 4px solid var(--cyan-500);
  color: rgba(255, 255, 255, .86); font-size: 14.5px; line-height: 1.65;
}

/* ---------- Treatments ---------- */
.onco-treatments { padding: 88px 0; background: var(--surface-alt); }
/* A 6-track grid lets the two content-rich panels (Surgical, Cellular) share
   a half-width row each, and the three lighter panels (Medical, Radiation,
   Diagnostics) share a three-across row below -- exactly filling both rows
   instead of leaving the fifth card stranded alone under two full-width
   ones. align-items:start keeps each row's panels at their own natural
   height rather than stretching to match a taller neighbour. */
.onco-treat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; align-items: start; }
.onco-treat-panel { grid-column: span 2; }
/* Surgical and Hematologic are the only two items on row one, so stretching
   just these two (independent of the grid's own start-aligned second row)
   matches Hematologic's height to Surgical's instead of leaving it shorter. */
.onco-treat-panel-wide { grid-column: span 3; align-self: stretch; }
.onco-treat-panel {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 32px; box-shadow: var(--shadow-card);
}
.onco-treat-panel h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 19px; margin: 0 0 18px; color: var(--navy-900);
}
.onco-treat-ic {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(160deg, var(--navy-900), var(--blue-600));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.onco-treat-panel h4 {
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-600); margin: 20px 0 10px;
}
.onco-treat-panel h3 + h4 { margin-top: 0; }
.onco-treat-note { color: var(--text-body); font-size: 14.5px; line-height: 1.65; margin: -4px 0 0; }
/* Single column by default: at one-third of the grid's width these panels
   are narrower than the old 50%-wide layout was, so a second column would
   crowd the longer phrases (e.g. "Comprehensive genetic analysis"). */
.onco-treat-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 9px 28px;
}
.onco-treat-list li {
  color: var(--text-body); font-size: 14px; line-height: 1.5;
  position: relative; padding-inline-start: 18px;
}
.onco-treat-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-600);
}
/* The wide surgical/cellular panels are half the grid's width, wide enough
   for two columns (their old three-column treatment was sized for the
   full-bleed layout this replaces). */
.onco-treat-panel-wide .onco-treat-list { grid-template-columns: repeat(2, 1fr); }

/* ---------- Targeted treatment / interventional & nuclear ---------- */
.onco-targeted { padding: 88px 0; background: var(--surface-alt); }
/* An even 1fr/1fr split left a short, single-column list of eight short
   phrases stranded beside a dense ten-row reference table -- the table
   wrapped onto 2-3 lines per row and ran much taller, so the nuclear card
   read as an empty box with a lot of dead space beneath it. Two changes
   close that gap: the table gets the wider column (less text wrapping,
   shorter overall), and the grid's default stretch (align-items removed)
   plus the nuclear list's own flex centering let its shorter content fill
   the matched height instead of leaving it pinned to the top. */
.onco-targeted-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 22px; }
.onco-nuclear-card, .onco-techtable-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 32px; box-shadow: var(--shadow-card);
}
.onco-nuclear-card { display: flex; flex-direction: column; }
.onco-nuclear-card h3, .onco-techtable-card h3 {
  display: flex; align-items: center; gap: 12px; font-size: 18px; margin: 0 0 20px;
}
.onco-nuclear-card h3 span, .onco-techtable-card h3 span {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(160deg, var(--navy-900), var(--blue-600));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.onco-nuclear-list {
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px;
  flex: 1; justify-content: center;
}
.onco-nuclear-list li {
  background: var(--surface-alt); border-radius: var(--radius-sm); padding: 12px 16px 12px 36px;
  font-size: 14.5px; font-weight: 500; color: var(--navy-800); position: relative;
}
.onco-nuclear-list li::before {
  content: ""; position: absolute; inset-inline-start: 16px; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue-600);
}
[dir="rtl"] .onco-nuclear-list li { padding: 12px 36px 12px 16px; }

.onco-techtable-scroll { overflow-x: auto; }
.onco-techtable { width: 100%; border-collapse: collapse; font-size: 14px; }
.onco-techtable th, .onco-techtable td { text-align: start; padding: 12px 14px; vertical-align: top; }
.onco-techtable thead th {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600)); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
}
.onco-techtable thead th:first-child { border-start-start-radius: var(--radius-sm); }
.onco-techtable thead th:last-child { border-start-end-radius: var(--radius-sm); }
.onco-techtable tbody tr { border-bottom: 1px solid var(--border); }
.onco-techtable tbody tr:last-child { border-bottom: none; }
.onco-techtable tbody th { font-weight: 700; color: var(--navy-900); white-space: nowrap; }
.onco-techtable tbody td { color: var(--text-body); line-height: 1.55; }

/* ---------- International patients: the six bare chips became eight
   described services, so the card grew a title + description. ---------- */
.onco-intl-card { display: flex; gap: 12px; align-items: flex-start; }
.onco-intl-tick {
  flex: none; width: 26px; height: 26px; border-radius: 8px; margin-top: 1px;
  background: rgba(90, 200, 225, .18); border: 1px solid rgba(90, 200, 225, .4);
  color: var(--cyan-500); display: flex; align-items: center; justify-content: center;
}
.onco-intl-card strong { display: block; color: #fff; font-size: 14.5px; line-height: 1.35; margin-bottom: 4px; }
.onco-intl-card > div > span { display: block; color: rgba(255, 255, 255, .74); font-size: 13px; font-weight: 400; line-height: 1.5; }

.onco-sched-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; text-align: start; }
.onco-sched-card {
  background: rgba(255, 255, 255, .1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius-md); padding: 22px 24px;
}
.onco-sched-card h3 {
  color: var(--cyan-500); font-size: 12px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 14px;
}
.onco-sched-table { width: 100%; border-collapse: collapse; }
.onco-sched-table th, .onco-sched-table td { text-align: start; padding: 10px 8px; font-size: 13.5px; }
.onco-sched-table thead th {
  color: rgba(255, 255, 255, .6); font-size: 10.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.onco-sched-table tbody tr { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.onco-sched-table tbody tr:last-child { border-bottom: none; }
.onco-sched-table tbody th { color: #fff; font-weight: 700; }
.onco-sched-table tbody td { color: rgba(255, 255, 255, .78); }

/* ---------- Responsive: brochure-derived sections ---------- */
@media (max-width: 991px) {
  .onco-aud-grid { grid-template-columns: 1fr; gap: 20px; }
  .onco-apart-grid { grid-template-columns: repeat(2, 1fr); }
  .onco-fact-row { grid-template-columns: repeat(2, 1fr); }
  .onco-robo-grid { grid-template-columns: 1fr; }
  /* The 6-track span layout is a desktop refinement; once the grid itself
     collapses to one column, "span 2"/"span 3" would otherwise ask for
     tracks the single-column grid doesn't have, and grid auto-creates
     extra implicit columns to satisfy them -- stretching panels past the
     container. Reset to auto so each card simply fills the one column. */
  .onco-treat-grid { grid-template-columns: 1fr; }
  .onco-treat-panel, .onco-treat-panel-wide { grid-column: auto; }
  /* Panels are full width again at this breakpoint, so both the one- and
     two-column lists can afford a second column. */
  .onco-treat-list, .onco-treat-panel-wide .onco-treat-list { grid-template-columns: repeat(2, 1fr); }
  .onco-targeted-grid { grid-template-columns: 1fr; }
  .onco-sched-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .onco-audience, .onco-onecenter, .onco-board, .onco-robotic,
  .onco-treatments, .onco-targeted { padding: 56px 0; }
  .onco-apart-grid { grid-template-columns: 1fr; }
  .onco-fact-row { grid-template-columns: 1fr; }
  .onco-robo-benefits ul { grid-template-columns: 1fr; }
  .onco-treat-list, .onco-treat-panel-wide .onco-treat-list { grid-template-columns: 1fr; }
  .onco-treat-panel, .onco-nuclear-card, .onco-techtable-card { padding: 24px 20px; }
  .onco-robo-benefits { padding: 22px 20px; }
  .onco-board-who { padding: 20px 18px; }
  .onco-aud-note { padding: 20px 18px; }
  .onco-step { gap: 14px; }
  .onco-step::before { inset-inline-start: 18px; }
  .onco-step-num { width: 38px; height: 38px; font-size: 15px; }
  .onco-techtable tbody th { white-space: normal; }
}
