/* ========================================================
   SANVI Super Speciality Clinic â€” Style Sheet
   ======================================================== */

/* --- CSS VARIABLES --- */
:root {
  --navy: #0B2E78;
  --deep-navy: #08245F;
  --gold: #C89220;
  --light-gold: #E8C46A;
  --white: #FFFFFF;
  --light-bg: #F7FAFD;
  --text: #243B64;
  --muted: #667A99;
  --border: #E8EDF5;
  --shadow-sm: 0 1px 3px rgba(11,46,120,.06);
  --shadow-md: 0 4px 16px rgba(11,46,120,.08);
  --shadow-lg: 0 8px 32px rgba(11,46,120,.10);
  --shadow-xl: 0 12px 48px rgba(11,46,120,.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --max-width: 1440px;
  --page-gutter: clamp(20px, 3.2vw, 40px);
  --header-height: 82px;
  --header-height-scrolled: 64px;

  /* Typography â€” clear, professional clinic system */
  --font-heading: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-script: 'Source Sans 3', 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;      /* 12px â€” labels / fine print */
  --text-sm: 0.875rem;     /* 14px â€” secondary */
  --text-base: 1rem;       /* 16px â€” body */
  --text-md: 1.0625rem;    /* 17px â€” lead body */
  --text-lg: 1.125rem;     /* 18px â€” card titles */
  --text-xl: 1.25rem;      /* 20px â€” small headings */
  --text-2xl: clamp(1.5rem, 2.2vw, 1.875rem);
  --text-3xl: clamp(1.75rem, 2.8vw, 2.35rem);   /* section titles */
  --text-4xl: clamp(2.15rem, 4vw, 3.25rem);     /* hero */
  --text-eyebrow: 0.72rem;

  --leading-tight: 1.18;
  --leading-snug: 1.4;
  --leading-normal: 1.65;
  --leading-relaxed: 1.7;
  --tracking-eyebrow: 0.14em;
  --tracking-tight: -0.02em;

  --tex-ecg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='80' viewBox='0 0 240 80' fill='none'%3E%3Cpath d='M0 40h48l8-18 12 44 10-34 8 16h154' stroke='%230B2E78' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* --- RESET --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: var(--leading-normal);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-height);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--navy);
}
p { margin: 0; }

/* Shared type utilities */
.text-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  line-height: 1.4;
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}
.section {
  padding: 80px 0;
}
.section--light {
  background: var(--light-bg);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 8px;
}
.section-title .gold { color: var(--gold); }
.section-title .navy { color: var(--navy); }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 16px;
  border-radius: 2px;
}
.section-subtitle {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: var(--text-md);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: #b58319;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,32,.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; }
.icon-circle--gold {
  background: rgba(200,146,32,.1);
  color: var(--gold);
}
.icon-circle--navy {
  background: rgba(11,46,120,.08);
  color: var(--navy);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.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;
}

/* ========================================================
   1. HEADER â€” premium sticky navbar (shared content rail)
   ======================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding-top: env(safe-area-inset-top);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(1.25) blur(18px);
  -webkit-backdrop-filter: saturate(1.25) blur(18px);
  border-bottom: 1px solid rgba(11, 46, 120, .07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .85) inset,
    0 6px 24px rgba(11, 46, 120, .045);
  transition:
    background .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}
.header--scrolled {
  background: rgba(255, 255, 255, .97);
  border-bottom-color: rgba(11, 46, 120, .1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 12px 36px rgba(11, 46, 120, .1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
  padding: 0;
  transition: height .3s cubic-bezier(.4, 0, .2, 1);
}
.header--scrolled .header__inner {
  height: var(--header-height-scrolled);
}
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.header__logo img {
  height: 56px;
  width: auto;
  max-width: 190px;
  transition: height .3s cubic-bezier(.4, 0, .2, 1);
}
.header--scrolled .header__logo img {
  height: 44px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
}
.header__nav-link {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 10px;
  transition:
    color .25s ease,
    background .25s ease;
  position: relative;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: 1.2;
}
.header__nav-link:hover {
  color: var(--navy);
  background: rgba(11, 46, 120, .045);
}
.header__nav-link--active {
  color: var(--navy);
  font-weight: 700;
}
.header__nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 15px;
  right: 15px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), #E8C46A);
  border-radius: 2px;
}
.header--scrolled .header__nav-link {
  padding: 8px 13px;
  font-size: .9rem;
}
.header--scrolled .header__nav-link--active::after {
  bottom: 3px;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  margin-left: 8px;
}
.header__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  transition: opacity .25s ease;
}
.header__contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(11, 46, 120, .08), rgba(200, 146, 32, .08));
  border: 1px solid rgba(11, 46, 120, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: width .3s ease, height .3s ease;
}
.header--scrolled .header__contact-icon {
  width: 34px;
  height: 34px;
}
.header__contact-icon svg { width: 17px; height: 17px; }
.header--scrolled .header__contact-icon svg { width: 15px; height: 15px; }
.header__contact-text strong {
  display: block;
  font-family: var(--font-body);
  color: var(--navy);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: font-size .3s ease;
}
.header--scrolled .header__contact-text strong {
  font-size: var(--text-sm);
}
.header__contact-text span {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: var(--text-xs);
  transition: opacity .3s ease, font-size .3s ease;
}
.header--scrolled .header__contact-text span {
  font-size: var(--text-xs);
}
.header__cta {
  font-size: .84rem;
  padding: 11px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(200, 146, 32, .28);
  transition:
    padding .3s ease,
    box-shadow .3s ease,
    transform .25s ease,
    background .25s ease;
}
.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200, 146, 32, .35);
}
.header--scrolled .header__cta {
  padding: 8px 18px;
  font-size: .8rem;
  box-shadow: 0 4px 12px rgba(200, 146, 32, .22);
}
.header__cta svg { width: 16px; height: 16px; }
.header--scrolled .header__cta svg { width: 14px; height: 14px; }

/* Hamburger */
.header__hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition), width .3s ease, height .3s ease;
}
.header__hamburger:hover { background: rgba(11,46,120,.06); }
.header__hamburger svg { width: 24px; height: 24px; color: var(--navy); }
.header__hamburger:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.header--scrolled .header__hamburger {
  width: 38px;
  height: 38px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(8,36,95,.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  height: 100dvh;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
  padding: 24px 24px max(24px, env(safe-area-inset-bottom));
  padding-top: max(24px, env(safe-area-inset-top));
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: rgba(11,46,120,.06); }
.mobile-menu__close svg { width: 24px; height: 24px; color: var(--navy); }
.mobile-menu__close:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.mobile-menu__link {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all var(--transition);
}
.mobile-menu__link:hover,
.mobile-menu__link--active {
  background: rgba(11,46,120,.05);
  color: var(--navy);
  font-weight: 600;
}
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.mobile-menu__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}
.mobile-menu__cta {
  width: 100%;
  justify-content: center;
}

/* ========================================================
   2. HERO â€” full-width editorial split (curve = image mask)
   ======================================================== */
.hero {
  --hero-exit: 0;
  position: relative;
  z-index: 1;
  background: #ffffff;
  overflow: clip;
  padding: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  max-height: calc(100vh - var(--header-height));
  max-height: calc(100dvh - var(--header-height));
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* Soft blend into the page as the hero exits */
.hero__scroll-veil {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(56px, 10vh, 110px);
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(247, 250, 253, 0) 0%,
    rgba(247, 250, 253, 0.45) 48%,
    #F7FAFD 100%
  );
  opacity: calc(var(--hero-exit) * 0.95);
  transform: translateY(calc((1 - var(--hero-exit)) * 12px));
  transition: opacity .15s linear;
}

/* Content continues below with a calm premium handoff */
.content-stack {
  position: relative;
  z-index: 2;
  background: #F7FAFD;
  margin-top: -1px;
  isolation: isolate;
}

.hero__leaves {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .28;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero__leaves--left {
  left: -20px;
  top: 60px;
  width: 140px;
  height: 240px;
  background-image:
    radial-gradient(ellipse 40% 55% at 30% 40%, rgba(126, 176, 219, .45) 0%, transparent 70%),
    radial-gradient(ellipse 35% 50% at 55% 70%, rgba(168, 204, 232, .3) 0%, transparent 70%);
}
.hero__leaves--right { display: none; }

/* Full-bleed split â€” edge to edge, text aligned to navbar rail */
.hero__body {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 58%);
  grid-template-rows: 1fr;
  align-items: stretch;
  flex: 1;
  min-height: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  gap: 0;
}
.hero__content {
  grid-column: 1;
  grid-row: 1;
}
.hero__visual {
  grid-column: 2;
  grid-row: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.8vh, 28px);
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  /* Match navbar .container left edge across all viewport widths */
  padding:
    clamp(36px, 6vh, 64px)
    clamp(20px, 2.5vw, 40px)
    clamp(36px, 6vh, 64px)
    max(var(--page-gutter), calc((100vw - var(--max-width)) / 2 + var(--page-gutter)));
  position: relative;
  z-index: 3;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(11, 46, 120, .05) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(200, 146, 32, .04) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #F5F9FC 48%, #EEF4FA 100%);
}
.hero__content > * {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: #8A9BB5;
  margin: 0;
  line-height: 1.5;
  max-width: 650px;
  position: relative;
  padding-bottom: 12px;
  row-gap: 4px;
}
.hero__eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.hero__eyebrow > span { white-space: normal; }
.hero__eyebrow-sep {
  color: var(--gold);
  margin: 0 10px;
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin: 0;
  color: var(--navy);
  letter-spacing: var(--tracking-tight);
  max-width: 560px;
  width: 100%;
}
.hero__title-viewport {
  display: grid;
  width: 100%;
}
.hero__title-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0.55rem, 0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.65s;
  pointer-events: none;
}
.hero__title-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  z-index: 1;
}
.hero__title-slide.is-exit {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -0.4rem, 0);
}
.hero__title-line {
  display: block;
  white-space: normal;
}
.hero__title .gold,
.hero__title-line.gold {
  color: var(--gold);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-slide {
    transition: none;
    transform: none;
  }
  .hero__title-slide:not(.is-active) {
    display: none;
  }
}

.hero__desc {
  font-family: var(--font-body);
  color: #5A7194;
  font-size: var(--text-md);
  font-weight: 400;
  line-height: var(--leading-relaxed);
  max-width: 540px;
  width: 100%;
  margin: 0;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 4px 0 0;
}
.hero__ctas .btn {
  min-height: 52px;
  padding: 13px 22px;
  font-size: var(--text-sm);
  border-radius: 8px;
  flex-shrink: 0;
}
.hero__ctas .btn-secondary {
  background: var(--white);
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  max-width: 620px;
  margin-top: 4px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-right: none;
  flex-shrink: 1;
  min-width: 0;
}
.hero__trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__trust-icon svg { width: 18px; height: 18px; }
.hero__trust-icon--pink {
  background: rgba(232, 100, 130, .12);
  color: #D4567A;
}
.hero__trust-icon--blue {
  background: rgba(11, 46, 120, .1);
  color: var(--navy);
}
.hero__trust-icon--gold {
  background: rgba(200, 146, 32, .14);
  color: var(--gold);
}
.hero__trust-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
}
.hero__trust-text strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  white-space: normal;
  font-family: var(--font-body);
}
.hero__trust-text span {
  font-size: var(--text-xs);
  font-weight: 500;
  color: #7A8BA8;
  white-space: normal;
}

.hero__priority {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: #8A9BB5;
  line-height: 1;
}
.hero__priority::before {
  content: '';
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Right visual â€” full-bleed to viewport edge */
.hero__visual {
  position: relative;
  min-height: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(160deg, #eaf4fb 0%, #c5dff0 35%, #8eb8dc 70%, #6fa8d4 100%);
  border-radius: 0;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.hero__media-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 72% center;
  display: block;
  transform: none;
}

/*
  Layered divider curve (left â†’ right):
  1) white content blend
  2) frosted soft band
  3) thick vibrant blue crescent
  4) thin white rim against the photo
*/
.hero__curve {
  position: absolute;
  left: -16%;
  top: -1%;
  width: 54%;
  height: 102%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.hero__curve-fill {
  fill: url(#hero-curve-wash);
}
.hero__curve-mist {
  fill: rgba(232, 244, 252, .78);
}
.hero__curve-blue {
  fill: #3B82C9;
}
.hero__curve-rim {
  fill: #ffffff;
}

.hero__script {
  position: absolute;
  top: 28px;
  right: max(20px, var(--page-gutter));
  margin: 0;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.15;
  color: var(--navy);
  text-align: right;
  z-index: 4;
  letter-spacing: var(--tracking-tight);
  text-shadow:
    0 0 16px rgba(255, 255, 255, .95),
    0 1px 2px rgba(255, 255, 255, .9);
  pointer-events: none;
}
.hero__script::after {
  content: '';
  display: block;
  width: 78px;
  height: 3px;
  background: var(--gold);
  margin: 8px 4px 0 auto;
  border-radius: 2px;
  transform: rotate(-8deg);
  transform-origin: right center;
}

.hero__card {
  grid-column: 2;
  grid-row: 1;
  position: absolute;
  right: max(16px, var(--page-gutter));
  bottom: 22px;
  left: auto;
  width: min(300px, calc(100% - 32px));
  background: #ffffff;
  border-radius: 20px;
  border: none;
  box-shadow: 0 16px 44px rgba(11, 46, 120, .2);
  overflow: hidden;
  z-index: 5;
}
.hero__card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  transition: background var(--transition);
}
.hero__card-item + .hero__card-item {
  border-top: 1px solid #EEF2F7;
}
.hero__card-item:hover { background: rgba(11, 46, 120, .03); }
.hero__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__card-icon svg { width: 17px; height: 17px; }
.hero__card-icon--navy {
  background: var(--navy);
  color: #ffffff;
}
.hero__card-icon--whatsapp {
  background: #25D366;
  color: #ffffff;
}
.hero__card-text {
  flex: 1;
  min-width: 0;
}
.hero__card-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.hero__card-text span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #7A8BA8;
  line-height: 1.3;
}
.hero__card-chevron {
  color: #94A3B8;
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.hero__card-chevron svg { width: 16px; height: 16px; }
.hero__card-item:hover .hero__card-chevron {
  transform: translateX(2px);
  color: var(--navy);
}

/* ========================================================
   3. OPD MARQUEE — hero bottom specialty ticker (RTL)
   ======================================================== */
.opd-marquee {
  --opd-h: 58px;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: var(--opd-h);
  background:
    linear-gradient(180deg, #F8FBFE 0%, #EEF4FA 100%);
  border-top: 1px solid rgba(11, 46, 120, .08);
  overflow: hidden;
}
.opd-marquee__label {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 clamp(18px, 2.4vw, 28px);
  background:
    linear-gradient(135deg, #0A275F 0%, #0B2E78 42%, #1346A0 100%);
  color: #ffffff;
  box-shadow:
    10px 0 28px rgba(11, 46, 120, .28),
    inset 0 0 0 1px rgba(232, 196, 106, .35);
}
.opd-marquee__label::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--light-gold), var(--gold));
}
.opd-marquee__label::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 0;
  bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, rgba(11, 46, 120, .22), transparent);
  pointer-events: none;
}
.opd-marquee__label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gold);
  box-shadow:
    0 0 0 4px rgba(232, 196, 106, .28),
    0 0 12px rgba(232, 196, 106, .55);
  flex-shrink: 0;
}
.opd-marquee__label-text {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .2);
}
.opd-marquee__viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.opd-marquee__track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  height: 100%;
  padding: 8px 16px;
  animation: opdMarqueeRtl 32s linear infinite;
  will-change: transform;
}
.opd-marquee:hover .opd-marquee__track {
  animation-play-state: paused;
}
.opd-marquee__card {
  --opd-accent: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  height: 42px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 46, 120, .08);
  box-shadow: 0 4px 14px rgba(11, 46, 120, .06);
  color: var(--navy);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.opd-marquee__card:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 46, 120, .16);
  box-shadow: 0 8px 18px rgba(11, 46, 120, .1);
}
.opd-marquee__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--opd-accent);
  color: #fff;
  flex-shrink: 0;
}
.opd-marquee__icon svg {
  width: 14px;
  height: 14px;
}
.opd-marquee__name {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--navy);
}
.opd-marquee__card--neuro { --opd-accent: #7B5CE0; }
.opd-marquee__card--nephro { --opd-accent: #2F7BFF; }
.opd-marquee__card--cardio { --opd-accent: #E84B6A; }
.opd-marquee__card--respiration { --opd-accent: #2EB5E8; }
.opd-marquee__card--endocrine { --opd-accent: #F39C12; }
.opd-marquee__card--gastro { --opd-accent: #E67E22; }
.opd-marquee__card--skin { --opd-accent: #A078E0; }

@keyframes opdMarqueeRtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .opd-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  .opd-marquee__card[aria-hidden="true"] { display: none; }
}

@media (max-width: 767px) {
  .opd-marquee {
    --opd-h: auto;
    flex-direction: column;
  }
  .opd-marquee__label {
    justify-content: center;
    padding: 10px 16px;
    box-shadow: none;
  }
  .opd-marquee__label-text { font-size: .82rem; letter-spacing: .07em; }
  .opd-marquee__track {
    gap: 10px;
    padding: 8px 12px 10px;
    animation-duration: 26s;
  }
  .opd-marquee__card {
    height: 38px;
    padding: 0 12px 0 6px;
    gap: 8px;
  }
  .opd-marquee__icon {
    width: 26px;
    height: 26px;
  }
  .opd-marquee__icon svg {
    width: 13px;
    height: 13px;
  }
  .opd-marquee__name { font-size: .76rem; }
}

/* ========================================================
   3b. SERVICE STRIP — premium trust bar
   ======================================================== */
.service-strip {
  position: relative;
  z-index: 6;
  background:
    linear-gradient(180deg, #0B2E78 0%, #08245F 100%);
  border-top: 1px solid rgba(232, 196, 106, .28);
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  width: 100%;
  box-shadow:
    0 -12px 40px rgba(11, 46, 120, .12),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.service-strip::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--light-gold) 50%, var(--gold) 80%, transparent);
  pointer-events: none;
}
.service-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
  z-index: 1;
}
.service-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 18px;
  min-width: 0;
}
.service-strip__item + .service-strip__item {
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.service-strip__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(200, 146, 32, .16);
  border: 1px solid rgba(232, 196, 106, .28);
  color: var(--light-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-strip__icon svg {
  width: 20px;
  height: 20px;
}
.service-strip__text h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px;
  line-height: var(--leading-snug);
  letter-spacing: 0.01em;
}
.service-strip__text p {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .68);
  margin: 0;
  line-height: 1.4;
}

/* ========================================================
   4. SPECIALITIES — premium clinic grid
   ======================================================== */
.specialities {
  --sp-section-pad-y: clamp(48px, 6vh, 88px);
  --sp-header-gap: clamp(28px, 3.5vh, 44px);
  --sp-grid-gap: clamp(16px, 1.6vw, 24px);
  --sp-card-w: 270px;
  --sp-media-h: 178px;
  --sp-body-pad-x: 20px;
  --sp-body-pad-b: 22px;
  --sp-body-pull: -28px;
  --sp-icon: 52px;
  --sp-icon-ring: 6px;
  --sp-name: 1.15rem;
  --sp-desc: 0.875rem;
  --sp-link: 0.9rem;
  --sp-arrow: 28px;
  --sp-radius: 26px;
  --sp-wave-glass: 92px;
  --sp-wave-mid: 74px;
  --sp-wave-solid: 56px;

  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #F7FAFD 0%, #F3F7FC 45%, #F8FBFE 100%);
  box-sizing: border-box;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  padding: var(--sp-section-pad-y) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.specialities__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.specialities__bg::after {
  content: '';
  position: absolute;
  right: -2%;
  bottom: 12%;
  width: min(420px, 55vw);
  height: 90px;
  opacity: .08;
  background: var(--tex-ecg) center / contain no-repeat;
}
.specialities__curve {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(155, 190, 230, .16) 0%, rgba(155, 190, 230, 0) 70%);
}
.specialities__curve--1 {
  width: 70vw;
  height: 70vw;
  max-width: 820px;
  max-height: 820px;
  top: -28%;
  left: -18%;
  background:
    radial-gradient(ellipse 55% 45% at 40% 40%, rgba(176, 206, 236, .22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 60%, rgba(200, 146, 32, .04) 0%, transparent 70%);
}
.specialities__curve--2 {
  width: 55vw;
  height: 55vw;
  max-width: 640px;
  max-height: 640px;
  bottom: -22%;
  right: -12%;
  background:
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(160, 198, 232, .2) 0%, transparent 72%);
}
.specialities__curve--3 {
  width: 40vw;
  height: 28vw;
  max-width: 480px;
  max-height: 320px;
  top: 38%;
  left: 28%;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(210, 228, 245, .35) 0%, transparent 75%);
  opacity: .7;
}
.specialities > .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.specialities__header {
  text-align: center;
  margin-bottom: var(--sp-header-gap);
  flex-shrink: 0;
}
.specialities__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.specialities__eyebrow::before,
.specialities__eyebrow::after {
  content: '';
  width: 42px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.specialities__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin: 0 0 12px;
  letter-spacing: var(--tracking-tight);
}
.specialities__title .navy { color: var(--navy); }
.specialities__title .gold { color: var(--gold); }
.specialities__subtitle {
  margin: 0 auto;
  max-width: 620px;
  font-family: var(--font-body);
  color: #6B7F9C;
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.specialities__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-grid-gap);
  width: 100%;
}
.specialities__grid > .speciality-card {
  flex: 0 1 var(--sp-card-w);
  width: 100%;
  max-width: var(--sp-card-w);
}

.speciality-card {
  --sp-accent: #2F7BFF;
  --sp-soft: rgba(47, 123, 255, .16);
  --sp-glass: rgba(186, 220, 255, .58);
  --sp-mid: rgba(255, 255, 255, .78);
  --sp-wash: rgba(47, 123, 255, .06);
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: none;
  border-radius: var(--sp-radius);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 12px 32px rgba(11, 46, 120, .09),
    0 2px 10px rgba(11, 46, 120, .04);
  transition:
    transform .5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.speciality-card--nephro {
  --sp-accent: #2F7BFF;
  --sp-soft: rgba(47, 123, 255, .18);
  --sp-glass: rgba(186, 220, 255, .58);
  --sp-wash: rgba(47, 123, 255, .07);
}
.speciality-card--gastro {
  --sp-accent: #E67E22;
  --sp-soft: rgba(230, 126, 34, .18);
  --sp-glass: rgba(255, 220, 186, .58);
  --sp-wash: rgba(230, 126, 34, .07);
}
.speciality-card--neuro {
  --sp-accent: #7B5CE0;
  --sp-soft: rgba(123, 92, 224, .18);
  --sp-glass: rgba(224, 212, 255, .58);
  --sp-wash: rgba(123, 92, 224, .07);
}
.speciality-card--cardio {
  --sp-accent: #E84B6A;
  --sp-soft: rgba(232, 75, 106, .18);
  --sp-glass: rgba(255, 198, 210, .58);
  --sp-wash: rgba(232, 75, 106, .07);
}
.speciality-card--respiration {
  --sp-accent: #2EB5E8;
  --sp-soft: rgba(46, 181, 232, .18);
  --sp-glass: rgba(186, 232, 255, .58);
  --sp-wash: rgba(46, 181, 232, .07);
}
.speciality-card--endocrine {
  --sp-accent: #F39C12;
  --sp-soft: rgba(243, 156, 18, .18);
  --sp-glass: rgba(255, 228, 176, .58);
  --sp-wash: rgba(243, 156, 18, .07);
}
.speciality-card--skin {
  --sp-accent: #A078E0;
  --sp-soft: rgba(160, 120, 224, .18);
  --sp-glass: rgba(228, 210, 255, .58);
  --sp-wash: rgba(160, 120, 224, .07);
}
.speciality-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 44px rgba(11, 46, 120, .13),
    0 8px 18px rgba(11, 46, 120, .06);
}
.speciality-card:focus-within {
  outline: none;
  box-shadow:
    0 0 0 3px var(--sp-soft),
    0 20px 44px rgba(11, 46, 120, .13);
}

.speciality-card__media {
  position: relative;
  height: var(--sp-media-h);
  flex: 0 0 var(--sp-media-h);
  overflow: hidden;
  background: #E8F1FA;
}
.speciality-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transform: scale(1.03);
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
.speciality-card:hover .speciality-card__bg { transform: scale(1.09); }

.speciality-card__plus {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 1px 6px rgba(11, 46, 120, .25);
  pointer-events: none;
  user-select: none;
}
.speciality-card__plus--sm {
  top: 32px;
  left: 32px;
  font-size: 11px;
  opacity: .72;
}

.speciality-card__orbs {
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 2;
  width: 24px;
  height: 80px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, .42) 0 3.5px, transparent 4.5px),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .28) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 64%, rgba(255, 255, 255, .34) 0 3.5px, transparent 4.5px),
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, .22) 0 2.5px, transparent 3.5px);
  opacity: .85;
}

