/* ============================================================
   SUVIRA HOSPITAL — HOMEPAGE
   Theme: Teal primary · Navy supporting · Gold sparingly
   Fonts: Poppins (display + body) + Roboto (utility)
   Sizes: pixel-based, professional readable
============================================================ */

:root {
  /* TEAL — primary brand */
  --teal-50: #f0faf8;
  --teal-100: #d8f2ee;
  --teal-200: #b3e6dd;
  --teal-300: #7dd3c4;
  --teal-400: #1849a1;
  --teal-500: #1849a1;
  --teal-600: #1849a1;
  --teal-700: #1849a1;
  --teal-800: #0f5852;
  --teal-900: #0a3d39;
  --teal-bg-light: #ecf7f5;

  /* NAVY — supporting */
  --navy-950: #050f30;
  --navy-900: #0b1a42;
  --navy-800: #14285c;
  --navy-700: #1e3a7e;
  --navy-600: #2c4a91;
  --navy-50: #f3f5fb;
  /* very light navy-tinted bg */
  --navy-100: #e6ebf6;
  /* soft navy bg */
  --navy-150: #dde3f0;
  /* slightly stronger navy bg */
  --navy-bg-tint: #eef2fa;
  /* a balanced navy-light section bg */
  --cream-50: #fbf7ee;
  /* warm off-white */
  --cream-100: #f5eedb;
  /* slightly stronger cream */

  /* GOLD — sparing accent only */
  --gold-300: #e8bf5e;
  --gold-400: #d9a441;
  --gold-500: #c89a3f;
  --gold-600: #a37820;

  /* Neutrals */
  --ink-900: #0e1729;
  --ink-800: #1f2a47;
  --ink-700: #3d465e;
  --ink-600: #5a6478;
  --ink-500: #7a8094;
  --ink-400: #9aa0b4;
  --ink-300: #c3c8d6;
  --ink-200: #dee2ec;
  --ink-100: #eef0f6;
  --ink-50: #f6f8fc;

  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6f9fb;

  /* Fonts */
  --f-display: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale (px) */
  --fs-h1: 44px;
  --fs-h2: 34px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-eyebrow: 12px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-tiny: 11px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 26, 66, 0.04);
  --shadow-sm: 0 2px 8px rgba(11, 26, 66, 0.06);
  --shadow-md: 0 6px 18px rgba(11, 26, 66, 0.08);
  --shadow-lg: 0 14px 32px rgba(11, 26, 66, 0.10);
  --shadow-xl: 0 22px 50px rgba(11, 26, 66, 0.14);
  --shadow-teal: 0 8px 22px rgba(38, 166, 154, 0.28);

  /* Radii (px) */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  --max: 1290px;

  --t-fast: 0.18s ease;
  --t-med: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}

p {
  margin: 0 0 12px;
}

em,
.italic {
  font-style: normal;
}

/* avoid italic-everything */
blockquote {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.hide-sm {
  display: inline;
}

.hide-md {
  display: inline;
}

/* ============================================================
   HEADINGS (semantic, symmetric across page)
============================================================ */
.h-display {
  font-family: var(--f-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy-900);
  letter-spacing: -0.4px;
}

.h-display--light {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: var(--r-pill);
  margin-bottom: 10px;
  font-family: var(--f-display);
}

.eyebrow--dark {
  background: rgba(38, 166, 154, 0.15);
  color: var(--teal-300);
}

.eyebrow .fa-google {
  color: #4285F4;
  font-size: 14px;
}

.accent-teal {
  color: #1aafae;
  font-weight: 700;
}

.accent-teal-light {
  color: var(--teal-300);
  font-weight: 700;
}

.lede {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.65;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section__head--center {
  display: block;
  text-align: center;
  margin: 0 auto 40px;
}

.section__head-r p {
  font-size: var(--fs-body);
  color: var(--ink-600);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 460px;
}

.section__desc {
  font-size: 15px;
  color: #000000;
  line-height: 1.65;
  max-width: 640px;
  margin: 14px auto 0;
}

.section__desc--light {
  color: rgba(255, 255, 255, 0.78);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 2px solid var(--teal-500);
  padding-bottom: 3px;
  transition: gap var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.link-arrow:hover {
  gap: 12px;
  color: var(--teal-700);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(38, 166, 154, 0.35);
}

.btn--outline-dark {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn--ghost-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn--lg {
  padding: 14px 26px;
  font-size: 14.5px;
}

.btn--block {
  width: 100%;
}

/* ============================================================
   TOPBAR
============================================================ */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  padding: 8px 0;
  font-family: var(--f-body);
  font-weight: 400;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__left span,
.topbar__right a,
.topbar__right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__right a {
  transition: color var(--t-fast);
}

.topbar__right a:hover {
  color: var(--teal-300);
}

.topbar__emerg {
  background: #4abfae;
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 12px;
}

.topbar__emerg a {
  color: var(--white);
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  transition: box-shadow var(--t-med), border-color var(--t-med);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 2px;
}

.header__nav a {
  position: relative;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-md);
  transition: color var(--t-fast);
  font-family: var(--f-display);
}

.header__nav a:hover {
  color: var(--teal-600);
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-fast);
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: var(--shadow-teal);
}

.header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__phone-text small {
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.header__phone-text strong {
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 600;
  font-family: var(--f-display);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO — light teal bg, balanced layout, 2-line heading
============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #f5fbfa 100%);
  padding: 70px 0 80px;
  overflow: hidden;
}

.hero__decor {
  position: absolute;
  pointer-events: none;
}

.hero__decor--ring {
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px solid rgba(38, 166, 154, 0.15);
}

.hero__decor--dots {
  bottom: 50px;
  left: 4%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(38, 166, 154, 0.25) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  opacity: 0.7;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  z-index: 1;
}

.hero__lead {
  max-width: 580px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  background: var(--white);
  border: 1px solid var(--teal-200);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}

.hero__eyebrow i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}

.hero__eyebrow span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-family: var(--f-display);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.15;
  color: var(--navy-900);
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.hero__title span {
  color: #1aafae;
  font-weight: 700;
  margin-top: 2px;
}

.hero__lede {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 520px;
}

.hero__lede em {
  color: var(--teal-700);
  font-weight: 600;
  font-style: italic;
}

.hero__cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #c0c0c0;
  border-radius: 10px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 11px 22px;
}

.hero__trust-item strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.hero__trust-item strong i {
  color: var(--gold-400);
  font-size: 14px;
}

.hero__trust-item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-600);
  margin-top: 5px;
  letter-spacing: 0.2px;
}

.hero__trust-divider {
  width: 1px;
  height: 32px;
  background: var(--teal-200);
}

/* RIGHT — single clean primary image with floating chips */
.hero__media {
  position: relative;
  height: 460px;
}

.hero__photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy-900);
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo-tag {
  position: absolute;
  bottom: 1px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-900);
  font-family: var(--f-display);
  left: 0;
  right: 0;
  width: max-content;
  margin: auto;
}

.hero__photo-tag i {
  color: var(--teal-600);
  font-size: 12px;
}

.hero__photo-tag a {
  gap: 10px;
  display: flex;
  align-items: center;
}

.hero__chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 1px solid rgba(38, 166, 154, 0.12);
}

.hero__chip i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.hero__chip strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.hero__chip em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero__chip--nabh {
  top: 24px;
  left: -18px;
}

.hero__chip--nabh i {
  background: var(--navy-900);
  color: var(--gold-300);
}

.hero__chip--er {
  bottom: 70px;
  right: -18px;
}

/* --- RIGHT SIDE: SCROLLING ENGINE --- */
.hero__media {
  position: relative;
  height: 500px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  /* var(--r-2xl) */
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  /* var(--shadow-xl) */
  display: flex;
  gap: 15px;
  padding: 15px;
  z-index: 1;
}

/* Gradient Overlays (Top & Bottom) */
.hero__media::before,
.hero__media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  /* Gradient ki depth */
  z-index: 5;
  pointer-events: none;
}

.hero__media::before {
  top: 0;
  background: linear-gradient(to bottom, #f5fbfa 0%, rgba(245, 251, 250, 0) 100%);
}

.hero__media::after {
  bottom: 0;
  background: linear-gradient(to top, #f5fbfa 0%, rgba(245, 251, 250, 0) 100%);
}

/* Scroll Columns */
.scroll-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.scroll-track {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Jhatka hatane ke liye linear timing use karein */
  animation: scrollLoop 20s linear infinite;
}

/* Dusre column ki speed thodi alag rakhein natural look ke liye */
.col-2 .scroll-track {
  animation: scrollLoop 25s linear infinite;
}

.scroll-track img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  background: #eee;
  flex-shrink: 0;
  object-position: top;
}

/* Keyframes: Main Logic for Seamless Loop */
@keyframes scrollLoop {
  0% {
    transform: translateY(0);
  }

  100% {
    /* Kyunki humne images duplicate ki hain, hum sirf aadhe track tak scroll karenge 
       fir wo automatically 0 par reset hoga bina kisi jhatke ke */
    transform: translateY(calc(-50% - 7.5px));
    /* 7.5px is half of the gap (15px) */
  }
}

/* Hover par pause karne ke liye (Optional par acha lagta hai) */
.hero__media:hover .scroll-track {
  animation-play-state: paused;
}

.hero__photo-tag {
  z-index: 10;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   TICKER — navy strip with teal top border
============================================================ */
.ticker {
  background: var(--navy-900);
  color: var(--white);
  padding: 16px 0;
  border-top: 3px solid var(--teal-500);
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-300);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--f-display);
}

.ticker__label i {
  font-size: 13px;
}

.ticker__track {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.ticker__track img {
  width: 100px;
}

.ticker {
  background: #0c2a5b;
  padding: 15px 0;
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker__label {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker__wrapper {
  overflow: hidden;
  flex: 1;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scrollTicker 20s linear infinite;
}

/* Hover pe stop */
.ticker__wrapper:hover .ticker__track {
  animation-play-state: paused;
}

/* Images fix */
.ticker__track img {
  height: 40px;
  /* same height sabka */
  width: auto;
  /* aspect ratio maintain */
  object-fit: contain;
  filter: brightness(1);
  /* optional */
  border-radius: 4px;
}

/* Animation */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker__group {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  padding-right: 36px;
}

.ticker__group span {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--f-display);
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--white);
  position: relative;
}

.about .about__visual {
  position: sticky;
  top: 100px;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 4% 12%, rgba(38, 166, 154, 0.07), transparent 30%),
    radial-gradient(circle at 96% 88%, rgba(11, 26, 66, 0.05), transparent 35%);
  pointer-events: none;
}

.about>.container {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__visual {
  position: relative;
}

.about__photo {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 3.7;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 26, 66, 0.45) 100%);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about__plaque {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--teal-500);
  z-index: 2;
}

.about__plaque em {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
}

.about__plaque span {
  font-size: 11px;
  color: var(--ink-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-family: var(--f-display);
}

.about__sticker {
  position: absolute;
  top: -10px;
  right: -16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--navy-950);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
  z-index: 3;
  font-family: var(--f-display);
}

.about__sticker i {
  font-size: 16px;
  margin-bottom: 2px;
}

.about__sticker strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.about__sticker span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about__body p {
  font-size: var(--fs-body);
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about__body strong {
  color: var(--navy-900);
  font-weight: 600;
}

.about__pillars {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__pillars li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-md);
  position: relative;
  cursor: default;
  overflow: hidden;
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  opacity: 0;
  transform: translateX(-12px);
  animation: aboutPillarIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.about__pillars li:nth-child(1) {
  animation-delay: 0.1s;
}

.about__pillars li:nth-child(2) {
  animation-delay: 0.25s;
}

.about__pillars li:nth-child(3) {
  animation-delay: 0.4s;
}

.about__pillars li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--teal-500);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform var(--t-med);
}

.about__pillars li:hover {
  background: var(--white);
  transform: translateX(6px);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
}

.about__pillars li:hover::before {
  transform: scaleY(1);
}

.about__pillars li:hover .about__pillar-num {
  color: var(--teal-700);
  transform: scale(1.15);
}

@keyframes aboutPillarIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about__pillar-num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-600);
  line-height: 1;
  min-width: 44px;
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}

.about__pillars strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
  font-family: var(--f-display);
}

.about__pillars span {
  display: block;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.55;
}

/* ============================================================
   STATS — teal strip
============================================================ */
.stats {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(38, 166, 154, 0.30), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(38, 166, 154, 0.18), transparent 45%);
  pointer-events: none;
}

.stats__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
}

.stats__head .eyebrow {
  background: rgba(38, 166, 154, 0.20);
  color: var(--teal-300);
  border: 1px solid rgba(38, 166, 154, 0.4);
  margin-bottom: 12px;
}

.stats__head h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.stats__head h3 em {
  color: var(--teal-300);
  font-style: italic;
  font-weight: 700;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stats__item {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-med), background var(--t-med);
}

.stats__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--teal-400);
  transition: width var(--t-med);
}

.stats__item:hover {
  border-color: rgba(38, 166, 154, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.stats__item:hover::before {
  width: 100%;
}

.stats__item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.stats__item strong span {
  font-size: 22px;
  opacity: 0.85;
}

.stats__item strong i {
  color: var(--gold-300);
  font-size: 18px;
}

.stats__item>span {
  font-size: 11.5px;
  font-weight: 600;
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-family: var(--f-display);
}

/* ============================================================
/* ============================================================
   DEPARTMENTS — interactive expanding image panels
============================================================ */
.departments {
  background:
    linear-gradient(180deg, #f5fbfa 0%, var(--teal-bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.departments::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.10), transparent 70%);
  pointer-events: none;
}

.departments::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 40, 92, 0.08), transparent 70%);
  pointer-events: none;
}

.departments>.container {
  position: relative;
  z-index: 1;
}

.dept-panels {
  display: flex;
  gap: 10px;
  height: 360px;
  margin-bottom: 10px;
  align-items: stretch;
}

.dept-panels--row2 {
  margin-bottom: 36px;
}

/* Each panel — uses --panel-img CSS var to set the bg image */
.dept-panel {
  position: relative;
  flex: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  background-image: var(--panel-img);
  background-size: cover;
  background-position: center;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--t-med);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(11, 26, 66, 0.10);
  isolation: isolate;
}

/* When .is-active or hovered, expand to take more space */
.dept-panels:hover .dept-panel {
  flex: 1;
}

.dept-panels .dept-panel.is-active,
.dept-panels:hover .dept-panel:hover {
  flex: 3;
  box-shadow: 0 18px 38px rgba(11, 26, 66, 0.20);
}

.dept-panels:hover .dept-panel.is-active:not(:hover) {
  flex: 1;
}

/* Overlay gradient — darker on inactive panels, lighter on active */
.dept-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 66, 0.50) 0%, rgba(11, 26, 66, 0.85) 100%);
  transition: opacity var(--t-med), background var(--t-med);
  z-index: 1;
}

.dept-panel.is-active .dept-panel__overlay,
.dept-panel:hover .dept-panel__overlay {
  background: linear-gradient(180deg, rgb(11 26 66 / 0%) 50%, rgba(11, 26, 66, 0.92) 100%);
}

/* Icon — visible always, sits at the top */
.dept-panel__icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 17px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform var(--t-med);
}

.dept-panel:hover .dept-panel__icon,
.dept-panel.is-active .dept-panel__icon {
  transform: scale(1.08);
}

.dept-panel--alert .dept-panel__icon {
  color: #c42020;
}

/* Content — bottom alignment, expands when active */
.dept-panel__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
}

.dept-panel__pill {
  display: inline-block;
  padding: 3px 10px;
  background: #ef4b4b;
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dept-panel__name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
  /* Inactive panels: vertical-rotated narrow display */
  transform-origin: left bottom;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), font-size var(--t-med);
}

.dept-panel__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0 0 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s 0.1s ease, margin 0.4s ease;
}

