/* ===========================================================================
   National Cancer Alliance — Design System
   Trust-first medical-tourism site. Dials: VARIANCE 5 / MOTION 3 / DENSITY 4
   Accent lock: teal (--accent). Brand base: deep navy (--brand).
   Radius rule: buttons = pill, cards = 16px, inputs = 10px, badges = pill.
   =========================================================================== */

:root {
  /* Palette — light (default) */
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-2: #eaf1f7;
  --surface-3: #dfeaf3;
  --ink: #0e1c2b;
  --ink-soft: #43566b;
  --ink-faint: #6c7f93;
  --line: #d7e1ec;
  --line-soft: #e6edf4;

  --brand: #12395e;          /* deep navy — structural brand base */
  --brand-strong: #0c2843;
  --brand-tint: #e7eff6;

  --accent: #0e9384;         /* teal — the ONE accent, used for all CTAs */
  --accent-strong: #0a7365;
  --accent-tint: #dff3f0;
  --accent-ink: #063a34;

  --danger: #b42318;
  --ok: #157347;

  /* Type */
  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radii (documented scale) */
  --r-btn: 999px;
  --r-card: 16px;
  --r-input: 10px;
  --r-badge: 999px;

  /* Shadows — tinted to navy, never pure black */
  --shadow-sm: 0 1px 2px rgba(18, 57, 94, .06), 0 1px 3px rgba(18, 57, 94, .08);
  --shadow-md: 0 6px 20px rgba(18, 57, 94, .10);
  --shadow-lg: 0 20px 50px rgba(12, 40, 67, .16);

  --maxw: 1180px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a1521;
    --surface: #0f1f2e;
    --surface-2: #15293b;
    --surface-3: #1c3247;
    --ink: #e9f1f8;
    --ink-soft: #a6b8ca;
    --ink-faint: #7d92a6;
    --line: #21374d;
    --line-soft: #1a2c3e;

    --brand: #4f94c4;
    --brand-strong: #6aa8d3;
    --brand-tint: #142a3e;

    --accent: #2bc0ad;
    --accent-strong: #45d0be;
    --accent-tint: #10312d;
    --accent-ink: #b9f0e8;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, .35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .5);
  }
}
/* Manual override wins over system preference */
:root[data-theme="dark"] {
  --bg: #0a1521; --surface: #0f1f2e; --surface-2: #15293b; --surface-3: #1c3247;
  --ink: #e9f1f8; --ink-soft: #a6b8ca; --ink-faint: #7d92a6;
  --line: #21374d; --line-soft: #1a2c3e;
  --brand: #4f94c4; --brand-strong: #6aa8d3; --brand-tint: #142a3e;
  --accent: #2bc0ad; --accent-strong: #45d0be; --accent-tint: #10312d; --accent-ink: #b9f0e8;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3); --shadow-md: 0 6px 20px rgba(0,0,0,.35); --shadow-lg: 0 20px 50px rgba(0,0,0,.5);
}
:root[data-theme="light"] {
  --bg: #f5f8fb; --surface: #ffffff; --surface-2: #eaf1f7; --surface-3: #dfeaf3;
  --ink: #0e1c2b; --ink-soft: #43566b; --ink-faint: #6c7f93;
  --line: #d7e1ec; --line-soft: #e6edf4;
  --brand: #12395e; --brand-strong: #0c2843; --brand-tint: #e7eff6;
  --accent: #0e9384; --accent-strong: #0a7365; --accent-tint: #dff3f0; --accent-ink: #063a34;
}

/* --------------------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: .9rem;
}
.lead { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--ink-soft); max-width: 62ch; }

/* --------------------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .8rem 1.5rem; border-radius: var(--r-btn); border: 1.5px solid transparent;
  white-space: nowrap; transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0) scale(.98); }
:root[data-theme="dark"] .btn-primary, :root:not([data-theme="light"]) .btn-primary { color: #04231f; }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) .btn-primary { color: #fff; } }

.btn-ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-tint); transform: translateY(-2px); }
.btn-lg { padding: .95rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------- Utility bar */
.utilbar {
  background: var(--brand-strong); color: #e8f0f8; font-size: .82rem;
}
.utilbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.utilbar a { color: #cfe0f0; display: inline-flex; align-items: center; gap: .4rem; }
.utilbar a:hover { color: #fff; }
.utilbar .util-right { display: flex; align-items: center; gap: 1.1rem; }
.utilbar-hide { display: none; }
@media (max-width: 720px) { .utilbar .util-left { display: none; } }

.toggle-group { display: inline-flex; align-items: center; gap: .2rem; }
.tg-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.28); color: #cfe0f0;
  border-radius: 999px; padding: .18rem .55rem; font-size: .74rem; font-weight: 600; letter-spacing: .03em;
}
.tg-btn[aria-pressed="true"] { background: #fff; color: var(--brand-strong); border-color: #fff; }
.icon-btn {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); color: #eaf2fb;
}
.icon-btn:hover { background: rgba(255,255,255,.22); }
.icon-btn svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------- Header / Nav */
.header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 1rem; }
.brand-logo { display: inline-flex; align-items: center; gap: .6rem; }
.brand-logo .mark { width: 40px; height: 40px; flex: none; }
.brand-logo .word { display: flex; flex-direction: column; line-height: 1; }
.brand-logo .word b { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; color: var(--ink); }
.brand-logo .word span { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  display: inline-flex; align-items: center; gap: .3rem; background: transparent; border: 0;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  padding: .55rem .7rem; border-radius: 8px;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--ink); background: var(--surface-2); }
.nav-links .chev { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.nav-links li:hover .chev, .nav-links li:focus-within .chev { transform: rotate(180deg); }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: min(640px, 90vw); background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: var(--shadow-lg); padding: 1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .25rem;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav-links li:hover .mega, .nav-links li:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega a { display: flex; gap: .7rem; padding: .6rem .7rem; border-radius: 10px; align-items: flex-start; }
.mega a:hover { background: var(--surface-2); }
.mega .m-ico { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; flex: none; }
.mega .m-ico svg { width: 18px; height: 18px; }
.mega .m-t { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink); }
.mega .m-d { font-size: .78rem; color: var(--ink-faint); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; }