.speciality-card__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  display: block;
  pointer-events: none;
}
.speciality-card__wave--glass {
  z-index: 1;
  color: var(--sp-glass);
  height: var(--sp-wave-glass);
  filter: drop-shadow(0 -2px 10px rgba(255, 255, 255, .18));
}
.speciality-card__wave--mid {
  z-index: 2;
  color: var(--sp-mid);
  height: var(--sp-wave-mid);
}
.speciality-card__wave--solid {
  z-index: 3;
  color: #ffffff;
  height: var(--sp-wave-solid);
}

.speciality-card__body {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: flex-start;
  text-align: left;
  padding: 0 var(--sp-body-pad-x) var(--sp-body-pad-b);
  margin-top: var(--sp-body-pull);
  background:
    linear-gradient(180deg, var(--sp-wash) 0%, rgba(255, 255, 255, 0) 42%),
    #ffffff;
}
.speciality-card__icon {
  width: var(--sp-icon);
  height: var(--sp-icon);
  margin: 0 0 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sp-accent);
  color: #fff;
  box-shadow:
    0 0 0 var(--sp-icon-ring) #ffffff,
    0 10px 20px rgba(11, 46, 120, .15);
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.speciality-card:hover .speciality-card__icon {
  transform: translateY(-3px) scale(1.04);
}
.speciality-card__icon svg {
  width: 22px;
  height: 22px;
}

.speciality-card__name {
  font-family: var(--font-heading);
  font-size: var(--sp-name);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
}
.speciality-card__desc {
  font-family: var(--font-body);
  font-size: var(--sp-desc);
  color: #7A8BA8;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: none;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.speciality-card__link {
  font-family: var(--font-body);
  font-size: var(--sp-link);
  font-weight: 700;
  color: var(--sp-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  transition: gap .35s ease, transform .35s ease, color .25s ease;
}
.speciality-card:hover .speciality-card__link {
  gap: 12px;
  transform: translateX(2px);
}
.speciality-card__arrow {
  width: var(--sp-arrow);
  height: var(--sp-arrow);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--sp-accent);
  color: #fff;
  box-shadow: 0 8px 16px var(--sp-soft);
  transition: transform .35s ease;
  flex-shrink: 0;
}
.speciality-card__arrow svg {
  width: 13px;
  height: 13px;
}
.speciality-card:hover .speciality-card__arrow { transform: translateX(2px); }

.speciality-card__watermark { display: none; }

@keyframes specialtyReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.speciality-card.fade-up { opacity: 0; }
.speciality-card.fade-up.is-visible {
  opacity: 1;
  animation: specialtyReveal .75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.specialities__grid .speciality-card.fade-up.is-visible:nth-child(1) { animation-delay: .04s; }
.specialities__grid .speciality-card.fade-up.is-visible:nth-child(2) { animation-delay: .08s; }
.specialities__grid .speciality-card.fade-up.is-visible:nth-child(3) { animation-delay: .12s; }
.specialities__grid .speciality-card.fade-up.is-visible:nth-child(4) { animation-delay: .16s; }
.specialities__grid .speciality-card.fade-up.is-visible:nth-child(5) { animation-delay: .20s; }
.specialities__grid .speciality-card.fade-up.is-visible:nth-child(6) { animation-delay: .24s; }
.specialities__grid .speciality-card.fade-up.is-visible:nth-child(7) { animation-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  .speciality-card,
  .speciality-card__bg,
  .speciality-card__icon,
  .speciality-card__link,
  .speciality-card__arrow,
  .speciality-card.fade-up {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
  .speciality-card.fade-up { opacity: 1 !important; }
}

/* ========================================================
   5. DOCTORS — light premium expert gallery
   ======================================================== */
.doctors {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(200, 146, 32, .08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(47, 123, 255, .08) 0%, transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F8FC 48%, #EEF4FA 100%);
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid rgba(11, 46, 120, .05);
}
@media (min-width: 992px) {
  .doctors {
    min-height: 0;
    display: block;
    padding: clamp(64px, 7vw, 100px) 0;
  }
  .doctors > .container {
    display: block;
    gap: 0;
  }
  .doctors__grid {
    flex: none;
    align-content: start;
  }
}
.doctors__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.doctors__bg::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 16%;
  width: min(360px, 42vw);
  height: 76px;
  opacity: .07;
  background: var(--tex-ecg) center / contain no-repeat;
}
.doctors__curve {
  position: absolute;
  border-radius: 50%;
}
.doctors__curve--1 {
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  top: -32%;
  left: -18%;
  background: radial-gradient(ellipse 55% 45% at 40% 40%, rgba(176, 206, 236, .35) 0%, transparent 70%);
}
.doctors__curve--2 {
  width: min(55vw, 560px);
  height: min(55vw, 560px);
  bottom: -26%;
  right: -14%;
  background: radial-gradient(ellipse 50% 45% at 50% 50%, rgba(200, 146, 32, .12) 0%, transparent 72%);
}
.doctors > .container { position: relative; z-index: 1; }

.doctors__header {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-shrink: 0;
}
.doctors__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.doctors__eyebrow::before,
.doctors__eyebrow::after {
  content: '';
  width: 42px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.doctors__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin: 0 0 12px;
  letter-spacing: var(--tracking-tight);
}
.doctors__title .navy { color: var(--navy); }
.doctors__title .gold { color: var(--gold); }
.doctors__subtitle {
  margin: 0 auto;
  max-width: 620px;
  font-family: var(--font-body);
  color: #6B7F9C;
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.doctors__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.doctor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(11, 46, 120, .08);
  border-radius: 22px;
  padding: 24px 22px 20px;
  min-height: 0;
  height: auto;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 10px 28px rgba(11, 46, 120, .06),
    0 2px 8px rgba(11, 46, 120, .03);
  transition:
    transform .5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .4s ease;
}
.doctor-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gold), rgba(200, 146, 32, .25));
  opacity: .95;
  z-index: 2;
  pointer-events: none;
}
.doctor-card--nephro::before {
  background: linear-gradient(180deg, #2F7BFF, rgba(47, 123, 255, .25));
}
.doctor-card--gastro::before {
  background: linear-gradient(180deg, #E67E22, rgba(230, 126, 34, .25));
}
.doctor-card--neuro::before {
  background: linear-gradient(180deg, #7B5CE0, rgba(123, 92, 224, .25));
}
.doctor-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 46, 120, .12);
  box-shadow:
    0 20px 44px rgba(11, 46, 120, .12),
    0 8px 18px rgba(11, 46, 120, .06);
}

.doctor-card__wash {
  position: absolute;
  right: -18%;
  bottom: -22%;
  width: 78%;
  height: 58%;
  border-radius: 50% 40% 0 60%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.doctor-card--nephro .doctor-card__wash {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(47, 123, 255, .12) 0%, rgba(47, 123, 255, .04) 55%, transparent 75%);
}
.doctor-card--gastro .doctor-card__wash {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(230, 126, 34, .12) 0%, rgba(230, 126, 34, .04) 55%, transparent 75%);
}
.doctor-card--neuro .doctor-card__wash {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(123, 92, 224, .12) 0%, rgba(123, 92, 224, .04) 55%, transparent 75%);
}

.doctor-card__art {
  position: absolute;
  right: -6px;
  bottom: 4px;
  width: 96px;
  height: 96px;
  opacity: .1;
  pointer-events: none;
  z-index: 0;
  transition: opacity .45s ease, transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.doctor-card:hover .doctor-card__art {
  opacity: .18;
  transform: translate(-4px, -6px) scale(1.04);
}
.doctor-card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  filter: none;
  opacity: .55;
}

.doctor-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.doctor-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47, 123, 255, .1);
  border: 1px solid rgba(47, 123, 255, .14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.doctor-card--gastro .doctor-card__icon {
  background: rgba(230, 126, 34, .1);
  border-color: rgba(230, 126, 34, .16);
}
.doctor-card--neuro .doctor-card__icon {
  background: rgba(123, 92, 224, .1);
  border-color: rgba(123, 92, 224, .16);
}
.doctor-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  opacity: .95;
  filter: none;
}
.doctor-card--gastro .doctor-card__icon img {
  filter: none;
}
.doctor-card__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.doctor-card--nephro .doctor-card__pill {
  background: rgba(47, 123, 255, .1);
  color: #1A5AD9;
  border: 1px solid rgba(47, 123, 255, .18);
}
.doctor-card--gastro .doctor-card__pill {
  background: rgba(230, 126, 34, .12);
  color: #C96A12;
  border: 1px solid rgba(230, 126, 34, .2);
}
.doctor-card--neuro .doctor-card__pill {
  background: rgba(123, 92, 224, .1);
  color: #5B3FC4;
  border: 1px solid rgba(123, 92, 224, .18);
}

.doctor-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5px;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  position: relative;
  z-index: 1;
}
.doctor-card__qual {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.doctor-card__divider {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 146, 32, .15));
  border-radius: 2px;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.doctor-card__desig {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 600;
  margin: 0 0 3px;
  position: relative;
  z-index: 1;
}
.doctor-card__inst {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #7A8BA8;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.doctor-card__services {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.doctor-card__services li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #445A7A;
  line-height: 1.3;
}
.doctor-card__service-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(47, 123, 255, .1);
  border: 1px solid rgba(47, 123, 255, .12);
  color: #2F7BFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doctor-card--gastro .doctor-card__service-icon {
  background: rgba(230, 126, 34, .1);
  border-color: rgba(230, 126, 34, .14);
  color: #E67E22;
}
.doctor-card--neuro .doctor-card__service-icon {
  background: rgba(123, 92, 224, .1);
  border-color: rgba(123, 92, 224, .14);
  color: #7B5CE0;
}
.doctor-card__service-icon svg {
  width: 14px;
  height: 14px;
}