.dept-panel__cta {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-300);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s 0.15s ease;
}

.dept-panel.is-active .dept-panel__name,
.dept-panel:hover .dept-panel__name {
  font-size: 22px;
}

.dept-panel.is-active .dept-panel__sub,
.dept-panel:hover .dept-panel__sub {
  max-height: 60px;
  opacity: 1;
  margin-bottom: 12px;
}

.dept-panel.is-active .dept-panel__cta,
.dept-panel:hover .dept-panel__cta {
  max-height: 30px;
  opacity: 1;
}

.dept-panel.is-active .dept-panel__cta i,
.dept-panel:hover .dept-panel__cta i {
  transition: transform var(--t-fast);
}


/* Foot */
.depts__foot {
  text-align: center;
  margin-top: 10px;
}

.depts__foot-text {
  font-size: 14px;
  color: var(--ink-600);
  margin-bottom: 12px;
}


/* ============================================================
   PITCH STRIP — light teal
============================================================ */
.pitch-strip {
  background: var(--cream-50);
  padding: 28px 0;
  border-top: 1px solid var(--cream-100);
  border-bottom: 1px solid var(--cream-100);
}

.pitch-strip--cream {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-color: var(--cream-100);
}

.pitch-strip--cream .btn--outline-dark {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.pitch-strip--cream .pitch-strip__text strong {
  color: #ffffff;
}

.pitch-strip--cream .pitch-strip__text span {
  color: #ffffff;
}

.pitch-strip--navy {
  background: var(--navy-100);
  border-top: 1px solid var(--navy-150);
  border-bottom: 1px solid var(--navy-150);
}

.pitch-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pitch-strip__text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
}

.pitch-strip__text span {
  display: block;
  font-size: 14px;
  color: var(--ink-700);
  margin-top: 4px;
}

.pitch-strip__actions {
  display: flex;
  gap: 10px;
}

/* ============================================================
   DOCTORS — slider
============================================================ */
.doctors {
  background:
    linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  overflow: hidden;
  position: relative;
}

.doctors::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 15%, rgba(38, 166, 154, 0.10), transparent 35%),
    radial-gradient(circle at 5% 85%, rgba(11, 26, 66, 0.06), transparent 40%);
  pointer-events: none;
}

.doctors>.container {
  position: relative;
  z-index: 1;
}

.doctors__nav {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
}

.doctors__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background var(--t-fast), color var(--t-fast);
}

.doctors__nav-btn:hover {
  background: var(--navy-900);
  color: var(--teal-300);
}

.doc-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  /* margin: 0 -24px; */
  padding-left: 24px;
  padding-right: 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.doc-track::-webkit-scrollbar {
  display: none;
}

.doc-card {
  flex: 0 0 305px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.doc-card--feat {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-color: transparent;
}

.doc-card__media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--teal-50);
  overflow: hidden;
}

.doc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.doc-card__exp {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--teal-500);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-family: var(--f-display);
  box-shadow: var(--shadow-md);
}

.doc-card__body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.doc-card__spec {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  font-family: var(--f-display);
}

.doc-card__spec--cardio {
  background: rgba(196, 32, 32, 0.1);
  color: #c42020;
}

.doc-card__spec--surg {
  background: var(--teal-50);
  color: var(--teal-700);
}

.doc-card__spec--uro {
  background: rgba(44, 74, 145, 0.1);
  color: var(--navy-700);
}

.doc-card__spec--ortho {
  background: rgba(217, 164, 65, 0.15);
  color: var(--gold-600);
}

.doc-card__spec--neuro {
  background: rgba(90, 74, 140, 0.12);
  color: #5a4a8c;
}

.doc-card__spec--pulmo {
  background: var(--teal-100);
  color: var(--teal-800);
}

.doc-card__spec--med {
  background: rgba(38, 166, 154, 0.12);
  color: var(--teal-700);
}

.doc-card--feat .doc-card__spec {
  background: rgba(38, 166, 154, 0.2);
  color: var(--teal-300);
}

.doc-card h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 5px;
}

.doc-card--feat h3 {
  color: var(--white);
}

.doc-card__creds {
  font-size: 12.5px;
  color: var(--ink-500);
  margin-bottom: 5px;
  font-style: italic;
}

.doc-card--feat .doc-card__creds {
  color: var(--teal-300);
}

.doc-card__role {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 14px;
}

.doc-card--feat .doc-card__role {
  color: rgba(255, 255, 255, 0.85);
}

.doc-card__cta {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--ink-100);
  transition: gap var(--t-fast);
  font-family: var(--f-display);
}

.doc-card--feat .doc-card__cta {
  color: var(--teal-300);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.doc-card:hover .doc-card__cta {
  gap: 10px;
}

.doctors__foot {
  text-align: center;
  margin-top: 26px;
}

.doctors__nav--bottom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.doctors__nav--bottom .doctors__nav-btn {
  width: 48px;
  height: 48px;
}

/* ============================================================
   DEEP PITCH — middle of page editorial pitch with image
============================================================ */
.deep-pitch {
  background: var(--white);
  position: relative;
}

.deep-pitch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 5% 20%, rgba(38, 166, 154, 0.07), transparent 30%),
    radial-gradient(circle at 95% 80%, rgba(11, 26, 66, 0.05), transparent 35%);
  pointer-events: none;
}

.deep-pitch>.container {
  position: relative;
  z-index: 1;
}

.deep-pitch__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: start;
}

.deep-pitch__media {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--teal-50);
  aspect-ratio: 6 / 5;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 90px;
}

.deep-pitch__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deep-pitch__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-family: var(--f-display);
}

.deep-pitch__badge strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.deep-pitch__badge i {
  color: var(--gold-400);
  font-size: 14px;
}

.deep-pitch__badge span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-600);
  margin-left: 4px;
}

.deep-pitch__body .h-display {
  margin-bottom: 14px;
  font-size: 32px;
  color: var(--navy-900);
}

.deep-pitch__body .lede {
  margin-bottom: 24px;
  color: #000;
}

.deep-pitch__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}

.dpitch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), background var(--t-fast);
}

.dpitch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--teal-500);
  transition: width var(--t-med);
}

.dpitch:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--white);
}

.dpitch:hover::before {
  width: 100%;
}

.dpitch__ic {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(38, 166, 154, 0.15);
}

.dpitch strong {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
}

.dpitch span {
  font-size: 14px;
  color: #2d2d2d;
  line-height: 1.55;
}

.deep-pitch__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   FACILITIES — dark navy
============================================================ */
.facilities {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.facilities__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
  pointer-events: none;
}

.facilities__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.facilities__glow--l {
  top: -150px;
  left: -150px;
  background: rgba(38, 166, 154, 0.22);
}

.facilities__glow--r {
  bottom: -150px;
  right: -150px;
  background: rgba(38, 166, 154, 0.18);
}

.facilities>.container {
  position: relative;
  z-index: 1;
}

/* RADIAL LAYOUT */
.facs-radial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
}

.facs-radial__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Center hospital image hub */
.facs-radial__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.facs-radial__hub {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

.facs-radial__hub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facs-radial__hub::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(11, 26, 66, 0.40) 100%);
  pointer-events: none;
}

.facs-radial__hub-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-radius: 50%;
  border: 1px dashed rgba(38, 166, 154, 0.45);
  pointer-events: none;
  animation: ringRotate 60s linear infinite;
}

.facs-radial__hub-ring--2 {
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  border: 1px dashed rgba(38, 166, 154, 0.22);
  animation: ringRotate 90s linear infinite reverse;
}

@keyframes ringRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.facs-radial__hub-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(38, 166, 154, 0.6);
  animation: hubPulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes hubPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(38, 166, 154, 0.6);
  }

  70% {
    box-shadow: 0 0 0 36px rgba(38, 166, 154, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(38, 166, 154, 0);
  }
}

.facs-radial__hub-cap {
  text-align: center;
  font-family: var(--f-display);
  margin-top: 8px;
}

.facs-radial__hub-cap strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.facs-radial__hub-cap span {
  display: block;
  font-size: 11.5px;
  color: var(--teal-300);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Facility card — left column has reversed icon position */
.fac {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.fac::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--teal-500);
  transition: width var(--t-med);
}

.fac:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
}

.fac:hover::before {
  width: 100%;
}

/* Left column: icon goes to the RIGHT, content reads right-aligned (mirroring the centerpiece) */
.fac--right {
  grid-template-columns: 1fr auto;
  text-align: right;
}

.fac--right:hover {
  transform: translateX(-4px);
}

.fac--right::before {

  right: 0;
}

.fac__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: start;
}

.fac__num {
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: 1.4px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.fac__ic {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(38, 166, 154, 0.35);
}

.fac h4 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
  margin: 0 0 5px;
}

.fac p {
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   GALLERY — prominent tabbed layout
============================================================ */
.gallery {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(38, 166, 154, 0.12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(11, 26, 66, 0.08), transparent 40%);
  pointer-events: none;
}

.gallery>.container {
  position: relative;
  z-index: 1;
}

/* Tabs */
.gtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 6px;
  background: var(--white);
  border-radius: var(--r-pill);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.gtab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.gtab i {
  font-size: 13px;
  color: var(--teal-600);
  transition: color var(--t-fast);
}

.gtab:hover {
  color: var(--navy-900);
  background: var(--cream-100);
}

.gtab.is-active {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(11, 26, 66, 0.25);
}

.gtab.is-active i {
  color: var(--teal-300);
}

/* Grid */
.ggrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gitem {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  display: block;
  transition: transform var(--t-med), box-shadow var(--t-med), opacity 0.3s ease, filter 0.3s ease;
}

.gitem.is-hidden {
  display: none;
}

.gitem:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.gitem:hover img {
  transform: scale(1.06);
}

.gitem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 26, 66, 0.85) 100%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity var(--t-fast);
}

.gitem:hover::after {
  opacity: 0.95;
}

.gitem__cap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: var(--white);
  font-family: var(--f-display);
}

.gitem__cap strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3px;
}

.gitem__cap span {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.gallery__foot {
  text-align: center;
  margin-top: 36px;
}

.gallery__foot .fa-youtube {
  color: #ff0000;
  font-size: 16px;
}

/* ============================================================
   VIDEOS — YouTube-style cards on dark navy (NEW)
============================================================ */
.videos {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  color: var(--white);
  padding: 70px 0;
  overflow: hidden;
}

.videos__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

.videos__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.videos__glow--l {
  top: -180px;
  left: -180px;
  background: rgba(255, 0, 0, 0.18);
}

.videos__glow--r {
  bottom: -180px;
  right: -180px;
  background: rgba(38, 166, 154, 0.20);
}

.videos>.container {
  position: relative;
  z-index: 1;
}

.videos__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.videos__head .eyebrow .fa-youtube {
  color: #ff0000;
  font-size: 14px;
}

/* Channel card */
.videos__channel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
}

.videos__channel-avi {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ff0000;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.videos__channel-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.videos__channel-info strong {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.videos__channel-info span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.videos__channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: #ff0000;
  color: var(--white);
  font-family: var(--f-display);
  font-size: 12.5px;
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast);
}

.videos__channel-btn:hover {
  background: #cc0000;
  transform: translateY(-1px);
}

.videos__channel-btn .fa-youtube {
  font-size: 14px;
}

/* Video grid */
.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
}

.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
}

.vcard__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink-100);
}

.vcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.vcard:hover .vcard__thumb img {
  transform: scale(1.05);
}

.vcard__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--white);
  padding: 3px 7px;
  border-radius: 4px;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}

.vcard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.95);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t-med), transform var(--t-med);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.vcard:hover .vcard__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vcard__body {
  padding: 14px 16px 16px;
  display: flex;
  gap: 12px;
  flex: 1;
}

.vcard__avi {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #ff0000;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.vcard__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.vcard__meta h4 {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.35;
  margin: 0 0 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vcard__channel {
  font-size: 12px;
  color: var(--ink-600);
  font-weight: 500;
}

.vcard__stats {
  font-size: 11.5px;
  color: var(--ink-500);
}

.videos__foot {
  text-align: center;
  margin-top: 36px;
}

.videos__foot .fa-youtube {
  color: #ff0000;
}

/* ============================================================
   SEO CONTENT — editorial split layout (REDESIGNED)
============================================================ */
.seo {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
  color: var(--white);
  padding: 70px 0;
  overflow: hidden;
}

.seo__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(38, 166, 154, 0.22), transparent 45%),
    radial-gradient(circle at 92% 78%, rgba(38, 166, 154, 0.14), transparent 45%);
  pointer-events: none;
}

.seo__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}

.seo__container {
  position: relative;
  z-index: 1;
}

.seo__split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: center;
}

/* LEFT */
.seo__left {
  position: sticky;
  top: 100px;
}

.seo__left .eyebrow {
  margin-bottom: 16px;
}

.seo__hl {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.seo__hl span {
  display: block;
  color: var(--teal-300);
  margin-top: 4px;
}

.seo__lead {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.seo__lead strong {
  font-weight: 600;
}

/* Metrics grid (2x2) */
.seo__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.seo__metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.seo__metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--teal-400);
  transition: width var(--t-med);
}

.seo__metric:hover {
  border-color: rgba(38, 166, 154, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.seo__metric:hover::before {
  width: 100%;
}

.seo__metric strong {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.seo__metric span {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

/* CTA */
.seo__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* RIGHT — numbered articles */
.seo__right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.seo__article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  align-items: start;
  transition: padding var(--t-fast);
}

.seo__article:first-child {
  border-top: none;
  padding-top: 8px;
}

.seo__article:last-child {
  padding-bottom: 0;
}

.seo__article-num {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--teal-300);
  line-height: 0.95;
  letter-spacing: -1px;
  min-width: 56px;
  opacity: 0.85;
}

.seo__article-body {
  min-width: 0;
}

.seo__article h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 4px 0 8px;
  letter-spacing: -0.2px;
}

.seo__article p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
  margin: 0;
}

.seo__article p strong {
  font-weight: 600;
}

/* ============================================================
   GOOGLE REVIEWS — proper Google profile theme
============================================================ */
.greviews {
  background:
    linear-gradient(180deg, var(--navy-50) 0%, var(--navy-100) 100%);
  position: relative;
  overflow: hidden;
}

.greviews .eyebrow img {
  width: 20px;
}

.greviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 95% 15%, rgba(38, 166, 154, 0.12), transparent 40%),
    radial-gradient(circle at 8% 80%, rgba(20, 40, 92, 0.10), transparent 40%);
  pointer-events: none;
}

.greviews>.container {
  position: relative;
  z-index: 1;
}

.gprofile {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.gprofile__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gprofile__g {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink-100);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.gprofile__g .fa-google {
  color: #4285F4;
}

.gprofile__brand strong {
  display: block;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.gprofile__brand em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: var(--ink-600);
}

.gprofile__rating {
  border-left: 1px solid var(--ink-100);
  padding-left: 30px;
}

.gprofile__rating-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.gprofile__rating-num strong {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.gprofile__rating-stars {
  display: inline-flex;
  gap: 2px;
}

.gprofile__rating-stars i {
  color: var(--gold-400);
  font-size: 16px;
}

.gprofile__rating-count {
  font-size: 12.5px;
  color: var(--ink-600);
}

.gprofile__rating-count strong {
  color: var(--navy-900);
  font-weight: 600;
}

.gprofile__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section.greviews .g-img {
  width: 20px;
}

.gprofile__actions .btn {
  white-space: nowrap;
}

.gprofile__actions .btn .fa-google {
  color: #4285F4;
}

.gprofile__actions .btn--primary .fa-google {
  color: var(--white);
}

.greviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.greview {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex;
  flex-direction: column;
}

.greview:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}

.greview__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.greview__avi {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

.greview__id {
  flex: 1;
  min-width: 0;
}

.greview__id strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
}

.greview__id em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 1px;
}

