/* ==========================================================================
   KCC UNIFIED.CSS — Single stylesheet for kccrc.org
   Consolidated from main.css · disease.css · components.css
   Mobile-first · Nepal-optimized · WCAG 2.1 AA
   Version: 3.0 | 2026
   Brand: Navy #2b318c · Magenta #ec008c
   Fonts: Sora (headings) · Plus Jakarta Sans (body) · Noto Sans Devanagari (नेपाली)
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand */
  --kcc-navy: #2b318c;
  --kcc-navy-dark: #1e2368;
  --kcc-navy-light: #3d44b0;
  --kcc-magenta: #ec008c;
  --kcc-magenta-dark: #c4006e;
  --kcc-magenta-pale: #fce8f4;

  /* Neutrals */
  --white: #ffffff;
  --surface: #fafafa;
  --surface-2: #f3f4f8;
  --cream: #fafbff;
  --border: #e8e9f0;
  --border-strong: #cccdd8;

  /* Text */
  --text: #1c1c30;
  --text-secondary: #4a4a68;
  --text-muted: #888899;
  --text-inverse: #ffffff;

  /* Semantic */
  --primary: var(--kcc-navy);
  --accent: var(--kcc-magenta);
  --success: #059669;
  --warning: #d97706;
  --error: #dc2626;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  /* Page accent (override per disease page) */
  --page-accent: var(--kcc-navy);
  --page-light: #f0f3ff;
  --page-mid: #c7d0ff;
  --page-dark: var(--kcc-navy-dark);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Sora', var(--font-sans);
  --font-serif: 'Lora', Georgia, serif;
  --font-devanagari: 'Noto Sans Devanagari', var(--font-sans);

  /* Fluid Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.25rem, 3vw, 1.5rem);
  --text-3xl: clamp(1.5rem, 4vw, 1.875rem);
  --text-4xl: clamp(1.875rem, 5vw, 2.5rem);
  --text-5xl: clamp(2.25rem, 6vw, 3.25rem);
  --text-6xl: clamp(2.5rem, 7vw, 4rem);

  /* Weights */
  --w-normal: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;

  /* Line Height */
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;
  --lh-devanagari: 1.85;

  /* Letter Spacing */
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.04em;
  --ls-wider: 0.08em;
  --ls-widest: 0.12em;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(43,49,140,0.04);
  --shadow-sm: 0 2px 8px rgba(43,49,140,0.06);
  --shadow-md: 0 4px 20px rgba(43,49,140,0.09);
  --shadow-lg: 0 8px 40px rgba(43,49,140,0.12);
  --shadow-xl: 0 16px 60px rgba(43,49,140,0.15);

  /* Motion */
  --ease-out: cubic-bezier(0,0,0.2,1);
  --ease-in-out: cubic-bezier(0.4,0,0.2,1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 350ms;

  /* Layout */
  --container-max: 1160px;
  --container-narrow: 720px;
  --container-wide: 1400px;
  --nav-h: 64px;
  --section-pad: var(--sp-20);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: calc(60px + var(--safe-bottom));
}

@media (min-width: 1024px) { body { padding-bottom: 0; } }

img,video,canvas,svg { display: block; max-width: 100%; height: auto; }
img { object-fit: cover; }

input,button,textarea,select { font: inherit; color: inherit; }

ul,ol { list-style: none; padding-left: 0; }
ul[data-list], ol[data-list] { padding-left: 1.5rem; list-style: revert; }

a { color: var(--page-accent); text-decoration: none; transition: color var(--dur-fast); }
a:hover { color: var(--page-dark); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: var(--w-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--kcc-navy-dark);
}

p { line-height: var(--lh-relaxed); color: var(--text-secondary); margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

strong { font-weight: var(--w-semibold); color: var(--text); }
em { font-style: italic; }

:focus-visible {
  outline: 3px solid var(--kcc-magenta);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: var(--r-full); }

/* ==========================================================================
   3. TYPOGRAPHY HELPERS
   ========================================================================== */
.display-xl { font-family: var(--font-heading); font-size: var(--text-6xl); font-weight: var(--w-bold); line-height: var(--lh-tight); color: var(--kcc-navy); }
.display-lg { font-size: var(--text-5xl); font-weight: var(--w-bold); color: var(--kcc-navy); }
.display-md { font-size: var(--text-4xl); font-weight: var(--w-bold); color: var(--kcc-navy); }
.display-accent { font-style: italic; color: var(--kcc-magenta); }

.heading-xl { font-size: var(--text-3xl); font-weight: var(--w-bold); }
.heading-lg { font-size: var(--text-2xl); font-weight: var(--w-semibold); }
.heading-md { font-size: var(--text-xl); font-weight: var(--w-semibold); }
.heading-sm { font-size: var(--text-lg); font-weight: var(--w-semibold); }

.overline {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--kcc-magenta);
}

/* Devanagari (Nepali) text — needs taller line-height for matras */
.lang-ne, [lang="ne"], .ne {
  font-family: var(--font-devanagari);
  line-height: var(--lh-devanagari);
  letter-spacing: 0;
}
.lang-ne h1,.lang-ne h2,.lang-ne h3,.lang-ne h4 { font-family: 'Noto Serif Devanagari', var(--font-devanagari); }

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--sp-5); }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