.doctor-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 46, 120, .08);
  position: relative;
  z-index: 1;
  gap: 12px;
}
.doctor-card__details {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  transition: color .3s ease, letter-spacing .3s ease;
}
.doctor-card__details:hover {
  color: var(--gold);
}
.doctor-card__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s ease, background .3s ease;
}
.doctor-card--nephro .doctor-card__arrow {
  background: linear-gradient(145deg, #3B8BFF, #1A5AD9);
  box-shadow: 0 8px 18px rgba(47, 123, 255, .28);
  border: none;
}
.doctor-card--gastro .doctor-card__arrow {
  background: linear-gradient(145deg, #F09A45, #E67E22);
  box-shadow: 0 8px 18px rgba(230, 126, 34, .28);
  border: none;
}
.doctor-card--neuro .doctor-card__arrow {
  background: linear-gradient(145deg, #9174E8, #7B5CE0);
  box-shadow: 0 8px 18px rgba(123, 92, 224, .28);
  border: none;
}
.doctor-card__arrow:hover {
  transform: translateX(3px) scale(1.05);
}
.doctor-card__arrow svg {
  width: 17px;
  height: 17px;
}

.doctor-card.fade-up { opacity: 0; }
.doctor-card.fade-up.is-visible {
  opacity: 1;
  animation: specialtyReveal .85s cubic-bezier(0.22, 1, 0.36, 1);
}
.doctors__grid .doctor-card.fade-up.is-visible:nth-child(1) { animation-delay: .05s; }
.doctors__grid .doctor-card.fade-up.is-visible:nth-child(2) { animation-delay: .14s; }
.doctors__grid .doctor-card.fade-up.is-visible:nth-child(3) { animation-delay: .23s; }

@media (prefers-reduced-motion: reduce) {
  .doctor-card,
  .doctor-card__art,
  .doctor-card__arrow,
  .doctor-card.fade-up {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
  .doctor-card.fade-up { opacity: 1 !important; }
}

/* Light tighten only on short laptop screens */
@media (min-width: 992px) and (max-height: 760px) {
  .doctors { padding: 36px 0; }
  .doctors__header { margin-bottom: 22px; }
  .doctors__title { font-size: clamp(1.65rem, 2.6vw, 2.15rem); }
  .doctor-card { padding: 14px 14px 12px; border-radius: 16px; }
  .doctor-card__top { margin-bottom: 10px; }
  .doctor-card__inst { margin-bottom: 10px; }
  .doctor-card__services { margin-bottom: 10px; gap: 6px; }
  .doctor-card__art { width: 84px; height: 84px; }
}

/* ========================================================
   6. DX SPOTLIGHT — quick colorful diagnostic marquee
   ======================================================== */
.dx-spotlight {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(ellipse 50% 40% at 8% 20%, rgba(46, 181, 232, .16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 92% 18%, rgba(232, 75, 106, .12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 45% at 70% 90%, rgba(123, 92, 224, .12) 0%, transparent 55%),
    linear-gradient(165deg, #071B4A 0%, #0B2E78 48%, #0A2466 100%);
  color: #fff;
}
.dx-spotlight__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.dx-spotlight__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.dx-spotlight__orb--1 {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(46, 181, 232, .28) 0%, transparent 70%);
}
.dx-spotlight__orb--2 {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  top: 10%;
  right: -6%;
  background: radial-gradient(circle, rgba(243, 156, 18, .22) 0%, transparent 70%);
}
.dx-spotlight__orb--3 {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  bottom: -20%;
  left: 35%;
  background: radial-gradient(circle, rgba(160, 120, 224, .2) 0%, transparent 70%);
}
.dx-spotlight__grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.dx-spotlight > .container,
.dx-spotlight__marquee {
  position: relative;
  z-index: 1;
}

.dx-spotlight__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 40px;
  margin-bottom: clamp(28px, 4vw, 40px);
  flex-wrap: wrap;
}
.dx-spotlight__intro {
  max-width: 640px;
}
.dx-spotlight__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--light-gold);
}
.dx-spotlight__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
}
.dx-spotlight__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin: 0 0 12px;
  letter-spacing: var(--tracking-tight);
  color: #fff;
}
.dx-spotlight__title .navy { color: #ffffff; }
.dx-spotlight__title .gold { color: var(--light-gold); }
.dx-spotlight__subtitle {
  margin: 0;
  max-width: 540px;
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
}
.dx-spotlight__cta {
  flex-shrink: 0;
  box-shadow:
    0 12px 28px rgba(200, 146, 32, .28),
    0 4px 12px rgba(0, 0, 0, .18);
}
.dx-spotlight__cta svg {
  width: 18px;
  height: 18px;
}

.dx-spotlight__marquee {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.dx-spotlight__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.dx-spotlight__track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  will-change: transform;
}
.dx-spotlight__track--left {
  animation: dxSpotlightLeft 38s linear infinite;
}
.dx-spotlight__track--right {
  animation: dxSpotlightRight 42s linear infinite;
}
.dx-spotlight:hover .dx-spotlight__track {
  animation-play-state: paused;
}

.dx-chip {
  --dx-accent: #2EB5E8;
  --dx-soft: rgba(46, 181, 232, .18);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 168px;
  padding: 14px 18px 14px 14px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .07) 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .16),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.dx-chip:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, .34);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, .2),
    0 0 0 1px var(--dx-soft),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}
.dx-chip__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--dx-accent);
  color: #fff;
  box-shadow: 0 8px 18px var(--dx-soft);
}
.dx-chip__icon svg {
  width: 20px;
  height: 20px;
}
.dx-chip__name {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
  white-space: nowrap;
  line-height: 1.25;
}

.dx-chip--xray { --dx-accent: #2EB5E8; --dx-soft: rgba(46, 181, 232, .28); }
.dx-chip--pathology { --dx-accent: #A078E0; --dx-soft: rgba(160, 120, 224, .28); }
.dx-chip--endoscopy { --dx-accent: #E67E22; --dx-soft: rgba(230, 126, 34, .28); }
.dx-chip--ecg { --dx-accent: #E84B6A; --dx-soft: rgba(232, 75, 106, .28); }
.dx-chip--ncs { --dx-accent: #2F7BFF; --dx-soft: rgba(47, 123, 255, .28); }
.dx-chip--eeg { --dx-accent: #7B5CE0; --dx-soft: rgba(123, 92, 224, .28); }
.dx-chip--pft { --dx-accent: #1AA88A; --dx-soft: rgba(26, 168, 138, .28); }
.dx-chip--vep { --dx-accent: #3DDC97; --dx-soft: rgba(61, 220, 151, .28); }
.dx-chip--bera { --dx-accent: #F39C12; --dx-soft: rgba(243, 156, 18, .28); }
.dx-chip--emg { --dx-accent: #E056A0; --dx-soft: rgba(224, 86, 160, .28); }
.dx-chip--rnst { --dx-accent: #4C6FFF; --dx-soft: rgba(76, 111, 255, .28); }

.dx-spotlight__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.dx-spotlight__note {
  margin: 0;
  font-family: var(--font-body);
  font-size: .95rem;
  color: rgba(255, 255, 255, .72);
}
.dx-spotlight__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 700;
  color: var(--light-gold);
  letter-spacing: .02em;
  transition: gap .3s ease, color .25s ease;
}
.dx-spotlight__link:hover {
  gap: 12px;
  color: #fff;
}

@keyframes dxSpotlightLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes dxSpotlightRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .dx-spotlight__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
  }
  .dx-chip[aria-hidden="true"] { display: none; }
}

@media (max-width: 991px) {
  .dx-spotlight__head {
    align-items: flex-start;
  }
  .dx-spotlight__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .dx-spotlight {
    padding: 48px 0 40px;
  }
  .dx-spotlight__marquee { gap: 12px; }
  .dx-chip {
    min-width: 150px;
    padding: 12px 14px 12px 12px;
    gap: 10px;
    border-radius: 16px;
  }
  .dx-chip__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .dx-chip__icon svg {
    width: 18px;
    height: 18px;
  }
  .dx-chip__name { font-size: .88rem; }
  .dx-spotlight__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================================
   6. DIAGNOSTICS â€” premium diagnostic centre
   ======================================================== */
.diagnostics {
  --diag-navy: #123B82;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(72px, 8vw, 100px) 0;
}
.diagnostics__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.diagnostics__bg::after {
  content: '';
  position: absolute;
  left: max(24px, 4vw);
  top: 18%;
  width: min(380px, 48vw);
  height: 80px;
  opacity: .09;
  background: var(--tex-ecg) center / contain no-repeat;
}
.diagnostics__deco {
  position: absolute;
  pointer-events: none;
}
.diagnostics__deco--microscope {
  top: 32px;
  left: max(12px, 2vw);
  width: min(180px, 18vw);
  height: min(180px, 18vw);
  opacity: .07;
  background:
    radial-gradient(circle at 45% 40%, rgba(18, 59, 130, .5) 0 8%, transparent 9%),
    radial-gradient(circle at 45% 62%, rgba(18, 59, 130, .35) 0 18%, transparent 19%),
    linear-gradient(180deg, transparent 20%, rgba(18, 59, 130, .2) 20% 55%, transparent 55%);
  border-radius: 50%;
}
.diagnostics__deco--glow {
  top: 8%;
  right: -4%;
  width: min(420px, 42vw);
  height: min(280px, 30vw);
  background: radial-gradient(ellipse at center, rgba(170, 200, 235, .16) 0%, transparent 70%);
}
.diagnostics > .container { position: relative; z-index: 1; }

.diagnostics__header {
  text-align: center;
  margin-bottom: 32px;
}
.diagnostics__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--diag-navy);
  line-height: 1;
}
.diagnostics__eyebrow::before,
.diagnostics__eyebrow::after {
  content: '';
  width: 42px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.diagnostics__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin: 0 0 14px;
  letter-spacing: var(--tracking-tight);
}
.diagnostics__title .navy { color: var(--diag-navy); }
.diagnostics__title .gold { color: var(--gold); }
.diagnostics__subtitle {
  margin: 0 auto;
  max-width: 620px;
  font-family: var(--font-body);
  color: #6B7F9C;
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.diagnostics__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 880px;
  margin: 0 auto 44px;
  padding: 4px 0;
}
.diagnostics__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
}
.diagnostics__trust-item + .diagnostics__trust-item {
  border-left: 1px solid #D9E2EF;
}
.diagnostics__trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 146, 32, .12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diagnostics__trust-icon svg { width: 17px; height: 17px; }
.diagnostics__trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}
.diagnostics__trust-text strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--diag-navy);
  font-family: var(--font-body);
}
.diagnostics__trust-text span {
  font-size: var(--text-xs);
  color: #7A8BA8;
  font-weight: 500;
  font-family: var(--font-body);
}

.diagnostics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.diagnostic-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid rgba(18, 59, 130, .08);
  border-left-width: 4px;
  border-radius: 14px;
  box-shadow:
    0 2px 4px rgba(18, 59, 130, .02),
    0 12px 28px rgba(18, 59, 130, .06);
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.diagnostic-card--navy { border-left-color: var(--diag-navy); }
.diagnostic-card--gold { border-left-color: var(--gold); }
.diagnostic-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 6px 12px rgba(18, 59, 130, .04),
    0 18px 36px rgba(18, 59, 130, .1);
}

.diagnostic-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diagnostic-card--navy .diagnostic-card__icon {
  background: rgba(18, 59, 130, .08);
  color: var(--diag-navy);
}
.diagnostic-card--gold .diagnostic-card__icon {
  background: rgba(200, 146, 32, .12);
  color: var(--gold);
}
.diagnostic-card__icon svg { width: 23px; height: 23px; }

.diagnostic-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.diagnostic-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--diag-navy);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}
.diagnostic-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #7A8BA8;
  line-height: 1.45;
}

.diagnostic-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 59, 130, .06);
  color: var(--diag-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s ease, transform .25s ease;
}
.diagnostic-card:hover .diagnostic-card__arrow {
  background: rgba(18, 59, 130, .12);
  transform: translateX(2px);
}
.diagnostic-card__arrow svg { width: 15px; height: 15px; }

.diagnostic-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0E3270 0%, #123B82 45%, #0B2E78 100%);
  border-radius: 22px;
  padding: clamp(32px, 4vw, 44px) clamp(28px, 3.5vw, 44px);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(11, 46, 120, .22);
}
.diagnostic-panel__glow {
  position: absolute;
  right: -6%;
  bottom: -30%;
  width: min(360px, 50%);
  height: 140%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, .07) 0%, transparent 65%);
  pointer-events: none;
}
.diagnostic-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.diagnostic-panel__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}
.diagnostic-panel__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}
.diagnostic-panel__subtitle {
  margin: 0 0 14px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
}
.diagnostic-panel__rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.diagnostic-panel__highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  padding-top: 6px;
}
.diagnostic-panel__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
}
.diagnostic-panel__highlights svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.diagnostic-panel__tests {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.diagnostic-panel__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #ffffff;
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.diagnostic-panel__pill:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(232, 196, 106, .35);
  transform: translateY(-1px);
}
.diagnostic-panel__pill svg {
  width: 16px;
  height: 16px;
  color: var(--light-gold);
  flex-shrink: 0;
}

/* ========================================================
   7. ABOUT
   ======================================================== */
.about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #F8FBFE 0%, #FFFFFF 48%, #F5F9FD 100%);
  padding: clamp(72px, 8vw, 110px) 0;
}
.about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 208, 234, .22), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(200, 146, 32, .08), transparent 26%);
}
.about__bg::after {
  content: '';
  position: absolute;
  left: 6%;
  bottom: 18%;
  width: min(340px, 42vw);
  height: 72px;
  opacity: .07;
  background: var(--tex-ecg) left center / contain no-repeat;
}
.about .container { position: relative; z-index: 1; }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.about__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.about__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}
.about__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: #6B7F9C;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: var(--leading-snug);
}
.about__text {
  font-family: var(--font-body);
  color: #6B7F9C;
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  max-width: 540px;
  margin-bottom: 28px;
}
.about__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 12px;
  margin-bottom: 32px;
  max-width: 560px;
}
.about__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.about__feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #EEF3F9;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(11, 46, 120, .04);
}
.about__feature-icon svg {
  width: 24px;
  height: 24px;
}
.about__feature-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.35;
  color: #4A5F7A;
  max-width: 9.5ch;
}
.about__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}
.about__cta {
  border-radius: 10px;
  padding: 14px 26px;
}
.about__priority {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: #8A9BB3;
}
.about__priority::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.about__visual {
  position: relative;
  min-height: 460px;
  padding: 28px 18px 36px 48px;
}
.about__image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 8px rgba(184, 208, 234, .35),
    0 18px 48px rgba(11, 46, 120, .14);
  background: #E8F0F8;
}
.about__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.about__float {
  position: absolute;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(11, 46, 120, .12);
}
.about__float--trust {
  top: 12px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 210px;
  padding: 12px 14px;
  border-radius: 14px;
}
.about__float--trust p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}
.about__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about__float-icon svg {
  width: 18px;
  height: 18px;
}
.about__float-icon--gold {
  background: rgba(200, 146, 32, .12);
  color: var(--gold);
}
.about__float-icon--navy {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  margin-bottom: 14px;
}
.about__float-icon--navy svg {
  width: 22px;
  height: 22px;
}
.about__float--quality {
  left: 0;
  top: 50%;
  transform: translateY(-42%);
  width: 168px;
  padding: 22px 18px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
}
.about__float-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--navy);
  margin-bottom: 18px;
  position: relative;
  padding-top: 12px;
}
.about__float-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.about__float-values {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 146, 32, .35);
}
.about__float-values li {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8A9BB3;
}
.about__float--community {
  right: 8px;
  bottom: 8px;
  width: 148px;
  min-height: 168px;
  padding: 24px 18px;
  background: var(--navy);
  border-radius: 14px 32px 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(11, 46, 120, .28);
}
.about__float-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.25;
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  position: relative;
  padding: 14px 0;
}
.about__float-script::before,
.about__float-script::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}
.about__float-script::before { top: 0; }
.about__float-script::after { bottom: 0; }

@media (prefers-reduced-motion: no-preference) {
  .about__float--trust,
  .about__float--quality,
  .about__float--community {
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .about__visual:hover .about__float--trust {
    transform: translateY(-4px);
  }
  .about__visual:hover .about__float--quality {
    transform: translateY(calc(-42% - 4px));
  }
  .about__visual:hover .about__float--community {
    transform: translateY(-4px);
  }
}

/* ========================================================
   8. TESTIMONIALS
   ======================================================== */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 110px) 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(11, 46, 120, 0.07), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(200, 146, 32, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 90%, rgba(14, 165, 160, 0.08), transparent 55%),
    linear-gradient(165deg, #F4F8FF 0%, #FFF9F0 42%, #F0FBFA 78%, #F7F5FF 100%);
}
.testimonials__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.testimonials__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: testimonials-orb-float 14s ease-in-out infinite;
}
.testimonials__orb--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(11, 46, 120, 0.28), transparent 70%);
}
.testimonials__orb--2 {
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  top: 18%;
  right: -10%;
  background: radial-gradient(circle, rgba(200, 146, 32, 0.32), transparent 70%);
  animation-delay: -4s;
}
.testimonials__orb--3 {
  width: min(300px, 42vw);
  height: min(300px, 42vw);
  bottom: -8%;
  left: 35%;
  background: radial-gradient(circle, rgba(20, 164, 152, 0.28), transparent 70%);
  animation-delay: -8s;
}
@keyframes testimonials-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -22px, 0) scale(1.06); }
}
.testimonials > .container { position: relative; z-index: 1; }
.testimonials__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.testimonials__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(11, 46, 120, 0.1), rgba(200, 146, 32, 0.16));
  border: 1px solid rgba(11, 46, 120, 0.12);
}
.testimonials__title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.testimonials__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--muted);
}
.testimonials__carousel {
  position: relative;
}
.testimonials__viewport {
  overflow: hidden;
  margin: 0 -4px;
  padding: 8px 4px 16px;
  mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}