.greview__src {
  font-size: 14px;
  color: #4285F4;
  flex-shrink: 0;
}

.greview__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.greview__stars i {
  color: var(--gold-400);
  font-size: 12px;
}

.greview blockquote {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* ============================================================
   BLOG — featured + side list
============================================================ */
.blog {
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #e3f1ee 100%);
  position: relative;
  overflow: hidden;
}

.blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 25%, rgba(38, 166, 154, 0.14), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(11, 26, 66, 0.08), transparent 40%);
  pointer-events: none;
}

.blog>.container {
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

/* Featured blog */
.blog-feat {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}

.blog-feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-feat__media {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--teal-700), var(--navy-900));
  overflow: hidden;
}

.blog-feat__media-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(38, 166, 154, 0.4), transparent 60%);
}

.blog-feat__media-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: rgba(38, 166, 154, 0.35);
}

.blog-feat__cat {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--white);
  color: var(--navy-900);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.blog-feat__body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-feat__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-bottom: 14px;
}

.blog-feat__meta i {
  color: var(--teal-600);
  margin-right: 4px;
  font-size: 11px;
}

.blog-feat__meta .dot {
  color: var(--ink-300);
}

.blog-feat h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 12px;
}

.blog-feat p {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-feat__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--t-fast);
  font-family: var(--f-display);
}

.blog-feat:hover .blog-feat__cta {
  gap: 11px;
}

/* Blog list */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-row {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  flex: 1;
}

.blog-row:hover {
  transform: translateX(4px);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.blog-row__num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-500);
  line-height: 1;
  min-width: 36px;
}

.blog-row__body {
  flex: 1;
}

.blog-row__cat {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background: var(--teal-50);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 6px;
}

.blog-row h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
  margin-bottom: 6px;
}

.blog-row__meta {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-500);
}

.blog-row__meta i {
  color: var(--teal-600);
  margin-right: 3px;
  font-size: 10px;
}

.blog-row__meta .dot {
  color: var(--ink-300);
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(38, 166, 154, 0.12), transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(11, 26, 66, 0.08), transparent 40%);
  pointer-events: none;
}

.contact>.container {
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__info {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}

.contact__info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact__info-ic {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact__info-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 4px;
}

.contact__info-item span {
  display: block;
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.5;
}

.contact__info-item a {
  color: var(--teal-600);
  font-weight: 600;
}

.contact__info-item a:hover {
  text-decoration: underline;
}

.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  background: var(--ink-100);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.contact__form-top {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-100);
}

.contact__form-top h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.contact__form-top p {
  font-size: 13px;
  color: var(--ink-600);
  margin: 0;
}

.contact__form-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field label {
  display: block;
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field label em {
  color: #d44545;
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-size: 14px;
  background: var(--white);
  color: var(--ink-900);
  transition: border var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--f-body);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.12);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.phone-input {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border var(--t-fast), box-shadow var(--t-fast);
}

.phone-input:focus-within {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.12);
}

.phone-input span {
  padding: 11px 14px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-weight: 600;
  font-size: 14px;
  border-right: 1px solid var(--ink-200);
  display: flex;
  align-items: center;
  font-family: var(--f-display);
}

.phone-input input {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
}

.contact__form-note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-500);
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact__form-note i {
  color: var(--teal-600);
}

/* ============================================================
   TREATMENTS BY CATEGORY — interactive tabs + cards (NEW)
============================================================ */
.treatments {
  background:
    linear-gradient(180deg, var(--navy-50) 0%, var(--navy-100) 100%);
  position: relative;
  overflow: hidden;
}

.treatments::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.16), transparent 70%);
  pointer-events: none;
}

.treatments::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 40, 92, 0.14), transparent 70%);
  pointer-events: none;
}

.treatments>.container {
  position: relative;
  z-index: 1;
}

/* Tabs */
.trtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 6px;
  background: var(--teal-bg-light);
  border-radius: var(--r-pill);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.trtab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.trtab i {
  font-size: 14px;
  color: var(--teal-600);
  transition: color var(--t-fast);
}

.trtab:hover {
  color: var(--navy-900);
  background: var(--white);
}

.trtab.is-active {
  background: var(--teal-500);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.trtab.is-active i {
  color: var(--white);
}

/* Panels */
.trpanel {
  display: none;
  animation: trpanelFade 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trpanel.is-active {
  display: block;
}

@keyframes trpanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trpanel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 90%;
  margin: auto;
}

/* Treatment card */
.trcard {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  text-decoration: none;
}

.trcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
}

.trcard__media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--ink-100);
}

.trcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.trcard:hover .trcard__media img {
  transform: scale(1.06);
}

.trcard__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 26, 66, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.trcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
  transition: transform var(--t-med), background var(--t-med);
}

.trcard__badge i {
  font-size: 14px;
  transition: color var(--t-med);
}

/* Cardiology badge color */
.trcard__media--c1 .trcard__badge i,
.trcard__media--c2 .trcard__badge i,
.trcard__media--c3 .trcard__badge i,
.trcard__media--c4 .trcard__badge i,
.trcard__media--c5 .trcard__badge i,
.trcard__media--c6 .trcard__badge i {
  color: #c42020;
}

/* Ortho badge color */
.trcard__media--o1 .trcard__badge i,
.trcard__media--o2 .trcard__badge i,
.trcard__media--o3 .trcard__badge i,
.trcard__media--o4 .trcard__badge i,
.trcard__media--o5 .trcard__badge i,
.trcard__media--o6 .trcard__badge i {
  color: var(--navy-700);
}

/* Uro badge color */
.trcard__media--u1 .trcard__badge i,
.trcard__media--u2 .trcard__badge i,
.trcard__media--u3 .trcard__badge i,
.trcard__media--u4 .trcard__badge i,
.trcard__media--u5 .trcard__badge i,
.trcard__media--u6 .trcard__badge i {
  color: #1e5a8e;
}

/* Surgery badge color */
.trcard__media--s1 .trcard__badge i,
.trcard__media--s2 .trcard__badge i,
.trcard__media--s3 .trcard__badge i,
.trcard__media--s4 .trcard__badge i,
.trcard__media--s5 .trcard__badge i,
.trcard__media--s6 .trcard__badge i {
  color: var(--teal-700);
}

/* Med badge color */
.trcard__media--m1 .trcard__badge i,
.trcard__media--m2 .trcard__badge i,
.trcard__media--m3 .trcard__badge i,
.trcard__media--m4 .trcard__badge i,
.trcard__media--m5 .trcard__badge i,
.trcard__media--m6 .trcard__badge i {
  color: #0d6e54;
}

/* Neuro badge color */
.trcard__media--n1 .trcard__badge i,
.trcard__media--n2 .trcard__badge i,
.trcard__media--n3 .trcard__badge i,
.trcard__media--n4 .trcard__badge i,
.trcard__media--n5 .trcard__badge i,
.trcard__media--n6 .trcard__badge i {
  color: #5a4a8c;
}

.trcard:hover .trcard__badge {
  transform: scale(1.1) rotate(-5deg);
}

.trcard__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trcard__cat {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #c42020;
  background: rgba(196, 32, 32, 0.08);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 8px;
}

.trcard__cat--ortho {
  color: var(--navy-700);
  background: rgba(44, 74, 145, 0.08);
}

.trcard__cat--uro {
  color: #1e5a8e;
  background: rgba(43, 127, 192, 0.08);
}

.trcard__cat--surg {
  color: var(--teal-700);
  background: rgba(38, 166, 154, 0.10);
}

.trcard__cat--med {
  color: #0d6e54;
  background: rgba(18, 164, 125, 0.08);
}

.trcard__cat--neuro {
  color: #5a4a8c;
  background: rgba(107, 77, 158, 0.08);
}

.trcard h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 6px;
}

.trcard p {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  margin: 0 0 12px;
  flex: 1;
}

.trcard__cta {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap var(--t-fast);
}

.trcard:hover .trcard__cta {
  gap: 10px;
}


/* ============================================================
   CATEGORIZED FAQ — vertical pill tabs left + accordion right
============================================================ */
.faqs {
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #e3f1ee 100%);
  position: relative;
  overflow: hidden;
}

.faqs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(38, 166, 154, 0.14), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(20, 40, 92, 0.10), transparent 40%);
  pointer-events: none;
}

.faqs>.container {
  position: relative;
  z-index: 1;
}

.faqcat {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

/* Vertical tabs aside */
.faqcat__tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 100px;
}

.faqcat__tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--t-fast);
  font-family: var(--f-body);
}

.faqcat__tab:hover {
  border-color: var(--teal-300);
  background: var(--teal-50);
  transform: translateX(2px);
}

.faqcat__tab.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.faqcat__tab i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}

.faqcat__tab.is-active i {
  background: var(--teal-500);
  color: var(--white);
}

.faqcat__tab strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 2px;
}

.faqcat__tab span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-500);
  line-height: 1.3;
}

.faqcat__tab.is-active strong {
  color: var(--white);
}

.faqcat__tab.is-active span {
  color: rgba(255, 255, 255, 0.7);
}

/* Panels */
.faqcat__panels {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.faqcat__panel {
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: trpanelFade 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faqcat__panel.is-active {
  display: flex;
}

/* ============================================================
   FAQ — accordion left + sticky aside right (legacy, retained)
============================================================ */
.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.faq__qa-head {
  margin-bottom: 28px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t-fast), border-color var(--t-fast);
}

.qa[open] {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.qa summary::-webkit-details-marker {
  display: none;
}

.qa summary i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.qa[open] summary i {
  transform: rotate(45deg);
  background: var(--teal-500);
  color: var(--white);
}

.qa p {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.7;
  margin: 0;
}

.qa p strong {
  color: var(--navy-900);
  font-weight: 600;
}

.qa p a {
  color: var(--teal-600);
  font-weight: 600;
}

.faq__aside {
  position: relative;
}

.faq__aside-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__aside-sticky img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: var(--r-lg);
  background: var(--teal-50);
  padding: 24px;
}

.faq__help {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 22px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.faq__help h4 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.faq__help p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0 0 14px;
}

.faq__help .btn+.btn {
  margin-top: 8px;
}

.faq__help .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.faq__help .btn--outline-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(38, 166, 154, 0.2), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(38, 166, 154, 0.16), transparent 45%);
}

.final-cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 24px;
}

.final-cta__row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer__brand img {
  height: 50px;
  margin-bottom: 16px;
  border-radius: 6px;
}

.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #fff;
}

.footer__brand em {
  color: var(--teal-300);
  font-style: italic;
  font-weight: 500;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 13px;
  transition: background var(--t-fast), transform var(--t-fast);
}

.footer__social a:hover {
  background: var(--teal-500);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-300);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__col li a,
.footer__col li {
  font-size: 13px;
  color: #fff;
  transition: color var(--t-fast);
}

.footer__col li a:hover {
  color: var(--teal-300);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer__contact i {
  color: #fff;
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact a:hover {
  color: var(--teal-300);
}

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: var(--navy-900);
}

.footer__base-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #fff;
}

.footer__base-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__base-links a {
  color: #fff;
}

.footer__base-links a:hover {
  color: var(--teal-300);
}

.footer__base-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   FAB + MOBILE BAR
============================================================ */
.fab {
  position: fixed;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 21px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform var(--t-fast);
}

.fab:hover {
  transform: translateY(-3px);
}

.fab--wa {
  background: #25d366;
  bottom: 90px;
}

.fab--call {
  background: var(--teal-500);
  bottom: 22px;
}

.fab__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(38, 166, 154, 0.4);
  animation: ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--ink-200);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0));
  z-index: 95;
  gap: 6px;
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--bg-soft);
  transition: background var(--t-fast);
  min-height: 48px;
}

.mobile-bar__btn:active {
  background: var(--ink-100);
}

.mobile-bar__btn i {
  font-size: 17px;
  color: var(--teal-600);
}

.mobile-bar__btn--wa {
  background: #25d366;
  color: var(--white);
}

.mobile-bar__btn--wa i {
  color: var(--white);
}

.mobile-bar__btn--book {
  background: var(--teal-500);
  color: var(--white);
}