@media (min-width: 640px) { .container { padding-inline: var(--sp-8); } }
@media (min-width: 1024px) { .container { padding-inline: var(--sp-12); } }

.section { padding-block: var(--section-pad); }
.section--sm { padding-block: var(--sp-12); }
.section--lg { padding-block: calc(var(--section-pad) * 1.5); }
.section--white { background: var(--white); }
.section--surface { background: var(--surface); }
.section--surface-2 { background: var(--surface-2); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--kcc-navy); color: var(--text-inverse); }
.section--navy h2,.section--navy h3 { color: var(--white); }
.section--magenta { background: var(--kcc-magenta); color: var(--text-inverse); }
.section--magenta-pale { background: var(--kcc-magenta-pale); }
.section--page-light { background: var(--page-light); }

/* Grid */
.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

.grid-auto { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-auto { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-auto { grid-template-columns: repeat(3,1fr); } }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }

/* Two-column */
.two-col { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); }
@media (min-width: 960px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .two-col--3-2 { grid-template-columns: 3fr 2fr; }
  .two-col--2-3 { grid-template-columns: 2fr 3fr; }
}

/* Section header */
.section-header { margin-bottom: var(--sp-12); }
.section-header--center { text-align: center; max-width: 640px; margin-inline: auto; }
.section-header .overline { display: block; margin-bottom: var(--sp-3); }
.section-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--w-bold);
  padding-bottom: var(--sp-4);
  position: relative;
}
.section-header h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 56px; height: 3px; background: var(--page-accent); border-radius: 2px;
}
.section-header--center h2::after { left: 50%; transform: translateX(-50%); }
.section-header p { color: var(--text-muted); font-size: var(--text-lg); margin-top: var(--sp-3); }
.section-header--center p { margin-inline: auto; }

.divider { border: none; border-top: 1px solid var(--border); margin-block: var(--sp-8); }

/* ==========================================================================
   5. UTILITIES
   ========================================================================== */
.block { display: block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.hide-mobile { display: none; }
.hide-desktop { display: block; }
@media (min-width: 768px) { .hide-mobile { display: block; } .hide-desktop { display: none; } }

.mt-4 { margin-top: var(--sp-4); } .mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); } .mt-12 { margin-top: var(--sp-12); }
.mb-4 { margin-bottom: var(--sp-4); } .mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); } .mb-0 { margin-bottom: 0; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.text-primary { color: var(--kcc-navy); }
.text-accent { color: var(--kcc-magenta); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-secondary { color: var(--text-secondary); }
.text-dark { color: var(--kcc-navy-dark); }

.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }

.font-normal { font-weight: var(--w-normal); }
.font-medium { font-weight: var(--w-medium); }
.font-semibold { font-weight: var(--w-semibold); }
.font-bold { font-weight: var(--w-bold); }
.italic { font-style: italic; }

.w-full { width: 100%; }
.max-w-prose { max-width: 65ch; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.schema-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

img.lazy { opacity: 0; transition: opacity var(--dur-slow) var(--ease-out); }
img.lazy.loaded { opacity: 1; }

/* ==========================================================================
   6. NAVBAR
   ========================================================================== */
.navbar {
  position: sticky; top: 0; z-index: 900;
  width: 100%; height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.navbar--scrolled { box-shadow: var(--shadow-sm); }

.navbar__inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6);
}

.navbar__logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.navbar__logo img { height: 36px; width: auto; }
@media (min-width: 640px) { .navbar__logo img { height: 40px; } }

.navbar__nav { display: none; align-items: center; gap: var(--sp-1); }
@media (min-width: 1024px) { .navbar__nav { display: flex; } }

.navbar__nav-item { position: relative; }

.navbar__nav-link {
  display: flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  font-size: var(--text-sm); font-weight: var(--w-medium);
  color: var(--text-secondary); text-decoration: none;
  transition: color var(--dur-fast), background-color var(--dur-fast);
  white-space: nowrap;
  min-height: 44px;
}
.navbar__nav-link:hover { color: var(--kcc-navy); background: var(--surface-2); }
.navbar__nav-link--active { color: var(--kcc-navy); font-weight: var(--w-semibold); }
.navbar__nav-link svg { width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease-out); }
.navbar__nav-item:hover .navbar__nav-link svg { transform: rotate(180deg); }

.navbar__dropdown {
  position: absolute; top: calc(100% + var(--sp-2)); left: 50%;
  min-width: 520px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); padding: var(--sp-6);
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.navbar__nav-item:hover .navbar__dropdown {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navbar__dropdown-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-2); }
.navbar__dropdown-grid--3 { grid-template-columns: repeat(3,1fr); }

.navbar__dropdown-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3); border-radius: var(--r-md);
  text-decoration: none; transition: background-color var(--dur-fast);
}
.navbar__dropdown-item:hover { background: var(--surface-2); }
.navbar__dropdown-item__icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--kcc-magenta-pale); border-radius: var(--r-sm);
  color: var(--kcc-magenta); font-size: 1rem;
}
.navbar__dropdown-item__title { font-size: var(--text-sm); font-weight: var(--w-semibold); color: var(--kcc-navy); line-height: 1.3; }
.navbar__dropdown-item__desc { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.navbar__dropdown-footer { margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--border); }