.testimonials__track {
  display: flex;
  gap: 0;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.t-card {
  --t-accent: #0B2E78;
  --t-accent-soft: rgba(11, 46, 120, 0.12);
  --t-glow: rgba(11, 46, 120, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px 26px 24px;
  border-radius: 22px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 18px 40px -18px var(--t-glow),
    0 8px 20px -12px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.t-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--t-accent), color-mix(in srgb, var(--t-accent) 45%, #C89220));
}
.t-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -36px;
  bottom: -48px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--t-accent-soft), transparent 70%);
  pointer-events: none;
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 48px -16px var(--t-glow),
    0 12px 24px -14px rgba(15, 23, 42, 0.14);
}
.t-card--blue {
  --t-accent: #0B2E78;
  --t-accent-soft: rgba(11, 46, 120, 0.14);
  --t-glow: rgba(11, 46, 120, 0.22);
}
.t-card--coral {
  --t-accent: #E05A45;
  --t-accent-soft: rgba(224, 90, 69, 0.14);
  --t-glow: rgba(224, 90, 69, 0.22);
}
.t-card--teal {
  --t-accent: #0E9B8A;
  --t-accent-soft: rgba(14, 155, 138, 0.14);
  --t-glow: rgba(14, 155, 138, 0.22);
}
.t-card--purple {
  --t-accent: #6B4C9A;
  --t-accent-soft: rgba(107, 76, 154, 0.14);
  --t-glow: rgba(107, 76, 154, 0.22);
}
.t-card--gold {
  --t-accent: #C89220;
  --t-accent-soft: rgba(200, 146, 32, 0.16);
  --t-glow: rgba(200, 146, 32, 0.26);
}
.t-card--green {
  --t-accent: #2F8F4E;
  --t-accent-soft: rgba(47, 143, 78, 0.14);
  --t-glow: rgba(47, 143, 78, 0.22);
}
.t-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.t-card__quote {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--t-accent);
  background: var(--t-accent-soft);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--t-accent) 18%, transparent);
}
.t-card__quote svg { width: 20px; height: 20px; }
.t-card__stars {
  display: flex;
  gap: 3px;
  color: #E8A317;
}
.t-card__stars svg { width: 15px; height: 15px; }
.t-card__text {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: clamp(14.5px, 1.5vw, 15.5px);
  line-height: 1.7;
  color: #334155;
}
.t-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.t-card__avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--t-accent), color-mix(in srgb, var(--t-accent) 55%, #0B2E78));
  box-shadow: 0 8px 16px -8px var(--t-glow);
}
.t-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.t-card__author {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.t-card__role {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--t-accent);
  letter-spacing: 0.01em;
}
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.testimonials__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(11, 46, 120, 0.14);
  background: linear-gradient(180deg, #FFFFFF, #F5F8FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 8px 18px -10px rgba(11, 46, 120, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonials__btn:hover {
  background: linear-gradient(145deg, var(--navy), #163A8A);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(11, 46, 120, 0.45);
}
.testimonials__btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.testimonials__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.testimonials__btn svg { width: 18px; height: 18px; }
.testimonials__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 46, 120, 0.08);
  backdrop-filter: blur(8px);
}
.testimonials__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(11, 46, 120, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
.testimonials__dot--active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.testimonials__dot:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (max-width: 991px) {
  .testimonials { padding: clamp(60px, 9vw, 88px) 0; }
  .testimonials__header { margin-bottom: 36px; }
  .t-card { min-height: 268px; padding: 24px 22px 22px; }
}
@media (max-width: 767px) {
  .testimonials__viewport {
    margin: 0;
    padding: 6px 2px 14px;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .testimonials__controls { gap: 10px; margin-top: 22px; }
  .testimonials__btn { width: 44px; height: 44px; }
  .t-card { min-height: 0; border-radius: 18px; }
  .testimonials__orb { opacity: 0.4; filter: blur(32px); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials__orb,
  .t-card,
  .testimonials__track,
  .testimonials__btn,
  .testimonials__dot {
    animation: none !important;
    transition: none !important;
  }
}

/* ========================================================
   9. APPOINTMENT CTA
   ======================================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 0;
  background:
    linear-gradient(180deg, #F7FAFD 0%, #F2F7FB 55%, #EEF4FA 100%);
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(200, 146, 32, .07), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(11, 46, 120, .05), transparent 32%);
}
.cta-section__bg::before,
.cta-section__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 28px solid rgba(165, 200, 225, .14);
}
.cta-section__bg::before {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  top: -28%;
  right: -10%;
  border-width: 32px;
}
.cta-section__bg::after {
  width: min(380px, 42vw);
  height: min(380px, 42vw);
  bottom: -30%;
  left: -8%;
  border-width: 22px;
  border-color: rgba(11, 46, 120, .06);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: clamp(32px, 4.2vw, 48px);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 55% 50% at 90% 85%, rgba(200, 146, 32, .12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 15%, rgba(26, 95, 184, .18) 0%, transparent 55%),
    linear-gradient(155deg, #0A275F 0%, #08245F 48%, #061C4A 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .1) inset,
    0 18px 48px rgba(11, 46, 120, .18),
    0 40px 80px rgba(11, 46, 120, .12);
  overflow: hidden;
}
.cta-section__panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gold), rgba(200, 146, 32, .2));
  pointer-events: none;
}
.cta-section__panel::after {
  content: '';
  position: absolute;
  right: -8%;
  bottom: -30%;
  width: min(280px, 40%);
  height: min(280px, 70%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 146, 32, .12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__copy,
.cta-section__actions {
  position: relative;
  z-index: 1;
}
.cta-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cta-section__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.cta-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}
.cta-section__desc,
.cta-section__text {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: rgba(232, 240, 250, .72);
  line-height: var(--leading-relaxed);
  max-width: 540px;
  margin: 0 0 24px;
}
.cta-section__highlights,
.cta-section__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cta-section__highlights li,
.cta-section__perks li {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(236, 244, 252, .92);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-section__btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 12px 32px rgba(200, 146, 32, .35);
}
.cta-section__btn:hover {
  box-shadow: 0 16px 36px rgba(200, 146, 32, .42);
}
.cta-section__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-section__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: all var(--transition);
}
.cta-section__contact:hover {
  border-color: rgba(232, 196, 106, .4);
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}
.cta-section__contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(165, 200, 225, .16);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #C8DCF0;
  flex-shrink: 0;
}
.cta-section__contact-icon svg { width: 18px; height: 18px; }
.cta-section__contact-icon--wa {
  background: rgba(37, 211, 102, .16);
  border-color: rgba(37, 211, 102, .28);
  color: #4ADE80;
}
.cta-section__contact strong {
  display: block;
  font-size: .84rem;
  color: #ffffff;
  line-height: 1.2;
}
.cta-section__contact span span {
  display: block;
  font-size: .75rem;
  color: rgba(200, 214, 232, .65);
  margin-top: 2px;
}

/* ========================================================
   10. FOOTER
   ======================================================== */
.footer {
  position: relative;
  z-index: 3;
  background:
    linear-gradient(180deg, #061B47 0%, #041433 100%);
  color: rgba(255,255,255,.78);
  padding: 0 0 0;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 0%, rgba(200,146,32,.12), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,.04), transparent 30%);
}
.footer__accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--light-gold) 50%, var(--gold) 80%, transparent);
}
.footer .container { position: relative; z-index: 1; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(44px, 5vw, 64px) 0 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}
.footer__brand-logo {
  height: 58px;
  width: auto;
  display: block;
}
.footer__intro-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  max-width: 340px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.footer__tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  font-size: var(--text-2xl);
  color: var(--light-gold);
  line-height: 1.2;
  letter-spacing: var(--tracking-tight);
}
.footer__contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.footer__info-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: inherit;
  transition: all var(--transition);
}
a.footer__info-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(200,146,32,.35);
  transform: translateY(-2px);
}
.footer__info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(200,146,32,.14);
  color: var(--light-gold);
  flex-shrink: 0;
}
.footer__info-icon svg { width: 18px; height: 18px; }
.footer__info-card strong {
  display: block;
  font-size: .82rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.footer__info-card span span {
  display: block;
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding: 40px 0;
}
.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.62);
  transition: color var(--transition), padding-left var(--transition);
}
.footer__link:hover {
  color: var(--light-gold);
  padding-left: 4px;
}
.footer__social-text {
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(255,255,255,.58);
  margin-bottom: 16px;
  max-width: 220px;
}
.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  transition: all var(--transition);
}
.footer__social-link--facebook {
  color: #1877F2;
  background: rgba(24, 119, 242, 0.14);
  border-color: rgba(24, 119, 242, 0.28);
}
.footer__social-link--instagram {
  color: #E4405F;
  background: rgba(228, 64, 95, 0.14);
  border-color: rgba(228, 64, 95, 0.28);
}
.footer__social-link:hover {
  transform: translateY(-2px);
}
.footer__social-link--facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}
.footer__social-link--instagram:hover {
  background: #E4405F;
  border-color: #E4405F;
  color: #fff;
}
.footer__social-link svg { width: 18px; height: 18px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.48);
}
.footer__credit {
  font-family: var(--font-body);
  color: rgba(255,255,255,.48);
}
.footer__credit-link {
  color: var(--light-gold);
  font-weight: 600;
  transition: color var(--transition);
}
.footer__credit-link:hover {
  color: var(--white);
}

/* ========================================================
   SCROLL ANIMATIONS â€” premium reveal on scroll
   ======================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .9s cubic-bezier(0.22, 1, 0.36, 1),
    transform .9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium scroll exit — parallax fade as hero leaves the viewport */
.hero__body {
  will-change: transform, opacity, filter;
  transform-origin: 50% 35%;
  transition: none;
}
.hero__visual {
  will-change: transform;
}
.hero.is-exiting {
  filter: saturate(calc(1 - var(--hero-exit) * 0.12));
}
.hero[data-hero-motion="on"] .hero__body {
  opacity: calc(1 - var(--hero-exit) * 0.42);
  transform:
    translate3d(0, calc(var(--hero-exit) * -36px), 0)
    scale(calc(1 - var(--hero-exit) * 0.045));
  filter: blur(calc(var(--hero-exit) * 1.5px));
}
.hero[data-hero-motion="on"] .hero__visual {
  transform:
    translate3d(0, calc(var(--hero-exit) * 48px), 0)
    scale(calc(1 + var(--hero-exit) * 0.05));
}
.hero[data-hero-motion="on"] .opd-marquee,
.hero[data-hero-motion="on"] .service-strip {
  opacity: calc(1 - var(--hero-exit) * 0.55);
  transform: translate3d(0, calc(var(--hero-exit) * -18px), 0);
  will-change: transform, opacity;
}

/* Keep the exit calmer on tablets/phones */
@media (max-width: 991px) {
  .hero[data-hero-motion="on"] .hero__body {
    opacity: calc(1 - var(--hero-exit) * 0.22);
    transform: translate3d(0, calc(var(--hero-exit) * -16px), 0);
    filter: none;
  }
  .hero[data-hero-motion="on"] .hero__visual {
    transform: translate3d(0, calc(var(--hero-exit) * 20px), 0) scale(1.02);
  }
  .hero[data-hero-motion="on"] .opd-marquee,
  .hero[data-hero-motion="on"] .service-strip {
    opacity: calc(1 - var(--hero-exit) * 0.35);
    transform: none;
  }
  .hero__scroll-veil {
    height: 48px;
  }
}

.content-stack.is-arriving > :first-child {
  animation: content-stack-rise .85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes content-stack-rise {
  from {
    opacity: 0.72;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .hero__body,
  .hero__visual,
  .hero,
  .opd-marquee,
  .service-strip {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
  .hero {
    --hero-exit: 0 !important;
  }
  .hero__scroll-veil,
  .content-stack.is-arriving > :first-child {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ========================================================
   RESPONSIVE â€” phones, tablets, laptops
   ======================================================== */

@media (max-width: 1399px) {
  .header__contact { display: none; }
}

/* Large tablets / small laptops */
@media (max-width: 1199px) {
  :root {
    --header-height: 78px;
    --header-height-scrolled: 62px;
  }
  .header__nav { gap: 2px; }
  .header__nav-link { padding: 9px 12px; font-size: .9rem; }
  .header--scrolled .header__nav-link { padding: 7px 11px; font-size: .86rem; }
  .header--scrolled .header__logo img { height: 42px; }

  .hero {
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    min-height: 0;
    overflow: hidden;
  }
  .hero__body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    flex: 1;
    min-height: 0;
  }
  .hero__content {
    padding-top: 28px;
    padding-bottom: 28px;
    padding-right: 16px;
    gap: clamp(14px, 2.2vh, 22px);
  }
  .hero__title { font-size: clamp(2rem, 3.6vw, 2.85rem); }
  .hero__curve { width: 52%; left: -14%; }
  .hero__script { font-size: 1.55rem; top: 20px; }
  .hero__card { width: min(280px, 42%); bottom: 16px; right: 10px; }
  .hero__trust { gap: 14px 18px; }
  .hero__trust-text strong { font-size: .88rem; }
  .hero__trust-text span { font-size: .72rem; }
  .service-strip__item { padding: 4px 12px; }
  .service-strip__inner { padding: 12px var(--page-gutter); }

  .specialities {
    --sp-card-w: 250px;
    --sp-media-h: 168px;
    --sp-grid-gap: 18px;
  }
  .specialities__eyebrow::before,
  .specialities__eyebrow::after { width: 28px; }

  .doctors__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .doctors__grid .doctor-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
  .doctor-card { padding: 24px 20px 20px; }
  .doctor-card__name { font-size: 1.2rem; }
  .doctor-card__art { width: 96px; height: 96px; }

  .diagnostics__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diagnostics__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .diagnostics__trust-item {
    justify-content: center;
    padding: 10px 12px;
    border-left: none !important;
    background: #F7FAFD;
    border-radius: 12px;
  }
  .diagnostic-panel__top {
    flex-direction: column;
    gap: 20px;
  }

  .about__grid { gap: 36px; }
  .about__features { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .about__visual { min-height: 380px; padding: 20px 8px 28px 36px; }
  .about__image { height: 340px; }
  .about__float--quality { width: 150px; padding: 18px 14px 16px; }
  .about__float--community { width: 132px; min-height: 148px; }

  .cta-section__panel { grid-template-columns: 1fr; }
  .cta-section__contacts { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
}

/* Short desktop screens */
@media (min-width: 992px) and (max-height: 820px) {
  .hero {
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    min-height: 0;
  }
  .hero__title { font-size: clamp(36px, 4vw, 52px); }
  .hero__desc { font-size: 15.5px; }
  .hero__ctas .btn { min-height: 46px; padding: 10px 18px; }
  .hero__content {
    gap: clamp(10px, 1.6vh, 18px);
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .service-strip__inner { padding: 8px var(--page-gutter); }
  .hero__card { width: 250px; bottom: 16px; right: 12px; }
  .hero__card-item { padding: 10px 12px; }
}

/* Tablets */
@media (max-width: 991px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header__cta { display: none; }
  .mobile-menu { display: block; }
  .header__inner { padding: 0; gap: 12px; }

  /* Unpin sticky hero on tablet/phone so placement stays stable */
  .hero {
    position: relative;
    top: auto !important;
    height: auto;
    max-height: none;
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .hero__body {
    grid-template-columns: 1fr;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .hero__content {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
    padding: clamp(16px, 2.4vh, 24px) var(--page-gutter) clamp(12px, 1.8vh, 18px);
    gap: clamp(10px, 1.6vh, 16px);
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .hero__eyebrow {
    justify-content: center;
    text-align: center;
    max-width: 100%;
    font-size: clamp(9px, 2.4vw, 11px);
    letter-spacing: 1.4px;
    padding-bottom: 8px;
  }
  .hero__eyebrow::after {
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
  }
  .hero__title {
    font-size: clamp(1.55rem, 5vw, 2.2rem);
    max-width: 100%;
    text-align: center;
    line-height: 1.08;
  }
  .hero__desc {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: clamp(.82rem, 2.6vw, .95rem);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero__ctas {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
    margin: 0;
  }
  .hero__ctas .btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: .84rem;
  }
  .hero__trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    max-width: 100%;
    margin: 0 auto;
  }
  .hero__trust-item {
    padding: 0;
    border-right: none;
    justify-content: center;
    text-align: left;
    gap: 8px;
  }
  .hero__trust-icon {
    width: 34px;
    height: 34px;
  }
  .hero__trust-icon svg { width: 15px; height: 15px; }
  .hero__trust-text strong { font-size: .8rem; }
  .hero__trust-text span { font-size: .68rem; }
  .hero__priority {
    justify-content: center;
    margin: 0 auto;
    font-size: 10px;
    letter-spacing: 1.8px;
  }
  .hero__priority::before { width: 32px; height: 2px; }
  .hero__visual {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-height: clamp(220px, 36vh, 360px);
    height: auto;
    overflow: hidden;
    background: #e8f1f8;
    border-radius: 0;
    order: 0;
  }
  .hero__curve,
  .hero__leaves,
  .hero__script { display: none !important; }
  .hero__image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 0;
    overflow: hidden;
  }
  .hero__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
  }
  .hero__card {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    order: 2;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    margin: 0 var(--page-gutter) 14px;
    z-index: 5;
  }
  .hero__card-item { padding: 10px 12px; gap: 10px; }
  .hero__card-icon { width: 34px; height: 34px; }
  .hero__card-text strong { font-size: .8rem; }
  .hero__card-text span { font-size: .68rem; }

  .opd-marquee,
  .service-strip {
    flex: 0 0 auto;
    margin-top: 0;
  }
  .service-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px var(--page-gutter);
    gap: 0;
  }
  .service-strip__item {
    padding: 8px 10px;
    align-items: center;
  }
  .service-strip__item + .service-strip__item { border-left: none; }
  .service-strip__item:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .14); }
  .service-strip__item:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin-top: 0;
    padding-top: 10px;
  }
  .service-strip__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .service-strip__icon svg {
    width: 16px;
    height: 16px;
  }
  .service-strip__text h3 {
    font-size: .78rem;
    color: #ffffff;
  }
  .service-strip__text p {
    display: none;
  }

  .specialities {
    --sp-card-w: 240px;
    --sp-media-h: 160px;
    --sp-grid-gap: 16px;
    --sp-section-pad-y: clamp(40px, 5vh, 64px);
    --sp-header-gap: 24px;
    --sp-name: 1.08rem;
  }

  .doctors {
    padding: clamp(56px, 7vw, 72px) 0;
  }
  .doctors__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 20px;
  }
  .doctors__eyebrow::before,
  .doctors__eyebrow::after { width: 28px; }

  .diagnostics__trust {
    grid-template-columns: 1fr;
  }
  .diagnostics__trust-item {
    justify-content: flex-start;
  }

  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    max-width: 420px;
  }
  .about__feature-label { max-width: 16ch; }
  .about__visual {
    order: -1;
    min-height: 0;
    padding: 12px 8px 0;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .about__image-frame {
    border-radius: 22px;
    box-shadow:
      0 0 0 6px rgba(184, 208, 234, .3),
      0 14px 36px rgba(11, 46, 120, .12);
  }
  .about__image {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }
  .about__float--trust {
    top: 10px;
    right: 8px;
    max-width: min(200px, 58%);
  }
  .about__float--quality,
  .about__float--community {
    position: static;
    transform: none;
    width: 100%;
    min-height: 0;
    margin-top: 14px;
  }
  .about__float--quality {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 16px;
  }
  .about__float--quality .about__float-icon--navy {
    margin-bottom: 0;
    grid-row: 1 / span 2;
  }
  .about__float-title {
    margin-bottom: 0;
    padding-top: 0;
    font-size: 1rem;
  }
  .about__float-title::before { display: none; }
  .about__float-values {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
    border-top: none;
    padding-top: 0;
    grid-column: 2;
  }
  .about__float--community {
    text-align: left;
    padding: 18px 20px;
    border-radius: 16px;
    min-height: 0;
  }
  .about__float-script {
    font-size: 1.45rem;
    padding: 0;
  }
  .about__float-script::before,
  .about__float-script::after { display: none; }
  .about__visual:hover .about__float--trust,
  .about__visual:hover .about__float--quality,
  .about__visual:hover .about__float--community {
    transform: none;
  }
  .about__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section__panel { padding: 28px 22px; }
  .footer__contact-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}

/* Phones */
@media (max-width: 767px) {
  :root {
    --page-gutter: 16px;
    --header-height: 64px;
    --header-height-scrolled: 56px;
  }
  .section { padding: 56px 0; }

  .header__logo img { height: 44px; }
  .header--scrolled .header__logo img { height: 38px; }

  /* ---- Mobile hero: premium full-bleed overlay, centered composition ---- */
  .hero {
    position: relative;
    top: auto !important;
    height: auto;
    max-height: none;
    min-height: calc(100svh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    overflow: hidden;
    background: #061C4A;
    display: flex;
    flex-direction: column;
  }
  .hero__body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
  }

  .hero__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    grid-column: auto;
    grid-row: auto;
    order: 0;
    flex: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    overflow: hidden;
    background: #061C4A;
    border-radius: 0;
    pointer-events: none;
  }
  .hero__image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    border-radius: 0;
  }
  .hero__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse 90% 55% at 50% 18%, rgba(11, 46, 120, 0.18) 0%, transparent 60%),
      linear-gradient(180deg,
        rgba(4, 18, 52, .42) 0%,
        rgba(4, 18, 52, .28) 28%,
        rgba(4, 18, 52, .62) 52%,
        rgba(4, 18, 52, .92) 78%,
        rgba(4, 18, 52, .98) 100%);
  }
  .hero__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    transform: scale(1.04);
    filter: brightness(.72) saturate(1.06) contrast(1.04);
  }

  .hero__content {
    position: relative;
    z-index: 2;
    grid-column: auto;
    grid-row: auto;
    order: 1;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    width: 100%;
    max-width: none;
    min-height: 0;
    overflow: visible;
    padding:
      max(28px, env(safe-area-inset-top, 0px))
      var(--page-gutter)
      16px;
    gap: clamp(12px, 2vh, 18px);
    color: #fff;
    background: transparent;
  }
  .hero__content > * {
    width: 100%;
    animation: heroMobileReveal .7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero__content > *:nth-child(1) { animation-delay: .05s; }
  .hero__content > *:nth-child(2) { animation-delay: .12s; }
  .hero__content > *:nth-child(3) { animation-delay: .18s; }
  .hero__content > *:nth-child(4) { animation-delay: .24s; }
  .hero__content > *:nth-child(5) { animation-delay: .3s; }
  .hero__content > *:nth-child(6) { animation-delay: .36s; }

  .hero__eyebrow {
    justify-content: center;
    text-align: center;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(9px, 2.5vw, 10.5px);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #F0D48A;
    gap: 0 2px;
    padding-bottom: 12px;
    row-gap: 4px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
  }
  .hero__eyebrow-sep { margin: 0 6px; color: rgba(255, 255, 255, .65); }
  .hero__eyebrow::after {
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 2.5px;
    background: linear-gradient(90deg, transparent, #F0D48A 20%, #F0D48A 80%, transparent);
    border-radius: 2px;
  }
  .hero__title {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff !important;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, .45),
      0 10px 28px rgba(0, 0, 0, .5);
  }
  .hero__title-viewport,
  .hero__title-slide {
    text-align: center;
  }
  .hero__title-line { display: block; color: #ffffff !important; }
  .hero__title .gold,
  .hero__title-line.gold {
    color: #F3D78A !important;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, .45),
      0 8px 24px rgba(0, 0, 0, .45);
  }
  .hero__desc {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(.88rem, 3.5vw, .98rem);
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, .92);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
  }
  .hero__ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 22rem;
    margin: 4px auto 0;
    gap: 10px;
  }
  .hero__ctas .btn {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 13px 20px;
    font-size: .92rem;
    border-radius: 14px;
    justify-content: center;
  }
  .hero__ctas .btn-primary {
    box-shadow: 0 12px 28px rgba(200, 146, 32, .42);
  }
  .hero__ctas .btn-secondary {
    background: rgba(255, 255, 255, .14);
    border: 1.5px solid rgba(255, 255, 255, .78);
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
  }
  .hero__ctas .btn-secondary:hover {
    background: rgba(255, 255, 255, .26);
    border-color: #ffffff;
    color: #ffffff;
  }
  .hero__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 22rem;
    margin: 6px auto 0;
    flex-wrap: nowrap;
  }
  .hero__trust-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    min-width: 0;
    padding: 11px 6px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 16px;
    border-right: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .hero__trust-icon {
    width: 34px;
    height: 34px;
    background: rgba(243, 215, 138, .22) !important;
    color: #F3D78A !important;
  }
  .hero__trust-icon svg { width: 15px; height: 15px; }
  .hero__trust-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .hero__trust-text strong {
    font-size: clamp(.7rem, 2.8vw, .78rem);
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
  }
  .hero__trust-text span {
    display: block;
    font-size: clamp(.58rem, 2.3vw, .64rem);
    line-height: 1.25;
    color: rgba(255, 255, 255, .88) !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
  }
  .hero__priority {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px auto 0;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: rgba(240, 212, 138, .92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
  }
  .hero__priority::before {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F0D48A);
  }

  .hero__card {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    order: 2;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    margin: 0 var(--page-gutter) max(14px, env(safe-area-inset-bottom, 0px));
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .95);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, .32),
      0 2px 8px rgba(0, 0, 0, .1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 5;
    flex: 0 0 auto;
    pointer-events: auto;
  }
  .hero__card-item {
    padding: 14px 16px;
    gap: 12px;
  }
  .hero__card-item + .hero__card-item {
    border-top-color: #E8EDF5;
  }
  .hero__card-item:hover {
    background: rgba(11, 46, 120, .04);
  }
  .hero__card-icon {
    width: 40px;
    height: 40px;
  }
  .hero__card-icon svg { width: 17px; height: 17px; }
  .hero__card-text strong {
    font-size: .9rem;
    color: var(--navy);
  }
  .hero__card-text span {
    font-size: .72rem;
    color: #5A7194;
  }
  .hero__card-chevron {
    color: #94A3B8;
  }
  .hero__card-item:hover .hero__card-chevron {
    color: var(--navy);
  }

  .opd-marquee,
  .service-strip {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
  }

  @keyframes heroMobileReveal {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero__content > * {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }
    .hero__media-img {
      transform: none;
    }
  }

  .service-strip__inner {
    grid-template-columns: 1fr 1fr;
    padding: 10px var(--page-gutter);
  }
  .service-strip__item {
    padding: 6px 8px;
    align-items: center;
  }
  .service-strip__icon {
    width: 32px;
    height: 32px;
  }
  .service-strip__icon svg {
    width: 14px;
    height: 14px;
  }
  .service-strip__text h3 {
    font-size: .72rem;
    color: #ffffff;
  }

  .specialities {
    --sp-card-w: min(100%, 320px);
    --sp-media-h: 168px;
    --sp-grid-gap: 16px;
    --sp-section-pad-y: 48px;
    --sp-header-gap: 24px;
    --sp-icon: 48px;
    --sp-body-pad-x: 18px;
    --sp-body-pad-b: 20px;
    --sp-body-pull: -24px;
    --sp-name: 1.1rem;
    --sp-wave-glass: 84px;
    --sp-wave-mid: 68px;
    --sp-wave-solid: 52px;
    min-height: 0;
  }
  .specialities__grid > .speciality-card {
    max-width: var(--sp-card-w);
  }
  .specialities__eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    letter-spacing: 2px;
    font-size: 11px;
  }
  .specialities__eyebrow::before,
  .specialities__eyebrow::after { width: 24px; }

  .doctors__grid { max-width: none; gap: 16px; }
  .doctor-card { padding: 24px 20px 20px; }
  .doctor-card__icon { width: 44px; height: 44px; }
  .doctor-card__art { width: 96px; height: 96px; opacity: .2; }

  .diagnostics__grid { grid-template-columns: 1fr; gap: 14px; }
  .diagnostics__eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1.6px;
    font-size: 11px;
  }
  .diagnostics__eyebrow::before,
  .diagnostics__eyebrow::after { width: 24px; }
  .diagnostics__trust { margin-bottom: 24px; }
  .diagnostic-panel { padding: 24px 18px; border-radius: 18px; }
  .diagnostic-panel__tests { gap: 8px; }
  .diagnostic-panel__pill { padding: 10px 14px; font-size: .8rem; }
  .diagnostic-card { padding: 18px 14px 18px 16px; }

  .about { padding: 56px 0; }
  .about__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
  }
  .about__float--trust {
    max-width: min(180px, 62%);
    padding: 10px 12px;
  }
  .about__float--trust p { font-size: .72rem; }
  .about__cta { width: 100%; justify-content: center; }

  .cta-section { padding: 48px 0; }
  .cta-section__panel { padding: 24px 18px; border-radius: 18px; }
  .cta-section__contacts { grid-template-columns: 1fr; }
  .cta-section__highlights { gap: 8px; }
  .cta-section__highlights li {
    font-size: .74rem;
    padding: 7px 12px;
  }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer__logo-wrap { padding: 10px 14px; }
  .footer__brand-logo { height: 50px; }
}