.mobile-bar__btn--book i {
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — 1100px (tablet)
============================================================ */
@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 14px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--ink-100);
  }

  .header__phone-text {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section__head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero__media {
    height: 380px;
    max-width: 560px;
  }

  .hero__title {
    font-size: 38px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 700px;
    margin: 0 auto;
  }

  .stats__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Departments tablet — keep panels side-by-side but lower height */
  .dept-panels {
    height: 280px;
    gap: 8px;
  }

  .dept-panel__name {
    font-size: 16px;
  }

  .dept-panel.is-active .dept-panel__name,
  .dept-panel:hover .dept-panel__name {
    font-size: 19px;
  }

  .deep-pitch__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 700px;
    margin: 0 auto;
  }

  .deep-pitch__media {
    aspect-ratio: 16/9;
  }

  /* Facilities tablet: hub on top, cards in 2-col grid below */
  .facs-radial {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .facs-radial__col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .facs-radial__center {
    order: -1;
  }

  .fac--right {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .fac--right::before {
    left: 0;
    right: auto;
  }

  .fac--right:hover {
    transform: translateX(4px);
  }

  /* Reorder ic to left for both columns on tablet */
  .fac--right .fac__ic {
    order: -1;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }

  .gallery__item--lg {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gprofile {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .gprofile__rating {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--ink-100);
    padding-top: 18px;
  }

  .gprofile__actions {
    flex-direction: row;
  }

  .gprofile__actions .btn {
    flex: 1;
  }

  .greviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq__aside-sticky {
    position: static;
    flex-direction: row;
    gap: 18px;
  }

  .faq__aside-sticky img {
    width: 40%;
    max-height: 260px;
    padding: 18px;
  }

  .faq__help {
    flex: 1;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .topbar .hide-sm,
  .topbar .hide-md {
    display: none;
  }

  /* Treatments tablet */
  .trpanel__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ categorized tablet — stack tabs horizontally above */
  .faqcat {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faqcat__tabs {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    margin: 0 -18px;
    padding: 4px 18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .faqcat__tabs::-webkit-scrollbar {
    display: none;
  }

  .faqcat__tab {
    flex: 0 0 240px;
    scroll-snap-align: start;
  }

  .faqcat__tab.is-active {
    transform: none;
  }

  .faqcat__tab:hover {
    transform: none;
  }

  /* Gallery tabs tablet */
  .ggrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gtabs {
    max-width: none;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .gtab {
    flex: 0 0 auto;
  }

  /* Videos tablet */
  .videos__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SEO tablet */
  .seo__split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .seo__left {
    position: static;
  }

  .seo__hl {
    font-size: 30px;
  }

  .seo__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 780px (mobile landscape / app feel)
============================================================ */
@media (max-width: 780px) {
  .container {
    padding: 0 18px;
  }

  .topbar {
    padding: 6px 0;
    font-size: 11.5px;
  }

  .topbar__left {
    gap: 12px;
  }

  .topbar__emerg {
    padding: 3px 10px;
    font-size: 10.5px;
  }

  .header__actions .header__phone {
    display: none;
  }

  .header__actions .btn--primary {
    padding: 9px 14px;
    font-size: 12.5px;
  }

  .header__logo img {
    height: 38px;
  }

  .section {
    padding: 50px 0;
  }

  .section__head {
    margin-bottom: 28px;
  }

  /* HERO mobile — clean app-like stacking */
  .hero {
    padding: 36px 0 44px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.18;
  }

  .hero__lede {
    font-size: 14px;
  }

  .hero__cta-row {
    gap: 8px;
  }

  .hero__cta-row .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
  }

  .hero__trust {
    width: 100%;
    max-width: 360px;
  }

  .hero__trust-item {
    padding: 10px 8px;
    flex: 1;
  }

  .hero__trust-item strong {
    font-size: 19px;
  }

  .hero__trust-item span {
    font-size: 10.5px;
  }

  .hero__media {
    height: 280px;
  }

  .hero__chip {
    padding: 9px 12px;
  }

  .hero__chip--nabh {
    left: -8px;
    top: 14px;
  }

  .hero__chip--er {
    right: -8px;
    bottom: 30px;
  }

  .hero__chip i {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .hero__chip strong {
    font-size: 12px;
  }

  .hero__chip em {
    font-size: 9.5px;
  }

  .hero__photo-tag {
    padding: 7px 11px;
    font-size: 11px;
  }

  .ticker__inner {
    gap: 12px;
    padding: 0 18px;
  }

  .ticker__label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .ticker__group {
    gap: 28px;
    padding-right: 28px;
  }

  .ticker__group span {
    font-size: 12.5px;
  }

  .h-display {
    font-size: 24px;
  }

  .lede {
    font-size: 14.5px;
  }

  .about__sticker {
    width: 80px;
    height: 80px;
    right: -8px;
    top: -6px;
  }

  .about__sticker strong {
    font-size: 16px;
  }

  .about__plaque em {
    font-size: 16px;
  }

  .stats__head h3 {
    font-size: 22px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stats__item {
    padding: 14px;
  }

  .stats__item strong {
    font-size: 24px;
  }

  .stats__item>span {
    font-size: 10.5px;
  }

  /* DEPARTMENTS — mobile: stack panels into 2-col grid */
  .dept-panels {
    flex-wrap: wrap;
    height: auto;
    gap: 8px;
  }

  .dept-panel {
    flex: 0 0 calc(50% - 4px);
    height: 180px;
    border-radius: var(--r-md);
  }

  /* Disable the expanding hover behavior on mobile */
  .dept-panels .dept-panel.is-active,
  .dept-panels:hover .dept-panel:hover {
    flex: 0 0 calc(50% - 4px);
  }

  /* On mobile, always show full content */
  .dept-panel__sub {
    max-height: 50px;
    opacity: 1;
    margin-bottom: 8px;
  }

  .dept-panel__cta {
    max-height: 24px;
    opacity: 1;
  }

  .dept-panel__name {
    font-size: 15px;
  }

  .dept-panel.is-active .dept-panel__name,
  .dept-panel:hover .dept-panel__name {
    font-size: 15px;
  }

  .dept-panel__sub {
    font-size: 11px;
  }

  .dept-panel__icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
    top: 12px;
    left: 12px;
  }

  .dept-panel__content {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .dept-panel__overlay {
    background: linear-gradient(180deg, rgba(11, 26, 66, 0.30) 0%, rgba(11, 26, 66, 0.92) 100%);
  }

  .pitch-strip__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pitch-strip__text strong {
    font-size: 17px;
  }

  .pitch-strip__actions {
    flex-direction: column;
  }

  .pitch-strip__actions .btn {
    width: 100%;
  }

  .doctors__nav {
    margin-top: 0;
  }

  .doc-card {
    flex: 0 0 220px;
  }

  .deep-pitch__pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deep-pitch__body .h-display {
    font-size: 24px;
  }

  .deep-pitch__ctas {
    flex-direction: column;
  }

  .deep-pitch__ctas .btn {
    width: 100%;
  }

  .facs-radial {
    gap: 22px;
  }

  .facs-radial__col {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .facs-radial__hub {
    width: 220px;
    height: 220px;
  }

  .fac {
    padding: 16px 16px;
    gap: 12px;
  }

  .fac__ic {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .fac h4 {
    font-size: 14.5px;
  }

  .fac p {
    font-size: 12px;
  }

  .gallery__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 18px 12px;
    margin: 0 -18px;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .gallery__item {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
    height: 220px;
  }

  .gallery__item--lg {
    grid-column: auto;
    grid-row: auto;
  }

  .gprofile {
    padding: 18px;
    gap: 14px;
  }

  .gprofile__brand strong {
    font-size: 16px;
  }

  .gprofile__rating-num strong {
    font-size: 30px;
  }

  .gprofile__actions {
    flex-direction: column;
  }

  .greviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 18px 12px;
    margin: 0 -18px;
    grid-template-columns: none;
  }

  .greview {
    flex: 0 0 82%;
    min-width: 270px;
    scroll-snap-align: start;
  }

  .blog-feat h3 {
    font-size: 19px;
  }

  .blog-feat__body {
    padding: 20px;
  }

  .contact__form {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq__aside-sticky {
    flex-direction: column;
  }

  .faq__aside-sticky img {
    width: 100%;
  }

  .qa summary {
    padding: 14px 16px;
    font-size: 13.5px;
  }

  .final-cta {
    padding: 50px 0;
  }

  .final-cta__title {
    font-size: 26px;
  }

  .final-cta__row {
    flex-direction: column;
  }

  .final-cta__row .btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer__base-inner {
    justify-content: center;
    text-align: center;
  }

  .fab {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .fab--wa {
    bottom: 142px;
  }

  .fab--call {
    bottom: 84px;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }

  /* Treatments mobile — proper slider for tabs and cards */
  .trtabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    border-radius: var(--r-md);
    margin: 0 -18px 26px;
    padding: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: none;
  }

  .trtabs::-webkit-scrollbar {
    display: none;
  }

  .trtab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 9px 14px;
    font-size: 12.5px;
  }

  .trpanel__grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 18px 12px;
    margin: 0 -18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .trpanel__grid::-webkit-scrollbar {
    display: none;
  }

  .trcard {
    flex: 0 0 78%;
    min-width: 250px;
    scroll-snap-align: start;
  }

  /* FAQ categorized mobile */
  .faqcat__panels {
    padding: 18px;
  }

  /* Departments mobile */
  .departments {
    padding: 60px 0;
  }

  .dept-panels {
    gap: 6px;
  }

  .dept-panel {
    height: 160px;
  }

  /* Gallery mobile */
  .gtabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 -18px 26px;
    padding: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-md);
  }

  .gtabs::-webkit-scrollbar {
    display: none;
  }

  .gtab {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .ggrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 18px 12px;
    margin: 0 -18px;
    grid-template-columns: none;
  }

  .ggrid::-webkit-scrollbar {
    display: none;
  }

  .gitem {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
    aspect-ratio: 4/3;
  }

  .gitem.is-hidden {
    display: none;
  }

  /* Videos mobile */
  .videos {
    padding: 60px 0;
  }

  .videos__channel {
    flex-wrap: wrap;
    width: 100%;
    border-radius: var(--r-lg);
  }

  .videos__channel-info {
    flex: 1;
    min-width: 0;
  }

  .videos__channel-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .vgrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 18px 12px;
    margin: 0 -18px;
    grid-template-columns: none;
  }

  .vgrid::-webkit-scrollbar {
    display: none;
  }

  .vcard {
    flex: 0 0 82%;
    min-width: 280px;
    scroll-snap-align: start;
  }

  /* SEO mobile */
  .seo {
    padding: 56px 0;
  }

  .seo__split {
    gap: 28px;
  }

  .seo__hl {
    font-size: 26px;
  }

  .seo__lead {
    font-size: 13.5px;
  }

  .seo__metrics {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .seo__metric {
    padding: 14px 16px;
  }

  .seo__metric strong {
    font-size: 22px;
  }

  .seo__metric span {
    font-size: 10.5px;
  }

  .seo__cta {
    flex-direction: column;
  }

  .seo__cta .btn {
    width: 100%;
  }

  .seo__article {
    gap: 14px;
    padding: 22px 0;
  }

  .seo__article-num {
    font-size: 28px;
    min-width: 44px;
  }

  .seo__article h3 {
    font-size: 17px;
  }

  .seo__article p {
    font-size: 13px;
  }
}

/* ============================================================
   RESPONSIVE — 480px (small phone)
============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__media {
    height: 240px;
  }

  .h-display {
    font-size: 22px;
  }

  .doc-card {
    flex: 0 0 200px;
  }

  .final-cta__title {
    font-size: 22px;
  }

  .greview {
    flex: 0 0 88%;
  }
}

/* =============================================================
   THANK YOU PAGE — shares the same theme
============================================================= */

/* --- SUCCESS HERO --- */
.ty-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 70px 0 80px;
  text-align: center;
}

.ty-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(78, 196, 185, 0.14), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(217, 164, 65, 0.14), transparent 45%);
  pointer-events: none;
}

.ty-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.ty-hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.ty-hero__glow--l {
  top: -150px;
  left: -150px;
  background: rgba(78, 196, 185, 0.25);
}

.ty-hero__glow--r {
  bottom: -150px;
  right: -150px;
  background: rgba(217, 164, 65, 0.18);
}

.ty-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

/* animated checkmark */
.ty-check {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  position: relative;
}

.ty-check::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 196, 185, 0.2), transparent 70%);
  animation: tyPulse 2s ease-out infinite;
}

.ty-check__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ty-check__ring {
  stroke: rgba(78, 196, 185, 0.3);
  stroke-dasharray: 8 6;
  transform-origin: center;
  animation: tyRingSpin 18s linear infinite;
}

.ty-check__circle {
  stroke: var(--teal-500);
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  animation: tyDrawCircle 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.ty-check__tick {
  stroke: var(--gold-300);
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: tyDrawTick 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

@keyframes tyDrawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes tyDrawTick {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes tyRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tyPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.ty-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(78, 196, 185, 0.15);
  border: 1px solid rgba(78, 196, 185, 0.3);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.ty-hero__eyebrow i {
  color: var(--teal-500);
}

.ty-hero__title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.ty-hero__title .accent {
  color: var(--gold-300);
  font-style: italic;
}

.ty-hero__lede {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 28px;
}

.ty-hero__lede strong {
  color: var(--white);
  font-weight: 600;
}

.ty-hero__ref {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 0;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.ty-hero__ref-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 140px;
}

.ty-hero__ref-item:last-child {
  border-right: 0;
}

.ty-hero__ref-item span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.ty-hero__ref-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--f-body);
  letter-spacing: 0.5px;
}

.ty-hero__ref-item--trust {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(78, 196, 185, 0.1);
}

.ty-hero__ref-item--trust i {
  color: var(--teal-500);
  font-size: 14px;
}

.ty-hero__ref-item--trust strong {
  color: var(--teal-300);
}

.ty-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ty-hero__actions .btn--gold {
  box-shadow: 0 8px 24px rgba(217, 164, 65, 0.4);
}

/* --- CONFETTI --- */
.ty-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.ty-confetti i {
  position: absolute;
  top: -20px;
  left: var(--x, 50%);
  width: var(--s, 8px);
  height: var(--s, 8px);
  background: var(--bg, var(--gold-400));
  transform: rotate(var(--r, 0));
  animation: tyConfettiFall 3s cubic-bezier(0.2, 0.6, 0.3, 1) var(--d, 0s) forwards;
  opacity: 0;
  border-radius: 2px;
}

.ty-confetti i:nth-child(even) {
  border-radius: 50%;
}

.ty-confetti i:nth-child(3n) {
  width: calc(var(--s, 8px) * 1.3);
  height: calc(var(--s, 8px) * 0.4);
}

@keyframes tyConfettiFall {
  0% {
    transform: translateY(0) rotate(var(--r));
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(calc(var(--r) + 540deg));
    opacity: 0;
  }
}

/* --- NEXT STEPS --- */
.ty-next {
  background: var(--bg-soft);
}

.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.ty-steps::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-300) 0, var(--ink-300) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.ty-step {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.ty-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ty-step--hero {
  background: linear-gradient(180deg, var(--gold-100), rgba(253, 245, 225, 0.4));
  border-color: var(--gold-300);
  box-shadow: 0 14px 40px rgba(217, 164, 65, 0.18);
}

.ty-step__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--ink-500);
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.ty-step--hero .ty-step__num {
  background: var(--gold-300);
  color: var(--navy-950);
  border-color: var(--gold-400);
  font-weight: 700;
}

.ty-step__ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.ty-step--hero .ty-step__ic {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.3);
}

.ty-step h3 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.ty-step p {
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0 0 16px;
}

.ty-step p strong {
  color: var(--navy-900);
}

.ty-step__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
}

.ty-step__tag--gold {
  background: rgba(217, 164, 65, 0.2);
  color: var(--gold-700);
}


/* --- FINAL CTA STRIP --- */
.ty-cta {
  position: relative;
  background: linear-gradient(135deg, var(--teal-800), var(--navy-900));
  color: var(--white);
  padding: 48px 0;
  overflow: hidden;
}

.ty-cta__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(217, 164, 65, 0.2), transparent 50%);
  pointer-events: none;
}

.ty-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ty-cta__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}

.ty-cta__left>i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold-300);
  font-size: 26px;
  flex-shrink: 0;
}

.ty-cta__left h3 {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 4px;
}

.ty-cta__left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.ty-cta__right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}


/* --- TRUST STRIP --- */
.ty-trust {
  background: var(--bg-cream);
  padding: 56px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}

.ty-trust__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
}

.ty-trust__head h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 10px;
}

.ty-trust__head h2 .accent {
  color: var(--teal-700);
  font-style: italic;
}

.ty-trust__head p {
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}

.ty-trust__head p em {
  color: var(--gold-600);
  font-style: italic;
  font-weight: 500;
}

.ty-trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.ty-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.ty-trust__item strong {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 36px);
  color: var(--navy-900);
  line-height: 1;
}

.ty-trust__item span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.ty-trust__divider {
  width: 1px;
  height: 40px;
  background: var(--ink-200);
}

/* Compact footer grid variant */
.footer__grid--compact {
  grid-template-columns: 1.5fr 1fr;
}