/* Mobile nav */
.mobile-menu { display: none; }
@media (max-width: 940px) {
  .nav-links, .nav .nav-cta .btn-ghost, .nav .nav-cta .btn-primary { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 10px;
    background: var(--surface-2); border: 1px solid var(--line); color: var(--ink);
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .mobile-menu {
    display: block; position: fixed; inset: 0; z-index: 60; background: var(--surface);
    transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; padding: 1.2rem;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
  .mm-list { list-style: none; }
  .mm-list > li { border-bottom: 1px solid var(--line-soft); }
  .mm-list > li > a, .mm-list details > summary {
    display: block; padding: .95rem .2rem; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink); cursor: pointer;
  }
  .mm-list details > summary { list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .mm-list details[open] > summary .chev { transform: rotate(180deg); }
  .mm-list details .sub { padding: 0 0 .6rem .2rem; display: grid; gap: .1rem; }
  .mm-list details .sub a { padding: .5rem .2rem; color: var(--ink-soft); font-weight: 500; }
  .mm-cta { margin-top: 1.2rem; display: grid; gap: .6rem; }
}

/* --------------------------------------------------------------------------- Hero slider */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--brand-strong); }
.hero-bg .hs {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06); transition: opacity 1.1s var(--ease);
}
.hero-bg .hs.is-active { opacity: 1; transform: scale(1); transition: opacity 1.1s var(--ease), transform 8s linear; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(9,20,34,.94) 0%, rgba(9,20,34,.78) 40%, rgba(9,20,34,.42) 70%, rgba(9,20,34,.2) 100%);
}
.hero-inner { width: 100%; padding-block: clamp(4rem, 9vw, 6.5rem); }
.hero-content { max-width: 660px; }
.hero .eyebrow { color: #79ddce; }
.hero-copy { min-height: 240px; }
.hero-copy.swapping { opacity: 0; }
.hero-copy { transition: opacity .35s var(--ease); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; }
.hero h1 em { font-style: normal; color: #5fd6c6; }
.hero .lead { margin-top: 1.1rem; font-size: clamp(1.02rem, 2vw, 1.2rem); color: #dbe7f1; max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); }
.hero .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.14); }
.hero-assure { display: flex; flex-wrap: wrap; gap: .9rem 1.6rem; margin-top: 1.9rem; }
.hero-assure .ha { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: #d3e0ec; font-weight: 600; }
.hero-assure .ha svg { width: 19px; height: 19px; color: #5fd6c6; flex: none; }
.hero-dots { display: flex; gap: .5rem; margin-top: 2.1rem; }
.hero-dot { width: 32px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.32); border: 0; padding: 0; cursor: pointer; transition: background .25s var(--ease), width .25s var(--ease); }
.hero-dot:hover { background: rgba(255,255,255,.55); }
.hero-dot.is-active { background: #5fd6c6; width: 50px; }
@media (max-width: 720px) {
  .hero { min-height: 88vh; }
  .hero-scrim { background: linear-gradient(180deg, rgba(9,20,34,.82) 0%, rgba(9,20,34,.7) 45%, rgba(9,20,34,.85) 100%); }
  .hero-copy { min-height: 210px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg .hs.is-active { transform: none; transition: opacity .3s; }
  .hero-copy { transition: none; }
}

/* --------------------------------------------------------------------------- Stat band */
.stats { background: var(--brand); color: #eaf2fb; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 2.4rem; }
.stat { text-align: center; }
.stat b { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.7rem); display: block; color: #fff; }
.stat span { font-size: .86rem; color: #b8cde1; letter-spacing: .01em; }
.stats-note { text-align: center; font-size: .72rem; color: #93aeca; padding-bottom: 1.4rem; }
@media (max-width: 680px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; } }

/* --------------------------------------------------------------------------- How it works */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.6rem; counter-reset: step; }
.step { position: relative; padding: 1.4rem 1.1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); }
.step .snum { font-family: var(--font-display); font-weight: 800; font-size: 1rem; width: 34px; height: 34px; border-radius: 999px; background: var(--brand); color: #fff; display: grid; place-items: center; margin-bottom: .9rem; }
.step h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.step p { font-size: .86rem; color: var(--ink-soft); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 34px; right: -12px; width: 24px; height: 2px; background: var(--line); z-index: 1;
}
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } .step::after { display: none; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------- Section head */
.sec-head { max-width: 68ch; }
.sec-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.sec-head p { margin-top: .9rem; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------- Treatments (expandable) */
.treat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.6rem; align-items: start; }
details.treat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
details.treat[open] { border-color: var(--accent); box-shadow: var(--shadow-md); grid-column: span 2; }
details.treat:hover { border-color: var(--accent); }
details.treat > summary { list-style: none; cursor: pointer; padding: 1.3rem; display: flex; flex-direction: column; gap: .55rem; }
details.treat > summary::-webkit-details-marker { display: none; }
.treat .t-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
.treat .t-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; flex: none; }
.treat .t-ico svg { width: 24px; height: 24px; }
.treat .t-plus { width: 26px; height: 26px; color: var(--accent-strong); flex: none; margin-top: 4px; transition: transform .25s var(--ease); }
details.treat[open] .t-plus { transform: rotate(45deg); }
.treat h3 { font-size: 1.05rem; }
.treat .t-short { font-size: .85rem; color: var(--ink-soft); }
.treat-more { padding: 0 1.3rem 1.4rem; }
.treat-more p { font-size: .9rem; color: var(--ink-soft); margin-bottom: .5rem; }
.treat-more .t-list { list-style: none; margin: .4rem 0 1.1rem; display: grid; gap: .45rem; }
.treat-more .t-list li { display: flex; gap: .5rem; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); }
.treat-more .t-list li svg { width: 17px; height: 17px; color: var(--accent-strong); flex: none; margin-top: 2px; }
details.treat[open] .treat-more { animation: treatIn .4s var(--ease); }
@keyframes treatIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (max-width: 980px) {
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  details.treat[open] { grid-column: span 2; }
}
@media (max-width: 520px) {
  .treat-grid { grid-template-columns: 1fr; }
  details.treat[open] { grid-column: span 1; }
}
@media (prefers-reduced-motion: reduce) { details.treat[open] .treat-more { animation: none; } }

/* File upload field */
.file-drop { display: flex; align-items: center; gap: .7rem; padding: .8rem .9rem; border: 1.5px dashed var(--line); border-radius: var(--r-input); cursor: pointer; color: var(--ink-soft); font-size: .9rem; transition: border-color .2s var(--ease), background .2s var(--ease); }
.file-drop:hover { border-color: var(--accent); background: var(--accent-tint); }
.file-drop svg { width: 22px; height: 22px; color: var(--accent-strong); flex: none; }
.file-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.file-names { font-size: .8rem; color: var(--ink-faint); margin-top: .45rem; }

/* --------------------------------------------------------------------------- Destinations */
.dest { background: var(--surface-2); }
.dest-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1rem; margin-top: 2.6rem; }
.dcard { position: relative; border-radius: var(--r-card); overflow: hidden; min-height: 300px; border: 1px solid var(--line); }
.dcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dcard .d-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem; background: linear-gradient(to top, rgba(8,24,40,.86), rgba(8,24,40,.15) 60%, transparent); color: #fff; }
.dcard .d-flag { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #a9e6dd; }
.dcard h3 { color: #fff; font-size: 1.3rem; margin-top: .3rem; }
.dcard p { font-size: .84rem; color: #d6e3f0; margin-top: .3rem; }
.dcard .d-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.92); color: var(--brand-strong); font-size: .72rem; font-weight: 700; padding: .28rem .6rem; border-radius: 999px; }
@media (max-width: 860px) { .dest-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 560px) { .dest-grid { grid-template-columns: 1fr !important; } }

/* --------------------------------------------------------------------------- Why Türkiye */
.why-tr { background: var(--surface); }
.wtr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.wtr-card { padding: 1.8rem 1.5rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-card); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.wtr-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -18px rgba(18,57,94,.35); border-color: var(--brand); }
.wtr-ico { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--accent, #0e9384)); color: #fff; display: grid; place-items: center; margin-bottom: 1rem; }
.wtr-ico svg { width: 26px; height: 26px; }
.wtr-card h3 { font-size: 1.12rem; margin-bottom: .5rem; color: var(--ink); }
.wtr-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }
.wtr-note { text-align: center; font-size: .88rem; color: var(--ink-soft); margin-top: 2rem; max-width: 62ch; margin-inline: auto; padding: 1rem 1.4rem; background: var(--surface-2); border-left: 3px solid var(--brand); border-radius: 6px; }
@media (max-width: 860px) { .wtr-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------- Partners (B2B) */
.partners { background: var(--brand-strong); color: #eaf2fb; }
.partners .eyebrow { color: var(--accent-strong); }
.partners h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.partners .lead { color: #c3d5e7; }
.p-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.6rem; }
.p-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-card); padding: 1.7rem; }
.p-card .p-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--accent); color: #04231f; display: grid; place-items: center; margin-bottom: 1rem; }
.p-card .p-ico svg { width: 26px; height: 26px; }
.p-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: .6rem; }
.p-card > p { color: #c3d5e7; font-size: .92rem; margin-bottom: 1.1rem; }
.p-list { list-style: none; display: grid; gap: .7rem; }
.p-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: #dbe7f3; }
.p-list li svg { width: 19px; height: 19px; color: var(--accent-strong); flex: none; margin-top: 1px; }
.p-band { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-card); padding: 1.3rem 1.6rem; }
.p-band p { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.p-band span { color: #a9c2d9; font-size: .86rem; }
@media (max-width: 780px) { .p-cols { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------- Why / guarantees */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why-list { display: grid; gap: 1rem; }
.why-item { display: flex; gap: 1rem; padding: 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); }
.why-item .w-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.why-item .w-ico svg { width: 23px; height: 23px; }
.why-item h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.why-item p { font-size: .88rem; color: var(--ink-soft); }
.why-photo { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.why-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } .why-photo { max-width: 460px; margin-inline: auto; } }

/* --------------------------------------------------------------------------- Testimonials */
.tst { background: var(--surface-2); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.6rem; }
.tst-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.tst-stars { display: flex; gap: 2px; color: #e0a63b; }
.tst-stars svg { width: 17px; height: 17px; }
.tst-card blockquote { font-size: .96rem; color: var(--ink); line-height: 1.55; }
.tst-who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.tst-who img { width: 42px; height: 42px; border-radius: 999px; object-fit: cover; }
.tst-who b { font-family: var(--font-display); font-size: .92rem; display: block; }
.tst-who span { font-size: .78rem; color: var(--ink-faint); }
@media (max-width: 860px) { .tst-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------- Accreditation band */
.accred { text-align: center; }
.accred .a-label { font-size: .82rem; color: var(--ink-faint); font-weight: 600; letter-spacing: .04em; }
.accred-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 1.8rem; margin-top: 1.6rem; }
.accred-row .alogo { height: 60px; width: auto; opacity: .9; transition: opacity .2s var(--ease); }
.accred-row .alogo:hover { opacity: 1; }
:root[data-theme="dark"] .accred-row .alogo { filter: brightness(0) invert(1) opacity(.75); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .accred-row .alogo { filter: brightness(0) invert(1) opacity(.75); } }
.accred-note { font-size: .72rem; color: var(--ink-faint); margin-top: 1rem; }

/* --------------------------------------------------------------------------- FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-list { display: grid; gap: .6rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fx { width: 22px; height: 22px; flex: none; color: var(--accent-strong); transition: transform .2s var(--ease); }
.faq-item[open] summary .fx { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------- Consultation / CTA form */
.consult { background: var(--brand); color: #eaf2fb; }
.consult-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.consult .eyebrow { color: var(--accent-strong); }
.consult h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.consult .lead { color: #c3d5e7; }
.consult-points { list-style: none; margin-top: 1.4rem; display: grid; gap: .7rem; }
.consult-points li { display: flex; gap: .6rem; align-items: center; font-size: .92rem; color: #dbe7f3; }
.consult-points svg { width: 20px; height: 20px; color: var(--accent-strong); flex: none; }
.form-card { background: var(--surface); border-radius: var(--r-card); padding: 1.7rem; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.25rem; margin-bottom: 1.1rem; }
.field { display: grid; gap: .35rem; margin-bottom: .9rem; }
.field label { font-size: .84rem; font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .95rem; padding: .7rem .85rem; border-radius: var(--r-input);
  border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field .err { font-size: .78rem; color: var(--danger); display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select { border-color: var(--danger); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-privacy { font-size: .75rem; color: var(--ink-faint); margin-top: .6rem; }
.form-success { display: none; text-align: center; padding: 1.5rem; }
.form-success.show { display: block; }
.form-success .fs-ico { width: 56px; height: 56px; border-radius: 999px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; margin: 0 auto 1rem; }
.form-success .fs-ico svg { width: 30px; height: 30px; }
@media (max-width: 820px) { .consult-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------- Footer */
.footer { background: var(--brand-strong); color: #c3d5e7; padding-block: 3.4rem 1.6rem; }
.footer a { color: #c3d5e7; }
.footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.foot-brand .brand-logo .word b { color: #fff; }
.foot-brand .brand-logo .word span { color: #8fa9c2; }
.foot-brand p { font-size: .88rem; color: #a9c2d9; margin-top: 1rem; max-width: 34ch; }
.foot-contact { list-style: none; margin-top: 1.1rem; display: grid; gap: .5rem; font-size: .88rem; }
.foot-contact li { display: flex; gap: .5rem; align-items: center; }
.foot-contact svg { width: 17px; height: 17px; color: var(--accent-strong); flex: none; }
.foot-col h4 { color: #fff; font-size: .95rem; letter-spacing: .02em; margin-bottom: 1rem; }
.foot-col ul { list-style: none; display: grid; gap: .55rem; font-size: .88rem; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.6rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .8rem; color: #8fa9c2; }
.foot-bottom .fb-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.foot-disclaimer { font-size: .74rem; color: #7d97b0; margin-top: 1.2rem; line-height: 1.5; max-width: 90ch; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------- Floating actions */
.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 45; display: flex; flex-direction: column; gap: .6rem; }
.float-btn { width: 52px; height: 52px; border-radius: 999px; display: grid; place-items: center; box-shadow: var(--shadow-lg); border: 0; color: #fff; }
.float-btn svg { width: 26px; height: 26px; }
.float-wa { background: #25d366; }
.float-call { background: var(--brand); }
.float-btn:hover { transform: translateY(-3px); transition: transform .18s var(--ease); }

/* --------------------------------------------------------------------------- Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .treat, .float-btn { transition: none !important; }
}

/* Lang visibility helper */
[data-lang-hide] { display: none !important; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 100; }

/* --------------------------------------------------------------------------- Interior page hero */
.page-hero { position: relative; background: var(--brand-strong); overflow: hidden; padding-block: clamp(3.2rem, 7vw, 5rem) clamp(2.4rem, 5vw, 3.2rem); }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 85% 0%, rgba(94,214,198,.16), transparent 60%);
}
.page-hero .wrap { position: relative; }
.page-hero .eyebrow { color: #79ddce; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; max-width: 22ch; }
.page-hero p.lead { color: #cfe0ee; margin-top: 1rem; max-width: 60ch; }
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .84rem; color: #9db6cb; margin-bottom: 1.1rem; }
.breadcrumb a { color: #cfe0ee; }
.breadcrumb a:hover { color: #fff; }

/* --------------------------------------------------------------------------- Hospital network */
.hosp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.6rem; }
.hosp-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.hosp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.hosp-card .h-top { display: flex; align-items: center; gap: .8rem; }
.hosp-card .h-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; flex: none; }
.hosp-card .h-ico svg { width: 25px; height: 25px; }
.hosp-card h3 { font-size: 1.05rem; }
.hosp-card .h-city { font-size: .78rem; color: var(--ink-faint); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.hosp-card p { font-size: .87rem; color: var(--ink-soft); }
.hosp-card .h-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .3rem; }
.hosp-card .h-tag { font-size: .74rem; font-weight: 600; color: var(--accent-strong); background: var(--accent-tint); padding: .28rem .6rem; border-radius: 999px; }
@media (max-width: 980px) { .hosp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .hosp-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------- Mission / values */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.mission-photo { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.mission-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) { .mission-grid { grid-template-columns: 1fr; } }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.6rem; }
.value-card { text-align: center; padding: 1.5rem 1.1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); }
.value-card .v-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; margin: 0 auto .9rem; }
.value-card .v-ico svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.value-card p { font-size: .84rem; color: var(--ink-soft); }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .value-grid { grid-template-columns: 1fr; } }

.timeline { display: grid; gap: 0; margin-top: 2.6rem; border-top: 1px solid var(--line); }
.tl-row { display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.tl-row b { font-family: var(--font-display); font-size: 1.1rem; color: var(--accent-strong); }
.tl-row h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.tl-row p { font-size: .87rem; color: var(--ink-soft); }
@media (max-width: 560px) { .tl-row { grid-template-columns: 1fr; gap: .3rem; } }

/* --------------------------------------------------------------------------- Doctors */
.placeholder-flag {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .74rem; font-weight: 700;
  color: #9a6b12; background: #fdf1d9; border: 1px solid #f3ddab; padding: .3rem .65rem; border-radius: 999px;
}
:root[data-theme="dark"] .placeholder-flag { color: #f5cf7e; background: #3a2d10; border-color: #5c4a1c; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .placeholder-flag { color: #f5cf7e; background: #3a2d10; border-color: #5c4a1c; } }
.placeholder-flag svg { width: 14px; height: 14px; flex: none; }

.doc-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.doc-filter {
  font-family: var(--font-display); font-weight: 600; font-size: .84rem; padding: .5rem 1rem;
  border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink-soft);
}
.doc-filter.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.doc-filter:hover:not(.is-active) { border-color: var(--accent); color: var(--ink); }

.doc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2rem; }
.doc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.doc-photo { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--surface-2); }
.doc-photo img { width: 100%; height: 100%; object-fit: cover; }
.doc-photo .doc-flag { position: absolute; top: .7rem; left: .7rem; font-family: var(--font-display); font-size: .72rem; font-weight: 700; color: var(--brand); background: rgba(255,255,255,.92); padding: .3rem .62rem; border-radius: 999px; box-shadow: var(--shadow-sm); backdrop-filter: blur(4px); }
:root[data-theme="dark"] .doc-photo .doc-flag, .doc-photo .doc-flag { }
@media (prefers-color-scheme: dark) { .doc-photo .doc-flag { background: rgba(15,31,46,.86); color: var(--brand-strong); } }
:root[data-theme="dark"] .doc-photo .doc-flag { background: rgba(15,31,46,.86); color: var(--brand-strong); }
.doc-card.hide { display: none; }
.doc-empty { display: none; text-align: center; color: var(--ink-faint); padding: 3rem 1rem; font-size: .95rem; }
.doc-empty.show { display: block; }
.doc-count { text-align: center; font-size: .82rem; color: var(--ink-faint); margin-top: 1rem; }
.doc-body { padding: 1.1rem 1.2rem 1.3rem; }
.doc-hospital { font-size: .74rem; font-weight: 700; color: var(--accent-strong); text-transform: uppercase; letter-spacing: .03em; }
.doc-card h3 { font-size: 1.08rem; margin-top: .3rem; }
.doc-role { font-size: .85rem; color: var(--ink-soft); margin-top: .15rem; }
.doc-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem; }
.doc-tag { font-size: .72rem; font-weight: 600; color: var(--brand); background: var(--brand-tint); padding: .26rem .58rem; border-radius: 999px; }
.doc-card details { margin-top: .8rem; }
.doc-card details summary { list-style: none; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--accent-strong); display: flex; align-items: center; gap: .3rem; }
.doc-card details summary::-webkit-details-marker { display: none; }
.doc-card details summary svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.doc-card details[open] summary svg { transform: rotate(90deg); }
.doc-card details .doc-cv { font-size: .84rem; color: var(--ink-soft); margin-top: .6rem; line-height: 1.55; }
.doc-card details .doc-cv ul { list-style: none; display: grid; gap: .35rem; margin-top: .4rem; }
.doc-card details .doc-cv li { display: flex; gap: .4rem; }
.doc-card details .doc-cv li svg { width: 15px; height: 15px; color: var(--accent-strong); flex: none; margin-top: 2px; }
.doc-card .doc-cta { display: block; text-align: center; margin-top: 1rem; }
.doc-card-link { display: block; text-decoration: none; color: inherit; }
.doc-card-link:hover { color: inherit; }
.doc-hospital-label { font-size: .74rem; font-weight: 700; color: var(--accent-strong); text-transform: uppercase; letter-spacing: .03em; display: block; }
.doc-summary { font-size: .84rem; color: var(--ink-soft); line-height: 1.55; margin-top: .5rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.doc-profile-link { display: inline-block; margin-top: .8rem; font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--accent-strong); transition: color .18s ease; }
.doc-card:hover .doc-profile-link { color: var(--accent); }
@media (max-width: 980px) { .doc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .doc-grid { grid-template-columns: 1fr; } }

.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------- Doctor hospital link */
a.doc-hospital {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--brand-strong); text-decoration: none; font-weight: 700;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 2px; margin-bottom: .35rem;
  transition: color .18s ease, border-color .18s ease;
}
a.doc-hospital::after {
  content: "↗"; font-size: .85em; opacity: .55; transition: transform .18s ease, opacity .18s ease;
}
a.doc-hospital:hover { color: var(--accent-strong); border-bottom-color: var(--accent); }
a.doc-hospital:hover::after { transform: translate(2px,-2px); opacity: 1; }

/* --------------------------------------------------------------------------- Hospitals page */
.hosp-jump { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; padding-block: .8rem; }
.hosp-jump .wrap { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.hj-label { font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .1em; margin-right: .3rem; }
.hosp-jump a { font-family: var(--font-display); font-weight: 600; font-size: .84rem; padding: .45rem .9rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink-soft); transition: all .18s ease; text-decoration: none; }
.hosp-jump a:hover { border-color: var(--brand); color: var(--brand-strong); background: #fff; }
.hosp-jump a em { font-style: normal; color: var(--ink-faint); font-weight: 500; margin-left: .2rem; }

.hosp-brand { padding-block: clamp(3rem, 6vw, 5rem); }
.hosp-brand.alt { background: var(--surface-2); }
.brand-head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.brand-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin-top: .3rem; }
.brand-head .lead { max-width: 62ch; margin-top: .6rem; font-size: .96rem; }
.brand-badges { display: flex; gap: .8rem; flex-shrink: 0; }
.bb { display: flex; flex-direction: column; align-items: center; padding: .8rem 1.2rem; background: var(--surface); border: 1.5px solid var(--brand); border-radius: 12px; min-width: 90px; }
.hosp-brand.alt .bb { background: #fff; }
.bb b { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--brand-strong); line-height: 1; }
.bb span { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin-top: .3rem; }
@media (max-width: 720px) {
  .brand-head { grid-template-columns: 1fr; align-items: start; }
  .brand-badges { justify-self: start; }
}

.hosp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.hosp-grid.single { grid-template-columns: 1fr; max-width: 900px; margin-inline: auto; }
@media (max-width: 980px) { .hosp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .hosp-grid { grid-template-columns: 1fr; } }

.hosp-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hosp-brand.alt .hosp-card { background: #fff; }
.hosp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -22px rgba(18,57,94,.35); border-color: var(--brand); }
.hosp-card.has-docs { border-color: var(--accent); }
.hosp-card.wide { flex-direction: row; }
.hosp-card.wide .hc-photo { flex: 0 0 42%; }
.hosp-card.wide .hc-body { flex: 1; }
@media (max-width: 860px) { .hosp-card.wide { flex-direction: column; } .hosp-card.wide .hc-photo { flex: none; } }

.hc-photo { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--surface-2); }
.hosp-card.wide .hc-photo { aspect-ratio: unset; min-height: 100%; }
.hc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.hosp-card:hover .hc-photo img { transform: scale(1.04); }
.hc-district { position: absolute; top: .8rem; left: .8rem; background: rgba(255,255,255,.94); color: var(--brand-strong); font-size: .72rem; font-weight: 700; padding: .3rem .65rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; backdrop-filter: blur(4px); }
.hc-doc-count { position: absolute; top: .8rem; right: .8rem; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; padding: .3rem .65rem; border-radius: 999px; display: flex; align-items: baseline; gap: .3rem; }
.hc-doc-count span { font-size: .62rem; font-weight: 500; opacity: .95; }

.hc-body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.hc-body h3 { font-size: 1.12rem; margin-bottom: .8rem; color: var(--ink); line-height: 1.3; }
.hc-facts { list-style: none; display: grid; gap: .45rem; margin-bottom: .9rem; padding: 0; }
.hc-facts li { display: flex; gap: .5rem; font-size: .82rem; color: var(--ink-soft); line-height: 1.45; }
.hc-facts li svg { width: 15px; height: 15px; color: var(--brand); flex: none; margin-top: 3px; }
.hc-desc { font-size: .86rem; color: var(--ink-soft); line-height: 1.6; margin: 0 0 .6rem; }

.hc-doctors { margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--line); }
.hc-doctors h4 { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-strong); margin-bottom: .7rem; }
.hc-doc-grid { display: grid; gap: .5rem; }
.hosp-card.wide .hc-doc-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.hc-doc {
  display: flex; gap: .7rem; align-items: center; padding: .6rem .7rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px;
  text-decoration: none; transition: all .18s ease;
}
.hosp-brand.alt .hc-doc { background: var(--surface); }
.hc-doc:hover { border-color: var(--brand); background: var(--surface); transform: translateX(2px); }
.hc-doc img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; background: var(--surface-2); }
.hc-doc div { display: flex; flex-direction: column; min-width: 0; }
.hc-doc b { font-size: .82rem; color: var(--ink); line-height: 1.3; }
.hc-doc span { font-size: .72rem; color: var(--ink-faint); margin-top: .15rem; }

/* =========================================================================== 
   Individual Doctor Profile Pages (/doctors/*.html)
   =========================================================================== */
.doc-hero-page { background: var(--surface-2); padding-block: clamp(2.4rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.doc-hero-grid { display: grid; grid-template-columns: 340px 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.doc-portrait { position: relative; }
.doc-portrait img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 20px; background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 20px 60px -30px rgba(18,57,94,.4);
}
.doc-portrait .doc-portrait-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 999px;
}
.doc-heading .eyebrow { color: var(--accent-strong); }
.doc-heading h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: .5rem 0 .6rem; line-height: 1.15; }
.doc-heading .lead { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 60ch; }
.doc-quickfacts { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.doc-quickfacts span {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; padding: .4rem .8rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft);
}
.doc-quickfacts svg { width: 13px; height: 13px; color: var(--accent-strong); }
.doc-tags-lg { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.4rem; }
.doc-tags-lg span {
  font-size: .82rem; font-weight: 600; padding: .35rem .8rem;
  background: var(--accent-tint); color: var(--accent-ink); border-radius: 6px;
}
.doc-hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.doc-hero-cta .btn-ghost { background: var(--surface); border-color: var(--line); color: var(--ink); }
.doc-hero-cta .btn-ghost:hover { border-color: var(--brand); color: var(--brand-strong); }
@media (max-width: 780px) {
  .doc-hero-grid { grid-template-columns: 1fr; text-align: left; }
  .doc-portrait { max-width: 260px; }
}

/* --- Content grid --- */
.doc-content { padding-block: clamp(2.4rem, 5vw, 4rem); }
.doc-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 4vw, 3.6rem); align-items: start; }
@media (max-width: 940px) { .doc-content-grid { grid-template-columns: 1fr; } }

.doc-main .doc-section { margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.doc-main .doc-section:last-child { margin-bottom: 0; }
.doc-main .doc-section > h2 {
  font-size: 1.5rem; margin-bottom: 1.1rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.doc-main .doc-section p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; font-size: 1rem; }
.doc-main .doc-section p:last-child { margin-bottom: 0; }
.doc-main .doc-section p strong { color: var(--ink); font-weight: 700; }

/* --- Timeline (education, career) --- */
.doc-timeline { list-style: none; padding: 0; display: grid; gap: 1.2rem; margin: 0; }
.doc-timeline li {
  display: grid; grid-template-columns: 140px 1fr; gap: 1.2rem;
  padding: 1.1rem 1.3rem;
  background: var(--surface-2); border-left: 3px solid var(--brand); border-radius: 8px;
}
.doc-timeline li b {
  font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--brand-strong);
  line-height: 1.3;
}
.doc-timeline li h4 { font-size: 1.02rem; margin-bottom: .3rem; color: var(--ink); }
.doc-timeline li p { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }
@media (max-width: 640px) {
  .doc-timeline li { grid-template-columns: 1fr; gap: .3rem; }
}

/* --- Expertise grid --- */
.doc-expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 640px) { .doc-expertise-grid { grid-template-columns: 1fr; } }
.doc-expertise-grid > div {
  padding: 1.1rem 1.2rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .2s ease;
}
.doc-expertise-grid > div:hover { border-color: var(--accent); }
.doc-expertise-grid h4 {
  font-size: 1rem; margin-bottom: .4rem; color: var(--brand-strong);
  display: flex; align-items: center; gap: .4rem;
}
.doc-expertise-grid h4::before {
  content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
}
.doc-expertise-grid p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* --- Membership list --- */
.doc-membership { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin: 0; }
@media (max-width: 640px) { .doc-membership { grid-template-columns: 1fr; } }
.doc-membership li {
  display: flex; gap: .6rem; align-items: flex-start;
  padding: .7rem .9rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px;
  font-size: .88rem; color: var(--ink);
}
.doc-membership li::before {
  content: ""; width: 6px; height: 6px; background: var(--brand); border-radius: 50%;
  margin-top: 8px; flex: none;
}

/* --- Aside cards --- */
.doc-aside { display: grid; gap: 1.2rem; position: sticky; top: 2rem; }
@media (max-width: 940px) { .doc-aside { position: static; } }
.aside-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem;
}
.aside-card.cta { background: var(--brand); color: #fff; border-color: var(--brand); }
.aside-card.cta h3 { color: #fff; font-size: 1.15rem; margin-bottom: .5rem; }
.aside-card.cta p { font-size: .88rem; color: #cbd8e6; margin-bottom: 1rem; line-height: 1.55; }
.aside-card.cta .btn { display: block; text-align: center; }
.aside-card .as-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin-bottom: .5rem; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.aside-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: .7rem; }
.aside-card .as-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .84rem; font-weight: 700; color: var(--brand-strong);
  text-decoration: none; border-bottom: 1px dashed var(--line); padding-bottom: 2px;
  transition: color .18s, border-color .18s;
}
.aside-card .as-link:hover { color: var(--accent-strong); border-bottom-color: var(--accent); }
.aside-card ul.as-facts { list-style: none; padding: 0; display: grid; gap: .4rem; margin: .7rem 0; font-size: .84rem; color: var(--ink-soft); }
.aside-card ul.as-facts li { display: flex; gap: .5rem; align-items: flex-start; }
.aside-card ul.as-facts svg { width: 14px; height: 14px; color: var(--brand); flex: none; margin-top: 3px; }

/* Also-at-hospital mini cards */
.also-doctors { display: grid; gap: .5rem; margin-top: .8rem; }
.also-doctors a {
  display: flex; gap: .6rem; align-items: center;
  padding: .5rem .6rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px;
  text-decoration: none; transition: all .18s;
}
.also-doctors a:hover { border-color: var(--brand); background: #fff; }
.also-doctors img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: var(--surface); flex: none; }
.also-doctors b { font-size: .8rem; color: var(--ink); display: block; line-height: 1.3; }
.also-doctors span { font-size: .7rem; color: var(--ink-faint); }

/* ===========================================================================
   Hospitals overview page — stat strip + hospital group grid
   =========================================================================== */
.hosp-stats { border-block: 1px solid var(--line); background: var(--surface-2); }
.hosp-stats .wrap { display: flex; flex-wrap: wrap; gap: 1.2rem 2.8rem; justify-content: center; align-items: flex-start; padding-block: 1.5rem; }
.hs-item { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 110px; }
.hs-item b { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--brand-strong); line-height: 1; }
.hs-item span { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); margin-top: .45rem; max-width: 15ch; }

.hosp-group-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: .5rem; }
@media (max-width: 980px) { .hosp-group-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .hosp-group-grid { grid-template-columns: 1fr; } }

.hgroup-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.hgroup-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -22px rgba(18,57,94,.35); border-color: var(--accent); color: inherit; }
.hgroup-card .hc-photo { aspect-ratio: 1/1; }
.hgroup-card h3 { font-size: 1.14rem; margin-bottom: .5rem; color: var(--ink); line-height: 1.3; }
.hgroup-card .hc-desc { margin-bottom: .4rem; }
.hc-districts { margin: .3rem 0 .2rem; font-size: .78rem; font-weight: 600; color: var(--accent-strong); line-height: 1.5; }
.hgroup-card .doc-profile-link { margin-top: auto; padding-top: .8rem; }

/* ===========================================================================
   Patient stories — clickable cards + detail pages (/stories/*.html)
   =========================================================================== */
.tst-card { position: relative; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.tst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.story-readmore { display: inline-block; margin-top: .2rem; font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--accent-strong); transition: color .18s ease; }
.tst-card:hover .story-readmore { color: var(--accent); }
.story-readmore::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-card); }