/* Small phones */
@media (max-width: 480px) {
  .service-strip__inner { grid-template-columns: 1fr 1fr; }
  .service-strip__text h3 { font-size: .68rem; line-height: 1.25; }
  .hero__card {
    margin: 0 var(--page-gutter) 12px;
    border-radius: 14px;
  }
  .hero__card-item { padding: 11px 12px; gap: 10px; }
  .hero__content {
    padding-top: max(18px, env(safe-area-inset-top, 0px));
    padding-bottom: 10px;
    gap: 10px;
  }
  .hero__title { font-size: clamp(1.5rem, 7vw, 1.95rem); }
  .hero__desc {
    font-size: .86rem;
    -webkit-line-clamp: 3;
  }
  .hero__eyebrow {
    font-size: 9px;
    letter-spacing: .11em;
  }
  .hero__ctas .btn {
    min-height: 46px;
    font-size: .88rem;
  }
  .hero__trust { gap: 6px; }
  .hero__trust-item { padding: 9px 4px; border-radius: 12px; }
  .hero__trust-text strong { font-size: .7rem; }
  .hero__trust-text span { font-size: .58rem; }
  .about__float--quality {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .about__float--quality .about__float-icon--navy {
    grid-row: auto;
  }
  .about__float-values { grid-column: auto; }
  .footer__contact-cards { gap: 10px; }
  .footer__info-card { padding: 14px 14px; }
}

/* Tiny phones */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero__title { font-size: 1.45rem; }
  .hero__content { gap: 9px; }
  .hero__desc { -webkit-line-clamp: 2; font-size: .82rem; }
  .hero__trust-text span { font-size: .54rem; }
  .hero__card { margin-left: 12px; margin-right: 12px; }
  .btn { padding: 12px 18px; font-size: .88rem; }
  .about__features { gap: 14px 10px; }
  .cta-section__title { font-size: 1.55rem; }
}

/* Short tablet viewports — keep compact hero (tablets only) */
@media (min-width: 768px) and (max-width: 991px) and (max-height: 740px) {
  .hero__desc { -webkit-line-clamp: 2; }
  .hero__priority { display: none; }
  .hero__content {
    padding-top: 10px;
    padding-bottom: 8px;
    gap: 8px;
  }
  .hero__visual { min-height: 180px; }
  .service-strip__inner { padding: 6px var(--page-gutter); }
}

/* Short phones — compact centered overlay without breaking layout */
@media (max-width: 767px) and (max-height: 700px) {
  .hero__desc { -webkit-line-clamp: 2; }
  .hero__content {
    padding-top: 18px;
    padding-bottom: 10px;
    gap: 10px;
  }
  .hero__ctas { gap: 8px; margin-top: 2px; }
  .hero__ctas .btn { min-height: 46px; }
  .hero__trust { margin-top: 2px; }
  .hero__trust-item { padding: 8px 4px; }
  .hero__priority { display: none; }
  .hero__card {
    margin-bottom: 10px;
  }
  .hero__card-item { padding: 10px 12px; }
}

/* Landscape phones */
@media (max-width: 991px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: 0;
  }
  .hero__body {
    min-height: 0;
  }
  .hero__visual {
    position: relative;
    min-height: 160px;
    height: 160px;
  }
  .hero__content {
    background: linear-gradient(180deg, #071B4A 0%, #0A275F 100%);
    padding: 14px var(--page-gutter) 10px;
    gap: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero__trust { display: none; }
  .hero__priority { display: none; }
  .hero__desc { -webkit-line-clamp: 2; }
  .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
  }
  .hero__ctas .btn {
    width: auto;
    flex: 1 1 180px;
    min-height: 42px;
  }
  .hero__card {
    margin: 0 var(--page-gutter) 10px;
  }
}

/* ========================================================
   ABOUT PAGE
   ======================================================== */
.page-about .about-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep-navy);
  color: #fff;
}
.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.about-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 36, 95, .92) 0%, rgba(11, 46, 120, .72) 42%, rgba(8, 36, 95, .45) 70%, rgba(8, 36, 95, .55) 100%),
    linear-gradient(0deg, rgba(8, 36, 95, .55) 0%, transparent 45%);
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(72px, 12vh, 120px);
  padding-bottom: clamp(56px, 8vh, 88px);
}
.about-hero__copy {
  max-width: 640px;
}
.about-hero__brand {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  color: var(--light-gold);
  margin: 0 0 16px;
  line-height: 1.25;
}
.about-hero__lead {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: rgba(255, 255, 255, .82);
  max-width: 36rem;
  margin: 0 0 28px;
  line-height: var(--leading-relaxed);
}
.about-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-hero__btn-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.about-hero__btn-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

/* Story â€” match reference composition */
.about-story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(26, 95, 184, .10) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 80%, rgba(200, 146, 32, .10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 70% 10%, rgba(46, 160, 140, .08) 0%, transparent 50%),
    linear-gradient(180deg, #F4F9FD 0%, #FFFFFF 45%, #F7FAFD 100%);
  padding: clamp(72px, 9vw, 110px) 0;
}
.about-story__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.about-story__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.about-story__orb--1 {
  width: min(340px, 40vw);
  height: min(340px, 40vw);
  left: -8%;
  top: 8%;
  background: radial-gradient(circle, rgba(90, 160, 220, .22) 0%, transparent 70%);
}
.about-story__orb--2 {
  width: min(280px, 34vw);
  height: min(280px, 34vw);
  right: 4%;
  bottom: 6%;
  background: radial-gradient(circle, rgba(232, 196, 106, .2) 0%, transparent 70%);
}
.about-story__orb--3 {
  width: min(220px, 28vw);
  height: min(220px, 28vw);
  left: 38%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(80, 180, 160, .16) 0%, transparent 70%);
}
.about-story .container { position: relative; z-index: 1; }
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.about-story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.about-story__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #E8C46A);
  border-radius: 2px;
}
.about-story__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
}
.about-story__title span {
  background: linear-gradient(120deg, #1A5FB8 0%, #0B2E78 55%, #C89220 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-story__text {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: #5A7194;
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 34rem;
}
.about-story__features {
  list-style: none;
  margin: 28px 0 26px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.about-story__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px 16px 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(11, 46, 120, .08);
  box-shadow: 0 8px 22px rgba(11, 46, 120, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.about-story__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(11, 46, 120, .1);
}
.about-story__feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(11, 46, 120, .12);
}
.about-story__feature-icon svg {
  width: 22px;
  height: 22px;
}
.about-story__feature--doctors .about-story__feature-icon {
  background: linear-gradient(145deg, #2F6FC0, #0B2E78);
  color: #fff;
}
.about-story__feature--diagnostics .about-story__feature-icon {
  background: linear-gradient(145deg, #3DB8A0, #1F8A76);
  color: #fff;
}
.about-story__feature--care .about-story__feature-icon {
  background: linear-gradient(145deg, #E0B45A, #C89220);
  color: #fff;
}
.about-story__feature-label {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
.about-story__priority {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: #6B7F9C;
}
.about-story__priority::before {
  content: '';
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #E8C46A);
  border-radius: 2px;
}

/* Right visual composition */
.about-story__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  justify-items: end;
}
.about-story__blob {
  position: absolute;
  left: 0;
  top: 8%;
  width: 74%;
  height: 78%;
  border-radius: 48% 52% 46% 54% / 42% 48% 52% 58%;
  background:
    radial-gradient(circle at 35% 35%, rgba(90, 170, 230, .45) 0%, transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(232, 196, 106, .32) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(70, 180, 155, .22) 0%, transparent 55%),
    linear-gradient(145deg, rgba(200, 225, 245, .55), rgba(230, 240, 250, .2));
  z-index: 0;
  pointer-events: none;
}
.about-story__ring {
  position: absolute;
  left: 8%;
  top: 18%;
  width: 58%;
  height: 62%;
  border-radius: 50%;
  border: 2px solid rgba(200, 146, 32, .22);
  box-shadow: inset 0 0 0 12px rgba(26, 95, 184, .05);
  z-index: 0;
  pointer-events: none;
}
.about-story__float-copy {
  position: absolute;
  left: 2%;
  top: 24%;
  z-index: 3;
  max-width: 270px;
  text-align: left;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 16px 36px rgba(11, 46, 120, .1);
}
.about-story__float-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-story__float-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: var(--tracking-tight);
}
.about-story__float-title span {
  background: linear-gradient(120deg, #1A5FB8, #C89220);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-story__float-meta {
  margin: 0;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 500;
  color: #6B7F9C;
  line-height: 1.45;
}
.about-story__photo-wrap {
  position: relative;
  z-index: 2;
  width: min(340px, 58%);
  margin-right: 2%;
}
.about-story__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.15;
  border-radius: 50% / 42%;
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, .85),
    0 0 0 10px rgba(200, 146, 32, .28),
    0 22px 52px rgba(11, 46, 120, .2);
  background: linear-gradient(160deg, #b8d4ee, #d7e6f4);
}
.about-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.about-story__wing {
  position: absolute;
  right: -10%;
  top: 6%;
  width: 58%;
  height: 42%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255,255,255,.55) 0 1.1px, transparent 1.3px),
    linear-gradient(145deg, #0B2E78 0%, #1A5FB8 45%, #C89220 120%);
  background-size: 10px 10px, auto;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  clip-path: ellipse(78% 62% at 62% 48%);
  opacity: .95;
}
.about-story__script {
  position: absolute;
  right: -6%;
  bottom: 10%;
  z-index: 4;
  margin: 0;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.15;
  color: #3F8FD0;
  text-align: right;
  transform: rotate(-6deg);
  pointer-events: none;
  text-shadow: 0 1px 0 rgba(255,255,255,.75);
}
.about-story__badge {
  position: absolute;
  left: 16%;
  bottom: 8%;
  z-index: 5;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #ffffff 0%, #F7FAFD 70%);
  border: 3px solid rgba(232, 196, 106, .55);
  box-shadow:
    0 14px 36px rgba(11, 46, 120, .16),
    0 0 0 6px rgba(26, 95, 184, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 12px;
}
.about-story__badge-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.about-story__badge-mark svg {
  width: 34px;
  height: 34px;
}
.about-story__badge-text {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Mission / Vision */
.about-mv__eyebrow,
.about-values__eyebrow,
.about-why__eyebrow,
.about-facility__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-values__eyebrow::before,
.about-why__eyebrow::before,
.about-facility__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.about-mv__title,
.about-values__title,
.about-why__title,
.about-facility__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: var(--tracking-tight);
}

.about-mv {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 8% 20%, rgba(165, 200, 225, .14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 92% 85%, rgba(200, 146, 32, .06) 0%, transparent 55%),
    linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 48%, #F5F9FC 100%);
  padding: clamp(80px, 10vw, 120px) 0 clamp(96px, 11vw, 132px);
}
.about-mv__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.about-mv__wash {
  position: absolute;
  border-radius: 50%;
  border: 26px solid rgba(165, 200, 225, .16);
}
.about-mv__wash--1 {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  right: -14%;
  top: -22%;
  border-width: 30px;
  background: transparent;
}
.about-mv__wash--2 {
  width: min(380px, 42vw);
  height: min(380px, 42vw);
  left: -10%;
  bottom: -18%;
  border-width: 22px;
  border-color: rgba(11, 46, 120, .05);
  background: transparent;
}
.about-mv .container {
  position: relative;
  z-index: 1;
}
.about-mv__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.about-mv__eyebrow {
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}
.about-mv__eyebrow::before,
.about-mv__eyebrow::after {
  content: '';
  width: 42px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.about-mv__title {
  margin-bottom: 14px;
}
.about-mv__intro,
.about-values__intro {
  font-size: var(--text-md);
  color: #6B7F9C;
  line-height: var(--leading-relaxed);
  margin: 0;
}
.about-mv__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px);
  max-width: 1040px;
  margin: 0 auto;
}
.about-mv__card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 22px;
  padding: clamp(30px, 3.6vw, 40px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 10px 28px rgba(11, 46, 120, .06),
    0 28px 56px rgba(11, 46, 120, .08);
  border: 1px solid rgba(11, 46, 120, .08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s ease, border-color .4s ease;
}
.about-mv__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gold), rgba(200, 146, 32, .2));
  pointer-events: none;
}
.about-mv__card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 146, 32, .28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 36px rgba(11, 46, 120, .08),
    0 32px 64px rgba(11, 46, 120, .1);
}
.about-mv__card--vision::after {
  content: '';
  position: absolute;
  right: -18%;
  bottom: -42%;
  width: 72%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 210, 230, .22), transparent 68%);
  pointer-events: none;
}
.about-mv__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.about-mv__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--navy);
  background: linear-gradient(160deg, #F7FAFD 0%, #E6F0F9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    0 8px 18px rgba(11, 46, 120, .1);
  flex-shrink: 0;
}
.about-mv__icon svg {
  width: 24px;
  height: 24px;
}
.about-mv__label {
  display: block;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.about-mv__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: var(--tracking-tight);
}
.about-mv__heading::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 12px;
}
.about-mv__text {
  font-size: var(--text-md);
  color: #6B7F9C;
  line-height: 1.75;
  margin: 0 0 32px;
  flex: 1;
}
.about-mv__foot {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9BB4CE;
  line-height: 1.5;
}
.about-mv__foot--end {
  text-align: right;
  align-self: flex-end;
}
.about-mv__slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 52px auto 0;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7F9CB8;
  text-align: center;
}
.about-mv__slogan::before,
.about-mv__slogan::after {
  content: '';
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.about-mv__side-note {
  position: absolute;
  left: max(16px, calc((100vw - var(--max-width)) / 2 + var(--page-gutter)));
  bottom: 36px;
  margin: 0;
  font-size: .74rem;
  font-weight: 600;
  line-height: 1.4;
  color: #9BB4CE;
  letter-spacing: 0.02em;
}
.about-mv__side-note::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
  border-radius: 2px;
}