/* --- RESPONSIVE — Thank You page --- */
@media (max-width: 780px) {
  .ty-header .header__phone {
    display: none;
  }

  .ty-hero {
    padding: 44px 0 56px;
  }

  .ty-check {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
  }

  .ty-hero__title {
    font-size: 32px;
  }

  .ty-hero__lede {
    font-size: 14.5px;
  }

  .ty-hero__ref {
    width: 100%;
    max-width: 420px;
    flex-direction: column;
  }

  .ty-hero__ref-item {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .ty-hero__ref-item:last-child {
    border-bottom: 0;
  }

  .ty-hero__ref-item span {
    font-size: 10px;
  }

  .ty-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin: 0 auto;
  }

  .ty-hero__actions .btn {
    width: 100%;
  }

  .ty-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ty-steps::before {
    display: none;
  }

  .ty-step {
    padding: 22px;
  }

  .ty-step h3 {
    font-size: 20px;
  }

  .ty-trust {
    padding: 40px 0;
  }

  .ty-trust__head {
    margin-bottom: 22px;
  }

  .ty-trust__grid {
    padding: 18px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .ty-trust__item {
    min-width: 0;
    flex: 1 1 40%;
  }

  .ty-trust__divider {
    display: none;
  }

  .ty-cta {
    padding: 36px 0;
  }

  .ty-cta__left {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ty-cta__left>i {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .ty-cta__left h3 {
    font-size: 22px;
  }

  .ty-cta__right {
    width: 100%;
  }

  .ty-cta__right .btn {
    flex: 1;
    min-width: 140px;
  }

  .footer__grid--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ty-hero {
    padding: 36px 0 44px;
  }

  .ty-hero__title {
    font-size: 28px;
  }

  .ty-hero__ref-item {
    padding: 11px 16px;
  }

  .ty-step__ic {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .ty-step h3 {
    font-size: 19px;
  }

  .ty-trust__item strong {
    font-size: 24px;
  }

  .ty-trust__item span {
    font-size: 10.5px;
  }

  .ty-cta__right {
    flex-direction: column;
  }

  .ty-cta__right .btn {
    width: 100%;
  }
}

/* ============================================================
   ████████████████████████████████████████████████████████████
   CARDIOLOGY DEPARTMENT — ADDITIONAL STYLES
   All styles below apply to cardiology.html (body.dept-page)
   and any future department pages.
   Colors follow the HOME PAGE blue theme (no overrides to :root).
   Extra variables only: cardiac red accent.
   ████████████████████████████████████████████████████████████
============================================================ */

/* --- Cardiology-only extra color tokens (added, not overriding) --- */
:root {
  --cardiac-50: #fdeded;
  --cardiac-100: #fbd5d5;
  --cardiac-300: #f47878;
  --cardiac-500: #ef4b4b;
  --cardiac-600: #c42020;
  --cardiac-700: #9b1a1a;
  --shadow-cardiac: 0 8px 22px rgba(196, 32, 32, 0.35);
  --accent-cardiac-light-color: #f47878;
}

/* ============================================================
   CARDIOLOGY — EXTRA BUTTON VARIANTS
============================================================ */
/* Cardiac emergency button (red) */
.btn--cardiac {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
  box-shadow: var(--shadow-teal);
}

.hero .btn--cardiac {
  background: var(--cardiac-600);
  border-color: var(--cardiac-600);
  color: #fff;
}

.hero .btn--cardiac:hover {
  background: var(--cardiac-600);
  border-color: var(--cardiac-600);
  color: var(--white);
}

.btn--cardiac:hover {
  background: var(--cardiac-700);
  border-color: var(--cardiac-700);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(196, 32, 32, 0.45);
}

/* Ghost teal (used in about hospital section) */
.btn--ghost-teal {
  background: var(--white);
  color: var(--teal-700);
  border-color: var(--teal-300);
}

.btn--ghost-teal:hover {
  background: var(--teal-50);
  border-color: var(--teal-500);
  color: var(--teal-700);
}

/* Outline white */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--white);
}

/* XL button size */
.btn--xl {
  padding: 16px 30px;
  font-size: 15px;
}

/* ============================================================
   CARDIOLOGY — EXTRA ACCENT HELPERS
============================================================ */
.accent-cardiac {
  color: var(--cardiac-600);
  font-weight: 700;
}

.accent-cardiac-light {
  color: var(--accent-cardiac-light-color);
  font-weight: 700;
}

/* ============================================================
   CARDIOLOGY — EYEBROW CARDIAC VARIANT
============================================================ */
.eyebrow--cardiac {
  background: var(--cardiac-50);
  color: var(--cardiac-700);
  border: 1px solid var(--cardiac-100);
}

/* ============================================================
   DEPT-PAGE: HERO OVERRIDES
   .dept-page prefix scopes these to cardiology only
============================================================ */
.dept-page .hero {
  padding: 44px 0 48px;
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #f0f8f6 100%);
}

.dept-page .hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.22), transparent 70%);
  pointer-events: none;
}

.dept-page .hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 32, 32, 0.10), transparent 70%);
  pointer-events: none;
}

.dept-page .hero__inner {
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
}

.dept-page .hero__title {
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: -1.1px;
  margin: 12px 0;
  margin-top: 5px;
}

.dept-page .hero__title span {
  color: var(--teal-600);
}

.dept-page .hero__cta-row {
  gap: 12px;
  margin-bottom: 18px;
}

.dept-page .hero__lede {
  max-width: 540px;
}

/* Dept hero trust bar — pill style */
.dept-page .hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  border: none;
  flex-wrap: wrap;
}

.hero__trust-stars {
  color: var(--gold-300);
  font-size: 14px;
  letter-spacing: 1px;
}

.hero__trust-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 12.5px;
  color: var(--ink-600);
}

.hero__trust-meta strong {
  color: var(--navy-900);
  font-weight: 700;
  font-size: 14px;
}

.dept-page .hero__trust-divider {
  width: 1px;
  height: 22px;
  background: var(--ink-100);
}

.hero__trust-nabh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 12.5px;
  color: var(--ink-600);
}

.hero__trust-nabh i {
  color: var(--gold-400);
  font-size: 14px;
}

.hero__trust-nabh strong {
  color: var(--navy-900);
  font-weight: 700;
}

/* USP checklist in hero */
.hero__usp {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  margin: 0 0 20px;
  padding: 0;
  max-width: 540px;
}

.hero__usp li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy-900);
}

.hero__usp li i {
  color: var(--teal-500);
  font-size: 14px;
  flex-shrink: 0;
}

/* Cardiac hero card (right side) */
.hero__visual {
  position: relative;
}

.hero__cardiac-card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--cardiac-50);
  box-shadow: 0 24px 50px rgba(11, 26, 66, 0.18);
  aspect-ratio: 5/4;
}

.hero__cardiac-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 8s ease;
}

.hero__cardiac-card:hover img {
  transform: scale(1.05);
}

.hero__cardiac-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 66, 0.05) 0%, transparent 30%, transparent 55%, rgba(11, 26, 66, 0.70) 100%);
  pointer-events: none;
}

.hero__cardiac-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 8px 14px 8px 10px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.hero__cardiac-tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cardiac-600);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.hero__cardiac-tag strong {
  display: block;
  font-family: var(--f-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
}

.hero__cardiac-tag span {
  display: block;
  font-size: 10.5px;
  color: var(--ink-500);
  margin-top: 1px;
}

.hero__cardiac-stat {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--cardiac-600);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  text-align: center;
  box-shadow: var(--shadow-cardiac);
  z-index: 2;
}

.hero__cardiac-stat strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.3px;
}

.hero__cardiac-stat span {
  display: block;
  font-size: 9.5px;
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero__cardiac-strip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 11px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.hero__cardiac-strip>div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 600;
  color: linear-gradient(135deg, var(--cardiac-500), var(--cardiac-700));
}

.hero__cardiac-strip>div i {
  color: var(--cardiac-600);
  font-size: 14px;
  flex-shrink: 0;
}

.hero__cardiac-strip>div+div {
  border-left: 1px solid var(--ink-100);
  padding-left: 10px;
}

/* ECG animation */
.hero__ecg {
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  opacity: 0.5;
}

.hero__ecg polyline {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: ecgDraw 4s ease-out forwards, ecgPulse 2.4s ease-in-out 4s infinite;
}

@keyframes ecgDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ecgPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* ============================================================
   CARDIOLOGY TICKER — stats grid (different from home's insurance ticker)
============================================================ */
.dept-page .ticker {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.dept-page .ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(38, 166, 154, 0.18), transparent 60%);
  pointer-events: none;
}

.ticker__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 22px 28px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 12px;
}

.ticker__item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0 14px;
  font-family: var(--f-display);
}

.ticker__item:last-child {
  border-right: 0;
}

.ticker__item strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.ticker__item span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  letter-spacing: 0.4px;
}

/* ============================================================
   CARE UNDER ONE ROOF — photo cards
============================================================ */
.care-roof {
  background: var(--white);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.care-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex;
  flex-direction: column;
}

.care-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.care-card__media {
  position: relative;
  aspect-ratio: 4/2.7;
  overflow: hidden;
  background: var(--teal-50);
}

.care-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.care-card:hover .care-card__media img {
  transform: scale(1.06);
}

.care-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 26, 66, 0.25) 100%);
  pointer-events: none;
}

.care-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.care-card__body h4 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: -0.2px;
  margin: 0;
}

.care-card__body p {
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   CARDIOLOGY TREATMENTS — dark navy grid (tx-card, not trcard)
============================================================ */
.dept-page .treatments {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.dept-page .treatments::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(38, 166, 154, 0.18), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(196, 32, 32, 0.12), transparent 40%);
  pointer-events: none;
}

.dept-page .treatments::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.40;
  pointer-events: none;
}

.dept-page .treatments>.container {
  position: relative;
  z-index: 1;
}

.dept-page .treatments .h-display {
  color: var(--white);
}

.dept-page .treatments .accent-teal {
  color: var(--teal-300);
}

.dept-page .treatments .section__desc {
  color: rgba(255, 255, 255, 0.78);
}

.dept-page .treatments .eyebrow {
  background: rgba(38, 166, 154, 0.18);
  color: var(--teal-300);
  border-color: rgba(38, 166, 154, 0.40);
}

.tx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tx-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med), background var(--t-med);
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.tx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.30);
  border-color: rgba(38, 166, 154, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.tx-card:hover h4,
.tx-card:hover p,
.tx-card:hover span {
  color: #fff;
}

.tx-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.12);
  color: var(--teal-300);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: background var(--t-fast), color var(--t-fast);
}

.tx-card:hover .tx-card__icon {
  background: var(--teal-600);
  color: var(--white);
}

.tx-card__pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.tx-card__pill--cardiac {
  background: rgba(196, 32, 32, 0.25);
  color: var(--cardiac-300);
}

.tx-card h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0 0 8px;
}

.tx-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
}

.tx-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 11.5px;
  color: var(--teal-300);
  font-weight: 600;
}

.tx-card__meta i {
  font-size: 11px;
}

/* ============================================================
   DOCTOR TEAM — cardiology tile cards (doc-tile, not doc-card)
============================================================ */
.docteam {
  background: linear-gradient(180deg, var(--bg-soft), var(--white));
  position: relative;
  overflow: hidden;
}

.docteam::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 6% 30%, rgba(38, 166, 154, 0.08), transparent 40%),
    radial-gradient(circle at 94% 70%, rgba(196, 32, 32, 0.05), transparent 40%);
  pointer-events: none;
}

.docteam>.container {
  position: relative;
  z-index: 1;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.doc-tile {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex;
  flex-direction: column;
}

.doc-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.doc-tile__media {
  position: relative;
  aspect-ratio: 4/3.4;
  overflow: hidden;
  background: var(--teal-50);
}

.doc-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform var(--t-med);
}

.doc-tile:hover .doc-tile__media img {
  transform: scale(1.04);
}

.doc-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 26, 66, 0.20) 100%);
  pointer-events: none;
}

.doc-tile__body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.doc-tile__body h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.3px;
  line-height: 1.15;
  margin: 0 0 4px;
}

.doc-tile__role {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-700);
  letter-spacing: 0.4px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.section.docteam .btn--sm {
  padding: 10px 16px;

}

.doc-tile__creds {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.2px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.doc-tile__stats {
  list-style: none;
  padding: 14px 0;
  margin: 0 0 0px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}

.doc-tile__stats li {
  text-align: center;
  font-family: var(--f-display);
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.doc-tile__stats strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.doc-tile__body .btn {
  margin-top: auto;
}

/* ============================================================
   HEART ATTACK WARNING SIGNS
============================================================ */
.warnsigns {
  background: linear-gradient(180deg, var(--cardiac-50) 0%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}

.warnsigns::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(196, 32, 32, 0.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(38, 166, 154, 0.08), transparent 40%);
  pointer-events: none;
}

.warnsigns>.container {
  position: relative;
  z-index: 1;
}

.warn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.warn-col {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
}

.warn-col--urgent {
  border-top: 4px solid var(--cardiac-600);
}

.warn-col--routine {
  border-top: 4px solid var(--teal-500);
}

.warn-col__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-100);
}

.warn-col__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.warn-col--urgent .warn-col__icon {
  background: linear-gradient(135deg, var(--cardiac-500), var(--cardiac-700));
}

.warn-col--routine .warn-col__icon {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
}

.warn-col__label {
  display: block;
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.warn-col--urgent .warn-col__label {
  color: var(--cardiac-600);
}

.warn-col--routine .warn-col__label {
  color: var(--teal-600);
}

.warn-col__head h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.3px;
}

.warn-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
  flex: 1;
}

.warn-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  transition: background var(--t-fast), transform var(--t-fast);
}

.warn-list li:hover {
  transform: translateX(3px);
}

.warn-col--urgent .warn-list li {
  background: var(--cardiac-50);
}

.warn-col--urgent .warn-list li:hover {
  background: rgba(196, 32, 32, 0.10);
}

.warn-col--routine .warn-list li {
  background: var(--teal-bg-light);
}

.warn-col--routine .warn-list li:hover {
  background: var(--teal-50);
}

.warn-list li i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.warn-col--urgent .warn-list li i {
  background: var(--cardiac-600);
  color: var(--white);
}

.warn-col--routine .warn-list li i {
  background: var(--teal-600);
  color: var(--white);
}

.warn-list strong {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.warn-list span {
  display: block;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.5;
}

.warn-col__cta {
  width: 100%;
}


/* ============================================================
   VIDEOS — cardiology (vidcard/vidgrid, not vcard/vgrid)
============================================================ */
.dept-page .videos {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.dept-page .videos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(255, 0, 0, 0.12), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(38, 166, 154, 0.18), transparent 40%);
  pointer-events: none;
}

.dept-page .videos::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.45;
  pointer-events: none;
}

.dept-page .videos>.container {
  position: relative;
  z-index: 1;
}

.dept-page .videos .h-display {
  color: var(--white);
}

.dept-page .videos .accent-teal {
  color: var(--teal-300);
}

.dept-page .videos .section__desc {
  color: rgba(255, 255, 255, 0.78);
}

.dept-page .videos .eyebrow {
  background: rgba(255, 0, 0, 0.12);
  color: var(--white);
  border-color: rgba(255, 0, 0, 0.30);
}

.dept-page .videos__head {
  text-align: center;
  margin-bottom: 36px;
  display: block;
}

.dept-page .videos__head>div:first-child {
  max-width: 100%;
  margin: 0 auto;
}

.dept-page .videos__head .eyebrow .fa-youtube {
  color: #ff5757;
  font-size: 14px;
}

.vidgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vidcard {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex;
  flex-direction: column;
}

.vidcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.40);
  border-color: rgba(38, 166, 154, 0.30);
}

.vidcard__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.vidcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med), filter var(--t-fast);
}

.vidcard__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.vidcard:hover .vidcard__thumb img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.vidcard__thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.vidcard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.95);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(255, 0, 0, 0.5);
  animation: vidPlayPulse 2.4s ease-out infinite;
  transition: transform var(--t-fast), background var(--t-fast);
}

.vidcard:hover .vidcard__play {
  transform: translate(-50%, -50%) scale(1.10);
  background: #cc0000;
}

@keyframes vidPlayPulse {
  0% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(255, 0, 0, 0.55);
  }

  70% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 0 18px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.vidcard__play i {
  margin-left: 4px;
}

.vidcard__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vidcard__body h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin: 0;
}

.vidcard__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: auto;
}

.vidcard__meta i {
  color: #ff5757;
  font-size: 14px;
}

/* ============================================================
   CTA PITCH STRIPS (inline calls-to-action)
============================================================ */
.ctapitch {
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.ctapitch--teal {
  background: linear-gradient(135deg, var(--teal-bg-light) 0%, #d8f0ec 100%);
  border-top: 1px solid var(--teal-100);
  border-bottom: 1px solid var(--teal-100);
}

.ctapitch.ctapitch--navy.about .btn--primary {
  background-color: #1aafae;
  ;
}

.ctapitch--navy {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.ctapitch--navy .btn--primary {
  background: var(--teal-500);
  border-color: var(--teal-500);
}

.ctapitch--navy .btn--primary:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.ctapitch--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(38, 166, 154, 0.15), transparent 55%);
  pointer-events: none;
}

.ctapitch__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.ctapitch__text {
  flex: 1;
  min-width: 260px;
}

.ctapitch__text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ctapitch--teal .ctapitch__text strong {
  color: var(--navy-900);
}

.ctapitch--navy .ctapitch__text strong {
  color: var(--white);
}

.ctapitch__text span {
  font-size: 14px;
  line-height: 1.55;
}

.ctapitch--teal .ctapitch__text span {
  color: var(--ink-700);
}

.ctapitch--navy .ctapitch__text span {
  color: rgba(255, 255, 255, 0.78);
}

.ctapitch__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   THE GOLDEN HOUR — timeline section
============================================================ */
.golden {
  background: linear-gradient(145deg, #08111f 0%, #111827 45%, #1a0d0d 100%);
  color: #fff;
  position: relative;
  overflow: hidden
}

.golden:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 174, 255, .08), transparent 38%),
    radial-gradient(circle at 85% 80%, rgba(255, 70, 70, .10), transparent 40%);
  pointer-events: none
}