.navbar__cta { display: none; align-items: center; gap: var(--sp-3); }
@media (min-width: 1024px) { .navbar__cta { display: flex; } }

.lang-switcher { display: flex; align-items: center; gap: var(--sp-1); font-size: var(--text-xs); font-weight: var(--w-semibold); }
.lang-switcher a { padding: var(--sp-1) var(--sp-2); border-radius: var(--r-sm); color: var(--text-muted); transition: color var(--dur-fast); }
.lang-switcher a:hover { color: var(--kcc-navy); }
.lang-switcher a.active { color: var(--kcc-navy); font-weight: var(--w-bold); }
.lang-switcher__sep { color: var(--border-strong); }

.navbar__hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: var(--sp-2);
  background: none; border: none; cursor: pointer; border-radius: var(--r-sm);
  transition: background-color var(--dur-fast);
  -webkit-tap-highlight-color: transparent;
}
.navbar__hamburger:hover { background: var(--surface-2); }
.navbar__hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out), width var(--dur-base) var(--ease-out); }
.navbar__hamburger span:nth-child(2) { width: 75%; }
.navbar__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.navbar__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .navbar__hamburger { display: none; } }

.mobile-nav {
  position: fixed; inset: 0; z-index: 800;
  background: var(--white); overflow-y: auto;
  padding: calc(var(--nav-h) + var(--sp-8)) var(--sp-6) var(--sp-16);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__section { margin-bottom: var(--sp-8); }
.mobile-nav__section-title {
  font-size: var(--text-xs); font-weight: var(--w-semibold);
  letter-spacing: var(--ls-widest); text-transform: uppercase;
  color: var(--text-muted); margin-bottom: var(--sp-3);
}
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--border);
  font-size: var(--text-base); font-weight: var(--w-medium);
  color: var(--text); text-decoration: none;
  min-height: 44px;
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__cta { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-8); }

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.footer { background: var(--kcc-navy); color: var(--text-inverse); padding-top: var(--sp-16); padding-bottom: var(--sp-8); }
.footer__grid { display: grid; gap: var(--sp-10); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer__logo { margin-bottom: var(--sp-4); filter: brightness(0) invert(1); width: 160px; height: auto; }
.footer__tagline { font-size: var(--text-sm); color: rgba(255,255,255,0.65); line-height: var(--lh-relaxed); margin-bottom: var(--sp-6); max-width: 28ch; }

.footer__social { display: flex; gap: var(--sp-3); }
.footer__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.footer__social-link:hover { background: var(--kcc-magenta); color: var(--white); }
.footer__social-link svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--font-sans); font-size: var(--text-xs);
  font-weight: var(--w-semibold); letter-spacing: var(--ls-widest);
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-4);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link { font-size: var(--text-sm); color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--dur-fast); }
.footer__link:hover { color: var(--white); }

.footer__contact-item { display: flex; align-items: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer__contact-icon { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; color: var(--kcc-magenta); }
.footer__contact-text { font-size: var(--text-sm); color: rgba(255,255,255,0.7); line-height: var(--lh-snug); }
.footer__contact-text strong { display: block; color: var(--white); font-weight: var(--w-semibold); margin-bottom: 2px; }
.footer__contact-text a { color: rgba(255,255,255,0.7); transition: color var(--dur-fast); }
.footer__contact-text a:hover { color: var(--kcc-magenta); }

.footer__bottom {
  margin-top: var(--sp-12); padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: var(--sp-3); align-items: flex-start;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__copyright { font-size: var(--text-xs); color: rgba(255,255,255,0.4); }
.footer__legal-links { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer__legal-links a { font-size: var(--text-xs); color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--dur-fast); }
.footer__legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   8. CARDS
   ========================================================================== */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.card--hoverable:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); transform: translateY(-2px); }
.card__body { padding: var(--sp-6); }
.card__body--lg { padding: var(--sp-8); }
.card__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card__image--square { aspect-ratio: 1; }

.service-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
  text-decoration: none;
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: rgba(236,0,140,0.25); }
.service-card__icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--kcc-magenta-pale); border-radius: var(--r-md);
  margin-bottom: var(--sp-5); font-size: 1.5rem; color: var(--kcc-magenta);
}
.service-card__title { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--w-semibold); color: var(--kcc-navy); margin-bottom: var(--sp-3); line-height: var(--lh-snug); }
.service-card__desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--lh-relaxed); flex: 1; }

.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-8); position: relative; }
.feature-card--accent-left { border-left: 3px solid var(--kcc-magenta); }

.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-6); }
.info-card__label { font-size: var(--text-xs); font-weight: var(--w-semibold); letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--kcc-magenta); margin-bottom: var(--sp-2); }
.info-card__title { font-family: var(--font-heading); font-size: var(--text-xl); color: var(--kcc-navy); margin-bottom: var(--sp-4); }

.cta-card { background: var(--kcc-navy); border-radius: var(--r-xl); padding: var(--sp-10) var(--sp-8); color: var(--white); text-align: center; }
.cta-card h2,.cta-card h3 { color: var(--white); }
.cta-card p { color: rgba(255,255,255,0.75); }