/* Values */
.about-values {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 12% 18%, rgba(200, 146, 32, .10) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 82%, rgba(26, 95, 184, .22) 0%, transparent 58%),
    linear-gradient(165deg, #0A275F 0%, #08245F 45%, #061C4A 100%);
  padding: clamp(72px, 9vw, 112px) 0;
}
.about-values__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.about-values__glow {
  position: absolute;
  border-radius: 50%;
  border: 26px solid rgba(165, 200, 225, .10);
}
.about-values__glow--1 {
  width: min(560px, 58vw);
  height: min(560px, 58vw);
  right: -16%;
  top: -28%;
  border-width: 32px;
}
.about-values__glow--2 {
  width: min(420px, 44vw);
  height: min(420px, 44vw);
  left: -12%;
  bottom: -24%;
  border-width: 22px;
  border-color: rgba(200, 146, 32, .08);
}
.about-values .container { position: relative; z-index: 1; }
.about-values__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.about-values__header .about-values__eyebrow {
  justify-content: center;
  gap: 16px;
  font-weight: 700;
  color: var(--gold);
}
.about-values__header .about-values__eyebrow::before,
.about-values__header .about-values__eyebrow::after {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.about-values__title {
  color: #ffffff;
  margin-bottom: 14px;
}
.about-values__header .about-values__intro {
  color: rgba(232, 240, 250, .72);
}
.about-values__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-values__item {
  position: relative;
  text-align: left;
  padding: 26px 22px 24px;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, .04) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .1) inset,
    0 12px 32px rgba(0, 0, 0, .16);
  overflow: hidden;
  transition:
    transform .45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .35s ease,
    box-shadow .45s ease,
    background .35s ease;
}
.about-values__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gold), rgba(200, 146, 32, .2));
  pointer-events: none;
}
.about-values__item:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 196, 106, .35);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, .06) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .14) inset,
    0 18px 40px rgba(0, 0, 0, .22);
}
.about-values__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(165, 200, 225, .14);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--light-gold);
  margin-bottom: 18px;
}
.about-values__icon svg {
  width: 22px;
  height: 22px;
}
.about-values__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: var(--tracking-tight);
}
.about-values__desc {
  font-size: var(--text-sm);
  color: rgba(220, 232, 245, .72);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Why */
.about-why {
  background: linear-gradient(165deg, #F5F9FC 0%, #EEF4FA 100%);
  padding: clamp(64px, 8vw, 108px) 0;
}
.about-why__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.about-why__text {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: var(--leading-relaxed);
  margin: 0 0 24px;
  max-width: 420px;
}
.about-why__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
}
.about-why__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.about-why__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--navy);
  margin: 0 0 8px;
}
.about-why__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Facility â€” Our Clinic */
.about-facility {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, #FFFFFF 0%, #F7FBFE 48%, #EEF6FC 100%);
  padding: clamp(72px, 9vw, 120px) 0;
}
.about-facility__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.about-facility__swoosh {
  position: absolute;
  border-radius: 50%;
  border: 28px solid rgba(165, 200, 225, .26);
}
.about-facility__swoosh--1 {
  width: min(760px, 70vw);
  height: min(760px, 70vw);
  right: -20%;
  top: -34%;
  border-width: 36px;
  border-color: rgba(165, 200, 225, .30);
}
.about-facility__swoosh--2 {
  width: min(580px, 54vw);
  height: min(580px, 54vw);
  right: -6%;
  top: -10%;
  border-width: 26px;
  border-color: rgba(145, 188, 220, .22);
}
.about-facility__swoosh--3 {
  width: min(440px, 42vw);
  height: min(440px, 42vw);
  right: 10%;
  bottom: -28%;
  border-width: 22px;
  border-color: rgba(165, 200, 225, .16);
}
.about-facility .container { position: relative; z-index: 1; }
.about-facility__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5.5vw, 80px);
  align-items: center;
}
.about-facility__content { max-width: 500px; }
.about-facility__eyebrow {
  margin-bottom: 16px;
  font-weight: 700;
}
.about-facility__title {
  margin: 0 0 18px;
  line-height: 1.18;
  max-width: 13ch;
}
.about-facility__text {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: var(--leading-relaxed);
  margin: 0 0 30px;
  max-width: 46ch;
}
.about-facility__points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 18px;
}
.about-facility__points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-facility__point-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(165, 200, 225, .38);
  color: var(--navy);
}
.about-facility__point-icon svg {
  width: 20px;
  height: 20px;
}
.about-facility__point-copy {
  display: grid;
  gap: 2px;
  padding-top: 4px;
  min-width: 0;
}
.about-facility__point-copy strong {
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.about-facility__point-copy span {
  font-size: .9rem;
  line-height: 1.4;
  color: var(--muted);
}
.about-facility__cta {
  border-radius: 10px;
  min-height: 50px;
  padding: 14px 28px;
  box-shadow: 0 10px 24px rgba(200, 146, 32, .28);
}
.about-facility__cta svg {
  width: 16px;
  height: 16px;
}
.about-facility__assurance {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 26px 0 0;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6B7F9C;
}
.about-facility__assurance-line {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  flex: 0 0 auto;
}

/* Right visual â€” photo backdrop + floating map */
.about-facility__visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.about-facility__photo {
  position: absolute;
  inset: 0 0 0 18%;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(11, 46, 120, .14);
}
.about-facility__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 254, .55) 0%, transparent 28%),
    linear-gradient(180deg, transparent 55%, rgba(8, 36, 95, .18) 100%);
  pointer-events: none;
  z-index: 1;
}
.about-facility__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.28);
  transform-origin: 65% center;
  display: block;
}
.about-facility__brand-mark {
  position: absolute;
  right: 10%;
  top: 38%;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.about-facility__cross {
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 12px 22px rgba(11, 46, 120, .28));
}
.about-facility__cross svg {
  width: 100%;
  height: 100%;
  display: block;
}
.about-facility__brand-text {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .65);
}
.about-facility__brand-text::after {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 2px;
  background: var(--gold);
}
.about-facility__foliage {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: min(240px, 52%);
  height: min(190px, 40%);
  background:
    radial-gradient(ellipse at 30% 40%, rgba(56, 130, 78, .58) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 55%, rgba(34, 110, 62, .5) 0%, transparent 58%),
    radial-gradient(ellipse at 45% 75%, rgba(90, 150, 90, .42) 0%, transparent 50%);
  filter: blur(12px);
  opacity: .9;
  pointer-events: none;
  z-index: 3;
}
.about-facility__map-card {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: min(100%, 360px);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  box-shadow:
    0 22px 54px rgba(11, 46, 120, .12),
    0 6px 18px rgba(11, 46, 120, .06);
  overflow: visible;
  padding: 52px 14px 12px;
}
.about-facility__visit {
  position: absolute;
  left: 16px;
  top: -26px;
  right: 16px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 14px 30px rgba(11, 46, 120, .12),
    0 2px 8px rgba(11, 46, 120, .04);
  border: 1px solid rgba(232, 237, 245, .95);
}
.about-facility__visit-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(165, 200, 225, .4);
  color: var(--navy);
}
.about-facility__visit-icon svg {
  width: 18px;
  height: 18px;
}
.about-facility__visit-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.about-facility__visit-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}
.about-facility__visit-copy strong {
  font-family: var(--font-heading);
  font-size: .94rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.about-facility__visit-copy > span:last-child {
  font-size: .8rem;
  color: var(--muted);
}
.about-facility__map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #EEF5FA;
  min-height: 210px;
  aspect-ratio: 420 / 250;
}
.about-facility__map-art {
  width: 100%;
  height: 100%;
  display: block;
}
.about-facility__pin {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -72%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.about-facility__pin-marker {
  width: 36px;
  height: 36px;
  color: var(--navy);
  filter: drop-shadow(0 6px 12px rgba(11, 46, 120, .28));
}
.about-facility__pin-marker svg {
  width: 100%;
  height: 100%;
  display: block;
}
.about-facility__pin-tip {
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 8px 22px rgba(11, 46, 120, .14);
  text-align: center;
  min-width: 148px;
}
.about-facility__pin-tip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.about-facility__pin-tip span {
  display: block;
  margin-top: 2px;
  font-size: .68rem;
  color: var(--muted);
  line-height: 1.3;
}
.about-facility__easy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  padding: 4px 6px 4px;
}
.about-facility__easy-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(165, 200, 225, .32);
  color: var(--navy);
}
.about-facility__easy-icon svg {
  width: 17px;
  height: 17px;
}
.about-facility__easy-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding-top: 2px;
}
.about-facility__easy-copy strong {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.about-facility__easy-copy span {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* About page responsive */
@media (max-width: 1199px) {
  .about-values__list { gap: 24px; }
}
@media (max-width: 991px) {
  .page-about .about-hero { min-height: min(58vh, 520px); }
  .about-hero__inner {
    padding-left: 0;
    padding-right: 0;
  }
  .about-story__grid,
  .about-why__layout,
  .about-facility__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-facility__content { max-width: none; }
  .about-facility__title { max-width: none; }
  .about-facility__visual {
    min-height: 520px;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
  .about-facility__photo {
    inset: 0 0 0 12%;
  }
  .about-facility__map-card {
    width: min(92%, 340px);
  }
  .about-facility__swoosh--1,
  .about-facility__swoosh--2 { opacity: .7; }
  .about-story__visual {
    min-height: 460px;
    justify-items: center;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .about-story__blob {
    left: 0;
    width: 78%;
  }
  .about-story__float-copy {
    left: 0;
    top: 18%;
    max-width: 240px;
  }
  .about-story__photo-wrap {
    width: min(280px, 62%);
    margin-right: 0;
  }
  .about-story__badge {
    left: 8%;
    bottom: 6%;
    width: 104px;
    height: 104px;
  }
  .about-mv__grid { grid-template-columns: 1fr; gap: 18px; }
  .about-mv__side-note {
    position: static;
    margin: 28px 0 0;
    text-align: left;
  }
  .about-mv__slogan {
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .about-values__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
  .about-why__grid { grid-template-columns: 1fr; }
  .about-why__text { max-width: none; }
}
@media (max-width: 767px) {
  /* Inset page heroes — not full-bleed on phones */
  .about-hero,
  .page-about .about-hero,
  .page-specialities .about-hero,
  .page-diagnostics .about-hero,
  .page-contact .about-hero {
    margin: 12px var(--page-gutter) 8px;
    min-height: min(52vh, 400px);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(11, 46, 120, .14);
  }
  .about-hero__media {
    border-radius: inherit;
  }
  .about-hero__img {
    object-fit: cover;
    object-position: center 32%;
  }
  .about-hero__inner {
    padding: 28px 18px 24px;
  }
  .about-hero__brand { font-size: clamp(1.55rem, 7vw, 2rem); }
  .about-hero__title { font-size: 1.2rem; }
  .about-hero__lead {
    margin-bottom: 20px;
    font-size: .92rem;
  }
  /* Match home hero mobile CTA sizing */
  .about-hero__ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .about-hero__ctas .btn {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 18px;
    font-size: .9rem;
    border-radius: 12px;
    justify-content: center;
  }
  .about-hero__ctas .btn-primary {
    box-shadow: 0 10px 24px rgba(200, 146, 32, .45);
  }
  .about-hero__btn-light {
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .85);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .about-hero__btn-light:hover {
    background: rgba(255, 255, 255, .28);
    border-color: #ffffff;
    color: #ffffff;
  }

  .about-mv__header,
  .about-values__header { margin-bottom: 36px; }
  .about-story__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .about-story__visual { min-height: 420px; }
  .about-story__float-copy {
    position: relative;
    left: auto;
    top: auto;
    max-width: none;
    text-align: center;
    margin-bottom: 18px;
    z-index: 1;
  }
  .about-story__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-story__blob {
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 55%;
  }
  .about-story__photo-wrap {
    width: min(260px, 72%);
  }
  .about-story__badge {
    left: 12%;
    bottom: 4%;
  }
  .about-story__script {
    right: 0;
    bottom: 4%;
    font-size: 1.4rem;
  }
}
@media (max-width: 640px) {
  .about-facility__visual {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 480px;
  }
  .about-facility__photo {
    position: relative;
    inset: auto;
    order: 2;
    min-height: 300px;
    border-radius: 22px;
    margin-top: -36px;
  }
  .about-facility__photo img {
    min-height: 300px;
    height: 300px;
    object-position: center 35%;
  }
  .about-facility__brand-mark {
    right: 50%;
    top: 42%;
    transform: translate(50%, -50%);
  }
  .about-facility__cross { width: 58px; height: 58px; }
  .about-facility__map-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: 1;
    width: 100%;
    z-index: 3;
    margin: 28px 0 0;
  }
  .about-facility__cta { width: 100%; justify-content: center; }
  .about-facility__assurance { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .about-values__list { grid-template-columns: 1fr; }
  .about-hero,
  .page-about .about-hero,
  .page-specialities .about-hero,
  .page-diagnostics .about-hero,
  .page-contact .about-hero {
    margin: 10px var(--page-gutter) 6px;
    min-height: min(48vh, 360px);
    border-radius: 18px;
  }
  .about-hero__inner {
    padding: 24px 16px 20px;
  }
  .about-hero__ctas {
    flex-direction: column;
    gap: 10px;
  }
  .about-hero__ctas .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: .9rem;
    border-radius: 12px;
  }
  .about-story__float-meta { font-size: .72rem; }
  .about-facility__pin-tip { min-width: 132px; }
}

/* ========================================================
   SPECIALITIES PAGE
   ======================================================== */
.sp-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: clamp(560px, 78vh, 700px);
  display: flex;
  align-items: stretch;
  background: #F4F8FD;
  color: var(--navy);
}
.sp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.sp-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, .98) 0%, rgba(247, 251, 255, .92) 24%, rgba(247, 251, 255, .55) 42%, rgba(247, 251, 255, .12) 58%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, transparent 26%, transparent 62%, rgba(244, 248, 253, .72) 100%);
  pointer-events: none;
}
.sp-hero__wave {
  position: absolute;
  left: 0;
  top: 0;
  width: min(58%, 780px);
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.sp-hero__priority {
  position: absolute;
  top: clamp(20px, 3.8vh, 36px);
  right: clamp(20px, 4vw, 56px);
  z-index: 2;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(11, 46, 120, 0.72);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.sp-hero__priority span {
  display: block;
  width: 44px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.sp-hero__stack {
  position: absolute;
  top: 38%;
  left: clamp(38%, 44vw, 50%);
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  pointer-events: none;
}
.sp-hero__stack li {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.9vw, 26px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.01em;
  color: rgba(100, 116, 139, 0.34);
}
.sp-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(24px, 4vh, 40px);
  padding-top: clamp(48px, 7vh, 80px);
  padding-bottom: clamp(24px, 3.5vh, 36px);
}
.sp-hero__copy {
  max-width: 560px;
  padding-top: clamp(4px, 1.5vh, 18px);
}
.sp-hero__eyebrow {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
  padding-top: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6B7C93;
}
.sp-hero__eyebrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--gold);
}
.sp-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.sp-hero__title-main,
.sp-hero__title-accent {
  display: inline;
}
.sp-hero__title-accent {
  color: #1A4A9C;
}
.sp-hero__lead {
  margin: 0 0 30px;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.7;
  color: #64748B;
}
.sp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.sp-hero__btn-primary {
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 12px;
  box-shadow: 0 14px 30px -12px rgba(200, 146, 32, 0.7);
}
.sp-hero__btn-secondary {
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(11, 46, 120, 0.35);
  color: var(--navy);
  backdrop-filter: blur(6px);
}
.sp-hero__btn-secondary:hover {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: 0 10px 22px -12px rgba(11, 46, 120, 0.3);
}
.sp-hero__bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 24px 50px -22px rgba(11, 46, 120, 0.28),
    0 10px 24px -14px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.sp-hero__chip {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 16px;
  transition: transform 0.25s ease;
}
.sp-hero__chip:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(11, 46, 120, 0.12), transparent);
}
.sp-hero__chip:hover {
  transform: translateY(-4px);
}
.sp-hero__chip:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.sp-hero__chip-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(241, 246, 252, 0.95);
  box-shadow: inset 0 0 0 1px rgba(11, 46, 120, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.sp-hero__chip:nth-child(1) .sp-hero__chip-icon { background: rgba(47, 111, 224, 0.12); }
.sp-hero__chip:nth-child(2) .sp-hero__chip-icon { background: rgba(224, 122, 47, 0.12); }
.sp-hero__chip:nth-child(3) .sp-hero__chip-icon { background: rgba(31, 168, 138, 0.12); }
.sp-hero__chip:nth-child(4) .sp-hero__chip-icon { background: rgba(224, 69, 90, 0.12); }
.sp-hero__chip:nth-child(5) .sp-hero__chip-icon { background: rgba(59, 130, 196, 0.12); }
.sp-hero__chip:nth-child(6) .sp-hero__chip-icon { background: rgba(139, 92, 246, 0.12); }
.sp-hero__chip:nth-child(7) .sp-hero__chip-icon { background: rgba(217, 119, 6, 0.12); }
.sp-hero__chip:nth-child(8) .sp-hero__chip-icon { background: rgba(71, 85, 105, 0.1); }
.sp-hero__chip:hover .sp-hero__chip-icon {
  transform: scale(1.05);
  box-shadow:
    inset 0 0 0 1px rgba(11, 46, 120, 0.08),
    0 12px 22px -12px rgba(11, 46, 120, 0.28);
}
.sp-hero__chip-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.sp-hero__chip-label {
  font-family: var(--font-heading);
  font-size: clamp(11px, 0.92vw, 13px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--navy);
}

@media (max-width: 1199px) {
  .sp-hero__stack { left: 40%; }
  .sp-hero__wave { width: min(62%, 700px); }
  .sp-hero__bar { padding: 16px 6px 14px; border-radius: 32px; }
  .sp-hero__chip { padding: 4px 6px; gap: 8px; }
  .sp-hero__chip-icon { width: 50px; height: 50px; }
  .sp-hero__chip-icon img { width: 30px; height: 30px; }
}
@media (max-width: 991px) {
  .sp-hero {
    min-height: clamp(540px, 74vh, 680px);
  }
  .sp-hero__img { object-position: 78% center; }
  .sp-hero__shade {
    background:
      linear-gradient(105deg, rgba(247, 251, 255, .97) 0%, rgba(247, 251, 255, .9) 36%, rgba(247, 251, 255, .35) 58%, transparent 78%),
      linear-gradient(180deg, rgba(255, 255, 255, .2) 0%, transparent 28%, rgba(244, 248, 253, .78) 100%);
  }
  .sp-hero__wave { width: 70%; opacity: 0.85; }
  .sp-hero__stack { display: none; }
  .sp-hero__priority {
    top: 16px;
    right: 16px;
    font-size: 12px;
  }
  .sp-hero__bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 0;
    border-radius: 22px;
    padding: 14px 8px;
  }
  .sp-hero__chip:not(:last-child)::after { display: none; }
  .sp-hero__chip:nth-child(4n)::after { display: none; }
}
@media (max-width: 767px) {
  .sp-hero {
    min-height: 0;
  }
  .sp-hero__img { object-position: 82% 28%; min-height: 280px; }
  .sp-hero__media {
    position: absolute;
    inset: 0;
  }
  .sp-hero__shade {
    background:
      linear-gradient(180deg, rgba(247, 251, 255, .35) 0%, rgba(247, 251, 255, .78) 38%, rgba(247, 251, 255, .96) 62%, #F7FBFF 100%),
      linear-gradient(90deg, rgba(247, 251, 255, .75) 0%, transparent 60%);
  }
  .sp-hero__wave { display: none; }
  .sp-hero__priority { display: none; }
  .sp-hero__inner {
    padding-top: 40px;
    padding-bottom: 22px;
    gap: 26px;
  }
  .sp-hero__copy { max-width: none; }
  .sp-hero__title { font-size: clamp(28px, 7.5vw, 36px); }
  .sp-hero__title-main,
  .sp-hero__title-accent { display: inline; }
  .sp-hero__lead { margin-bottom: 22px; font-size: 15px; }
  .sp-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .sp-hero__btn-primary,
  .sp-hero__btn-secondary {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    min-height: 48px;
  }
  .sp-hero__bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 4px;
    padding: 14px 8px;
    border-radius: 20px;
  }
  .sp-hero__chip-icon { width: 46px; height: 46px; }
  .sp-hero__chip-icon img { width: 28px; height: 28px; }
  .sp-hero__chip-label { font-size: 10.5px; }
}
@media (max-width: 560px) {
  .sp-hero__bar {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 14px 8px;
    scrollbar-width: none;
  }
  .sp-hero__bar::-webkit-scrollbar { display: none; }
  .sp-hero__chip {
    flex: 0 0 28%;
    min-width: 96px;
    scroll-snap-align: start;
  }
  .sp-hero__chip:not(:last-child)::after {
    display: block;
  }
}
@media (max-width: 420px) {
  .sp-hero__chip { flex-basis: 34%; min-width: 108px; }
}
@media (prefers-reduced-motion: reduce) {
  .sp-hero__chip,
  .sp-hero__chip-icon {
    transition: none;
  }
}