.golden>.container {
  position: relative;
  z-index: 1
}

.golden__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px
}

.golden__step {
  background: #fff;
  padding: 30px 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18)
}

.golden__step:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px
}

.golden__step--good:before {
  background: #18b7a0
}

.golden__step--mid:before {
  background: #d4a531
}

.golden__step--bad:before {
  background: #d93b3b
}

.golden__when {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px
}

.golden__step--good .golden__when {
  color: #18b7a0
}

.golden__step--mid .golden__when {
  color: #c08b12
}

.golden__step--bad .golden__when {
  color: #d93b3b
}

.golden__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #101828
}

.golden__detail {
  font-size: 15px;
  line-height: 1.8;
  color: #475467;
  margin-bottom: 22px
}

.golden__detail strong {
  color: #101828
}

.golden__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase
}

.golden__tag--good {
  background: #e7faf6;
  color: #11967f
}

.golden__tag--mid {
  background: #fff6de;
  color: #b98200
}

.golden__tag--bad {
  background: #ffe9e9;
  color: #cf2f2f
}

.golden__foot {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  flex-wrap: wrap
}

.golden__foot-stat {
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  flex-shrink: 0
}

.golden__foot-stat strong {
  display: block;
  font-size: 36px;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1;
  color: #6ff2df
}

.golden__foot-stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .65)
}

.golden__foot-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .84)
}

.golden__foot-text p {
  color: #fff;
}

.golden__foot-text strong {
  color: #fff
}

@media(max-width:991px) {
  .golden__timeline {
    grid-template-columns: 1fr
  }

  .golden__foot {
    flex-direction: column;
    align-items: flex-start
  }

  .golden__foot-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-right: 0;
    padding-bottom: 20px
  }
}

/* ============================================================
   ON-WHEEL EMERGENCY — ambulance section
============================================================ */
.onwheel {
  background: var(--bg-soft);
}

.onwheel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.onwheel__visual {
  position: relative;
}

.section.onwheel .onwheel__visual {
  position: sticky;
  top: 100px;
}

.onwheel__card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3.8/3;
}

.onwheel__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.onwheel__card:hover img {
  transform: scale(1.05);
}

.onwheel__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.onwheel__badge i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cardiac-600);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.onwheel__badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}

.onwheel__badge span {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
}

.onwheel__body>p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0 0 24px;
}

.onwheel__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.onwheel__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  list-style: none;
}

.onwheel__features li>i {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.onwheel__features li>div strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.onwheel__features li>div span {
  font-size: 12.5px;
  color: var(--ink-600);
  line-height: 1.4;
}

/* ============================================================
   CCU — dark critical care section
============================================================ */
.ccu {
  background: linear-gradient(160deg, var(--navy-950) 0%, #0c1528 60%, var(--navy-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ccu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 25%, rgba(38, 166, 154, 0.14), transparent 45%);
  pointer-events: none;
}

.ccu>.container {
  position: relative;
  z-index: 1;
}

.ccu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.ccu-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 26px 24px;
  text-align: center;
  transition: transform var(--t-med), background var(--t-med);
}

.ccu-card:hover {
  transform: translateY(-4px);
  background: rgba(38, 166, 154, 0.12);
}

.ccu-card__num {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--teal-300);
  line-height: 1;
  margin-bottom: 10px;
}

.ccu-card h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.ccu-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0;
}

.ccu-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ccu-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-md);
}

.ccu-feat i {
  color: var(--teal-300);
  font-size: 16px;
  flex-shrink: 0;
}

.ccu-feat span {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   PATIENT JOURNEY — steps
============================================================ */
.journey {
  background: var(--white);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.journey-track::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-200) 0, var(--teal-200) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 16px;
  border-radius: var(--r-xl);
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);

  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
}

.journey-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
}

.journey-step__num {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 0 0 10px 0px;
  background: var(--cardiac-600);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  margin-bottom: 12px;
  position: absolute;
  left: 0;
  top: 0;
}

.journey-step__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin: 0 auto 14px;
}

.journey-step h5 {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
}

.journey-step p {
  font-size: 12.5px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   ABOUT HOSPITAL — image + body (cardiology page)
============================================================ */
.abouthos {
  background: var(--bg-soft);
}

.abouthos__grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 50px;
  align-items: start;
}

.abouthos__lede {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.7;
  margin: 10px 0 20px;
}

.abouthos__lede strong {
  color: var(--navy-900);
  font-weight: 700;
}

.abouthos__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.abouthos__stat {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 16px 14px;
  text-align: center;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.abouthos__stat:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.abouthos__stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.abouthos__stat span {
  display: block;
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.abouthos__pillars {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abouthos__pillars li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-100);
  transition: border-color var(--t-fast);
}

.abouthos__pillars li:hover {
  border-color: var(--teal-200);
}

.abouthos__pillars li>i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.abouthos__pillars strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.abouthos__pillars span {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.5;
}

.abouthos__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.abouthos__media {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/4.4;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 100px;
}

.abouthos__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}

.abouthos__media:hover img {
  transform: scale(1.05);
}

.abouthos__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 26, 66, 0.50) 100%);
  pointer-events: none;
}

.abouthos__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--white);
  padding: 10px 16px 10px 12px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold-300);
  z-index: 2;
}

.abouthos__badge i {
  color: var(--gold-400);
  font-size: 18px;
}

.abouthos__badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
}

.abouthos__badge span {
  display: block;
  font-size: 10.5px;
  color: var(--ink-500);
  margin-top: 2px;
}

.abouthos__location {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 12px 16px 12px 12px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.abouthos__location i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.abouthos__location strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
}

.abouthos__location span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 2px;
}

/* ============================================================
   GALLERY MINI — cardiology mosaic
============================================================ */
.gallery-mini {
  background: linear-gradient(180deg, #fdf9ef, var(--cream-50));
}

.gmini-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.gmini-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
  cursor: pointer;
  display: block;
}

.gmini-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gmini-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.gmini-item:hover img {
  transform: scale(1.08);
}

.gmini-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 26, 66, 0.70) 100%);
  pointer-events: none;
}

.gmini-item__cap {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  color: var(--white);
  font-family: var(--f-display);
  z-index: 2;
}

.gmini-item__cap strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.gmini-item__cap .gmini-item__sub {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.4;
}

.gmini-item__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.30);
  margin-bottom: 8px;
}

.gmini-item__chip i {
  font-size: 9px;
}

.gmini-item--hero {
  grid-column: 1/2;
  grid-row: 1/3;
}

.gmini-item--hero .gmini-item__cap strong {
  font-size: 18px;
}

.gmini-item--tall {
  grid-column: 2/3;
  grid-row: 1/3;
}

.gmini-item--tall .gmini-item__cap strong {
  font-size: 15px;
}

/* ============================================================
   DEPT-PAGE: FAQ SECTION OVERRIDE
   Cardiology uses simple .faq-list accordion (not tabbed)
============================================================ */
.dept-page .faqs {
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #e3f1ee 100%);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

/* ============================================================
   DEPT-PAGE: FOOTER STRUCTURE
   Cardiology uses footer__top / footer__bottom classes
   Styled identically to home's footer__grid / footer__base
============================================================ */
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer__top h5 {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-300);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 16px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__list li a {
  font-size: 13px;
  color: #fff;
  transition: color var(--t-fast);
}

.footer__list li a:hover {
  color: var(--teal-300);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
}

.footer__contact-item:last-child {
  margin-bottom: 0;
}

.footer__contact-item i {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--t-fast);
}

.footer__contact-item a:hover {
  color: var(--teal-300);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: var(--navy-900);
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #fff;
}

.footer__bottom-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t-fast);
}

.footer__bottom-links a:hover {
  color: var(--teal-300);
}


/* ============================================================
   CARDIOLOGY RESPONSIVE — 1100px tablet
============================================================ */
@media (max-width: 1100px) {
  .dept-page .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dept-page .hero__title {
    font-size: 36px;
  }

  .dept-page .hero__cardiac-card {
    aspect-ratio: 16/10;
    max-width: 640px;
    margin: 0 auto;
  }

  .ticker__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ticker__item:nth-child(n+4) {
    border-right: none;
  }

  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tx-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .warn-grid {
    grid-template-columns: 1fr;
  }

  .doc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .doc-grid>article:nth-child(3) {
    grid-column: 1/-1;
    max-width: 460px;
    justify-self: center;
  }

  .golden__timeline {
    grid-template-columns: 1fr;
  }

  .golden__foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .golden__foot-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0 0 18px;
  }

  .onwheel__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .onwheel__features {
    grid-template-columns: 1fr;
  }

  .ccu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ccu-features {
    grid-template-columns: 1fr 1fr;
  }

  .journey-track {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .journey-track::before {
    display: none;
  }

  .abouthos__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .abouthos__media {
    aspect-ratio: 16/10;
    max-height: 480px;
    max-width: 720px;
    margin: 0 auto;
  }

  .abouthos__stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .abouthos__stat strong {
    font-size: 24px;
  }

  .gmini-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 200px 200px;
  }

  .gmini-item--hero {
    grid-column: 1/3;
    grid-row: 1/2;
  }

  .gmini-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .vidgrid {
    grid-template-columns: 1fr 1fr;
  }

  .ctapitch__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .ctapitch__actions {
    justify-content: center;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   CARDIOLOGY RESPONSIVE — 780px mobile
============================================================ */
@media (max-width: 780px) {
  .dept-page .hero {
    padding: 28px 0 36px;
  }

  .dept-page .hero__title {
    font-size: 28px;
  }

  .dept-page .hero__lede {
    font-size: 14.5px;
  }

  .dept-page .hero__usp {
    grid-template-columns: 1fr;
  }

  .dept-page .hero__trust {
    padding: 8px 14px;
    gap: 10px;
  }

  .dept-page .hero__trust-divider {
    display: none;
  }

  .hero__cardiac-strip {
    padding: 10px 12px;
    gap: 8px;
  }

  .hero__cardiac-strip>div {
    font-size: 11px;
  }

  .hero__cardiac-strip>div+div {
    padding-left: 8px;
  }

  .ticker__grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 0;
  }

  .tx-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .tx-grid::-webkit-scrollbar {
    display: none;
  }

  .tx-card {
    min-width: 85%;
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .doc-grid {
    grid-template-columns: 1fr;
  }

  .doc-grid>article:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }

  .ccu-grid {
    grid-template-columns: 1fr;
  }

  .ccu-features {
    grid-template-columns: 1fr;
  }

  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-step {
    background: var(--ink-100);
    z-index: 1;
    padding: 20px;
    border-radius: 20px;
  }

  .vidgrid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .vidgrid::-webkit-scrollbar {
    display: none;
  }

  .vidcard {
    min-width: 85%;
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .gmini-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }

  .gmini-item--hero,
  .gmini-item--tall {
    grid-column: 1;
    grid-row: auto;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom .container {
    flex-direction: column;
    gap: 8px;
  }

  .dept-page .videos__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .warn-col {
    padding: 15px;
  }

  .abouthos__stat span {
    font-size: 12px;
  }
}

/* ============================================================
   CARDIOLOGY RESPONSIVE — 480px small mobile
============================================================ */
@media (max-width: 480px) {
  .dept-page .hero__title {
    font-size: 24px;
  }

  .dept-page .hero__cta-row {
    flex-direction: column;
  }

  .dept-page .hero__cta-row .btn {
    width: 100%;
  }

  .ctapitch__actions {
    flex-direction: column;
  }

  .ctapitch__actions .btn {
    width: 100%;
  }

  .doc-tile__cta .btn {
    width: 100%;
  }
}

/* ============================================================
   PACEMAKER IMPLANTATION PAGE — Scoped under body.page-pm
   Pacemaker tokens, components, and responsive overrides.
   Add class="page-pm" to <body> in pacemaker-implantation.html
   ============================================================ */


/* ─── HOME-PAGE ALIGNED COLOR TOKENS ─── */

body.page-pm {
  /* PRIMARY BLUE — matches suvirahospital.com home page */
  --navy: #1849a1;
  /* home page --teal-600 / nav primary */
  --navy-dark: #1338a8;
  /* slightly deeper */
  --navy-deep: #0b1638;
  /* darkest navy for backgrounds */
  --navy-mid: #1e3a7e;
  /* mid navy for gradients */

  /* TEAL — secondary brand (matches home --teal-500) */
  --teal: #26a69a;
  --teal-light: #4abfae;
  --teal-dark: #1e8b80;

  /* GOLD — CTA / highlight accent */
  --gold: #d9a441;
  /* home --gold-400 */
  --gold-light: #f0c06a;
  --gold-dark: #b08020;

  /* CARDIAC RED — pacemaker urgency accent (thin use only) */
  --cardiac: #c42020;
  --cardiac-light: #f47878;

  /* ORANGE — secondary tag */
  --orange: #ff6b35;

  /* NEUTRALS */
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-tint: #edf3f8;
  --bg-cream: #fef9f0;
  --text: #1a2138;
  --text-muted: #5a6278;
  --text-light: #8a91a6;
  --border: #e3e8ef;
  --border-soft: #eef2f7;

  /* STATUS */
  --success: #16a97e;
  --danger: #e05252;
  --warning: #f5a623;

  /* SHADOWS */
  --sh-xs: 0 1px 3px rgba(11, 22, 56, .05);
  --sh-sm: 0 2px 8px rgba(11, 22, 56, .07);
  --sh-md: 0 10px 28px rgba(11, 22, 56, .10);
  --sh-lg: 0 20px 50px rgba(11, 22, 56, .14);
  --sh-xl: 0 30px 70px rgba(11, 22, 56, .22);
  --sh-glow: 0 10px 40px rgba(38, 166, 154, .35);
  --sh-gold: 0 10px 30px rgba(217, 164, 65, .40);
  --sh-blue: 0 10px 36px rgba(24, 73, 161, .35);

  /* RADII */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  /* SPACING */
  --sec: 60px;
  --container: 1240px;

  /* FONTS */
  --f-d: 'Fraunces', Georgia, serif;
  --f-b: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─── RESET ─── */

body.page-pm {
  margin: 0;
  font-family: var(--f-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.page-pm h1,
body.page-pm h2,
body.page-pm h3,
body.page-pm h4,
body.page-pm h5,
body.page-pm h6 {
  font-family: var(--f-d);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-deep);
  margin: 0 0 .5em;
  letter-spacing: -.015em;
}

body.page-pm em {
  font-style: italic;
  color: var(--teal-dark);
}

/* ─── HELPERS ─── */

body.page-pm .container {
  margin-inline: auto;
}

body.page-pm .section {
  padding: var(--sec) 0;
  position: relative;
}

body.page-pm .section__head {
  text-align: center;
  max-width: 70%;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  display: block;
}

body.page-pm .section__title {
  font-size: 36px;
  margin-bottom: 18px;
  font-weight: 700;
}

body.page-pm .section__title .accent {
  color: var(--teal);
  font-style: italic;
}

body.page-pm .section__title .accent-gold {
  color: var(--gold-light);
  font-style: italic;
}

body.page-pm .section__title .accent-blue {
  color: #6fa3ef;
  font-style: italic;
}

body.page-pm .section__desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

body.page-pm .section__head--light .section__title,
body.page-pm .section__title--light {
  color: #fff;
}

body.page-pm .section__head--light .section__desc,
body.page-pm .section__desc--light {
  color: #c5cdd8;
}

body.page-pm .accent {
  color: var(--teal);
}

/* ─── EYEBROW ─── */

body.page-pm .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(38, 166, 154, .12);
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
  border: 1px solid rgba(38, 166, 154, .25);
}

body.page-pm .eyebrow--light {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
}

body.page-pm .eyebrow i {
  font-size: .9rem;
}

body.page-pm .eyebrow--light i {
  color: var(--gold-light);
}

/* ─── BUTTONS ─── */



body.page-pm .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(24, 73, 161, .45);
  filter: brightness(1.08);
}

body.page-pm .btn--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  box-shadow: var(--sh-glow);
}