.quote-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-6); }
.quote-card__text { font-family: var(--font-serif); font-style: italic; font-size: var(--text-lg); color: var(--text); line-height: var(--lh-relaxed); margin-bottom: var(--sp-5); }
.quote-card__text::before { content: '\201C'; color: var(--kcc-magenta); }
.quote-card__text::after { content: '\201D'; color: var(--kcc-magenta); }
.quote-card__author { font-size: var(--text-sm); font-weight: var(--w-semibold); color: var(--kcc-navy); }
.quote-card__meta { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }

.compare-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.compare-card__header { padding: var(--sp-5) var(--sp-6); background: var(--surface-2); border-bottom: 1px solid var(--border); font-size: var(--text-sm); font-weight: var(--w-semibold); color: var(--text-secondary); text-align: center; }
.compare-card__header--kcc { background: var(--kcc-navy); color: var(--white); }

/* Treatment card (disease page) */
.treatment-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-8) var(--sp-6);
  position: relative; transition: all var(--dur-base); overflow: hidden;
}
.treatment-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--page-accent); border-radius: 4px 0 0 4px; }
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--page-accent); }
.treatment-card .card-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--page-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: var(--sp-4); color: var(--page-accent); }
.treatment-card h3 { font-size: 1.1rem; margin-bottom: var(--sp-3); color: var(--kcc-navy-dark); }
.treatment-card p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--sp-4); }
.treatment-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); margin-top: var(--sp-8); }
@media (min-width: 640px) { .treatment-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }

/* Doctor card */
.doctor-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  display: flex; gap: var(--sp-5); align-items: flex-start;
  transition: box-shadow var(--dur-base);
}
.doctor-card:hover { box-shadow: var(--shadow-lg); }
.doctor-avatar { flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--page-light); overflow: hidden; background: var(--page-light); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--page-accent); }
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.doctor-info h3 { font-size: 1.05rem; margin-bottom: 3px; }
.doctor-info .dr-role { font-size: var(--text-sm); color: var(--page-accent); font-weight: var(--w-semibold); margin-bottom: 4px; }
.doctor-info .dr-creds { font-size: var(--text-xs); color: var(--text-muted); margin-bottom: var(--sp-3); }
.doctor-info .dr-spec { font-size: var(--text-sm); color: var(--text); margin-bottom: var(--sp-4); }
.dr-cta { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.doctor-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); margin-top: var(--sp-8); }
@media (min-width: 640px) { .doctor-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
@media (max-width: 640px) { .doctor-card { flex-direction: column; align-items: center; text-align: center; } .dr-cta { justify-content: center; } }

/* ==========================================================================
   9. HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: var(--sp-12) 0 var(--sp-16);
  background: linear-gradient(135deg, var(--page-light) 0%, var(--white) 60%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(43,49,140,0.07) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(236,0,140,0.05) 0%, transparent 40%);
}
.hero::after {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 440px; height: 440px; border-radius: 50%;
  background: var(--page-mid); opacity: 0.12; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: center; position: relative; z-index: 1; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1fr 420px; gap: var(--sp-12); } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: var(--w-semibold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--page-accent); background: var(--page-light);
  border: 1px solid var(--page-mid); padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full); margin-bottom: var(--sp-5);
}
.hero h1 { font-size: var(--text-4xl); font-weight: var(--w-bold); color: var(--kcc-navy-dark); margin-bottom: var(--sp-4); letter-spacing: var(--ls-tight); }
.hero h1 em { color: var(--kcc-magenta); font-style: italic; }
.hero-subtitle { font-size: var(--text-lg); color: var(--text-secondary); line-height: var(--lh-relaxed); max-width: 540px; margin-bottom: var(--sp-8); }

.hero-badges { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); overflow: hidden; margin-top: var(--sp-6); }
.stat-pill { padding: var(--sp-5) var(--sp-4); text-align: center; border-right: 1px solid var(--border); }
.stat-pill:last-child { border-right: none; }
.stat-pill .num { font-family: var(--font-heading); font-size: var(--text-2xl); font-weight: var(--w-bold); color: var(--page-accent); line-height: 1; display: block; }
.stat-pill .label { font-size: var(--text-xs); color: var(--text-muted); font-weight: var(--w-medium); margin-top: var(--sp-1); display: block; }
@media (max-width: 640px) { .hero-stats { display: none; } }

.hero-img-wrap { position: relative; max-width: 500px; margin: 0 auto; }
.img-placeholder {
  background: linear-gradient(135deg, var(--page-light), var(--page-mid));
  border-radius: var(--r-lg); border: 2px dashed var(--page-accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-3); color: var(--page-accent); font-size: var(--text-sm); font-weight: var(--w-semibold);
  text-align: center; padding: var(--sp-6); aspect-ratio: 4/3;
}
.img-placeholder i { font-size: 2.4rem; opacity: 0.6; }

/* Center hero variant */
.hero--center { text-align: center; }
.hero--center .hero-cta { justify-content: center; }
.hero--center .hero-subtitle { margin-inline: auto; }

/* ==========================================================================
   10. BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: var(--text-sm); font-weight: var(--w-semibold);
  line-height: 1; cursor: pointer; border: 2px solid transparent; white-space: nowrap;
  text-decoration: none; -webkit-tap-highlight-color: transparent;
  transition: background-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  min-height: 44px;
}
.btn:active { transform: scale(0.97); }

.btn--primary { background: var(--kcc-navy); color: var(--white); border-color: var(--kcc-navy); }
.btn--primary:hover { background: var(--kcc-navy-dark); border-color: var(--kcc-navy-dark); box-shadow: var(--shadow-md); }

.btn--accent { background: var(--kcc-magenta); color: var(--white); border-color: var(--kcc-magenta); }
.btn--accent:hover { background: var(--kcc-magenta-dark); border-color: var(--kcc-magenta-dark); box-shadow: var(--shadow-md); }

.btn--page-accent { background: var(--page-accent); color: var(--white); border-color: var(--page-accent); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn--page-accent:hover { background: var(--page-dark); border-color: var(--page-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); color: var(--white); }

.btn--outline { background: transparent; color: var(--kcc-navy); border-color: var(--kcc-navy); }
.btn--outline:hover { background: var(--kcc-navy); color: var(--white); }

.btn--outline-accent { background: transparent; color: var(--kcc-magenta); border-color: var(--kcc-magenta); }
.btn--outline-accent:hover { background: var(--kcc-magenta); color: var(--white); }

.btn--outline-page { background: var(--white); color: var(--page-accent); border-color: var(--page-accent); }
.btn--outline-page:hover { background: var(--page-light); }

.btn--ghost { background: transparent; color: var(--kcc-magenta); border-color: transparent; padding-inline: var(--sp-2); }
.btn--ghost:hover { color: var(--kcc-magenta-dark); }

.btn--whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); color: var(--white); transform: translateY(-1px); }

.btn--sm { padding: var(--sp-2) var(--sp-4); font-size: var(--text-xs); min-height: 36px; }
.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); min-height: 52px; }
.btn--xl { padding: var(--sp-5) var(--sp-10); font-size: var(--text-lg); min-height: 56px; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--kcc-magenta); font-size: var(--text-sm); font-weight: var(--w-semibold);
  transition: gap var(--dur-base) var(--ease-out), color var(--dur-base); text-decoration: none;
}
.link-arrow::after { content: '→'; transition: transform var(--dur-base) var(--ease-out); }
.link-arrow:hover { color: var(--kcc-magenta-dark); }
.link-arrow:hover::after { transform: translateX(4px); }

.badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full);
  font-size: var(--text-xs); font-weight: var(--w-semibold);
  letter-spacing: var(--ls-wide); line-height: 1; white-space: nowrap;
}
.badge--navy { background: var(--kcc-navy); color: var(--white); }
.badge--magenta { background: var(--kcc-magenta); color: var(--white); }
.badge--accent { background: var(--page-accent); color: var(--white); }
.badge--pink { background: #fff0f8; border: 1px solid #f9b8da; color: #b5006a; }
.badge--green { background: #f0fdf4; border: 1px solid #bbf7d0; color: var(--success); }
.badge--outline { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text-secondary); }
.badge--outline-magenta { background: transparent; border: 1.5px solid var(--kcc-magenta); color: var(--kcc-magenta); }
.badge--surface { background: var(--surface-2); color: var(--text-secondary); }
.badge--new { background: var(--kcc-magenta-pale); color: var(--kcc-magenta); }

/* ==========================================================================
   11. FORM ELEMENTS & MODAL
   ========================================================================== */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-label { font-size: var(--text-sm); font-weight: var(--w-medium); color: var(--text); }
.form-input,.form-select,.form-textarea {
  width: 100%; padding: var(--sp-3) var(--sp-4);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); font-family: var(--font-sans); font-size: var(--text-base);
  color: var(--text); transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none; appearance: none; min-height: 44px;
}
.form-input::placeholder,.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,.form-select:focus,.form-textarea:focus { outline: none; border-color: var(--kcc-navy); box-shadow: 0 0 0 3px rgba(43,49,140,0.1); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: var(--text-xs); color: var(--text-muted); }
.form-error { font-size: var(--text-xs); color: var(--error); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(28,28,48,0.55);
  display: flex; align-items: flex-end; justify-content: center;
  padding: var(--sp-4); opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
@media (min-width: 640px) { .modal-overlay { align-items: center; } }
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 520px; background: var(--white);
  border-radius: var(--r-xl); padding: var(--sp-8);
  max-height: 90svh; overflow-y: auto;
  transform: translateY(20px); transition: transform var(--dur-slow) var(--ease-out);
  position: relative;
}
.modal-overlay.is-open .modal { transform: translateY(0); }
.modal__close {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; border-radius: var(--r-full);
  color: var(--text-muted); cursor: pointer;
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.modal__close:hover { background: var(--surface-2); color: var(--text); }
.modal__header { margin-bottom: var(--sp-6); }

/* ==========================================================================
   12. BREADCRUMB & PAGINATION
   ========================================================================== */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-2);
  list-style: none; margin-bottom: var(--sp-6);
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: var(--sp-3) 0; font-size: var(--text-xs); color: var(--text-muted);
}
.breadcrumb__item { display: flex; align-items: center; gap: var(--sp-2); }
.breadcrumb__item a { color: var(--kcc-navy); font-weight: var(--w-medium); text-decoration: none; }
.breadcrumb__item a:hover { text-decoration: underline; }
.breadcrumb__item--current { color: var(--text); font-weight: var(--w-medium); }
.breadcrumb__sep { color: var(--border-strong); opacity: 0.5; margin-inline: var(--sp-1); }