.sp-jump { display: none; }

.sp-detail {
  --sp-accent: #0B2E78;
  --sp-accent-soft: rgba(11, 46, 120, 0.1);
  --sp-accent-glow: rgba(11, 46, 120, 0.14);
  --sp-surface: #ffffff;
  position: relative;
  overflow: hidden;
  background: var(--sp-surface);
  padding: clamp(64px, 8vw, 104px) 0;
}
.sp-detail__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 0% 10%, var(--sp-accent-glow), transparent 60%),
    radial-gradient(ellipse 45% 40% at 100% 90%, rgba(200, 146, 32, 0.08), transparent 55%);
}
.sp-detail > .container { position: relative; z-index: 1; }
.sp-detail--nephro {
  --sp-accent: #1FA88A;
  --sp-accent-soft: rgba(31, 168, 138, 0.12);
  --sp-accent-glow: rgba(31, 168, 138, 0.16);
  --sp-surface: linear-gradient(180deg, #F4FBFA 0%, #FFFFFF 45%, #F7FCFA 100%);
  background: var(--sp-surface);
}
.sp-detail--gastro {
  --sp-accent: #E07A2F;
  --sp-accent-soft: rgba(224, 122, 47, 0.12);
  --sp-accent-glow: rgba(224, 122, 47, 0.14);
  --sp-surface: linear-gradient(180deg, #FFF8F2 0%, #FFFFFF 48%, #FFF9F4 100%);
  background: var(--sp-surface);
}
.sp-detail--neuro {
  --sp-accent: #4F6FE8;
  --sp-accent-soft: rgba(79, 111, 232, 0.12);
  --sp-accent-glow: rgba(79, 111, 232, 0.15);
  --sp-surface: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 48%, #F7F9FF 100%);
  background: var(--sp-surface);
}
.sp-detail__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .88fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.sp-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}
.sp-detail__badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sp-accent-soft);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--sp-accent) 16%, transparent);
}
.sp-detail__badge-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.sp-detail__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-accent);
}
.sp-detail__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.1vw, 2.55rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.sp-detail__tagline {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 600;
  color: #3D5A80;
  margin: 0 0 14px;
}
.sp-detail__lead {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: var(--leading-relaxed);
  margin: 0 0 20px;
  max-width: 52ch;
}
.sp-detail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.sp-detail__chips span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--sp-accent);
  background: var(--sp-accent-soft);
  border: 1px solid color-mix(in srgb, var(--sp-accent) 18%, transparent);
  padding: 7px 12px;
  border-radius: 999px;
}
.sp-detail__priority {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--sp-accent) 88%, #061C4A) 0%, #0A275F 58%, #061C4A 100%);
  color: #fff;
  box-shadow: 0 18px 40px var(--sp-accent-glow);
  max-width: 520px;
}
.sp-detail__priority-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  color: var(--light-gold);
  flex-shrink: 0;
}
.sp-detail__priority-icon svg { width: 20px; height: 20px; }
.sp-detail__priority-title {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.sp-detail__priority-title span { color: var(--light-gold); }
.sp-detail__priority-text {
  margin: 0;
  font-size: .88rem;
  color: rgba(232, 240, 250, .78);
  line-height: 1.45;
}

.sp-doctor {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 46, 120, .08);
  border-radius: 22px;
  padding: 24px 22px 22px;
  box-shadow:
    0 18px 40px -20px var(--sp-accent-glow),
    0 8px 22px rgba(11, 46, 120, .06);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.sp-doctor::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sp-accent), var(--gold));
}
.sp-doctor__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.sp-doctor__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--sp-accent), color-mix(in srgb, var(--sp-accent) 55%, #0B2E78));
  box-shadow: 0 10px 20px -10px var(--sp-accent-glow);
}
.sp-doctor__label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.sp-doctor__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #8B1E2D;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.sp-doctor__qual {
  margin: 0 0 4px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}
.sp-doctor__qual--sub {
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 10px;
}
.sp-doctor__role {
  display: inline-flex;
  margin: 10px 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1F7A4D, #2F9A63);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
}
.sp-doctor__inst {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 500;
}
.sp-doctor__inst svg {
  width: 18px;
  height: 18px;
  color: var(--sp-accent);
  flex-shrink: 0;
}
.sp-doctor__schedule {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, #F5F8FC, #EEF5FF);
  border: 1px solid rgba(11, 46, 120, .08);
  margin-bottom: 18px;
}
.sp-doctor__schedule-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sp-accent-soft);
  color: var(--sp-accent);
  flex-shrink: 0;
}
.sp-doctor__schedule-icon svg { width: 18px; height: 18px; }
.sp-doctor__schedule-label {
  margin: 0 0 2px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.sp-doctor__schedule-day {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: #8B1E2D;
}
.sp-doctor__schedule-time {
  display: inline-flex;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
}
.sp-doctor__cta {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
}
.sp-doctor__cta svg { width: 16px; height: 16px; }

.sp-services {
  margin-top: 4px;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(11, 46, 120, 0.08);
  box-shadow:
    0 14px 32px -22px rgba(11, 46, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.sp-services__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sp-services__title::before {
  content: "";
  width: 28px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), color-mix(in srgb, var(--sp-accent) 55%, var(--gold)));
  flex-shrink: 0;
}
.sp-services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sp-services__grid--five {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sp-services__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(11, 46, 120, 0.07);
  box-shadow: 0 6px 16px -12px rgba(11, 46, 120, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.sp-services__item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--sp-accent) 30%, transparent);
  box-shadow: 0 14px 26px -16px var(--sp-accent-glow);
}
.sp-services__item strong {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.sp-services__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 16px -10px rgba(11, 46, 120, 0.35);
}
.sp-services__icon svg { width: 20px; height: 20px; }
.sp-services__icon--teal { background: linear-gradient(145deg, #2BB8A6, #1A8F82); }
.sp-services__icon--purple { background: linear-gradient(145deg, #8B6BD6, #6A4CB8); }
.sp-services__icon--orange { background: linear-gradient(145deg, #F0A04B, #D98324); }
.sp-services__icon--green { background: linear-gradient(145deg, #3FAE6C, #2E8B57); }
.sp-services__icon--blue { background: linear-gradient(145deg, #4A8FE0, #2F6FC0); }
.sp-services__icon--red { background: linear-gradient(145deg, #E05A5A, #C03939); }
.sp-services__icon--navy { background: linear-gradient(145deg, #1A4FA0, #0B2E78); }

.sp-when {
  margin-top: clamp(18px, 2.5vw, 26px);
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(224, 122, 47, 0.2), transparent 55%),
    linear-gradient(145deg, #0A275F 0%, #08245F 55%, #061C4A 100%);
  box-shadow: 0 18px 40px rgba(11, 46, 120, .16);
}
.sp-when__title {
  margin: 0 0 14px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--light-gold);
}
.sp-when__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sp-when__grid li {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.22s ease, background 0.22s ease;
}
.sp-when__grid li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}
.sp-when__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  flex-shrink: 0;
}
.sp-when__icon svg { width: 18px; height: 18px; }
.sp-when__grid strong {
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .94);
  line-height: 1.35;
}

.sp-why {
  padding: clamp(64px, 8vw, 100px) 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(11, 46, 120, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(200, 146, 32, 0.1), transparent 55%),
    linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 50%, #F5F8FC 100%);
}
.sp-why__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.sp-why__eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(11, 46, 120, 0.08), rgba(200, 146, 32, 0.14));
}
.sp-why__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.sp-why__subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.sp-why__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.sp-why__card {
  --why-accent: #0B2E78;
  --why-soft: rgba(11, 46, 120, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 46, 120, 0.07);
  box-shadow: 0 16px 36px -20px rgba(11, 46, 120, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.sp-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -18px color-mix(in srgb, var(--why-accent) 35%, transparent);
}
.sp-why__card--blue { --why-accent: #2F6FE0; --why-soft: rgba(47, 111, 224, 0.12); }
.sp-why__card--gold { --why-accent: #C89220; --why-soft: rgba(200, 146, 32, 0.14); }
.sp-why__card--teal { --why-accent: #1FA88A; --why-soft: rgba(31, 168, 138, 0.12); }
.sp-why__card--coral { --why-accent: #E05A5A; --why-soft: rgba(224, 90, 90, 0.12); }
.sp-why__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--why-soft);
  color: var(--why-accent);
}
.sp-why__icon svg { width: 24px; height: 24px; }
.sp-why__card strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.sp-why__card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .sp-services__grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .sp-detail__intro { grid-template-columns: 1fr; }
  .sp-services__grid,
  .sp-services__grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-when__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 640px) {
  .sp-detail { padding: 56px 0; }
  .sp-services {
    padding: 14px;
    border-radius: 16px;
  }
  .sp-services__grid,
  .sp-services__grid--five { grid-template-columns: 1fr; gap: 8px; }
  .sp-services__item { padding: 10px 12px; gap: 10px; }
  .sp-services__icon { width: 36px; height: 36px; border-radius: 10px; }
  .sp-services__icon svg { width: 18px; height: 18px; }
  .sp-services__item strong { font-size: 0.84rem; }
  .sp-when { padding: 14px; border-radius: 16px; }
  .sp-when__grid { grid-template-columns: 1fr; gap: 8px; }
  .sp-why__grid { grid-template-columns: 1fr; }
  .sp-detail__priority { max-width: none; }
  .sp-doctor__top { align-items: flex-start; }
}
@media (min-width: 1101px) {
  .sp-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sp-services__grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .sp-services__item,
  .sp-when__grid li,
  .sp-why__card {
    transition: none;
  }
}

/* ========================================================
   DIAGNOSTICS PAGE
   ======================================================== */
.page-diagnostics .dx-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(180, 214, 245, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 88% 12%, rgba(200, 146, 32, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #F8FCFF 0%, #EEF6FC 48%, #F7FAFD 100%);
  padding: clamp(36px, 5vw, 64px) 0 0;
}

.dx-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dx-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.dx-hero__blob--1 {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  top: -12%;
  right: -6%;
  background:
    radial-gradient(circle at 40% 40%, rgba(160, 205, 240, 0.55) 0%, rgba(160, 205, 240, 0.12) 55%, transparent 72%);
}

.dx-hero__blob--2 {
  width: min(380px, 42vw);
  height: min(380px, 42vw);
  bottom: 8%;
  left: -8%;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 46, 120, 0.08) 0%, transparent 70%);
}

.dx-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 44px);
}

.dx-hero__copy {
  max-width: 560px;
}

.dx-hero__eyebrow {
  margin: 0 0 14px;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

.dx-hero__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--navy);
}

.dx-hero__subtitle {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: #1A3A7A;
  line-height: 1.4;
}

.dx-hero__lead {
  margin: 0 0 28px;
  max-width: 46ch;
  font-size: var(--text-md);
  color: var(--muted);
  line-height: var(--leading-relaxed);
}

.dx-hero__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dx-hero__features li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.dx-hero__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 46, 120, 0.07);
  border: 1px solid rgba(11, 46, 120, 0.08);
  color: var(--navy);
}

.dx-hero__feature-icon svg {
  width: 20px;
  height: 20px;
}

.dx-hero__features li:nth-child(even) .dx-hero__feature-icon {
  background: rgba(200, 146, 32, 0.1);
  border-color: rgba(200, 146, 32, 0.18);
  color: var(--gold);
}

.dx-hero__features strong {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.dx-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dx-hero__btn-primary {
  box-shadow: 0 10px 24px rgba(200, 146, 32, 0.28);
}

.dx-hero__btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(90, 150, 210, 0.55);
  color: var(--navy);
}

.dx-hero__btn-secondary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.dx-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dx-hero__media {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.05;
  border-radius: 46% 54% 48% 52% / 42% 48% 52% 58%;
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(11, 46, 120, 0.18),
    0 0 0 10px rgba(255, 255, 255, 0.55);
}

.dx-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.04);
}

.dx-hero__media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 48px 28px 26px;
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 36, 95, 0.78) 100%);
}