body.page-pm .btn--teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(38, 166, 154, .45);
  filter: brightness(1.06);
}

body.page-pm .btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: var(--sh-gold);
}

body.page-pm .btn--gold:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

body.page-pm .btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

body.page-pm .btn--outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}

body.page-pm .btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

body.page-pm .btn--outline-light:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

body.page-pm .hero .btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

body.page-pm .hero .btn--outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

body.page-pm .btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

body.page-pm .btn--xl {
  padding: 12px 38px;
  font-size: 1.05rem;
}

body.page-pm .btn--sm {
  padding: 10px 20px;
  font-size: .85rem;
}

body.page-pm .btn--block {
  display: flex;
  width: 100%;
}

/* ─── TOP BAR ─── */

body.page-pm .top-bar {
  background: var(--navy-deep);
  color: #c5cdd8;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
}

body.page-pm .top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.page-pm .top-bar__left,
body.page-pm .top-bar__right {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

body.page-pm .top-bar i {
  color: var(--teal-light);
  margin-right: 6px;
}

body.page-pm .top-bar a {
  color: #c5cdd8;
}

body.page-pm .top-bar a:hover {
  color: var(--teal-light);
}

body.page-pm .tb-whatsapp {
  background: rgba(37, 211, 102, .15);
  color: #25d366 !important;
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(37, 211, 102, .3);
}

body.page-pm .tb-whatsapp i {
  color: #25d366 !important;
}

/* ─── HEADER ─── */

body.page-pm .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: all .3s ease;
  border-bottom: 1px solid transparent;
}

body.page-pm .site-header.is-scrolled {
  box-shadow: var(--sh-md);
  border-bottom-color: var(--border-soft);
}


body.page-pm .logo img {
  height: 54px;
  width: auto;
}

body.page-pm .primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

body.page-pm .primary-nav>a:not(.btn):not(.header-call) {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy-deep);
  position: relative;
}

body.page-pm .primary-nav>a:not(.btn):not(.header-call):hover {
  color: var(--navy);
}

body.page-pm .primary-nav>a:not(.btn):not(.header-call)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width .3s ease;
}

body.page-pm .primary-nav>a:not(.btn):not(.header-call):hover::after {
  width: 100%;
}

body.page-pm .header-call {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 6px;
  background: var(--bg-soft);
  border-radius: var(--r-full);
  transition: all .3s ease;
}

body.page-pm .header-call i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
}

body.page-pm .header-call div {
  line-height: 1.2;
}

body.page-pm .header-call small {
  font-size: .7rem;
  color: var(--text-muted);
  display: block;
}

body.page-pm .header-call strong {
  color: var(--navy-deep);
  font-size: .92rem;
}

body.page-pm .header-call:hover {
  background: var(--bg-tint);
  transform: translateY(-2px);
}

body.page-pm .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

body.page-pm .nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all .3s ease;
}

body.page-pm .nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.page-pm .nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

body.page-pm .nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */

body.page-pm .hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #0c2a5b 0%, #001248 50%, #0d5c78 100%);
  isolation: isolate;
}

body.page-pm .hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60L0 40Q720 -20 1440 40L1440 60Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60L0 40Q720 -20 1440 40L1440 60Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  z-index: 1;
}

body.page-pm .hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1666214280391-8ff5bd3c0bf0?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center right;
  opacity: .20;
  z-index: -2;
  mix-blend-mode: luminosity;
}

body.page-pm .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 22, 56, .95) 0%, rgba(11, 22, 56, .85) 40%, rgba(13, 92, 120, .70) 100%);
}

body.page-pm .hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  z-index: -1;
  opacity: .5;
}

body.page-pm .hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .3;
  z-index: -1;
}

body.page-pm .hero__blob--1 {
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
}

body.page-pm .hero__blob--2 {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
  opacity: .20;
}

body.page-pm .hero__ecg-bar {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 64px;
  overflow: hidden;
  opacity: .25;
  z-index: 0;
}

body.page-pm .hero__ecg-bar svg {
  width: 200%;
  animation: ecg-scroll 8s linear infinite;
}

@keyframes ecg-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

body.page-pm .hero__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

body.page-pm .hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  box-shadow: var(--sh-sm);
}

body.page-pm .hero__tag .pulse {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .9);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

body.page-pm .hero__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 12px;
  color: #fff;
}

body.page-pm .hero__title .accent {
  color: var(--gold-light);
  font-style: italic;
}

body.page-pm .hero__title .accent-teal {
  color: var(--teal-light);
  font-style: italic;
}

body.page-pm .hero__title .gradient-text {
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--teal-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

body.page-pm .hero__title .gradient-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 14px;
  background: rgba(217, 164, 65, .20);
  z-index: -1;
  border-radius: 4px;
}

body.page-pm .hero__sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 580px;
}

body.page-pm .hero__sub strong {
  color: var(--gold-light);
}

body.page-pm .hero__benefits {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

body.page-pm .hero__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, .15);
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
}

body.page-pm .hero__benefit i {
  color: var(--teal-light);
  font-size: .9rem;
}

body.page-pm .hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

body.page-pm .hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

body.page-pm .hero__proof-avatars {
  display: flex;
}

body.page-pm .hero__proof-avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--navy-deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--f-d);
  margin-left: -12px;
  box-shadow: var(--sh-xs);
}

body.page-pm .hero__proof-avatars span:first-child {
  margin-left: 0;
}

body.page-pm .hero__proof-text .stars {
  color: var(--gold-light);
  font-size: .9rem;
  margin-bottom: 2px;
}

body.page-pm .hero__proof-text .stars strong {
  color: #fff;
  margin-left: 6px;
  font-family: var(--f-d);
  font-size: 1rem;
}

body.page-pm .hero__proof-text span {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
}

body.page-pm .hero__proof-text strong {
  color: #fff;
}

body.page-pm .hero__form-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-soft);
  isolation: isolate;
}

body.page-pm .hero__form-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 18px 22px;
  text-align: center;
  position: relative;
}

body.page-pm .hero__form-ribbon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(217, 164, 65, .4);
  border: 4px solid #fff;
}

body.page-pm .hero__form-top h3 {
  color: #fff;
  font-size: 1.45rem;
  margin: 0 0 6px;
}

body.page-pm .hero__form-top p {
  color: #c5cdd8;
  font-size: .92rem;
  margin: 0;
}

body.page-pm .hero__form-top strong {
  color: var(--gold-light);
}

body.page-pm .hero__form {
  padding: 26px 28px 28px;
}

body.page-pm .hero__form .field {
  margin-bottom: 12px;
}

body.page-pm .form-micro {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin: 12px 0 0;
}

body.page-pm .form-micro i {
  color: var(--success);
}

body.page-pm .phone-input {
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: all .25s ease;
}

body.page-pm .phone-input:focus-within {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(24, 73, 161, .10);
}

body.page-pm .phone-input>span {
  padding: 13px 12px;
  background: var(--bg-tint);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: .92rem;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

body.page-pm .phone-input>input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-pm .field input,
body.page-pm .field select,
body.page-pm .field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: all .25s ease;
}

body.page-pm .field input:focus,
body.page-pm .field select:focus,
body.page-pm .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(24, 73, 161, .10);
}

body.page-pm .field textarea {
  resize: vertical;
  min-height: 80px;
}

/* ─── USP STRIP ─── */

body.page-pm .usp-strip {
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 5;
}

body.page-pm .usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

body.page-pm .usp {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 8px 4px;
}

body.page-pm .usp+.usp {
  border-left: 1px solid var(--border-soft);
  padding-left: 20px;
}

body.page-pm .usp i {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(24, 73, 161, .12), rgba(38, 166, 154, .08));
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

body.page-pm .usp strong {
  display: block;
  color: var(--navy-deep);
  font-family: var(--f-d);
  font-size: 1rem;
  line-height: 1.2;
}

body.page-pm .usp span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── STATS ─── */

body.page-pm .stats {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #061f4c 50%, var(--navy-mid) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

body.page-pm .stats__bg-img {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(38, 166, 154, .20), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(217, 164, 65, .10), transparent 35%);
}

body.page-pm .stats__inner {
  position: relative;
  z-index: 2;
}

body.page-pm .stats__head {
  text-align: center;
  margin-bottom: 50px;
}

body.page-pm .stats__head h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

body.page-pm .stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

body.page-pm .stat {
  text-align: center;
  padding: 26px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

body.page-pm .stat:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-6px);
  border-color: rgba(38, 166, 154, .4);
}

body.page-pm .stat__icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(24, 73, 161, .3);
}

body.page-pm .stat__num {
  font-family: var(--f-d);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.page-pm .stat__label {
  font-size: .88rem;
  color: #c5cdd8;
  font-weight: 500;
}

/* ─── ABOUT ─── */

body.page-pm .about {
  background: #fff;
}

body.page-pm .about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 90px;
}

body.page-pm .about__media {
  position: relative;
  aspect-ratio: 6/5;
}

body.page-pm .about__img-main {
  width: 90%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
}

body.page-pm .about__img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 22, 56, .3) 100%);
}

body.page-pm .about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

body.page-pm .about__img-main:hover img {
  transform: scale(1.05);
}

body.page-pm .about__img-float {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 6px solid #fff;
}

body.page-pm .about__img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-pm .about__badge {
  position: absolute;
  top: 30px;
  right: -10px;
  background: #fff;
  padding: 14px 20px 14px 14px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-soft);
}

body.page-pm .about__badge i {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

body.page-pm .about__badge strong {
  display: block;
  color: var(--navy-deep);
  font-family: var(--f-d);
  font-size: .95rem;
}

body.page-pm .about__badge span {
  color: var(--text-muted);
  font-size: .78rem;
}

body.page-pm .about__text h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

body.page-pm .about__text>p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.75;
  font-weight: 500;
}

body.page-pm .check-list {
  margin-bottom: 20px;
}

body.page-pm .check-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  align-items: flex-start;
}

body.page-pm .check-list li:last-child {
  border-bottom: none;
}

body.page-pm .check-list i {
  color: var(--teal);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

body.page-pm .check-list strong {
  color: var(--navy-deep);
}

body.page-pm .about__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.page-pm .phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
}

body.page-pm .phone-link i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24, 73, 161, .10);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

body.page-pm .phone-link small {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

body.page-pm .phone-link strong {
  font-size: 1.1rem;
  font-family: var(--f-d);
}

body.page-pm .types {
  background: linear-gradient(135deg, #e8f0fb 0%, #dbeafe 100%);
  padding: 60px 40px;
  border-radius: var(--r-xl);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

body.page-pm .types::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(24, 73, 161, .08), transparent 70%);
  border-radius: 50%;
}

body.page-pm .types__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

body.page-pm .types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

body.page-pm .type-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all .35s ease;
}

body.page-pm .type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--navy);
}

body.page-pm .type-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

body.page-pm .type-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

body.page-pm .type-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
  font-weight: 500;
}

body.page-pm .type-card__tag {
  display: inline-block;
  background: rgba(24, 73, 161, .10);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .05em;
}

body.page-pm .type-card__tag--teal {
  background: rgba(38, 166, 154, .12);
  color: var(--teal-dark);
}

body.page-pm .type-card__tag--gold {
  background: rgba(217, 164, 65, .15);
  color: var(--gold-dark);
}

body.page-pm .type-card__tag--orange {
  background: rgba(255, 107, 53, .12);
  color: var(--orange);
}

/* ─── COMPARE SECTION ─── */

body.page-pm .compare-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

body.page-pm .compare-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?auto=format&fit=crop&w=2000&q=70');
  background-size: cover;
  background-position: center;
  opacity: .07;
  mix-blend-mode: overlay;
}

body.page-pm .compare-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(38, 166, 154, .20), transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(217, 164, 65, .12), transparent 40%);
}

body.page-pm .compare-table {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

body.page-pm .compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .25s ease;
}

body.page-pm .compare-row:hover {
  background: rgba(255, 255, 255, .03);
}

body.page-pm .compare-row:last-child {
  border-bottom: none;
}

body.page-pm .compare-row--head {
  background: rgba(255, 255, 255, .07);
  font-family: var(--f-d);
  font-size: 1rem;
  font-weight: 700;
}

body.page-pm .compare-row--head:hover {
  background: rgba(255, 255, 255, .07);
}

body.page-pm .compare-cell {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: #d0d7e2;
}

body.page-pm .compare-cell--label {
  color: #fff;
  font-weight: 600;
  font-family: var(--f-d);
}

body.page-pm .compare-cell--label i {
  color: var(--gold-light);
  font-size: 1rem;
  margin-right: 4px;
}

body.page-pm .compare-cell--bad {
  color: #f8a4a4;
}

body.page-pm .compare-cell--bad i {
  color: var(--danger);
  font-size: .9rem;
}

body.page-pm .compare-cell--good {
  color: #a5e4dc;
  background: rgba(38, 166, 154, .12);
  position: relative;
  font-weight: 600;
}

body.page-pm .compare-cell--good i {
  color: var(--success);
  font-size: 1rem;
}

body.page-pm .compare-row--head .compare-cell--good {
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding-right: 14px;
}

body.page-pm .compare-row--head .compare-cell--good span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .05em;
}

body.page-pm .compare-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

/* ─── DOCTOR ─── */

body.page-pm .doctor {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}

body.page-pm .doctor__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(circle at 70% 50%, rgba(24, 73, 161, .06), transparent 60%);
}

body.page-pm .doctor__grid {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

body.page-pm .doctor__visual {
  position: relative;
}

body.page-pm .doctor__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  z-index: 2;
}

body.page-pm .doctor__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

body.page-pm .doctor__img-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 2;
}

body.page-pm .doctor__exp-bubble {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--sh-xl);
  z-index: 3;
  border: 6px solid #fff;
}

body.page-pm .doctor__exp-bubble strong {
  font-family: var(--f-d);
  font-size: 2.4rem;
  line-height: 1;
}

body.page-pm .doctor__exp-bubble span {
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 4px;
}

body.page-pm .doctor__awards {
  position: absolute;
  top: 40px;
  left: -70px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}

body.page-pm .award {
  background: #fff;
  padding: 12px 16px 12px 12px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-soft);
}

body.page-pm .award i {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
}

body.page-pm .award span {
  color: var(--navy-deep);
  font-weight: 700;
  font-size: .82rem;
  line-height: 1.2;
}

body.page-pm #doctor .doctor__visual {
  position: sticky;
  top: 100px;
  align-self: start;
}

body.page-pm #doctor .doctor__content {
  position: relative;
}

body.page-pm #doctor {
  overflow: visible;
}

body.page-pm .doctor__content .eyebrow {
  margin-bottom: 16px;
}

body.page-pm .doctor__name {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-deep);
}

body.page-pm .doctor__credentials {
  font-family: var(--f-d);
  font-size: 1rem;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

body.page-pm .doctor__title-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 15px;
}

body.page-pm .doctor__title-role span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: .95rem;
}

body.page-pm .doctor__bio {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

body.page-pm .doctor__bio strong {
  color: var(--navy-deep);
}

body.page-pm .cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  padding: 24px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
}

body.page-pm .cred {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

body.page-pm .cred i {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(24, 73, 161, .10);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

body.page-pm .cred strong {
  display: block;
  color: var(--navy-deep);
  font-size: .92rem;
  line-height: 1.3;
}

body.page-pm .cred span {
  color: var(--text-muted);
  font-size: .8rem;
}

body.page-pm .doc-spec {
  margin-bottom: 24px;
}

body.page-pm .doc-spec h4 {
  font-size: .82rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  font-family: var(--f-b);
  font-weight: 700;
}

body.page-pm .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-pm .chips span {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy-deep);
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  transition: all .25s ease;
}

body.page-pm .chips span:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}