.pagination { display: flex; align-items: center; justify-content: center; gap: var(--sp-2); margin-top: var(--sp-12); }
.pagination__btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); font-size: var(--text-sm); font-weight: var(--w-medium);
  color: var(--text-secondary); border: 1.5px solid var(--border); background: none;
  cursor: pointer; transition: all var(--dur-fast); text-decoration: none;
}
.pagination__btn:hover { border-color: var(--kcc-navy); color: var(--kcc-navy); }
.pagination__btn--active { background: var(--kcc-navy); border-color: var(--kcc-navy); color: var(--white); }

/* ==========================================================================
   13. PAGE: DISEASE / CANCER TYPE
   ========================================================================== */
.ai-summary {
  background: linear-gradient(135deg, #fffbf0, #fff9f5);
  border-left: 4px solid var(--page-accent);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: var(--sp-8) var(--sp-8); margin: 0 0 var(--sp-12);
  box-shadow: var(--shadow-sm);
}
.ai-summary h2 { font-size: 1.2rem; margin-bottom: var(--sp-5); color: var(--kcc-navy-dark); display: flex; align-items: center; gap: var(--sp-2); }
.ai-facts { display: grid; gap: var(--sp-4); }
.fact-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-1); align-items: start; padding: var(--sp-3) 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
@media (min-width: 640px) { .fact-row { grid-template-columns: 200px 1fr; gap: var(--sp-4); } }
.fact-row:last-child { border-bottom: none; }
.fact-label { font-weight: var(--w-bold); color: var(--page-accent); font-size: var(--text-sm); }
.fact-value { color: var(--text); font-size: var(--text-sm); }
.ai-note { margin-top: var(--sp-5); padding-top: var(--sp-4); border-top: 1px dashed rgba(0,0,0,0.12); font-size: var(--text-xs); color: var(--text-muted); font-style: italic; }

.anchor-nav {
  display: flex; gap: var(--sp-2); flex-wrap: wrap;
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--border);
  background: var(--white); position: sticky; top: var(--nav-h); z-index: 100;
  box-shadow: var(--shadow-xs);
}
.anchor-nav a {
  font-size: var(--text-sm); font-weight: var(--w-semibold);
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-full);
  color: var(--text-muted); border: 1px solid var(--border);
  background: var(--white); transition: all var(--dur-base); text-decoration: none;
}
.anchor-nav a:hover { background: var(--page-accent); color: var(--white); border-color: var(--page-accent); }

.highlight-box {
  background: linear-gradient(135deg, var(--page-light), var(--white));
  border: 2px solid var(--page-accent); border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-8); margin: var(--sp-10) 0;
  position: relative; overflow: hidden;
}
.highlight-box::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; background: var(--page-mid); opacity: 0.2; border-radius: 50%; pointer-events: none; }
.highlight-badge { display: inline-flex; align-items: center; gap: var(--sp-2); background: var(--page-accent); color: var(--white); font-size: var(--text-xs); font-weight: var(--w-bold); letter-spacing: var(--ls-wide); text-transform: uppercase; padding: var(--sp-1) var(--sp-3); border-radius: var(--r-sm); margin-bottom: var(--sp-4); }
.highlight-box h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-3); color: var(--kcc-navy-dark); }
.highlight-box ul { margin: var(--sp-4) 0; list-style: none; }
.highlight-box li { padding: var(--sp-2) 0; border-bottom: 1px solid var(--border); font-size: var(--text-sm); color: var(--text); }
.highlight-box li:last-child { border-bottom: none; }
.highlight-box li strong { color: var(--kcc-navy-dark); }

.faq-list { margin-top: var(--sp-6); }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: var(--sp-3); overflow: hidden; }
.faq-q { width: 100%; background: var(--white); border: none; padding: var(--sp-5) var(--sp-6); text-align: left; font-family: var(--font-heading); font-size: var(--text-base); font-weight: var(--w-semibold); color: var(--kcc-navy-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); transition: background var(--dur-fast); }
.faq-q:hover { background: var(--page-light); }
.faq-q .faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--page-light); display: flex; align-items: center; justify-content: center; font-size: var(--text-sm); color: var(--page-accent); transition: transform var(--dur-base), background var(--dur-fast); }
.faq-q.open .faq-icon { background: var(--page-accent); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); font-size: var(--text-sm); color: var(--text-muted); background: var(--cream); }
.faq-a.open { max-height: 600px; }
.faq-a-inner { padding: var(--sp-4) var(--sp-6) var(--sp-5); }

.compare-toggle { border: 2px solid var(--border); border-radius: var(--r-lg); margin: var(--sp-10) 0; overflow: hidden; }
.compare-btn { width: 100%; background: var(--white); border: none; padding: var(--sp-5) var(--sp-6); text-align: left; font-family: var(--font-heading); font-weight: var(--w-bold); font-size: var(--text-base); color: var(--page-accent); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); transition: background var(--dur-fast); }
.compare-btn:hover { background: var(--page-light); }
.compare-content { display: none; padding: var(--sp-6); background: var(--cream); border-top: 1px solid var(--border); }
.compare-content.open { display: block; }
.compare-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.compare-table th,.compare-table td { padding: var(--sp-3) var(--sp-4); text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--page-light); font-family: var(--font-heading); font-weight: var(--w-bold); color: var(--kcc-navy-dark); }
.compare-table td:first-child { font-weight: var(--w-semibold); color: var(--kcc-navy-dark); }
.compare-note { margin-top: var(--sp-4); padding: var(--sp-4) var(--sp-5); background: var(--page-light); border-radius: var(--r-sm); font-size: var(--text-sm); font-weight: var(--w-medium); color: var(--kcc-navy-dark); }