.dx-hero__strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(11, 46, 120, 0.06);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.dx-hero__strip-list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 40px);
}

.dx-hero__strip-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.dx-hero__strip-list span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 46, 120, 0.07);
  color: var(--navy);
  flex-shrink: 0;
}

.dx-hero__strip-list svg {
  width: 16px;
  height: 16px;
}

.dx-hero__strip-list strong {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* --- Services --- */
.dx-services {
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F5FAFE 40%, #F8FBFE 100%);
}

.dx-services__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.dx-services__eyebrow,
.dx-why__eyebrow,
.dx-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

.dx-services__eyebrow::before,
.dx-services__eyebrow::after,
.dx-process__eyebrow::before,
.dx-process__eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.dx-services__title,
.dx-why__title,
.dx-process__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: var(--tracking-tight);
}

.dx-services__intro {
  margin: 0 auto;
  max-width: 540px;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.dx-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dx-card {
  --dx-accent: #2F6FE0;
  --dx-soft: rgba(47, 111, 224, 0.14);
  --dx-media: linear-gradient(145deg, #D7E8FA 0%, #B8D4F0 100%);
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(11, 46, 120, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 28px rgba(11, 46, 120, 0.06);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.dx-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 46, 120, 0.12);
  box-shadow: 0 16px 36px rgba(11, 46, 120, 0.12);
}

.dx-card__media {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.dx-card__media-bg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55) 0%, transparent 45%),
    var(--dx-media);
}

.dx-card__media-bg::after {
  content: '';
  position: absolute;
  inset: 18% 22%;
  border-radius: 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.35) 0%, transparent 60%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 6px,
      rgba(11, 46, 120, 0.05) 6px,
      rgba(11, 46, 120, 0.05) 7px
    );
  opacity: 0.9;
}

.dx-card__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--dx-accent);
  color: #fff;
  box-shadow: 0 6px 14px rgba(11, 46, 120, 0.22);
  z-index: 1;
}

.dx-card__badge svg {
  width: 14px;
  height: 14px;
}

.dx-card__body {
  min-width: 0;
  padding-right: 4px;
}

.dx-card__title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.dx-card__desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.dx-card--teal { --dx-accent: #1FA88A; --dx-media: linear-gradient(145deg, #D4F3EC 0%, #9FD9C9 100%); }
.dx-card--blue { --dx-accent: #2F6FE0; --dx-media: linear-gradient(145deg, #D7E8FA 0%, #A8C8F0 100%); }
.dx-card--purple { --dx-accent: #7B5CDB; --dx-media: linear-gradient(145deg, #E8E0FA 0%, #C8B8F0 100%); }
.dx-card--orange { --dx-accent: #E07A2F; --dx-media: linear-gradient(145deg, #FBE4D4 0%, #F0C4A0 100%); }
.dx-card--green { --dx-accent: #2FA84F; --dx-media: linear-gradient(145deg, #D8F2DE 0%, #A8DCB4 100%); }
.dx-card--navy { --dx-accent: #0B2E78; --dx-media: linear-gradient(145deg, #D5DFF0 0%, #A8B8D8 100%); }
.dx-card--sky { --dx-accent: #3B82C4; --dx-media: linear-gradient(145deg, #D8ECF8 0%, #A8D0EC 100%); }
.dx-card--cyan { --dx-accent: #0EA5B0; --dx-media: linear-gradient(145deg, #D2F2F4 0%, #9DD8DE 100%); }
.dx-card--coral { --dx-accent: #E0455A; --dx-media: linear-gradient(145deg, #F8D8DE 0%, #EFB0BA 100%); }
.dx-card--indigo { --dx-accent: #4F46B8; --dx-media: linear-gradient(145deg, #DDDCF8 0%, #B4B2E8 100%); }
.dx-card--violet { --dx-accent: #8B5CF6; --dx-media: linear-gradient(145deg, #E8DFFA 0%, #C8B4F0 100%); }
.dx-card--amber { --dx-accent: #D97706; --dx-media: linear-gradient(145deg, #F8E8C8 0%, #ECC890 100%); }
.dx-card--mint { --dx-accent: #14B8A6; --dx-media: linear-gradient(145deg, #D2F4EF 0%, #9EDDD4 100%); }
.dx-card--rose { --dx-accent: #E11D74; --dx-media: linear-gradient(145deg, #F8D8E8 0%, #ECA8C8 100%); }

/* --- Why / Technology --- */
.dx-why {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
}

.dx-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.dx-why__visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(11, 46, 120, 0.14);
  min-height: 360px;
}

.dx-why__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.dx-why__visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 40px 24px 22px;
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 36, 95, 0.82) 100%);
}

.dx-why__copy {
  max-width: 560px;
}

.dx-why__lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.dx-why__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.dx-why__benefits li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
}

.dx-why__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 46, 120, 0.07);
  color: var(--navy);
  flex-shrink: 0;
}

.dx-why__icon svg {
  width: 20px;
  height: 20px;
}

.dx-why__benefits strong {
  display: block;
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.dx-why__benefits p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

/* --- Process --- */
.dx-process {
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    linear-gradient(180deg, #F5FAFE 0%, #F8FBFE 100%);
}

.dx-process__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.dx-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: none;
}

.dx-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 12px;
}

.dx-process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background:
    linear-gradient(90deg, rgba(11, 46, 120, 0.18), rgba(11, 46, 120, 0.06));
  border-radius: 2px;
  pointer-events: none;
}

.dx-process__step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 48px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(11, 46, 120, 0.2);
  border-right: 2px solid rgba(11, 46, 120, 0.2);
  transform: rotate(45deg);
  z-index: 1;
}

.dx-process__num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.dx-process__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(11, 46, 120, 0.08);
  box-shadow: 0 12px 28px rgba(11, 46, 120, 0.08);
  position: relative;
  z-index: 1;
}

.dx-process__icon svg {
  width: 28px;
  height: 28px;
}

.dx-process__step strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.dx-process__step p {
  margin: 0;
  max-width: 22ch;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

/* --- Booking CTA --- */
.dx-cta {
  padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px);
  background: #fff;
}

.dx-cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 40px);
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(200, 146, 32, 0.16) 0%, transparent 55%),
    linear-gradient(135deg, #0A275F 0%, #08245F 48%, #061C4A 100%);
  box-shadow: 0 22px 48px rgba(11, 46, 120, 0.22);
  color: #fff;
}

.dx-cta__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.dx-cta__copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 640px;
}

.dx-cta__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(200, 146, 32, 0.18);
  color: var(--light-gold);
  flex-shrink: 0;
}

.dx-cta__icon svg {
  width: 24px;
  height: 24px;
}

.dx-cta__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: var(--tracking-tight);
}

.dx-cta__desc {
  margin: 0;
  font-size: var(--text-md);
  color: rgba(232, 240, 250, 0.78);
  line-height: 1.5;
}

.dx-cta__btn {
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(200, 146, 32, 0.32);
}

.dx-cta__perks {
  list-style: none;
  margin: 0 0 20px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.dx-cta__perks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(232, 240, 250, 0.9);
}

.dx-cta__perks span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--light-gold);
  flex-shrink: 0;
}

.dx-cta__perks svg {
  width: 16px;
  height: 16px;
}

.dx-cta__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dx-cta__contact {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition), border-color var(--transition);
  min-width: 160px;
}

.dx-cta__contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 196, 106, 0.35);
}

.dx-cta__contact strong {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-gold);
}

.dx-cta__contact span {
  font-size: 0.95rem;
  color: #fff;
}

/* --- Diagnostics responsive --- */
@media (max-width: 1100px) {
  .dx-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .dx-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dx-hero__copy {
    max-width: none;
    text-align: center;
  }

  .dx-hero__features {
    justify-items: center;
  }

  .dx-hero__features li {
    align-items: center;
    text-align: center;
  }

  .dx-hero__ctas {
    justify-content: center;
  }

  .dx-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .dx-hero__media {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .dx-hero__strip-list {
    justify-content: center;
  }

  .dx-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dx-why__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dx-why__copy {
    max-width: none;
  }

  .dx-why__visual {
    min-height: 300px;
  }

  .dx-why__visual img {
    min-height: 300px;
  }

  .dx-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .dx-process__step:not(:last-child)::after,
  .dx-process__step:not(:last-child)::before {
    display: none;
  }

  .dx-cta__main {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-diagnostics .dx-hero {
    padding-top: 28px;
  }

  .dx-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .dx-hero__media {
    border-radius: 40% 60% 45% 55% / 45% 40% 60% 55%;
    aspect-ratio: 1 / 1;
  }

  .dx-hero__strip-list {
    gap: 14px 20px;
  }

  .dx-services__grid {
    grid-template-columns: 1fr;
  }

  .dx-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .dx-card__media {
    width: 76px;
    height: 76px;
  }

  .dx-why__benefits {
    grid-template-columns: 1fr;
  }

  .dx-process__steps {
    grid-template-columns: 1fr;
  }

  .dx-cta__panel {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .dx-cta__copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .dx-cta__perks {
    flex-direction: column;
    gap: 12px;
  }

  .dx-cta__contacts {
    flex-direction: column;
  }

  .dx-cta__contact {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .dx-hero__features {
    grid-template-columns: 1fr;
  }

  .dx-hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .dx-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================================
   CONTACT PAGE
   ======================================================== */
.page-contact .about-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep-navy);
  color: #fff;
}

.page-contact .about-hero__brand {
  color: #fff;
}

.page-contact .about-hero__title {
  color: var(--light-gold);
}

/* --- Contact main --- */
.contact-main {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F5FAFE 42%, #F8FBFE 100%);
}

.contact-main__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-main__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.contact-main__orb--1 {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  top: -12%;
  left: -10%;
  background: radial-gradient(circle, rgba(11, 46, 120, 0.07) 0%, transparent 68%);
}

.contact-main__orb--2 {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  bottom: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(200, 146, 32, 0.08) 0%, transparent 70%);
}

.contact-main > .container {
  position: relative;
  z-index: 1;
}

.contact-main__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.contact-main__eyebrow,
.contact-map__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

.contact-main__eyebrow::before,
.contact-main__eyebrow::after,
.contact-map__eyebrow::before,
.contact-map__eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.contact-main__title,
.contact-map__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: var(--tracking-tight);
}

.contact-main__subtitle,
.contact-map__subtitle {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
}

.contact-aside {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(200, 146, 32, 0.16) 0%, transparent 55%),
    linear-gradient(160deg, #0A275F 0%, #08245F 48%, #061C4A 100%);
  color: #fff;
  border-radius: 24px;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 22px 48px rgba(11, 46, 120, 0.18);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-aside::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -60px;
  top: -70px;
  background: radial-gradient(circle, rgba(232, 196, 106, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.contact-aside__intro {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.contact-aside__eyebrow {
  margin: 0 0 8px;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--light-gold);
}

.contact-aside__heading {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.contact-aside__text {
  margin: 0;
  color: rgba(232, 240, 250, 0.78);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.contact-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

a.contact-info__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 196, 106, 0.35);
  transform: translateY(-2px);
}

.contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-gold);
}

.contact-info__icon--wa {
  background: rgba(37, 211, 102, 0.18);
  color: #25D366;
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
}

.contact-info__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-info__copy strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.contact-info__copy span {
  font-size: 0.88rem;
  color: rgba(232, 240, 250, 0.78);
  line-height: 1.45;
}

.contact-aside__note {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(200, 146, 32, 0.12);
  border: 1px solid rgba(232, 196, 106, 0.22);
  margin-top: auto;
}

.contact-aside__note-icon {
  width: 28px;
  height: 28px;
  color: var(--light-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-aside__note-icon svg {
  width: 22px;
  height: 22px;
}

.contact-aside__note p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 245, 220, 0.9);
  line-height: 1.5;
}

.contact-form-wrap {
  min-width: 0;
  height: 100%;
}

.contact-form {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(11, 46, 120, 0.07);
  border-radius: 24px;
  padding: clamp(26px, 3.2vw, 40px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 14px 40px rgba(11, 46, 120, 0.07);
  display: flex;
  flex-direction: column;
}

.contact-form__head {
  margin-bottom: 26px;
}

.contact-form__eyebrow {
  margin: 0 0 8px;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-form__lead {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.contact-form__lead strong {
  color: var(--navy);
  font-weight: 600;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-bottom: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-field__optional {
  font-weight: 500;
  color: var(--muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #F8FBFE;
  border: 1px solid rgba(11, 46, 120, 0.12);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.55;
}

.contact-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B2E78' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(11, 46, 120, 0.22);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  background: #fff;
  border-color: rgba(11, 46, 120, 0.45);
  box-shadow: 0 0 0 3px rgba(11, 46, 120, 0.1);
}

.contact-field input.is-invalid,
.contact-field select.is-invalid,
.contact-field textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.contact-form__hint {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: #c0392b;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  font-size: 1rem;
  margin-top: auto;
  box-shadow: 0 10px 24px rgba(200, 146, 32, 0.22);
}

.contact-form__submit svg {
  width: 20px;
  height: 20px;
}

/* --- Map --- */
.contact-map {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
}

.contact-map__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.contact-map__panel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 46, 120, 0.07);
  box-shadow: 0 18px 44px rgba(11, 46, 120, 0.08);
  background: #fff;
}

.contact-map__frame {
  overflow: hidden;
  background: #E8EDF5;
  aspect-ratio: 21 / 9;
  min-height: 280px;
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map__actions {
  display: flex;
  justify-content: center;
  padding: 20px 18px;
  background:
    linear-gradient(180deg, #F8FBFE 0%, #FFFFFF 100%);
  border-top: 1px solid rgba(11, 46, 120, 0.06);
}

/* --- Contact responsive --- */
@media (max-width: 991px) {
  .page-contact .about-hero {
    min-height: min(58vh, 520px);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-map__frame {
    aspect-ratio: 16 / 10;
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .page-contact .about-hero {
    min-height: min(52vh, 440px);
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .contact-aside {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .contact-main__eyebrow::before,
  .contact-main__eyebrow::after,
  .contact-map__eyebrow::before,
  .contact-map__eyebrow::after {
    width: 24px;
  }

  .contact-map__panel {
    border-radius: 18px;
  }

  .contact-map__frame {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }

  .contact-form__submit {
    font-size: 0.95rem;
  }
}

/* ========================================================
   PAGE HEROES — mobile inset + CTA parity with home hero
   (placed last so it wins over page-specific hero rules)
   ======================================================== */
@media (max-width: 767px) {
  .about-hero,
  .page-about .about-hero,
  .page-specialities .about-hero,
  .page-diagnostics .about-hero,
  .page-contact .about-hero {
    margin: 12px var(--page-gutter) 8px;
    min-height: min(52vh, 400px);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(11, 46, 120, .14);
  }
  .about-hero__media {
    border-radius: inherit;
  }
  .about-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
  }
  .about-hero__inner {
    padding: 28px 18px 24px;
  }
  .about-hero__ctas {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .about-hero__ctas .btn {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 18px;
    font-size: .9rem;
    border-radius: 12px;
    justify-content: center;
  }
  .about-hero__ctas .btn-primary {
    box-shadow: 0 10px 24px rgba(200, 146, 32, .45);
  }
  .about-hero__btn-light {
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .85);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .about-hero__btn-light:hover {
    background: rgba(255, 255, 255, .28);
    border-color: #ffffff;
    color: #ffffff;
  }
}
@media (max-width: 480px) {
  .about-hero,
  .page-about .about-hero,
  .page-specialities .about-hero,
  .page-diagnostics .about-hero,
  .page-contact .about-hero {
    margin: 10px var(--page-gutter) 6px;
    min-height: min(48vh, 360px);
    border-radius: 18px;
  }
  .about-hero__inner {
    padding: 24px 16px 20px;
  }
  .about-hero__ctas .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: .9rem;
    border-radius: 12px;
  }
}

/* ========================================================
   FLOATING CALL + WHATSAPP ACTIONS
   ======================================================== */
.float-actions {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.float-actions__btn {
  pointer-events: auto;
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  transition:
    transform .35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .35s ease,
    filter .25s ease;
}
.float-actions__btn svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}
.float-actions__btn--wa {
  background: linear-gradient(145deg, #2FE073 0%, #1FBE5B 48%, #18A34A 100%);
  box-shadow:
    0 10px 24px rgba(25, 180, 85, .38),
    0 2px 6px rgba(8, 36, 95, .12),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}
.float-actions__btn--call {
  background: linear-gradient(145deg, #1A4FA3 0%, #0B2E78 52%, #08245F 100%);
  box-shadow:
    0 10px 24px rgba(11, 46, 120, .36),
    0 2px 6px rgba(8, 36, 95, .14),
    inset 0 1px 0 rgba(255, 255, 255, .2);
}
.float-actions__btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  opacity: .7;
  pointer-events: none;
}
.float-actions__btn--wa::after,
.float-actions__btn--call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, .34), transparent 46%);
  pointer-events: none;
}
.float-actions__btn:hover,
.float-actions__btn:focus-visible {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.04);
}
.float-actions__btn--wa:hover,
.float-actions__btn--wa:focus-visible {
  box-shadow:
    0 14px 30px rgba(25, 180, 85, .48),
    0 4px 10px rgba(8, 36, 95, .12),
    inset 0 1px 0 rgba(255, 255, 255, .34);
}
.float-actions__btn--call:hover,
.float-actions__btn--call:focus-visible {
  box-shadow:
    0 14px 30px rgba(11, 46, 120, .46),
    0 4px 10px rgba(8, 36, 95, .16),
    inset 0 1px 0 rgba(255, 255, 255, .26);
}
.float-actions__btn:focus-visible {
  outline: 3px solid rgba(200, 146, 32, .55);
  outline-offset: 3px;
}
.float-actions__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
  background: rgba(8, 36, 95, .92);
  box-shadow: 0 8px 20px rgba(8, 36, 95, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.float-actions__tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(8, 36, 95, .92);
}
.float-actions__btn:hover .float-actions__tooltip,
.float-actions__btn:focus-visible .float-actions__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 767px) {
  .float-actions {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }
  .float-actions__btn {
    width: 52px;
    height: 52px;
  }
  .float-actions__btn svg {
    width: 22px;
    height: 22px;
  }
  .float-actions__tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-actions__btn,
  .float-actions__tooltip {
    transition: none !important;
  }
  .float-actions__btn:hover,
  .float-actions__btn:focus-visible {
    transform: none;
  }
}