body.page-pm .doc-assoc {
  padding: 14px 18px;
  background: rgba(217, 164, 65, .08);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-xs);
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.7;
}

body.page-pm .doc-assoc strong {
  color: var(--navy-deep);
  display: block;
  margin-bottom: 4px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

body.page-pm .doctor__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── CONDITIONS ─── */

body.page-pm .conditions {
  background: #fff;
}

body.page-pm .conditions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

body.page-pm .condition-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-soft);
  transition: all .35s ease;
}

body.page-pm .condition-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--navy);
}

body.page-pm .condition-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

body.page-pm .condition-card__body {
  padding: 24px 26px;
}

body.page-pm .condition-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-pm .condition-card h4 i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(24, 73, 161, .10);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: .9rem;
}

body.page-pm .condition-card p {
  font-size: 16px;
  margin: 0;
  line-height: 1.65;
}

body.page-pm .self-check {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  padding: 50px 45px;
  border-radius: var(--r-xl);
  border: 1px dashed rgba(24, 73, 161, .35);
  position: relative;
  overflow: hidden;
}

body.page-pm .self-check::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(217, 164, 65, .08), transparent 70%);
  border-radius: 50%;
}

body.page-pm .self-check__left h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 12px;
}

body.page-pm .self-check__left p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

body.page-pm .self-check__left strong {
  color: var(--navy-deep);
}

body.page-pm .check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 24px;
}

body.page-pm .check-grid li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: .92rem;
  line-height: 1.5;
  padding: 6px 0;
}

body.page-pm .check-grid i {
  color: var(--navy);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── PROCEDURE / JOURNEY ─── */

body.page-pm #procedure {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}

body.page-pm #procedure .section__title {
  color: #fff;
}

body.page-pm #procedure .section__desc {
  color: #c5cdd8;
}

body.page-pm #procedure .eyebrow {
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

body.page-pm #procedure .eyebrow i {
  color: var(--gold-light);
}

body.page-pm #procedure .section__title .accent {
  color: var(--gold-light);
}

body.page-pm .procedure__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(38, 166, 154, .08), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(217, 164, 65, .06), transparent 40%);
}

body.page-pm .journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto;

  background: transparent;
}

body.page-pm .journey__step {
  position: relative;
  padding-top: 30px;
}

body.page-pm .journey__dot {
  position: absolute;
  top: 0;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: #fff;
  font-family: var(--f-d);
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(24, 73, 161, .40);
  z-index: 3;
  border: 5px solid #fff;
}

body.page-pm .journey__card {
  background: #fff;
  padding: 50px 28px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
  transition: all .35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

body.page-pm .journey__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

body.page-pm .journey__step:hover .journey__card {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

body.page-pm .journey__step:hover .journey__card::before {
  transform: scaleX(1);
}

body.page-pm .journey__icon {
  display: none;
}

body.page-pm .journey__card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

body.page-pm .journey__card p {
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0;
  line-height: 1.7;
}

body.page-pm .journey__card em {
  color: var(--gold-dark);
  font-weight: 600;
}

body.page-pm .journey__card strong {
  color: var(--teal-dark);
}

/* ─── WHY SUVIRA ─── */

body.page-pm .why-us {
  background: #fff;
}

body.page-pm .why-us__grid {
  display: grid;
  grid-template-columns: .7fr 1.2fr;
  gap: 60px;
  align-items: center;
}

body.page-pm .why-us__hero-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
}

body.page-pm .why-us__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-pm .why-us__rating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}

body.page-pm .why-us__rating .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 6px;
}

body.page-pm .why-us__rating strong {
  display: block;
  font-family: var(--f-d);
  font-size: 1.8rem;
  color: var(--navy-deep);
  line-height: 1;
}

body.page-pm .why-us__rating span {
  font-size: .85rem;
  color: var(--text-muted);
}

body.page-pm .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 30px;
}

body.page-pm .feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  transition: all .3s ease;
}

body.page-pm .feature:hover {
  background: #fff;
  box-shadow: var(--sh-md);
  border-color: var(--navy);
  transform: translateX(4px);
}

body.page-pm .feature__ic {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

body.page-pm .feature h4 {
  font-size: 1rem;
  margin: 0 0 4px;
}

body.page-pm .feature p {
  color: var(--text-muted);
  font-size: .85rem;
  margin: 0;
  line-height: 1.55;
}

body.page-pm .other-specs {
  padding: 18px 22px;
  background: rgba(24, 73, 161, .05);
  border-left: 3px solid var(--navy);
  border-radius: var(--r-xs);
}

body.page-pm .other-specs strong {
  display: block;
  color: var(--navy-deep);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  font-family: var(--f-b);
  font-weight: 700;
}

body.page-pm .spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.page-pm .spec-tags span {
  background: #fff;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-deep);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.page-pm .spec-tags i {
  color: var(--navy);
  font-size: .85rem;
}

/* ─── COST / INSURANCE ─── */

body.page-pm .cost {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

body.page-pm .cost__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(217, 164, 65, .15), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(38, 166, 154, .15), transparent 40%);
}

body.page-pm .cost .container {
  position: relative;
  z-index: 2;
}

body.page-pm .insurance-block {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}

body.page-pm .insurance-block__head {
  text-align: center;
  margin-bottom: 30px;
}

body.page-pm .insurance-block__head h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

body.page-pm .insurance-block__head h3 i {
  color: var(--gold-light);
  margin-right: 8px;
}

body.page-pm .insurance-block__head p {
  color: #c5cdd8;
  margin: 0;
}

body.page-pm .insurance-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

body.page-pm .ins-logo {
  background: #fff;
  color: var(--navy-deep);
  padding: 16px 10px;
  border-radius: var(--r-sm);
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  transition: all .3s ease;
}

body.page-pm .ins-logo:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ─── TESTIMONIALS ─── */

body.page-pm .testi-section {
  background: linear-gradient(135deg, #f9fbfd 0%, #eef4f9 100%);
  position: relative;
  overflow: hidden;
}

body.page-pm .testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

body.page-pm .testi-card {
  background: #fff;
  padding: 36px 34px 30px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all .35s ease;
}

body.page-pm .testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

body.page-pm .testi-card__quote {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 3rem;
  color: rgba(24, 73, 161, .10);
  line-height: 1;
}

body.page-pm .testi-card__stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1rem;
}

body.page-pm .testi-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

body.page-pm .testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

body.page-pm .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--sh-sm);
}

body.page-pm .testi-card__author strong {
  display: block;
  color: var(--navy-deep);
  font-family: var(--f-d);
  font-size: 1.05rem;
}

body.page-pm .testi-card__author span {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ─── MID CTA BANNER ─── */

body.page-pm .mid-cta {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
}

body.page-pm .mid-cta__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(217, 164, 65, .20), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(38, 166, 154, .20), transparent 40%);
}

body.page-pm .mid-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='1' fill='%23ffffff' opacity='0.08'/%3E%3C/svg%3E");
}

body.page-pm .mid-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

body.page-pm .mid-cta__content {
  max-width: 80%;
  margin: 0 auto;
}

body.page-pm .mid-cta h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 14px;
}

body.page-pm .mid-cta p {
  color: #d0d7e2;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

body.page-pm .mid-cta strong {
  color: #fff;
}

body.page-pm .mid-cta em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

body.page-pm .mid-cta__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── FAQ ─── */

body.page-pm .faq {
  background: #fff;
}

body.page-pm .faq__container {
  max-width: 900px;
}

body.page-pm .accordion {
  margin-top: 20px;
}

body.page-pm .acc-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all .3s ease;
}

body.page-pm .acc-item[open] {
  border-color: var(--navy);
  background: #fff;
  box-shadow: var(--sh-md);
}

body.page-pm .acc-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-d);
}

body.page-pm .acc-item summary::-webkit-details-marker {
  display: none;
}

body.page-pm .acc-item summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform .3s ease;
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 2px;
}

body.page-pm .acc-item[open] summary::after {
  transform: rotate(45deg);
}

body.page-pm .stats__inner {
  display: block;
}

body.page-pm .acc-body {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.75;
}

body.page-pm .acc-body p {
  margin: 0;
}

body.page-pm .acc-body strong {
  color: var(--navy-deep);
}

/* ─── CONTACT ─── */


@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1100px) {
  body.page-pm .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.page-pm .hero__form-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  body.page-pm .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body.page-pm .usp-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-pm .usp+.usp {
    border-left: none;
    padding-left: 0;
  }

  body.page-pm .about__grid,
  body.page-pm .doctor__grid,
  body.page-pm .why-us__grid,
  body.page-pm .contact__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  body.page-pm .doctor__awards {
    position: static;
    flex-direction: row;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }

  body.page-pm .doctor__exp-bubble {
    right: 20px;
    bottom: -10px;
    width: 110px;
    height: 110px;
  }

  body.page-pm .doctor__exp-bubble strong {
    font-size: 1.9rem;
  }

  body.page-pm #doctor .doctor__visual {
    position: relative;
    top: unset;
  }

  body.page-pm #doctor .doctor__grid {
    grid-template-columns: 1fr;
  }

  body.page-pm .conditions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-pm .journey {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-pm .types__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-pm .testi-grid {
    grid-template-columns: 1fr;
  }

  body.page-pm .insurance-logos {
    grid-template-columns: repeat(4, 1fr);
  }

  body.page-pm .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.page-pm .cred-grid {
    grid-template-columns: 1fr;
  }

  body.page-pm .self-check {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 30px;
  }

}

@media (max-width: 768px) {
  body.page-pm {
    --sec: 40px;
  }

  body.page-pm .mobile-sticky {
    background: var(--navy);
    color: #fff;
  }

  body.page-pm .mobile-sticky__btn--call {
    color: #fff;
  }

  body.page-pm .footer__col h4 {
    text-align: start;
  }

  body.page-pm .insurance-block {
    padding: 20px;
  }

  body.page-pm .testi-card {
    padding: 20px;
    border-radius: 10px;
  }

  body.page-pm .mid-cta__content {
    max-width: 100%;
  }

  body.page-pm .mid-cta {
    padding: 40px 0;
  }

  body.page-pm .contact__form {
    padding: 20px;
  }

  body.page-pm .contact__form-top {
    padding: 15px;
  }

  body.page-pm .self-check {
    padding: 30px 22px;
    border-radius: 10px;
  }

  body.page-pm .stats__head h2 {
    font-size: 28px;
    line-height: 40px;
  }

  body.page-pm .section__title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  body.page-pm .doctor__awards {
    display: none;
  }

  body.page-pm .doctor__img-wrap {
    height: 300px;
    width: 100%;
  }

  body.page-pm .doctor__bg-pattern {
    display: none;
  }

  body.page-pm .doctor__ctas {
    justify-content: center;
  }

  body.page-pm .doctor__img-accent {
    display: none;
  }

  body.page-pm .cred-grid {
    padding: 20px 14px;
  }

  body.page-pm .compare-cta {
    margin-top: 30px;
  }

  body.page-pm .stats__head {
    margin-bottom: 30px;
  }

  body.page-pm .check-list {
    margin-bottom: 10px;
  }

  body.page-pm .types {
    padding: 30px 10px;
  }

  body.page-pm .section__head {
    max-width: 100%;
  }

  body.page-pm .about__grid {
    margin-bottom: 40px;
  }

  body.page-pm .types__title {
    font-size: 28px;
    line-height: 44px;
  }

  body.page-pm .about__text h3 {
    font-size: 26px;
  }

  body.page-pm .hide-md {
    display: none !important;
  }

  body.page-pm .top-bar__inner {
    justify-content: center;
    text-align: center;
  }

  body.page-pm .header-call {
    display: none;
  }

  body.page-pm .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 30px 30px;
    gap: 24px;
    box-shadow: var(--sh-xl);
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
  }

  body.page-pm .primary-nav.is-open {
    transform: translateX(0);
  }

  body.page-pm .primary-nav>a {
    font-size: 1.05rem;
  }

  body.page-pm .primary-nav .header-call {
    display: flex !important;
    width: 100%;
  }

  body.page-pm .primary-nav .btn {
    width: 100%;
    justify-content: center;
  }

  body.page-pm .nav-toggle {
    display: flex;
  }

  body.page-pm .hero {
    padding: 40px 0 100px;
    background: linear-gradient(135deg, #0b1638 0%, #1338a8 50%, #0d5c78 100%);
    isolation: isolate;
  }

  body.page-pm .hero__title {
    font-size: 1.9rem;
  }

  body.page-pm .hero__ctas {
    flex-direction: column;
  }

  body.page-pm .hero__ctas .btn {
    width: 100%;
  }

  body.page-pm .stats {
    padding: 40px 0;
  }

  body.page-pm .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-pm .stats__grid .stat:last-child {
    display: none;
  }

  body.page-pm .stat {
    padding: 20px;
  }

  body.page-pm .stat__num {
    font-size: 22px;
  }

  body.page-pm .usp span {
    font-size: 14px;
  }

  body.page-pm .usp-strip {
    padding: 24px 0;
  }

  body.page-pm .usp-strip__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.page-pm .conditions__grid,
  body.page-pm .journey,
  body.page-pm .types__grid,
  body.page-pm .features {
    grid-template-columns: 1fr;
  }

  body.page-pm .check-grid {
    grid-template-columns: 1fr;
  }

  body.page-pm .compare-table {
    font-size: .85rem;
  }

  body.page-pm .compare-cell {
    padding: 14px 12px;
    font-size: .85rem;
  }

  body.page-pm .compare-row--head {
    font-size: .88rem;
  }

  body.page-pm .compare-row--head .compare-cell--good span {
    display: none;
  }

  body.page-pm .insurance-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  body.page-pm .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  body.page-pm .footer__socials {
    justify-content: center;
  }

  body.page-pm .footer .footer__col ul {
    text-align: start;
  }

  body.page-pm .footer__grid {
    padding-bottom: 20px;
  }

  body.page-pm .footer__contact li {
    justify-content: start;
    text-align: left;
    max-width: fit-content;
    margin-inline: auto;
  }

  body.page-pm .mobile-sticky {
    display: grid;
  }

  body.page-pm {
    padding-bottom: 66px;
  }

  body.page-pm .float-btn {
    display: none;
  }

  body.page-pm .hero__tag {
    padding: 8px 18px;
    text-align: center;
  }

  body.page-pm .hero__tag .pulse {
    display: none;
  }

  body.page-pm .hero__benefits {
    gap: 8px;
  }

  body.page-pm .hero__benefit {
    font-size: .78rem;
    padding: 6px 12px;
  }

}

@media (max-width: 480px) {
  body.page-pm .hero__title {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  body.page-pm .hero__sub {
    font-size: .95rem;
  }

  body.page-pm .stats__grid .stat:last-child {
    grid-column: span 1;
  }

  body.page-pm .form-row {
    grid-template-columns: 1fr;
  }

  body.page-pm .contact__trust {
    gap: 10px;
  }

  body.page-pm .contact__trust div {
    font-size: .82rem;
  }

  body.page-pm .about__img-float {
    display: none;
  }

  body.page-pm .about__img-main {
    width: 100%;
  }

  body.page-pm .about__badge {
    right: -6px;
    padding: 10px 14px 10px 10px;
  }

  body.page-pm .about__badge i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  body.page-pm .insurance-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-pm .mid-cta__ctas {
    flex-direction: column;
  }

  body.page-pm .mid-cta__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  body.page-pm .top-bar {
    display: none;
  }

}

@media print {

  body.page-pm .top-bar,
  body.page-pm .float-btn,
  body.page-pm .mobile-sticky,
  body.page-pm .nav-toggle,
  body.page-pm .map-section {
    display: none;
  }

}

.section-banner::before {
  display: none;
}

.btn--cardiac {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
  box-shadow: var(--shadow-teal);
}