.decision-box { background: linear-gradient(135deg, var(--page-accent), var(--page-dark)); border-radius: var(--r-lg); padding: var(--sp-12) var(--sp-10); text-align: center; color: var(--white); margin: var(--sp-12) 0; }
.decision-box h3 { font-size: var(--text-3xl); margin-bottom: var(--sp-3); color: var(--white); }
.decision-box p { font-size: var(--text-lg); opacity: 0.88; max-width: 560px; margin: 0 auto var(--sp-6); }
.decision-checklist { list-style: none; padding: 0; display: flex; flex-direction: column; align-items: flex-start; max-width: 460px; margin: 0 auto var(--sp-8); gap: var(--sp-3); text-align: left; }
.decision-checklist li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-sm); opacity: 0.92; }
.decision-checklist li i { color: #86efac; flex-shrink: 0; margin-top: 3px; }
.decision-cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; }
.decision-note { font-size: var(--text-xs); opacity: 0.65; margin-top: var(--sp-3); }
@media (max-width: 640px) { .decision-box { padding: var(--sp-8) var(--sp-5); } .decision-box h3 { font-size: var(--text-2xl); } }

.related-links { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--sp-5) 0; }
.related-links-inner { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.related-links-label { font-size: var(--text-xs); font-weight: var(--w-bold); color: var(--text-muted); text-transform: uppercase; letter-spacing: var(--ls-wider); margin-right: var(--sp-1); }
.related-links a { font-size: var(--text-sm); font-weight: var(--w-semibold); color: var(--page-accent); padding: var(--sp-1) var(--sp-3); border: 1px solid var(--page-mid); border-radius: var(--r-full); background: var(--white); text-decoration: none; transition: all var(--dur-fast); }
.related-links a:hover { background: var(--page-accent); color: var(--white); border-color: var(--page-accent); }

.cancer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); margin-top: var(--sp-8); }
@media (min-width: 480px) { .cancer-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); } }
.cancer-chip { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); padding: var(--sp-4) var(--sp-3); border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--white); text-decoration: none; font-size: var(--text-sm); font-weight: var(--w-semibold); color: var(--text-muted); text-align: center; transition: all var(--dur-base); }
.cancer-chip:hover { border-color: var(--page-accent); color: var(--page-accent); background: var(--page-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cancer-chip .cancer-icon { font-size: 1.6rem; }
.cancer-chip.active { border-color: var(--page-accent); background: var(--page-light); color: var(--page-accent); }

.info-box { border-radius: var(--r-sm); padding: var(--sp-5) var(--sp-6); margin: var(--sp-6) 0; font-size: var(--text-sm); }
.info-box--blue { background: #eff6ff; border-left: 4px solid #3b82f6; }
.info-box--green { background: #f0fdf4; border-left: 4px solid #22c55e; }
.info-box--amber { background: #fffbeb; border-left: 4px solid #f59e0b; }
.info-box--red { background: #fef2f2; border-left: 4px solid #ef4444; }
.info-box--kcc { background: var(--page-light); border-left: 4px solid var(--page-accent); }
.info-box h4 { font-size: var(--text-base); margin-bottom: var(--sp-2); }

/* ==========================================================================
   14. PAGE: BLOG / RESEARCH / GENERIC CONTENT
   ========================================================================== */
.article-meta { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--sp-6); }
.article-meta__author { display: flex; align-items: center; gap: var(--sp-2); font-weight: var(--w-semibold); color: var(--text); }
.article-meta__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.article-meta__date { display: flex; align-items: center; gap: var(--sp-1); }
.article-meta__read { display: flex; align-items: center; gap: var(--sp-1); }

.tag-pill { display: inline-flex; align-items: center; padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full); font-size: var(--text-xs); font-weight: var(--w-semibold); background: var(--surface-2); color: var(--text-secondary); text-decoration: none; transition: all var(--dur-fast); }
.tag-pill:hover { background: var(--kcc-magenta); color: var(--white); }
.tag-pill--active { background: var(--kcc-navy); color: var(--white); }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow var(--dur-base), transform var(--dur-base); text-decoration: none; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--surface-2); }
.blog-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.blog-card__tag { font-size: var(--text-xs); font-weight: var(--w-semibold); color: var(--kcc-magenta); text-transform: uppercase; letter-spacing: var(--ls-wide); margin-bottom: var(--sp-2); }
.blog-card__title { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--w-bold); color: var(--kcc-navy); line-height: var(--lh-snug); margin-bottom: var(--sp-2); }
.blog-card__desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--lh-relaxed); flex: 1; }
.blog-card__meta { display: flex; gap: var(--sp-3); font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--border); }

.stat-block { text-align: center; }
.stat-block__number { font-family: var(--font-heading); font-size: var(--text-4xl); font-weight: var(--w-bold); color: var(--kcc-magenta); line-height: 1; display: block; }
.stat-block__label { font-size: var(--text-sm); color: var(--text-secondary); margin-top: var(--sp-2); line-height: var(--lh-snug); }