.story-portrait img { border-radius: 24px; aspect-ratio: 1/1; background: var(--surface); object-fit: cover; }
.story-meta { display: flex; align-items: center; gap: .8rem; margin: .2rem 0 1rem; flex-wrap: wrap; }
.story-meta .tst-stars svg { width: 18px; height: 18px; }
.story-quote { border-left: 4px solid var(--accent); background: var(--surface-2); padding: 1.2rem 1.4rem; border-radius: 0 12px 12px 0; font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.6; margin: 0 0 1.6rem; }
.story-quote cite { display: block; margin-top: .7rem; font-size: .85rem; font-style: normal; font-weight: 600; color: var(--ink-faint); }

/* ============ Cookie banner ============ */
.cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 9999; background: var(--surface-1); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.18); padding: 1rem 1.2rem; animation: cbSlide .35s ease-out; }
.cookie-banner .cb-inner { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.cookie-banner .cb-text { flex: 1 1 320px; min-width: 260px; }
.cookie-banner .cb-text strong { display: block; font-family: var(--font-display, Outfit), sans-serif; font-size: 1rem; margin-bottom: .25rem; color: var(--ink); }
.cookie-banner .cb-text p { margin: 0; font-size: .9rem; line-height: 1.5; color: var(--ink-faint); }
.cookie-banner .cb-actions { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.cookie-banner .cb-link { font-size: .85rem; color: var(--accent, #0e9384); text-decoration: underline; padding: .3rem .5rem; }
.cookie-banner .cb-actions .btn { padding: .5rem 1rem; font-size: .9rem; }
@keyframes cbSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 640px) { .cookie-banner { left: .5rem; right: .5rem; bottom: .5rem; padding: .9rem; } .cookie-banner .cb-actions { width: 100%; } .cookie-banner .cb-actions .btn { flex: 1; } }

/* ============ Legal pages ============ */
.legal h2 { font-family: var(--font-display, Outfit), sans-serif; font-size: 1.3rem; margin: 2rem 0 .6rem; color: var(--ink); }
.legal p, .legal li { line-height: 1.7; color: var(--ink); margin-bottom: .8rem; }
.legal ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal code { background: var(--surface-2); padding: .1rem .4rem; border-radius: 4px; font-size: .88em; }
.cookie-table { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin: 1rem 0 1.5rem; }
.cookie-table .cr { display: grid; grid-template-columns: 1.3fr 3fr 1fr; gap: 1rem; padding: .8rem 1rem; border-bottom: 1px solid var(--border); font-size: .9rem; align-items: center; }
.cookie-table .cr:last-child { border-bottom: 0; }
.cookie-table .cr.head { background: var(--surface-2); font-weight: 600; }
@media (max-width: 640px) { .cookie-table .cr { grid-template-columns: 1fr; gap: .3rem; } .cookie-table .cr.head { display: none; } }

/* ============ FAQ page (standalone) ============ */
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title { font-family: var(--font-display, Outfit), sans-serif; font-size: 1.4rem; margin: 0 0 1rem; color: var(--ink); padding-bottom: .5rem; border-bottom: 2px solid var(--accent, #0e9384); }

/* ============ Blog ============ */
.blog-hero { padding: 3rem 0 1.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.blog-card { display: flex; flex-direction: column; background: var(--surface-1); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; text-decoration: none; color: inherit; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.blog-card .bc-img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--accent, #0e9384), var(--brand, #12395e)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 3rem; }
.blog-card .bc-body { padding: 1.2rem 1.3rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .bc-cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); font-weight: 600; margin-bottom: .5rem; }
.blog-card h3 { font-family: var(--font-display, Outfit), sans-serif; font-size: 1.15rem; margin: 0 0 .5rem; line-height: 1.3; }
.blog-card p { font-size: .9rem; color: var(--ink-faint); line-height: 1.55; margin: 0 0 .8rem; flex: 1; }
.blog-card .bc-meta { font-size: .8rem; color: var(--ink-faint); }
.blog-article { max-width: 780px; margin: 0 auto; }
.blog-article .ba-meta { color: var(--ink-faint); font-size: .9rem; margin-bottom: 2rem; }
.blog-article h2 { font-family: var(--font-display, Outfit), sans-serif; font-size: 1.55rem; margin: 2.5rem 0 .8rem; color: var(--ink); }
.blog-article h3 { font-family: var(--font-display, Outfit), sans-serif; font-size: 1.2rem; margin: 2rem 0 .6rem; color: var(--ink); }
.blog-article p, .blog-article li { line-height: 1.75; font-size: 1.02rem; color: var(--ink); }
.blog-article ul, .blog-article ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.blog-article li { margin-bottom: .5rem; }
.blog-article blockquote { border-left: 4px solid var(--accent); background: var(--surface-2); padding: 1rem 1.4rem; margin: 1.5rem 0; border-radius: 0 12px 12px 0; font-style: italic; color: var(--ink); }
.blog-article .ba-toc { background: var(--surface-2); border-radius: 12px; padding: 1.2rem 1.5rem; margin: 1.5rem 0 2rem; }
.blog-article .ba-toc h4 { margin: 0 0 .6rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); }
.blog-article .ba-toc ol { margin: 0; padding-left: 1.2rem; }
.blog-article .ba-toc li { margin-bottom: .3rem; }
.blog-article .ba-toc a { color: var(--accent); text-decoration: none; }
.blog-article .ba-toc a:hover { text-decoration: underline; }
.blog-article .ba-cta { background: var(--surface-2); border-radius: 14px; padding: 1.8rem; text-align: center; margin: 3rem 0 1rem; }
.blog-article .ba-cta h3 { margin: 0 0 .6rem; }

/* ===========================================================================
   FREE emphasis in CTA buttons (Get a FREE Second Opinion)
   =========================================================================== */
.free-em { font-weight: 800; font-size: 1.18em; letter-spacing: .01em; }

/* ===========================================================================
   Consultation modal (opens on any page from "Second Opinion" buttons)
   =========================================================================== */
.nca-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: clamp(1rem, 4vw, 3rem) 1rem; overflow-y: auto; }
.nca-modal.open { display: flex; }
.nca-modal__backdrop { position: fixed; inset: 0; background: rgba(8, 20, 34, .62); backdrop-filter: blur(3px); animation: ncaFade .2s var(--ease); }
.nca-modal__dialog { position: relative; z-index: 1; width: min(580px, 100%); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-lg); padding: 1.8rem clamp(1.2rem, 3.5vw, 2rem); margin: auto; animation: ncaPop .25s var(--ease); }
@keyframes ncaFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ncaPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .nca-modal__backdrop, .nca-modal__dialog { animation: none; } }
.nca-modal__close { position: absolute; top: .85rem; right: .85rem; width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-soft); display: grid; place-items: center; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
.nca-modal__close:hover { background: var(--surface-3); color: var(--ink); }
.nca-modal__close svg { width: 20px; height: 20px; }
.nca-modal .m-eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-strong); margin-bottom: .5rem; }
.nca-modal h3 { font-size: 1.3rem; margin-bottom: .3rem; padding-right: 2.4rem; }
.nca-modal .m-sub { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.nca-modal .form-privacy { font-size: .74rem; color: var(--ink-faint); margin-top: .8rem; line-height: 1.5; }
body.nca-modal-open { overflow: hidden; }

/* ===========================================================================
   Treatment cards as links (index) + dedicated treatment pages
   =========================================================================== */
a.treat-card { display: flex; flex-direction: column; gap: .55rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.3rem; text-decoration: none; color: inherit; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
a.treat-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
a.treat-card .t-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
a.treat-card .t-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; flex: none; }
a.treat-card .t-ico svg { width: 24px; height: 24px; }
a.treat-card .t-arrow { width: 22px; height: 22px; color: var(--accent-strong); flex: none; margin-top: 4px; transition: transform .2s var(--ease); }
a.treat-card:hover .t-arrow { transform: translateX(3px); }
a.treat-card h3 { font-size: 1.05rem; }
a.treat-card .t-short { font-size: .85rem; color: var(--ink-soft); }

/* Treatment article page */
.tx-body { max-width: 780px; margin-inline: auto; }
.tx-body > section { margin-bottom: 2.4rem; scroll-margin-top: 90px; }
.tx-toc { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.3rem 1.5rem; margin-bottom: 2.4rem; }
.tx-toc .toc-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .8rem; }
.tx-toc ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .45rem 1.4rem; margin: 0; padding: 0; }
.tx-toc a { display: flex; gap: .5rem; align-items: baseline; color: var(--ink-soft); font-size: .92rem; text-decoration: none; padding: .15rem 0; border-bottom: 1px solid transparent; transition: color .15s var(--ease); }
.tx-toc a::before { content: "→"; color: var(--accent-strong); font-size: .82rem; }
.tx-toc a:hover { color: var(--accent-strong); }
@media (max-width: 640px) { .tx-toc ul { grid-template-columns: 1fr; } }
.tx-body h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .8rem; }
.tx-body h3 { font-size: 1.12rem; margin: 1.4rem 0 .5rem; }
.tx-body p { color: var(--ink-soft); margin-bottom: .9rem; line-height: 1.7; }
.tx-body ul.tx-list { list-style: none; display: grid; gap: .6rem; margin: .6rem 0 1.2rem; }
.tx-body ul.tx-list li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); line-height: 1.6; }
.tx-body ul.tx-list li svg { width: 19px; height: 19px; color: var(--accent-strong); flex: none; margin-top: 3px; }
.tx-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0 1.4rem; }
.tx-option { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.2rem 1.3rem; }
.tx-option h3 { margin: 0 0 .4rem; font-size: 1rem; }
.tx-option p { font-size: .88rem; margin: 0; }
@media (max-width: 640px) { .tx-options { grid-template-columns: 1fr; } }
.tx-callout { display: flex; gap: 1rem; align-items: flex-start; background: var(--accent-tint); border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); border-radius: var(--r-card); padding: 1.4rem 1.5rem; margin: 1.6rem 0; }
.tx-callout .c-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); color: var(--accent-strong); display: grid; place-items: center; flex: none; }
.tx-callout .c-ico svg { width: 22px; height: 22px; }
.tx-callout h3 { margin: 0 0 .3rem; font-size: 1.05rem; color: var(--accent-ink); }
.tx-callout p { margin: 0; font-size: .9rem; color: var(--accent-ink); }
.tx-cta-band { text-align: center; background: var(--brand); border-radius: var(--r-card); padding: clamp(1.8rem, 4vw, 2.6rem); margin-top: 2rem; }
.tx-cta-band h2 { color: #fff; margin-bottom: .6rem; }
.tx-cta-band p { color: #c3d5e7; max-width: 54ch; margin: 0 auto 1.4rem; }