.checklist { display: flex; flex-direction: column; gap: var(--sp-3); }
.checklist__item { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--lh-snug); }
.checklist__icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: var(--kcc-magenta-pale); border-radius: var(--r-full); color: var(--kcc-magenta); margin-top: 1px; font-size: var(--text-xs); }

.step-number { font-family: var(--font-heading); font-size: var(--text-4xl); font-weight: var(--w-bold); color: var(--kcc-magenta); opacity: 0.25; line-height: 1; user-select: none; }

/* ==========================================================================
   15. NEPAL-SPECIFIC: WHATSAPP FLOAT & MOBILE BAR
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + var(--safe-bottom));
  right: 24px;
  z-index: 950;
  display: flex; flex-direction: column; align-items: flex-end; gap: var(--sp-2);
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float a {
  width: 56px; height: 56px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none; animation: pulse 2.5s infinite;
}
.whatsapp-float a:hover { background: var(--whatsapp-dark); transform: scale(1.1); animation: none; }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 940; padding-bottom: var(--safe-bottom);
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.mobile-bar-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: var(--sp-3) var(--sp-2);
  font-size: 0.7rem; font-weight: var(--w-bold); text-decoration: none;
  color: var(--text-muted); background: var(--white); border: none;
  cursor: pointer; min-height: 60px; transition: background var(--dur-fast);
}
.mobile-bar-btn i { font-size: 1.2rem; }
.mobile-bar-btn:hover { background: var(--surface-2); }
.mobile-bar-btn--whatsapp { background: var(--whatsapp); color: white; }
.mobile-bar-btn--whatsapp:hover { background: var(--whatsapp-dark); }

@media (max-width: 1023px) {
  .mobile-bar { display: block; }
  .whatsapp-float { bottom: calc(76px + var(--safe-bottom)); right: 16px; }
  .whatsapp-float a { width: 50px; height: 50px; font-size: 1.3rem; }
  body { padding-bottom: calc(60px + var(--safe-bottom)); }
}

/* ==========================================================================
   16. ALERT BANNER & STICKY CTA
   ========================================================================== */
.alert-banner { background: var(--kcc-magenta-pale); border-bottom: 1px solid rgba(236,0,140,0.15); padding: var(--sp-3) 0; text-align: center; }
.alert-banner__text { font-size: var(--text-sm); color: var(--kcc-navy); display: flex; align-items: center; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; }
.alert-banner__link { color: var(--kcc-magenta); font-weight: var(--w-semibold); text-decoration: underline; text-underline-offset: 3px; }

.sticky-cta {
  position: sticky; top: calc(var(--nav-h) + var(--sp-6));
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
}
.sticky-cta__title { font-family: var(--font-heading); font-size: var(--text-lg); color: var(--kcc-navy); margin-bottom: var(--sp-4); }
.sticky-cta__actions { display: flex; flex-direction: column; gap: var(--sp-3); }
.sticky-cta__divider { font-size: var(--text-xs); text-align: center; color: var(--text-muted); position: relative; padding: var(--sp-2) 0; }
.sticky-cta__divider::before,.sticky-cta__divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border); }
.sticky-cta__divider::before { left: 0; }
.sticky-cta__divider::after { right: 0; }
.sticky-cta__phone { display: flex; align-items: center; justify-content: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--text-secondary); }
.sticky-cta__phone strong { color: var(--kcc-navy); font-weight: var(--w-semibold); }

/* ==========================================================================
   17. RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero-img-wrap { max-width: 500px; margin: 0 auto; }
  .two-col, .two-col--3-2, .two-col--2-3 { grid-template-columns: 1fr; gap: var(--sp-6); }
}

@media (max-width: 640px) {
  .hero { padding: var(--sp-8) 0 var(--sp-8); }
  .hero h1 { font-size: var(--text-3xl); }
  .section { padding: var(--sp-12) 0; }
  .section-header h2 { font-size: var(--text-2xl); }
  .btn { padding: var(--sp-3) var(--sp-5); font-size: var(--text-sm); }
  .ai-summary { padding: var(--sp-5); }
  .highlight-box { padding: var(--sp-6) var(--sp-5); }
  .container { padding-inline: var(--sp-4); }
  .fact-row { grid-template-columns: 1fr; gap: var(--sp-1); }
}

@media (max-width: 480px) {
  .cancer-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: var(--text-xs); }
  .compare-table th,.compare-table td { padding: var(--sp-2); }
  .hero-badges { gap: var(--sp-2); }
  .badge { font-size: 0.7rem; padding: var(--sp-1) var(--sp-2); }
}

/* ==========================================================================
   18. ACCESSIBILITY & PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .whatsapp-float a { animation: none; }
}

@media print {
  .navbar, .mobile-bar, .whatsapp-float, .alert-banner, .sticky-cta, .anchor-nav { display: none !important; }
  body { padding: 0; font-size: 12pt; color: black; background: white; }
  a[href]::after { content: " (" attr(href) ")"; }
  .section { padding: 12pt 0; }
  .card, .info-card { box-shadow: none; border: 1px solid #ccc; }
  .section--navy, .cta-card, .decision-box { background: white !important; color: black !important; }
  .section--navy h2, .section--navy h3, .cta-card h2, .cta-card h3, .decision-box h3 { color: black !important; }
}