/* ============================================================
   BALAJI PHYSIOTHERAPY & PHOTOBIOMODULATION CLINIC — HOMEPAGE
   Theme: Teal primary (Balaji) · Navy supporting (Balaji) · Gold for PBM (QIPT)
   Fonts: Poppins (display + body) + Roboto (utility)
   Sizes: pixel-based, professional readable
============================================================ */

:root {
  /* TEAL — primary brand (from Balaji logo) */
  --teal-50: #effaf8;
  --teal-100: #d4f0ec;
  --teal-200: #a8e1da;
  --teal-300: #6dccc1;
  --teal-400: #2eb3a4;
  --teal-500: #14a39d;
  --teal-600: #14a39d;
  --teal-700: #0f8a85;
  --teal-800: #0c6f6a;
  --teal-900: #094f4b;
  --teal-bg-light: #ebf8f6;

  /* NAVY — supporting (from Balaji "PHYSIOTHERAPY CLINIC" text) */
  --navy-950: #0b1240;
  --navy-900: #141f52;
  --navy-800: #1e2a6e;
  --navy-700: #2b3a85;
  --navy-600: #3a4a99;
  --navy-50: #f3f5fb;
  --navy-100: #e6ebf6;
  --navy-150: #dde3f0;
  --navy-bg-tint: #eef2fa;
  --cream-50: #fbf7ee;
  --cream-100: #f5eedb;

  /* GREEN — small accent (from Balaji "Turns Pain Into Power" tagline) */
  --green-400: #5bc04c;
  --green-500: #45a838;
  --green-600: #36862c;

  /* GOLD — QIPT Lifescience accent (used in PBM section + small touches) */
  --gold-300: #e5c988;
  --gold-400: #d4a744;
  --gold-500: #c9a961;
  --gold-600: #a5853d;

  /* 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(20, 31, 82, 0.04);
  --shadow-sm: 0 2px 8px rgba(20, 31, 82, 0.06);
  --shadow-md: 0 6px 18px rgba(20, 31, 82, 0.08);
  --shadow-lg: 0 14px 32px rgba(20, 31, 82, 0.10);
  --shadow-xl: 0 22px 50px rgba(20, 31, 82, 0.14);
  --shadow-teal: 0 8px 22px rgba(20, 163, 157, 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: 16px;
  font-family: var(--f-display);
}

.eyebrow--dark {
  background: rgba(20, 163, 157, 0.15);
  color: var(--teal-300);
}

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

.accent-teal {
  color: #14a39d;
  font-weight: 700;
}

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

.accent-gold {
  color: var(--gold-400);
  font-weight: 700;
}

.accent-green {
  color: var(--green-500);
  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 20px;
}

.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(20, 163, 157, 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: 8px 0;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 62px;
  width: auto;
  display: block;
}

.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(20, 163, 157, 0.15);
}

.hero__decor--dots {
  bottom: 50px;
  left: 4%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(20, 163, 157, 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 {
  display: block;
  color: #1aafae;
  font-weight: 700;
  margin-top: 2px;
}

.hero__lede {
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.7;
  margin-bottom: 28px;
  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(20, 163, 157, 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;
  /* Image size maintain rahegi */
}

/* 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(20, 163, 157, 0.07), transparent 30%),
    radial-gradient(circle at 96% 88%, rgba(20, 31, 82, 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(20, 31, 82, 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(20, 163, 157, 0.30), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(20, 163, 157, 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(20, 163, 157, 0.20);
  color: var(--teal-300);
  border: 1px solid rgba(20, 163, 157, 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(20, 163, 157, 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(20, 163, 157, 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(20, 31, 82, 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(20, 31, 82, 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(20, 31, 82, 0.50) 0%, rgba(20, 31, 82, 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(20, 31, 82, 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(20, 163, 157, 0.10), transparent 35%),
    radial-gradient(circle at 5% 85%, rgba(20, 31, 82, 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(20, 163, 157, 0.12);
  color: var(--teal-700);
}

.doc-card--feat .doc-card__spec {
  background: rgba(20, 163, 157, 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(20, 163, 157, 0.07), transparent 30%),
    radial-gradient(circle at 95% 80%, rgba(20, 31, 82, 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(20, 163, 157, 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(20, 163, 157, 0.22);
}

.facilities__glow--r {
  bottom: -150px;
  right: -150px;
  background: rgba(20, 163, 157, 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(20, 31, 82, 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(20, 163, 157, 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(20, 163, 157, 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(20, 163, 157, 0.6);
  animation: hubPulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes hubPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 163, 157, 0.6);
  }

  70% {
    box-shadow: 0 0 0 36px rgba(20, 163, 157, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(20, 163, 157, 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(20, 163, 157, 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(20, 163, 157, 0.12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(20, 31, 82, 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(20, 31, 82, 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(20, 31, 82, 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(20, 163, 157, 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(20, 163, 157, 0.22), transparent 45%),
    radial-gradient(circle at 92% 78%, rgba(20, 163, 157, 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(20, 163, 157, 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(20, 163, 157, 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(20, 163, 157, 0.14), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(20, 31, 82, 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(20, 163, 157, 0.4), transparent 60%);
}

.blog-feat__media-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: rgba(20, 163, 157, 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(20, 163, 157, 0.12), transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(20, 31, 82, 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(20, 163, 157, 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(20, 163, 157, 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(20, 163, 157, 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(4, 1fr);
  gap: 18px;
}

/* 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(20, 31, 82, 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(20, 163, 157, 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(20, 163, 157, 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(20, 163, 157, 0.2), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(20, 163, 157, 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(20, 163, 157, 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: 50px;
  }

  .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(20, 31, 82, 0.30) 0%, rgba(20, 31, 82, 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%;
  }
}

/* ============================================================
   PHOTOBIOMODULATION SPOTLIGHT — gold accent dark section
   QIPT Lifescience differentiator
============================================================ */
.pbm-spot {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 167, 68, 0.12), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(20, 163, 157, 0.10), transparent 45%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.pbm-spot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212, 167, 68, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}

.pbm-spot__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.pbm-spot__qipt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 167, 68, 0.35);
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

.pbm-spot__qipt img {
  height: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 3px 6px;
}

.pbm-spot__qipt-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.pbm-spot__qipt-text strong {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pbm-spot__qipt-text em {
  font-size: 10.5px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Georgia', serif;
}

.pbm-spot__hl {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.4px;
  margin: 0 0 18px;
}

.pbm-spot__hl em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 700;
}

.pbm-spot__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 22px;
}

.pbm-spot__lede strong {
  color: #fff;
  font-weight: 600;
}

.pbm-spot__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}

.pbm-spot__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 167, 68, 0.3);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.pbm-spot__chip i {
  color: var(--gold-400);
  font-size: 11px;
}

.pbm-spot__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pbm-spot__ctas .btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(212, 167, 68, 0.35);
}

.pbm-spot__ctas .btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 167, 68, 0.5);
}

.pbm-spot__ctas .btn--ghost-gold {
  background: transparent;
  color: var(--gold-300);
  border: 1.5px solid var(--gold-400);
}

.pbm-spot__ctas .btn--ghost-gold:hover {
  background: rgba(212, 167, 68, 0.1);
}

/* Right side — pulsing orb visual */
.pbm-spot__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.pbm-spot__orb {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--gold-300), var(--gold-500) 50%, var(--gold-600) 100%);
  box-shadow:
    0 0 60px rgba(212, 167, 68, 0.5),
    0 0 120px rgba(212, 167, 68, 0.25),
    inset -20px -20px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  animation: pbmGlow 3.5s ease-in-out infinite;
}

@keyframes pbmGlow {
  0%, 100% {
    box-shadow:
      0 0 60px rgba(212, 167, 68, 0.5),
      0 0 120px rgba(212, 167, 68, 0.25),
      inset -20px -20px 60px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow:
      0 0 90px rgba(212, 167, 68, 0.7),
      0 0 180px rgba(212, 167, 68, 0.4),
      inset -20px -20px 60px rgba(0, 0, 0, 0.25);
  }
}

.pbm-spot__orb i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.pbm-spot__ring {
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(212, 167, 68, 0.45);
  border-radius: 50%;
  animation: pbmSpin 22s linear infinite;
}

.pbm-spot__ring--2 {
  inset: -55px;
  border-color: rgba(212, 167, 68, 0.25);
  animation-direction: reverse;
  animation-duration: 30s;
}

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

.pbm-spot__waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.pbm-spot__waves span {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(212, 167, 68, 0.4);
  opacity: 0;
  animation: pbmWave 3s ease-out infinite;
}

.pbm-spot__waves span:nth-child(2) { animation-delay: 1s; }
.pbm-spot__waves span:nth-child(3) { animation-delay: 2s; }

@keyframes pbmWave {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 920px) {
  .pbm-spot { padding: 56px 0; }
  .pbm-spot__inner { grid-template-columns: 1fr; gap: 40px; }
  .pbm-spot__hl { font-size: 28px; }
  .pbm-spot__orb { width: 220px; height: 220px; }
  .pbm-spot__orb i { font-size: 64px; }
  .pbm-spot__waves span { width: 220px; height: 220px; }
}

/* tighten section padding overall to reduce scroll */
.section { padding: 64px 0; }
@media (max-width: 920px) { .section { padding: 48px 0; } }


/* ============================================================
   PHASE 2 — REDESIGN OVERRIDES (distinct from Suvira)
   New physio-domain palette + fresh layouts
============================================================ */

:root {
  /* Warmer, more wellness-oriented section backgrounds */
  --bg-cream: #faf8f1;
  --bg-mint: #ebf8f6;
  --bg-sage: #eef5e8;
  --bg-peach: #fbf2eb;
  --teal-tint-2: #d8f0ec;
}

/* Override section padding rhythm */
.section { padding: 72px 0; }

/* Default body bg becomes a subtle warm tint instead of pure white */
body { background: #fbfaf6; }

/* Soften the universal h-display color slightly */
.h-display { color: #131a3e; letter-spacing: -0.5px; }

/* ============================================================
   REDESIGNED HERO — physio "story" banner
============================================================ */
.hero-r {
  position: relative;
  background:
    radial-gradient(circle at 88% 18%, rgba(212, 167, 68, 0.10), transparent 45%),
    radial-gradient(circle at 12% 80%, rgba(91, 192, 76, 0.10), transparent 50%),
    linear-gradient(135deg, #ebf8f6 0%, #f5f9ec 60%, #faf8f1 100%);
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-r__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-r__lead { position: relative; z-index: 2; }

.hero-r__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: #fff;
  border: 1px solid var(--teal-200);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(20, 163, 157, 0.08);
}

.hero-r__pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 3px rgba(91, 192, 76, 0.25);
  animation: heroDot 1.6s ease-in-out infinite;
}

@keyframes heroDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(91, 192, 76, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(91, 192, 76, 0.10); }
}

.hero-r__title {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1.06;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -1.4px;
  margin: 0 0 18px;
}

.hero-r__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-500) 0%, var(--green-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-r__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 26px;
  max-width: 540px;
}

.hero-r__lede strong { color: var(--navy-900); }

.hero-r__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-r__strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-r__strip li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(20, 163, 157, 0.18);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
}

.hero-r__strip li i {
  color: var(--teal-600);
  font-size: 15px;
}

.hero-r__strip li.is-gold i { color: var(--gold-400); }
.hero-r__strip li.is-green i { color: var(--green-500); }

/* Right visual block */
.hero-r__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
}

.hero-r__photo {
  position: relative;
  width: 92%;
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  box-shadow: 0 30px 60px -20px rgba(20, 31, 82, 0.35), 0 0 0 8px rgba(255,255,255,0.55);
}

.hero-r__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: luminosity;
  opacity: 0.92;
}

.hero-r__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 31, 82, 0.45) 100%);
}

/* Floating chips around photo */
.hero-r__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  box-shadow: 0 12px 28px rgba(20, 31, 82, 0.14);
  z-index: 3;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-r__chip i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  background: var(--teal-100);
  color: var(--teal-700);
}

.hero-r__chip.is-gold i { background: rgba(212,167,68,.18); color: var(--gold-500); }
.hero-r__chip.is-green i { background: rgba(91,192,76,.18); color: var(--green-500); }
.hero-r__chip.is-navy i { background: rgba(30,42,110,.10); color: var(--navy-800); }

.hero-r__chip--1 { top: 6%;  left: -2%; animation-delay: 0s; }
.hero-r__chip--2 { top: 28%; right: -4%; animation-delay: 1.1s; }
.hero-r__chip--3 { bottom: 24%; left: -6%; animation-delay: 2.2s; }
.hero-r__chip--4 { bottom: 6%; right: 4%; animation-delay: 3.3s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.hero-r__qipt {
  position: absolute;
  top: -8px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: linear-gradient(135deg, #fff, #fdf6e3);
  border: 1px solid rgba(212,167,68,0.4);
  border-radius: var(--r-pill);
  box-shadow: 0 14px 30px rgba(212,167,68,0.18);
  z-index: 4;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-r__qipt img {
  height: 26px;
  width: auto;
}

/* Bottom curved divider */
.hero-r__divider {
  display: block;
  width: 100%;
  height: 60px;
}

.hero-r__divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .hero-r__inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 32px; }
  .hero-r__title { font-size: 38px; }
  .hero-r__visual { aspect-ratio: auto; min-height: 360px; }
}


/* ============================================================
   SOFT TICKER (lighter cream version, replaces dark Suvira ticker)
============================================================ */
.tick-r {
  background: linear-gradient(90deg, var(--bg-cream), var(--bg-mint), var(--bg-cream));
  padding: 14px 0;
  border-top: 1px solid rgba(20, 163, 157, 0.12);
  border-bottom: 1px solid rgba(20, 163, 157, 0.12);
  overflow: hidden;
}

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

.tick-r__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--teal-600);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.tick-r__wrap { flex: 1; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.tick-r__track { display: inline-flex; align-items: center; gap: 36px; animation: tickScroll 35s linear infinite; }
.tick-r__track:hover { animation-play-state: paused; }
.tick-r__track > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  white-space: nowrap;
}
.tick-r__track > span i { color: var(--green-500); font-size: 12px; }
.tick-r__sep { color: var(--gold-400) !important; font-size: 18px !important; }

@keyframes tickScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ============================================================
   ABOUT — redesigned (centered head, 3-pillar row, side-by-side meet-doctor)
============================================================ */
.about-r {
  background: linear-gradient(180deg, #fbfaf6 0%, var(--bg-mint) 100%);
}

.about-r__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.about-r__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}

.about-r__pill {
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.15);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.about-r__pill:hover {
  transform: translateY(-4px);
  border-color: var(--teal-500);
  box-shadow: 0 18px 40px rgba(20, 163, 157, 0.15);
}

.about-r__pill-ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(20, 163, 157, 0.3);
}

.about-r__pill:nth-child(2) .about-r__pill-ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 10px 24px rgba(212, 167, 68, 0.32);
}

.about-r__pill:nth-child(3) .about-r__pill-ic {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 10px 24px rgba(91, 192, 76, 0.30);
}

.about-r__pill h3 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
}

.about-r__pill p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}

/* Meet the doctor block */
.about-r__doc {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(20, 163, 157, 0.12);
  box-shadow: 0 24px 60px -30px rgba(20, 31, 82, 0.18);
}

.about-r__doc-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-r__doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-r__doc-quote {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 14px;
  border-left: 3px solid var(--green-500);
}

.about-r__doc-quote em {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 600;
}

.about-r__doc-quote span {
  font-size: 10.5px;
  color: var(--ink-500);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-r__doc-body span.eyebrow { margin-bottom: 12px; }

.about-r__doc-body h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  letter-spacing: -0.4px;
}

.about-r__doc-creds {
  font-size: 13px;
  color: var(--ink-600);
  font-weight: 500;
  margin: 0 0 16px;
}

.about-r__doc-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 18px;
}

.about-r__doc-stats {
  display: flex;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 163, 157, 0.12);
}

.about-r__doc-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--teal-700);
  font-weight: 800;
  line-height: 1;
}

.about-r__doc-stat span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 900px) {
  .about-r__pillars { grid-template-columns: 1fr; }
  .about-r__doc { grid-template-columns: 1fr; padding: 22px; }
}


/* ============================================================
   PITCH STRIP — redesigned (split-card, less corporate)
============================================================ */
.pitch-r {
  padding: 32px 0;
  background: #fff;
}

.pitch-r__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 32px;
  background: linear-gradient(120deg, var(--bg-mint) 0%, var(--bg-sage) 100%);
  border-radius: 22px;
  border: 1px solid rgba(20, 163, 157, 0.18);
  position: relative;
  overflow: hidden;
}

.pitch-r__card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.18), transparent 70%);
  pointer-events: none;
}

.pitch-r__ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 10px 24px rgba(20, 163, 157, 0.3);
  flex-shrink: 0;
}

.pitch-r__text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 4px;
}

.pitch-r__text span {
  display: block;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}

.pitch-r__ctas {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pitch-r__card { grid-template-columns: 1fr; text-align: center; padding: 22px; }
  .pitch-r__ic { margin: 0 auto; }
  .pitch-r__ctas { justify-content: center; flex-wrap: wrap; }
}


/* ============================================================
   CONDITIONS — vertical-tab layout (per user request: tabs LEFT)
============================================================ */
.cond-r {
  background: linear-gradient(180deg, #fbfaf6 0%, var(--bg-cream) 100%);
}

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

.cond-r__tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 90px;
}

.cond-r__tab {
  all: unset;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid rgba(20, 163, 157, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--t-med);
}

.cond-r__tab:hover {
  border-color: var(--teal-500);
  transform: translateX(3px);
}

.cond-r__tab.is-active {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  border-color: var(--navy-900);
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(20, 31, 82, 0.4);
}

.cond-r__tab-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--t-med);
}

.cond-r__tab.is-active .cond-r__tab-ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

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

.cond-r__tab-text span {
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 500;
}

.cond-r__tab.is-active .cond-r__tab-text strong { color: #fff; }
.cond-r__tab.is-active .cond-r__tab-text span { color: rgba(255, 255, 255, 0.7); }

.cond-r__tab-arrow {
  margin-left: auto;
  color: var(--ink-400);
  font-size: 12px;
  transition: transform var(--t-med);
}

.cond-r__tab.is-active .cond-r__tab-arrow {
  color: var(--gold-300);
  transform: translateX(4px);
}

/* Right panels */
.cond-r__panels { position: relative; }
.cond-r__panel { display: none; }
.cond-r__panel.is-active { display: block; animation: condFade 0.4s ease; }

@keyframes condFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cond-r__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(20, 163, 157, 0.12);
}

.cond-r__panel-head h3 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
}

.cond-r__panel-head span {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.cond-r__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cond-r__card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(20, 163, 157, 0.12);
  text-decoration: none;
  transition: all var(--t-med);
}

.cond-r__card:hover {
  border-color: var(--teal-500);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(20, 163, 157, 0.22);
}

.cond-r__card-ic {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  display: grid;
  place-items: center;
  font-size: 32px;
  color: var(--teal-700);
  flex-shrink: 0;
}

.cond-r__card.is-pbm .cond-r__card-ic {
  background: linear-gradient(135deg, #fdf2d6, #f7e8b8);
  color: var(--gold-600);
}

.cond-r__card.is-neuro .cond-r__card-ic {
  background: linear-gradient(135deg, #e3eaf9, #ccd6f0);
  color: var(--navy-800);
}

.cond-r__card.is-women .cond-r__card-ic {
  background: linear-gradient(135deg, #fbe9d8, #f7d6b8);
  color: #b8632a;
}

.cond-r__card-body { min-width: 0; }

.cond-r__card-cat {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 4px;
}

.cond-r__card.is-pbm .cond-r__card-cat { color: var(--gold-600); }
.cond-r__card.is-neuro .cond-r__card-cat { color: var(--navy-800); }
.cond-r__card.is-women .cond-r__card-cat { color: #b8632a; }

.cond-r__card-body h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  line-height: 1.3;
}

.cond-r__card-body p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}

@media (max-width: 900px) {
  .cond-r__layout { grid-template-columns: 1fr; }
  .cond-r__tabs { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 8px; gap: 8px; }
  .cond-r__tab { flex-shrink: 0; min-width: 220px; }
  .cond-r__grid { grid-template-columns: 1fr; }
  .cond-r__card { grid-template-columns: 70px 1fr; }
  .cond-r__card-ic { width: 70px; height: 70px; font-size: 26px; }
}


/* ============================================================
   WHY CHOOSE — redesigned (horizontal numbered cards, image on top right)
============================================================ */
.why-r {
  background: linear-gradient(180deg, var(--bg-mint) 0%, #fbfaf6 100%);
  position: relative;
  overflow: hidden;
}

.why-r__head-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 44px;
}

.why-r__hd .h-display { font-size: 36px; }

.why-r__hd .lede { margin-top: 14px; max-width: 540px; }

.why-r__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: 0 28px 60px -25px rgba(20, 31, 82, 0.4);
}

.why-r__visual img { width: 100%; height: 100%; object-fit: cover; }

.why-r__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(20, 31, 82, 0.25);
}

.why-r__badge strong { font-size: 22px; font-family: var(--f-display); color: var(--navy-900); font-weight: 800; line-height: 1; }
.why-r__badge i { color: var(--gold-400); font-size: 14px; }
.why-r__badge span { font-size: 11.5px; color: var(--ink-600); font-weight: 600; }

.why-r__badge-2 {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

/* Numbered horizontal cards */
.why-r__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}

.why-r__pillars::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-top: 2px dashed rgba(20, 163, 157, 0.3);
  z-index: 0;
}

.why-r__pill {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.15);
  border-radius: 18px;
  padding: 24px 18px 22px;
  text-align: center;
  transition: all var(--t-med);
}

.why-r__pill:hover {
  transform: translateY(-4px);
  border-color: var(--teal-500);
  box-shadow: 0 18px 38px -12px rgba(20, 163, 157, 0.25);
}

.why-r__pill-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(20, 163, 157, 0.35);
  border: 3px solid #fff;
}

.why-r__pill:nth-child(2) .why-r__pill-num { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); box-shadow: 0 8px 18px rgba(212, 167, 68, 0.35); }
.why-r__pill:nth-child(3) .why-r__pill-num { background: linear-gradient(135deg, var(--green-500), var(--green-600)); box-shadow: 0 8px 18px rgba(91, 192, 76, 0.35); }
.why-r__pill:nth-child(4) .why-r__pill-num { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); box-shadow: 0 8px 18px rgba(20, 31, 82, 0.35); }

.why-r__pill-ic {
  font-size: 28px;
  color: var(--teal-700);
  margin: 14px 0 12px;
}

.why-r__pill:nth-child(2) .why-r__pill-ic { color: var(--gold-500); }
.why-r__pill:nth-child(3) .why-r__pill-ic { color: var(--green-500); }
.why-r__pill:nth-child(4) .why-r__pill-ic { color: var(--navy-800); }

.why-r__pill h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.25;
}

.why-r__pill p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-600);
  margin: 0;
}

@media (max-width: 900px) {
  .why-r__head-row { grid-template-columns: 1fr; }
  .why-r__pillars { grid-template-columns: 1fr 1fr; }
  .why-r__pillars::before { display: none; }
}
@media (max-width: 560px) {
  .why-r__pillars { grid-template-columns: 1fr; }
}


/* ============================================================
   THERAPIES — redesigned: 4-column grid, top-centered icons (lighter)
============================================================ */
.ther-r {
  background:
    radial-gradient(circle at 12% 88%, rgba(91, 192, 76, 0.06), transparent 40%),
    radial-gradient(circle at 88% 12%, rgba(212, 167, 68, 0.06), transparent 40%),
    linear-gradient(180deg, #fbfaf6 0%, var(--bg-cream) 100%);
}

.ther-r__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }

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

.ther-r__card {
  position: relative;
  padding: 32px 22px 24px;
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.14);
  border-radius: 20px;
  transition: all var(--t-med);
  overflow: hidden;
}

.ther-r__card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
  opacity: 0;
  transition: opacity var(--t-med);
}

.ther-r__card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-500);
  box-shadow: 0 22px 50px -16px rgba(20, 163, 157, 0.25);
}

.ther-r__card:hover::before { opacity: 1; }

.ther-r__num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 800;
  color: rgba(20, 163, 157, 0.12);
  line-height: 1;
  letter-spacing: -1px;
}

.ther-r__ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: all var(--t-med);
}

.ther-r__card:hover .ther-r__ic {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
  transform: scale(1.06);
}

.ther-r__card.is-gold .ther-r__ic {
  background: linear-gradient(135deg, #fdf2d6, #f7e8b8);
  color: var(--gold-600);
}

.ther-r__card.is-gold:hover .ther-r__ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.ther-r__card.is-gold { border-color: rgba(212, 167, 68, 0.3); }
.ther-r__card.is-gold:hover { border-color: var(--gold-400); box-shadow: 0 22px 50px -16px rgba(212, 167, 68, 0.3); }
.ther-r__card.is-gold::before { background: linear-gradient(90deg, var(--gold-400), var(--gold-500)); }

.ther-r__card.is-green .ther-r__ic {
  background: linear-gradient(135deg, #e2f4dc, #cdebbf);
  color: var(--green-600);
}
.ther-r__card.is-green:hover .ther-r__ic { background: linear-gradient(135deg, var(--green-500), var(--green-600)); color: #fff; }

.ther-r__card h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.3;
}

.ther-r__card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-600);
  margin: 0;
}

@media (max-width: 1100px) { .ther-r__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .ther-r__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ther-r__grid { grid-template-columns: 1fr; } }


/* ============================================================
   FAQ — single-column accordion, no categories (per user request)
============================================================ */
.faq-r {
  background: linear-gradient(180deg, #fbfaf6 0%, var(--bg-mint) 100%);
}

.faq-r__head { text-align: center; max-width: 720px; margin: 0 auto 36px; }

.faq-r__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-r__item {
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.14);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--t-fast);
}

.faq-r__item[open] {
  border-color: var(--teal-500);
  box-shadow: 0 16px 40px -16px rgba(20, 163, 157, 0.25);
}

.faq-r__item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-r__ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all var(--t-med);
}

.faq-r__item[open] .faq-r__ic {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
}

.faq-r__q { flex: 1; line-height: 1.4; }

.faq-r__plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink-100);
  color: var(--ink-600);
  font-size: 11px;
  flex-shrink: 0;
  transition: all var(--t-med);
}

.faq-r__item[open] .faq-r__plus {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: rotate(45deg);
}

.faq-r__item p {
  padding: 0 20px 18px 70px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-700);
}

.faq-r__item p strong { color: var(--navy-900); }

@media (max-width: 800px) {
  .faq-r__grid { grid-template-columns: 1fr; }
  .faq-r__item p { padding-left: 20px; }
}


/* ============================================================
   Section eyebrow refinement — slightly different look from Suvira
============================================================ */
.eyebrow-r {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(20, 163, 157, 0.10);
  color: var(--teal-700);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}

.eyebrow-r::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}

.eyebrow-r--gold { background: rgba(212, 167, 68, 0.12); color: var(--gold-600); }
.eyebrow-r--gold::before { background: var(--gold-400); }
.eyebrow-r--green { background: rgba(91, 192, 76, 0.12); color: var(--green-600); }
.eyebrow-r--green::before { background: var(--green-500); }


/* ============================================================
   PHASE 3 — Header co-brand, dark reviews, social media,
   videos/reels, doctor card sizing tweaks
============================================================ */

/* Header — QIPT co-brand mark */
.header__cobrand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 14px;
  margin-left: -10px;
  border-left: 1px solid rgba(20, 31, 82, 0.12);
}

.header__cobrand-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-600);
  line-height: 1;
}

.header__cobrand img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 1100px) {
  .header__cobrand { display: none; }
}


/* About — Doctor card sizing fix (smaller portrait + better stats spacing) */
.about-r__doc {
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  padding: 28px;
}

.about-r__doc-photo {
  aspect-ratio: 4 / 5;       /* portrait shape, smaller in width */
  max-width: 320px;
  align-self: stretch;
}

.about-r__doc-photo img {
  filter: saturate(1.05) contrast(1.02);
}

.about-r__doc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(20, 163, 157, 0.14);
  margin-top: 4px;
}

.about-r__doc-stat {
  text-align: center;
  padding: 10px 6px;
  background: var(--bg-mint);
  border-radius: 12px;
  border: 1px solid rgba(20, 163, 157, 0.12);
}

.about-r__doc-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--teal-700);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-r__doc-stat span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.about-r__doc-stat:nth-child(2) strong { color: var(--gold-600); }
.about-r__doc-stat:nth-child(3) strong { color: var(--green-600); }
.about-r__doc-stat:nth-child(4) strong { color: var(--navy-800); }

@media (max-width: 900px) {
  .about-r__doc { grid-template-columns: 1fr; }
  .about-r__doc-photo { max-width: 100%; aspect-ratio: 16 / 10; }
  .about-r__doc-stats { grid-template-columns: 1fr 1fr; }
}


/* Departments — Core pill (different from QIPT pill) */
.dept-panel__pill--core {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Slight specialties section animation tweak — pulse on icon */
.dept-panel.is-active .dept-panel__icon {
  animation: deptPulse 2s ease-in-out infinite;
}

@keyframes deptPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}


/* ============================================================
   GOOGLE REVIEWS — DARK BACKGROUND VARIANT
============================================================ */
.greviews--dark {
  background:
    radial-gradient(circle at 18% 12%, rgba(20, 163, 157, 0.12), transparent 45%),
    radial-gradient(circle at 82% 90%, rgba(212, 167, 68, 0.10), transparent 45%),
    linear-gradient(180deg, var(--navy-900) 0%, #0f1841 100%);
  position: relative;
  overflow: hidden;
}

.greviews--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.greviews--dark .gprofile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.greviews--dark .gprofile__brand strong { color: #fff; }
.greviews--dark .gprofile__brand em { color: rgba(255, 255, 255, 0.65); }

.greviews--dark .gprofile__rating-num strong { color: #fff; }
.greviews--dark .gprofile__rating-stars i { color: var(--gold-400); }
.greviews--dark .gprofile__rating-count { color: rgba(255, 255, 255, 0.7); }
.greviews--dark .gprofile__rating-count strong { color: #fff; }

.greviews--dark .gprofile__g {
  background: rgba(255, 255, 255, 0.08);
}
.greviews--dark .gprofile__g i { color: #fff; }

.greviews--dark .gprofile__actions .btn--primary {
  background: var(--gold-400);
  color: var(--navy-900);
  border-color: var(--gold-400);
}
.greviews--dark .gprofile__actions .btn--primary:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.greviews--dark .gprofile__actions .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.greviews--dark .gprofile__actions .btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.greviews--dark .greview {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
  transition: all var(--t-med);
}

.greviews--dark .greview:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(20, 163, 157, 0.5);
  transform: translateY(-3px);
}

.greviews--dark .greview__id strong { color: #fff; }
.greviews--dark .greview__id em { color: rgba(255, 255, 255, 0.6); }
.greviews--dark .greview__stars i { color: var(--gold-400); }
.greviews--dark .greview blockquote { color: rgba(255, 255, 255, 0.85); }
.greviews--dark .greview__head i.fa-google { color: #fff !important; opacity: 0.7; }


/* ============================================================
   SOCIAL MEDIA CREATIVES SECTION
============================================================ */
.social-r {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-peach) 100%);
  position: relative;
  overflow: hidden;
}

.social-r::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.15), transparent 65%);
  pointer-events: none;
}

.social-r__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.social-r__handles {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social-r__handle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.18);
  border-radius: var(--r-pill);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  transition: all var(--t-med);
}

.social-r__handle i { font-size: 16px; color: var(--teal-600); }
.social-r__handle:hover { border-color: var(--teal-500); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20, 163, 157, 0.18); }
.social-r__handle:nth-child(1) i { color: #d62976; }
.social-r__handle:nth-child(2) i { color: #1877f2; }
.social-r__handle:nth-child(3) i { color: #ff0000; }

/* Creative cards — Instagram-style 1:1 squares */
.social-r__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.creative {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  transition: all var(--t-med);
  box-shadow: 0 10px 30px -10px rgba(20, 31, 82, 0.18);
}

.creative:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -16px rgba(20, 31, 82, 0.32);
}

.creative__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  z-index: 2;
}

.creative__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.creative h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 14px 0 8px;
  color: inherit;
}

.creative h3 em {
  font-style: italic;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.22);
  padding: 0 6px;
  border-radius: 6px;
}

.creative p {
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.creative__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.creative__foot img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.creative__foot span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Color variants */
.creative--teal { background: linear-gradient(135deg, #14a39d 0%, #0e7a75 60%, #0a5a55 100%); }
.creative--gold { background: linear-gradient(135deg, #d4a744 0%, #b8862c 100%); color: var(--navy-900); }
.creative--gold .creative__tag { background: rgba(20,31,82,0.20); border-color: rgba(20,31,82,0.25); color: var(--navy-900); }
.creative--gold h3 em { background: rgba(20,31,82,0.15); }
.creative--gold .creative__foot { border-top-color: rgba(20,31,82,0.2); }
.creative--gold .creative__foot img { filter: none; }
.creative--green { background: linear-gradient(135deg, #5bc04c 0%, #3d9b30 100%); }
.creative--navy { background: linear-gradient(135deg, var(--navy-900) 0%, #0a0f30 100%); }
.creative--peach { background: linear-gradient(135deg, #f4a261 0%, #c97a3e 100%); }
.creative--mint { background: linear-gradient(135deg, #6fbfa9 0%, #4d9683 100%); }

/* Decorative grain */
.creative__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(255,255,255,0.10), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 900px) {
  .social-r__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .social-r__grid { grid-template-columns: 1fr; }
  .creative { aspect-ratio: 4 / 3; }
}


/* ============================================================
   VIDEOS & REELS SECTION
============================================================ */
.reels-r {
  background: linear-gradient(180deg, var(--bg-mint) 0%, #fbfaf6 100%);
}

.reels-r__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.reels-r__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background-color: var(--navy-900);
  background-image: var(--reel-img);
  background-size: cover;
  background-position: center;
  transition: all var(--t-med);
  box-shadow: 0 14px 32px -10px rgba(20, 31, 82, 0.32);
}

.reel:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px -14px rgba(20, 31, 82, 0.4);
}

.reel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}

.reel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 3;
  transition: all var(--t-med);
  padding-left: 4px;
}

.reel:hover .reel__play {
  background: var(--teal-500);
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.reel--gold:hover .reel__play { background: var(--gold-500); }
.reel--green:hover .reel__play { background: var(--green-500); }

.reel__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  z-index: 3;
  text-transform: uppercase;
}

.reel--gold .reel__tag { background: rgba(212, 167, 68, 0.85); border-color: var(--gold-400); color: var(--navy-900); }
.reel--green .reel__tag { background: rgba(91, 192, 76, 0.85); border-color: var(--green-500); }

.reel__meta {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 3;
  color: #fff;
}

.reel__meta strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.reel__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  opacity: 0.8;
  font-weight: 600;
}

.reels-r__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .reels-r__row { grid-template-columns: repeat(3, 1fr); }
  .reels-r__row .reel:nth-child(4),
  .reels-r__row .reel:nth-child(5) { display: none; }
}

@media (max-width: 700px) {
  .reels-r__row { grid-template-columns: repeat(2, 1fr); }
  .reels-r__row .reel:nth-child(4),
  .reels-r__row .reel:nth-child(5) { display: block; }
}

@media (max-width: 480px) {
  .reels-r__row { grid-template-columns: 1fr 1fr; gap: 10px; }
}


/* ============================================================
   PHASE 3 FIX — Header sizing fix: cobrand + nav + actions
============================================================ */

/* Tighten header to fit cobrand + nav + actions on one line */
.header__inner {
  gap: 16px;
}

.header__logo img {
  height: 54px;       /* slightly smaller so cobrand fits */
}

.header__cobrand {
  gap: 6px;
  padding-left: 12px;
  margin-left: -8px;
  flex-shrink: 0;
}

.header__cobrand img {
  height: 30px;
}

.header__cobrand-label {
  font-size: 8.5px;
  letter-spacing: 1px;
}

.header__nav {
  flex-shrink: 1;
  margin-right: auto;
}

.header__nav a {
  padding: 9px 10px;
  font-size: 13.5px;
}

.header__phone {
  flex-shrink: 0;
  white-space: nowrap;
}

.header__phone-text strong {
  white-space: nowrap;
  font-size: 13px;
}

.header__phone-text small {
  white-space: nowrap;
  font-size: 10px;
}

.header__actions {
  flex-shrink: 0;
  gap: 12px;
}

.header__actions .btn {
  white-space: nowrap;
  padding: 11px 18px;
  font-size: 13.5px;
}

@media (max-width: 1300px) {
  .header__cobrand-label { display: none; }
  .header__cobrand { padding-left: 10px; }
  .header__cobrand img { height: 28px; }
}

@media (max-width: 1180px) {
  .header__nav a { font-size: 12.5px; padding: 8px 8px; }
}

/* Re-establish dark-section text colors after Phase 2 override */
.h-display--light,
.greviews--dark .h-display { color: #fff !important; }
.greviews--dark .h-display .accent-teal,
.greviews--dark .accent-teal-light { color: var(--teal-300) !important; }
.greviews--dark .eyebrow.eyebrow--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal-300);
  border: 1px solid rgba(255, 255, 255, 0.15);
}


/* ============================================================
   PHASE 4 — New hero v3, header text-cobrand, post-card images,
   gold-forward palette shifts, dept card design tweaks
============================================================ */

/* Header co-brand: text-only Powered by QIPT (no caduceus image) */
.header__cobrand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 7px;
  row-gap: 0;
  padding-left: 14px;
  margin-left: -8px;
  border-left: 1px solid rgba(20, 31, 82, 0.14);
  line-height: 1;
  flex-shrink: 0;
}

.header__cobrand-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-500);
  line-height: 1;
}

.header__cobrand-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.header__cobrand-tag {
  flex-basis: 100%;
  font-size: 8.5px;
  letter-spacing: 1px;
  font-style: italic;
  color: var(--ink-500);
  margin-top: 1px;
  margin-left: 39px;       /* aligns with start of QIPT text */
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 1300px) {
  .header__cobrand-tag { display: none; }
}

@media (max-width: 1100px) {
  .header__cobrand { display: none; }
}


/* ============================================================
   HERO V3 — Teal feature block, brand-creative aesthetic
============================================================ */
.hero-v3 {
  position: relative;
  background:
    radial-gradient(circle at 88% 14%, rgba(212, 167, 68, 0.18), transparent 35%),
    radial-gradient(circle at 6% 88%, rgba(91, 192, 76, 0.12), transparent 40%),
    linear-gradient(135deg, #0d6e69 0%, #14a39d 55%, #1c8b86 100%);
  padding: 76px 0 120px;
  overflow: hidden;
  color: #fff;
}

.hero-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.4;
}

/* Decorative chevrons (matching social-creative style) */
.hero-v3__chevs {
  position: absolute;
  display: flex;
  gap: 6px;
  z-index: 2;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.hero-v3__chevs i {
  animation: chevSlide 1.6s ease-in-out infinite;
}

.hero-v3__chevs--tr {
  top: 32px;
  right: 36px;
}

.hero-v3__chevs--bl {
  bottom: 80px;
  left: 36px;
  color: rgba(212, 167, 68, 0.7);   /* gold tint */
}

.hero-v3__chevs i:nth-child(1) { animation-delay: 0s; }
.hero-v3__chevs i:nth-child(2) { animation-delay: 0.15s; }
.hero-v3__chevs i:nth-child(3) { animation-delay: 0.30s; }
.hero-v3__chevs i:nth-child(4) { animation-delay: 0.45s; }
.hero-v3__chevs i:nth-child(5) { animation-delay: 0.60s; }

@keyframes chevSlide {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(4px); opacity: 1; }
}

.hero-v3__dots {
  position: absolute;
  top: 30%;
  right: 6%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.25) 2px, transparent 2px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

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

.hero-v3__lead {
  position: relative;
  z-index: 4;
}

.hero-v3__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #fff;
  margin-bottom: 22px;
}

.hero-v3__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212, 167, 68, 0.35);
  animation: heroDot 1.6s ease-in-out infinite;
}

.hero-v3__title {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.02;
  margin: 0 0 14px;
}

.hero-v3__title-line1 {
  display: block;
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.hero-v3__title-line2 {
  display: block;
  font-size: 60px;
  font-weight: 800;
  color: #fff;
}

.hero-v3__title-line2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-400) 0%, #f6c761 50%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 0 4px;
  text-shadow: none;
}

.hero-v3__sub {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 18px;
  font-style: italic;
}

.hero-v3__lede {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 560px;
}

.hero-v3__lede strong { color: #fff; font-weight: 600; }
.hero-v3__lede em { color: var(--gold-300); font-style: italic; font-weight: 600; }

.hero-v3__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-v3 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-med);
  letter-spacing: 0.3px;
}

.btn-v3 i { font-size: 14px; }

.btn-v3--gold {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: var(--navy-900);
  box-shadow: 0 14px 30px rgba(212, 167, 68, 0.35);
}

.btn-v3--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(212, 167, 68, 0.5);
}

.btn-v3--ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-v3--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Bottom contact bar (matching brand creative footer) */
.hero-v3__contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.hero-v3__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
}

.hero-v3__phone-ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 11px;
}

.hero-v3__phone strong {
  font-size: 14px;
  letter-spacing: 0.4px;
}

.hero-v3__contact-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.hero-v3__addr {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-v3__addr i {
  color: var(--gold-400);
  font-size: 13px;
}

/* Right visual */
.hero-v3__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
}

.hero-v3__photo-wrap {
  position: relative;
  width: 92%;
  aspect-ratio: 1 / 1;
}

.hero-v3__photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-700));
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.18),
    0 0 0 16px rgba(255, 255, 255, 0.06);
  z-index: 2;
  animation: heroBlob 12s ease-in-out infinite;
}

.hero-v3__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes heroBlob {
  0%, 100% { border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%; }
  50% { border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%; }
}

/* Glow accent behind photo */
.hero-v3__glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.35) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

/* Floating chips around photo */
.hero-v3__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  z-index: 5;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-v3__chip i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  background: var(--teal-100);
  color: var(--teal-700);
}

.hero-v3__chip small {
  background: var(--gold-400);
  color: var(--navy-900);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--r-pill);
  margin-left: 4px;
  letter-spacing: 0.5px;
}

.hero-v3__chip--1 { top: 4%; left: -4%; animation-delay: 0s; }
.hero-v3__chip--1 i { background: rgba(212, 167, 68, 0.18); color: var(--gold-600); }

.hero-v3__chip--2 { top: 22%; right: -8%; animation-delay: 1.2s; }
.hero-v3__chip--2 i { background: rgba(212, 167, 68, 0.18); color: var(--gold-500); }

.hero-v3__chip--3 { bottom: 26%; left: -6%; animation-delay: 2.4s; }
.hero-v3__chip--3 i { background: rgba(91, 192, 76, 0.18); color: var(--green-600); }

.hero-v3__chip--4 { bottom: 4%; right: 4%; animation-delay: 3.6s; }
.hero-v3__chip--4 i { background: rgba(20, 31, 82, 0.10); color: var(--navy-800); }

/* QIPT pill */
.hero-v3__qipt {
  position: absolute;
  top: -8px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 10px;
  background: linear-gradient(135deg, #fff, #fdf6e3);
  border: 1.5px solid var(--gold-400);
  border-radius: var(--r-pill);
  box-shadow: 0 14px 30px rgba(212, 167, 68, 0.35);
  z-index: 6;
}

.hero-v3__qipt i {
  font-size: 22px;
  color: var(--gold-500);
}

.hero-v3__qipt span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-v3__qipt small {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--ink-500);
  text-transform: uppercase;
}

.hero-v3__qipt strong {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-600);
  margin-top: 2px;
}

/* Bottom curved divider */
.hero-v3__divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  display: block;
}

@media (max-width: 980px) {
  .hero-v3__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-v3__title-line1, .hero-v3__title-line2 { font-size: 42px; }
  .hero-v3__visual { aspect-ratio: auto; min-height: 400px; }
  .hero-v3__chevs { display: none; }
}

@media (max-width: 600px) {
  .hero-v3__title-line1, .hero-v3__title-line2 { font-size: 36px; }
  .hero-v3__chip { font-size: 11px; padding: 7px 12px; }
}


/* ============================================================
   POST CARD — image-based social media creative cards
============================================================ */
.post-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 32px -10px rgba(20, 31, 82, 0.22);
  transition: all var(--t-med);
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.12);
}

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

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px -16px rgba(20, 31, 82, 0.32);
}

.post-card:hover img {
  transform: scale(1.04);
}

.post-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 31, 82, 0.85) 100%);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 2;
}

.post-card:hover .post-card__hover {
  opacity: 1;
}

.post-card__hover-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: var(--gold-400);
  color: var(--navy-900);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.post-card__hover-cap {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  font-family: var(--f-display);
  line-height: 1.35;
}


/* ============================================================
   GOLD-FORWARD PALETTE SHIFTS
   (replace some greens with gold to match QIPT brand)
============================================================ */

/* Eyebrow default → gold-forward */
.eyebrow-r {
  background: rgba(212, 167, 68, 0.12);
  color: var(--gold-600);
}

.eyebrow-r::before { background: var(--gold-400); }

/* Keep teal eyebrow available via modifier */
.eyebrow-r.eyebrow-r--teal {
  background: rgba(20, 163, 157, 0.10);
  color: var(--teal-700);
}
.eyebrow-r.eyebrow-r--teal::before { background: var(--teal-500); }

/* About pillar #2 stays gold (unchanged) — but shift pillar #3 from green to teal-2nd-tone */
.about-r__pill:nth-child(3) .about-r__pill-ic {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 10px 24px rgba(212, 167, 68, 0.30);
}

/* Why-r badge: shift the green badge to gold for stronger QIPT feel */
.why-r__badge-2 {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 8px 20px rgba(212, 167, 68, 0.35);
}

/* About doc stat #3 (currently green) → gold tone */
.about-r__doc-stat:nth-child(3) strong { color: var(--gold-600); }

/* Why-r pillar #3 numbered circle (currently green) → keep green for variety
   but adjust to subtle gold accent on #4 */
.why-r__pill:nth-child(4) .why-r__pill-num {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 8px 18px rgba(212, 167, 68, 0.4);
}
.why-r__pill:nth-child(4) .why-r__pill-ic { color: var(--gold-500); }


/* ============================================================
   DEPT CARD DESIGN TWEAKS (slight differentiation from Suvira)
============================================================ */

/* Pill placement: top-left corner instead of mixed in content */
.dept-panel__pill,
.dept-panel__pill--core,
.dept-panel__pill--qipt {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.dept-panel__pill--core {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
}

.dept-panel__pill--qipt {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

/* Active card top accent line in brand color */
.dept-panel.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--teal-500));
  border-radius: 0 0 3px 3px;
  z-index: 2;
}

.dept-panel--alert.is-active::after {
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
}

/* Card border-radius slightly larger + softer shadow */
.dept-panel {
  border-radius: 20px;
}

.dept-panel.is-active {
  box-shadow:
    0 22px 48px -16px rgba(20, 31, 82, 0.28),
    0 0 0 1px rgba(212, 167, 68, 0.18);
}

/* Animation kept on icon (per user) */


/* ============================================================
   Reels — make hover state cleaner
============================================================ */
.reel__meta strong {
  font-size: 13px;
  letter-spacing: 0.1px;
}



/* ============================================================
   PHASE 5 — Two-Services, 10 PBMT Applications, Final CTA
   (Focused clinic positioning + Google Ads optimisation)
============================================================ */

/* ============================================================
   TWO SERVICES SECTION
============================================================ */
.services-r {
  background: linear-gradient(180deg, #fbfaf6 0%, var(--bg-mint) 100%);
}

.services-r__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.services-r__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 32px;
  border: 1px solid rgba(20, 163, 157, 0.16);
  box-shadow: 0 16px 40px -20px rgba(20, 31, 82, 0.20);
  transition: transform var(--t-med), box-shadow var(--t-med);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(20, 31, 82, 0.28);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
}

.service-card--pbmt::before {
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
}

.service-card--pbmt {
  border-color: rgba(212, 167, 68, 0.28);
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
}

.service-card__head { position: relative; margin-bottom: 22px; }

.service-card__pill {
  position: absolute;
  top: -8px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.service-card__pill--core {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
}

.service-card__pill--qipt {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.service-card__ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
  box-shadow: 0 12px 24px rgba(20, 163, 157, 0.30);
}

.service-card--pbmt .service-card__ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 12px 24px rgba(212, 167, 68, 0.36);
}

.service-card__name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 6px;
  letter-spacing: -0.4px;
}

.service-card__name small {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0;
}

.service-card__sub {
  font-size: 14px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.5;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  border-top: 1px dashed rgba(20, 163, 157, 0.18);
  padding-top: 22px;
}

.service-card--pbmt .service-card__list { border-top-color: rgba(212, 167, 68, 0.30); }

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.45;
}

.service-card__list li i {
  color: var(--teal-600);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-100);
  display: grid;
  place-items: center;
}

.service-card--pbmt .service-card__list li i {
  color: var(--gold-600);
  background: rgba(212, 167, 68, 0.18);
}

.service-card__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__foot .btn { justify-content: center; width: 100%; }

.service-card__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-mint);
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy-900);
  font-size: 13.5px;
  font-weight: 700;
  border: 1px solid rgba(20, 163, 157, 0.18);
  transition: all var(--t-fast);
}

.service-card__call:hover {
  background: var(--teal-100);
  border-color: var(--teal-500);
}

.service-card__call i { color: var(--teal-600); }

.service-card--pbmt .service-card__call {
  background: rgba(212, 167, 68, 0.10);
  border-color: rgba(212, 167, 68, 0.28);
}

.service-card--pbmt .service-card__call i { color: var(--gold-600); }

/* Gold variant button */
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-color: var(--gold-400);
  box-shadow: 0 10px 22px rgba(212, 167, 68, 0.32);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-color: var(--gold-500);
  box-shadow: 0 14px 28px rgba(212, 167, 68, 0.42);
}

@media (max-width: 900px) {
  .services-r__grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px 24px; }
}


/* ============================================================
   10 PBMT APPLICATIONS GRID
============================================================ */
.pbmt-apps {
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 167, 68, 0.08), transparent 35%),
    radial-gradient(circle at 92% 92%, rgba(20, 163, 157, 0.06), transparent 35%),
    linear-gradient(180deg, var(--bg-cream) 0%, #fbfaf6 100%);
  position: relative;
}

.pbmt-apps__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 44px;
}

.pbmt-apps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}

.pbmt-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.14);
  border-radius: 18px;
  padding: 24px 20px 22px;
  transition: all var(--t-med);
  overflow: hidden;
}

.pbmt-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-500);
  box-shadow: 0 20px 44px -16px rgba(20, 163, 157, 0.28);
}

.pbmt-card--gold { border-color: rgba(212, 167, 68, 0.30); }
.pbmt-card--gold:hover { border-color: var(--gold-500); box-shadow: 0 20px 44px -16px rgba(212, 167, 68, 0.32); }

.pbmt-card__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  color: rgba(20, 163, 157, 0.16);
  letter-spacing: -0.5px;
  line-height: 1;
}

.pbmt-card--gold .pbmt-card__num { color: rgba(212, 167, 68, 0.32); }

.pbmt-card__ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  color: var(--teal-700);
  transition: all var(--t-med);
}

.pbmt-card:hover .pbmt-card__ic {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
}

.pbmt-card--gold .pbmt-card__ic {
  background: linear-gradient(135deg, #fdf2d6, #f7e8b8);
  color: var(--gold-600);
}

.pbmt-card--gold:hover .pbmt-card__ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.pbmt-card h3 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.pbmt-card__tags {
  font-size: 11px;
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0 0 10px !important;
  text-transform: uppercase;
}

.pbmt-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-600);
  margin: 0;
}

@media (max-width: 1100px) {
  .pbmt-apps__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .pbmt-apps__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .pbmt-apps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pbmt-apps__grid { grid-template-columns: 1fr; }
}


/* PBMT applications inline CTA pitch */
.pbmt-apps__cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  background: linear-gradient(120deg, var(--navy-900) 0%, #1a2654 60%, var(--teal-700) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pbmt-apps__cta::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.22), transparent 65%);
}

.pbmt-apps__cta-text { position: relative; z-index: 2; }

.pbmt-apps__cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(212, 167, 68, 0.20);
  color: var(--gold-300);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pbmt-apps__cta h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.pbmt-apps__cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
  max-width: 540px;
}

.pbmt-apps__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.pbmt-apps__cta-actions .btn { justify-content: center; }

.pbmt-apps__cta-actions .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.pbmt-apps__cta-actions .btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
}

@media (max-width: 900px) {
  .pbmt-apps__cta { grid-template-columns: 1fr; padding: 28px; text-align: center; }
  .pbmt-apps__cta h3 { font-size: 22px; }
  .pbmt-apps__cta-eyebrow { margin: 0 auto 12px; }
}


/* ============================================================
   FINAL PITCH — pre-contact conversion section (Google Ads)
============================================================ */
.final-pitch {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(135deg, #0d6e69 0%, #14a39d 60%, #1c8b86 100%);
  color: #fff;
  overflow: hidden;
}

.final-pitch__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 167, 68, 0.18), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(91, 192, 76, 0.14), transparent 35%),
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px;
  pointer-events: none;
}

.final-pitch__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.final-pitch__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--gold-400);
  color: var(--navy-900);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.final-pitch h2 {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.final-pitch h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-400), #f6c761);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-pitch p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 20px;
  line-height: 1.65;
  max-width: 580px;
}

.final-pitch__pts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.final-pitch__pts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.final-pitch__pts li i {
  color: var(--gold-400);
  font-size: 14px;
}

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

.final-pitch__call {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all var(--t-med);
}

.final-pitch__call:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.final-pitch__call-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
  animation: callPulse 2s ease-in-out infinite;
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 167, 68, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(212, 167, 68, 0); }
}

.final-pitch__call-text {
  display: flex;
  flex-direction: column;
}

.final-pitch__call-text small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gold-300);
  margin-bottom: 4px;
}

.final-pitch__call-text strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.4px;
}

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

.final-pitch__btns .btn { justify-content: center; }

.final-pitch__btns .btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-color: var(--gold-400);
}

.btn--outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 900px) {
  .final-pitch__inner { grid-template-columns: 1fr; gap: 32px; }
  .final-pitch h2 { font-size: 28px; }
  .final-pitch__pts { grid-template-columns: 1fr; }
}



/* ============================================================
   PHASE 6 — Hero v4 (editorial), image-led services, image-led
   PBMT applications, count mentions removed
============================================================ */

/* ============================================================
   HERO V4 — Editorial split with photo collage
============================================================ */
.hero-v4 {
  position: relative;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 167, 68, 0.18), transparent 38%),
    radial-gradient(circle at 8% 88%, rgba(91, 192, 76, 0.10), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(20, 163, 157, 0.08), transparent 70%),
    linear-gradient(135deg, #faf8f1 0%, #ebf8f6 50%, #f5f9ec 100%);
  padding: 64px 0 110px;
  overflow: hidden;
}

.hero-v4__chevs {
  position: absolute;
  top: 30px;
  right: 40px;
  display: flex;
  gap: 6px;
  font-size: 14px;
  color: var(--gold-500);
  z-index: 2;
  opacity: 0.6;
}

.hero-v4__chevs i {
  animation: chevSlide 1.6s ease-in-out infinite;
}

.hero-v4__chevs i:nth-child(1) { animation-delay: 0s; }
.hero-v4__chevs i:nth-child(2) { animation-delay: 0.15s; }
.hero-v4__chevs i:nth-child(3) { animation-delay: 0.30s; }
.hero-v4__chevs i:nth-child(4) { animation-delay: 0.45s; }
.hero-v4__chevs i:nth-child(5) { animation-delay: 0.60s; }

.hero-v4__dots {
  position: absolute;
  bottom: 110px;
  left: 30px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, rgba(20, 163, 157, 0.25) 2px, transparent 2px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

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

.hero-v4__lead {
  position: relative;
}

.hero-v4__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: #fff;
  border: 1px solid var(--teal-200);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--navy-900);
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(20, 163, 157, 0.10);
}

.hero-v4__eyebrow i { color: var(--gold-500); font-size: 11px; }

.hero-v4__title {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.04;
  margin: 0 0 16px;
  color: var(--navy-900);
}

.hero-v4__title span {
  display: block;
  font-size: 60px;
  font-weight: 800;
}

.hero-v4__title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-400) 0%, #f6c761 50%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 0 4px;
}

.hero-v4__sub {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-700);
  margin: 0 0 16px;
  font-style: italic;
}

.hero-v4__lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 28px;
  max-width: 560px;
}

.hero-v4__lede strong { color: var(--navy-900); font-weight: 700; }
.hero-v4__lede em { color: var(--gold-600); font-style: italic; font-weight: 600; }

.hero-v4__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-v4__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-v4__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 8px 16px 8px 8px;
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.20);
  border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(20, 163, 157, 0.10);
  transition: all var(--t-fast);
}

.hero-v4__phone:hover {
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(212, 167, 68, 0.18);
}

.hero-v4__phone-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.hero-v4__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-v4__phone-text small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-v4__phone-text strong {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.4px;
}

.hero-v4__addr {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-600);
  font-weight: 500;
}

.hero-v4__addr i { color: var(--teal-600); font-size: 13px; }

/* Right collage */
.hero-v4__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 460px;
}

.hero-v4__photo {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px -16px rgba(20, 31, 82, 0.30);
  background: var(--bg-mint);
  transition: transform var(--t-med);
}

.hero-v4__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-v4__photo:hover { transform: translateY(-4px); }

.hero-v4__photo--main {
  top: 8%;
  left: 0;
  width: 64%;
  height: 70%;
  z-index: 2;
  border: 4px solid #fff;
}

.hero-v4__photo--top {
  top: 0;
  right: 6%;
  width: 42%;
  height: 38%;
  z-index: 3;
  border: 4px solid #fff;
}

.hero-v4__photo--bot {
  bottom: 4%;
  right: 0;
  width: 50%;
  height: 36%;
  z-index: 3;
  border: 4px solid #fff;
}

.hero-v4__photo-cap {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.4px;
}

.hero-v4__photo-cap i { color: var(--teal-600); font-size: 11px; }

.hero-v4__photo-cap--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.hero-v4__photo-cap--gold i { color: var(--navy-900); }

.hero-v4__qipt {
  position: absolute;
  top: -10px;
  right: -8px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 10px;
  background: linear-gradient(135deg, #fff, #fdf6e3);
  border: 1.5px solid var(--gold-400);
  border-radius: var(--r-pill);
  box-shadow: 0 14px 30px rgba(212, 167, 68, 0.35);
}

.hero-v4__qipt i {
  font-size: 22px;
  color: var(--gold-500);
}

.hero-v4__qipt span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-v4__qipt small {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--ink-500);
  text-transform: uppercase;
}

.hero-v4__qipt strong {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-600);
  margin-top: 2px;
}

.hero-v4__ring {
  position: absolute;
  top: 12%;
  left: 30%;
  width: 75%;
  height: 75%;
  border: 2px dashed rgba(212, 167, 68, 0.30);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: heroRingSpin 30s linear infinite;
}

@keyframes heroRingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-v4__divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  display: block;
}

@media (max-width: 980px) {
  .hero-v4__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-v4__title span { font-size: 42px; }
  .hero-v4__visual { min-height: 380px; }
  .hero-v4__chevs { display: none; }
}

@media (max-width: 600px) {
  .hero-v4__title span { font-size: 36px; }
}


/* ============================================================
   SERVICES V2 — image-led cards (no count mentions)
============================================================ */
.services-v2 {
  background: linear-gradient(180deg, #fbfaf6 0%, var(--bg-mint) 100%);
}

.services-v2__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.services-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(20, 163, 157, 0.16);
  box-shadow: 0 18px 44px -20px rgba(20, 31, 82, 0.20);
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -20px rgba(20, 31, 82, 0.30);
}

.svc-card--pbmt {
  border-color: rgba(212, 167, 68, 0.30);
}

.svc-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-mint);
  overflow: hidden;
}

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

.svc-card:hover .svc-card__media img { transform: scale(1.04); }

.svc-card__pill {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 2;
}

.svc-card__pill--core {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
}

.svc-card__pill--qipt {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.svc-card__body {
  padding: 26px 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card__body h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}

.svc-card__body h3 small {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0;
}

.svc-card__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 22px;
  flex: 1;
}

.svc-card__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.svc-card__ctas .btn {
  flex-shrink: 0;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  font-family: var(--f-display);
  transition: color var(--t-fast);
}

.svc-card__link i { color: var(--teal-600); font-size: 16px; }
.svc-card__link:hover { color: var(--teal-600); }

.svc-card--pbmt .svc-card__link i { color: var(--gold-500); }

@media (max-width: 800px) {
  .services-v2__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PBMT APPS V2 — image-led cards
============================================================ */
.pbmt-apps-v2 {
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 167, 68, 0.08), transparent 35%),
    radial-gradient(circle at 92% 92%, rgba(20, 163, 157, 0.06), transparent 35%),
    linear-gradient(180deg, var(--bg-cream) 0%, #fbfaf6 100%);
}

.pbmt-apps-v2__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.pbmt-apps-v2__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.pbm-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 163, 157, 0.14);
  box-shadow: 0 10px 26px -12px rgba(20, 31, 82, 0.18);
  transition: all var(--t-med);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.pbm-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-500);
  box-shadow: 0 20px 44px -16px rgba(20, 163, 157, 0.28);
}

.pbm-card--gold { border-color: rgba(212, 167, 68, 0.30); }
.pbm-card--gold:hover { border-color: var(--gold-500); box-shadow: 0 20px 44px -16px rgba(212, 167, 68, 0.30); }

.pbm-card__media {
  aspect-ratio: 4 / 3;
  background: var(--bg-mint);
  overflow: hidden;
}

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

.pbm-card:hover .pbm-card__media img { transform: scale(1.06); }

.pbm-card__body {
  padding: 16px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pbm-card__body h4 {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.pbm-card__body p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-600);
  margin: 0 0 12px;
  flex: 1;
}

.pbm-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding-top: 10px;
  border-top: 1px dashed rgba(20, 163, 157, 0.18);
  transition: all var(--t-fast);
}

.pbm-card__cta i {
  transition: transform var(--t-fast);
}

.pbm-card:hover .pbm-card__cta {
  color: var(--teal-600);
}

.pbm-card:hover .pbm-card__cta i {
  transform: translateX(3px);
}

.pbm-card--gold .pbm-card__cta {
  color: var(--gold-600);
  border-top-color: rgba(212, 167, 68, 0.30);
}

.pbm-card--gold:hover .pbm-card__cta {
  color: var(--gold-700);
}

@media (max-width: 1100px) {
  .pbmt-apps-v2__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .pbmt-apps-v2__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .pbmt-apps-v2__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pbmt-apps-v2__grid { grid-template-columns: 1fr; }
}

/* PBMT v2 CTA panel (carry over previous styling) */
.pbmt-apps-v2__cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  background: linear-gradient(120deg, var(--navy-900) 0%, #1a2654 60%, var(--teal-700) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pbmt-apps-v2__cta::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.22), transparent 65%);
}

.pbmt-apps-v2__cta-text { position: relative; z-index: 2; }

.pbmt-apps-v2__cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(212, 167, 68, 0.20);
  color: var(--gold-300);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pbmt-apps-v2__cta h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.pbmt-apps-v2__cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
  max-width: 540px;
}

.pbmt-apps-v2__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.pbmt-apps-v2__cta-actions .btn { justify-content: center; }

.pbmt-apps-v2__cta-actions .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.pbmt-apps-v2__cta-actions .btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
}

@media (max-width: 900px) {
  .pbmt-apps-v2__cta { grid-template-columns: 1fr; padding: 28px; text-align: center; }
  .pbmt-apps-v2__cta h3 { font-size: 22px; }
  .pbmt-apps-v2__cta-eyebrow { margin: 0 auto 12px; }
}



/* ============================================================
   PHASE 7 — Conditions hero banners + per-panel CTAs;
   PBM Spotlight v2 (visitor-friendly explainer)
============================================================ */

/* ============================================================
   CONDITIONS — category hero banner per panel
============================================================ */
.cond-r__hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 21 / 9;
  background: var(--bg-mint);
}

.cond-r__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cond-r__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 26px;
  background: linear-gradient(180deg, rgba(20, 31, 82, 0.10) 0%, rgba(20, 31, 82, 0.78) 100%);
  color: #fff;
}

.cond-r__hero-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  background: var(--gold-400);
  color: var(--navy-900);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cond-r__hero-overlay h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.4px;
  color: #fff;
}

.cond-r__hero-overlay p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 640px;
}

/* Per-panel CTA strip below condition cards */
.cond-r__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 18px 22px;
  background: linear-gradient(120deg, var(--bg-mint), var(--bg-cream));
  border: 1px dashed rgba(20, 163, 157, 0.30);
  border-radius: 14px;
  flex-wrap: wrap;
}

.cond-r__cta-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.cond-r__cta-text span {
  font-size: 12.5px;
  color: var(--ink-600);
  line-height: 1.45;
}

.cond-r__cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cond-r__cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
  padding: 8px 0;
}

.cond-r__cta-call i { color: var(--gold-500); font-size: 14px; }
.cond-r__cta-call:hover { color: var(--teal-600); }

@media (max-width: 760px) {
  .cond-r__hero-overlay { padding: 16px 18px; }
  .cond-r__hero-overlay h3 { font-size: 20px; }
  .cond-r__cta { padding: 16px; }
}


/* ============================================================
   PBM SPOTLIGHT V2 — visitor-friendly redesign
============================================================ */
.pbm-spot-v2 {
  position: relative;
  background:
    radial-gradient(circle at 88% 14%, rgba(212, 167, 68, 0.18), transparent 38%),
    linear-gradient(135deg, var(--navy-900) 0%, #141d4f 60%, var(--navy-800) 100%);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.pbm-spot-v2__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  filter: blur(80px);
}

.pbm-spot-v2__glow--gold {
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.4), transparent 65%);
}

.pbm-spot-v2__glow--teal {
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(20, 163, 157, 0.3), transparent 65%);
}

.pbm-spot-v2__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}

.pbm-spot-v2 .container { position: relative; z-index: 2; }

/* Top head */
.pbm-spot-v2__head {
  text-align: center;
  margin-bottom: 44px;
}

.pbm-spot-v2__qipt {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 8px 18px 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 167, 68, 0.30);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}

.pbm-spot-v2__qipt img {
  height: 38px;
  width: auto;
  filter: brightness(1.05);
}

.pbm-spot-v2__qipt-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.pbm-spot-v2__qipt-text small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.pbm-spot-v2__qipt-text strong {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-300);
  letter-spacing: 1.4px;
  margin-top: 1px;
}

.pbm-spot-v2__qipt-text em {
  font-size: 10.5px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
  font-weight: 500;
}

.pbm-spot-v2__hl {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: #fff;
}

.pbm-spot-v2__hl em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-300) 0%, var(--gold-400) 50%, #f6c761 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pbm-spot-v2__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Main split: image + steps */
.pbm-spot-v2__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 44px;
}

.pbm-spot-v2__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 167, 68, 0.25);
  background: linear-gradient(135deg, var(--teal-700), var(--navy-900));
}

.pbm-spot-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pbm-spot-v2__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 31, 82, 0.20) 0%, rgba(20, 31, 82, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.pbm-spot-v2__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  padding: 6px 14px;
  background: var(--gold-400);
  color: var(--navy-900);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.pbm-spot-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
}

.pbm-spot-v2__stats > div {
  text-align: center;
}

.pbm-spot-v2__stats strong {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-300);
  letter-spacing: 0.2px;
  margin-bottom: 2px;
}

.pbm-spot-v2__stats span {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* How-it-works steps */
.pbm-spot-v2__steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pbm-spot-v2__steps-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 6px 14px;
  background: rgba(212, 167, 68, 0.18);
  color: var(--gold-300);
  border: 1px solid rgba(212, 167, 68, 0.32);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pbm-step {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: all var(--t-med);
}

.pbm-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 167, 68, 0.30);
  transform: translateX(4px);
}

.pbm-step__num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-400);
  letter-spacing: -0.5px;
  line-height: 1;
  width: 38px;
}

.pbm-step__ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pbm-step__body h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 2px 0 6px;
  letter-spacing: -0.2px;
}

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

/* Conditions chips strip */
.pbm-spot-v2__chips-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  margin-bottom: 30px;
}

.pbm-spot-v2__chips-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-300);
  flex-shrink: 0;
}

.pbm-spot-v2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pbm-spot-v2__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: all var(--t-fast);
}

.pbm-spot-v2__chip:hover {
  background: rgba(212, 167, 68, 0.18);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.pbm-spot-v2__chip i {
  color: var(--gold-400);
  font-size: 9px;
}

/* Bottom CTA strip */
.pbm-spot-v2__ctas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  background: linear-gradient(120deg, rgba(212, 167, 68, 0.14), rgba(212, 167, 68, 0.04));
  border: 1px solid rgba(212, 167, 68, 0.30);
  border-radius: 18px;
  flex-wrap: wrap;
}

.pbm-spot-v2__cta-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.pbm-spot-v2__cta-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.pbm-spot-v2__cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--ghost-gold {
  background: transparent;
  border: 2px solid rgba(212, 167, 68, 0.5);
  color: var(--gold-300);
}

.btn--ghost-gold:hover {
  background: rgba(212, 167, 68, 0.14);
  border-color: var(--gold-400);
  color: #fff;
}

@media (max-width: 980px) {
  .pbm-spot-v2__split { grid-template-columns: 1fr; }
  .pbm-spot-v2__hl { font-size: 32px; }
  .pbm-spot-v2__media { aspect-ratio: 16 / 10; }
  .pbm-spot-v2__ctas { flex-direction: column; align-items: stretch; text-align: center; }
  .pbm-spot-v2__cta-buttons { justify-content: center; }
}



/* ============================================================
   PHASE 8 — PBMT Apps grid 4-col (for 16 cards),
   PBM Spotlight v3 (light cream + gold, conditions highlighted)
============================================================ */

/* Update PBMT Apps grid to 4 cols at desktop (16 cards = 4 clean rows) */
@media (min-width: 1101px) {
  .pbmt-apps-v2__grid { grid-template-columns: repeat(4, 1fr); }
}


/* ============================================================
   PBM SPOTLIGHT V3 — light cream + gold (premium, educational)
============================================================ */
.pbm-spot-v3 {
  position: relative;
  padding: 80px 0 76px;
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 167, 68, 0.20), transparent 38%),
    radial-gradient(circle at 8% 92%, rgba(20, 163, 157, 0.10), transparent 42%),
    linear-gradient(135deg, #faf8f1 0%, #fdf6e3 50%, #faf8f1 100%);
  overflow: hidden;
}

.pbm-spot-v3__ring {
  position: absolute;
  top: 60px;
  right: -180px;
  width: 480px;
  height: 480px;
  border: 2px dashed rgba(212, 167, 68, 0.30);
  border-radius: 50%;
  pointer-events: none;
  animation: spinSlow 60s linear infinite;
}

@keyframes spinSlow {
  100% { transform: rotate(360deg); }
}

.pbm-spot-v3__dots {
  position: absolute;
  bottom: 80px;
  left: 30px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(20, 163, 157, 0.25) 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
}

.pbm-spot-v3 .container {
  position: relative;
  z-index: 2;
}

/* Compact head */
.pbm-spot-v3__head {
  text-align: center;
  margin-bottom: 56px;
}

.pbm-spot-v3__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px 8px 12px;
  background: #fff;
  border: 1.5px solid var(--gold-400);
  border-radius: var(--r-pill);
  box-shadow: 0 12px 30px rgba(212, 167, 68, 0.20);
  margin-bottom: 26px;
}

.pbm-spot-v3__brand img {
  height: 42px;
  width: auto;
}

.pbm-spot-v3__brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.pbm-spot-v3__brand-text small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--ink-500);
  text-transform: uppercase;
}

.pbm-spot-v3__brand-text strong {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-600);
  letter-spacing: 1.6px;
  margin-top: 3px;
}

.pbm-spot-v3__brand-text em {
  font-size: 10px;
  font-style: italic;
  color: var(--ink-500);
  margin-top: 3px;
  font-weight: 600;
}

.pbm-spot-v3__hl {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 12px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.pbm-spot-v3__hl em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-500) 0%, #f6c761 50%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pbm-spot-v3__sub {
  font-size: 16px;
  color: var(--ink-700);
  max-width: 720px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

/* Trust pill row */
.pbm-spot-v3__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pbm-spot-v3__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(212, 167, 68, 0.30);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-900);
  box-shadow: 0 4px 12px rgba(212, 167, 68, 0.12);
}

.pbm-spot-v3__trust span i {
  color: var(--gold-500);
  font-size: 12px;
}

/* How it works section */
.pbm-spot-v3__how {
  margin-bottom: 60px;
}

.pbm-spot-v3__how-eyebrow {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 6px 14px;
  background: rgba(20, 163, 157, 0.10);
  color: var(--teal-700);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.pbm-spot-v3__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
}

.pbm-step3 {
  background: #fff;
  border: 1px solid rgba(20, 163, 157, 0.14);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 14px 36px -16px rgba(20, 31, 82, 0.18);
  transition: all var(--t-med);
}

.pbm-step3:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: 0 20px 44px -16px rgba(212, 167, 68, 0.25);
}

.pbm-step3__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.pbm-step3__ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 14px 28px rgba(212, 167, 68, 0.35);
}

.pbm-step3 h4 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.pbm-step3 p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}

.pbm-step3__arrow {
  font-size: 18px;
  color: var(--gold-500);
  display: grid;
  place-items: center;
}

/* Conditions PBMT helps with — highlighted visual grid */
.pbm-spot-v3__cond {
  margin-bottom: 40px;
}

.pbm-spot-v3__cond-head {
  text-align: center;
  margin-bottom: 28px;
}

.pbm-spot-v3__cond-eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(212, 167, 68, 0.16);
  color: var(--gold-600);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pbm-spot-v3__cond-head h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.pbm-spot-v3__cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.pbm-cond3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid rgba(212, 167, 68, 0.20);
  border-radius: 16px;
  text-decoration: none;
  transition: all var(--t-med);
  box-shadow: 0 8px 20px -10px rgba(20, 31, 82, 0.10);
}

.pbm-cond3:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  box-shadow: 0 16px 32px -12px rgba(212, 167, 68, 0.30);
}

.pbm-cond3__ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf2d6, #f7e8b8);
  color: var(--gold-600);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: all var(--t-med);
}

.pbm-cond3:hover .pbm-cond3__ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  transform: scale(1.06);
}

.pbm-cond3 strong {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
  letter-spacing: -0.1px;
  line-height: 1.25;
}

.pbm-cond3 span {
  font-size: 11.5px;
  color: var(--ink-600);
  line-height: 1.4;
}

.pbm-spot-v3__more {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 9px 18px;
  background: transparent;
  color: var(--gold-700);
  border: 1.5px dashed var(--gold-400);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t-fast);
}

.pbm-spot-v3__more:hover {
  background: rgba(212, 167, 68, 0.10);
  border-color: var(--gold-500);
  color: var(--gold-600);
}

/* CTA bar — dark navy contrast at the end */
.pbm-spot-v3__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: 22px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.pbm-spot-v3__cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.30), transparent 65%);
  pointer-events: none;
}

.pbm-spot-v3__cta-text { position: relative; z-index: 2; }

.pbm-spot-v3__cta-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.pbm-spot-v3__cta-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.pbm-spot-v3__cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.pbm-spot-v3__cta-buttons .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.pbm-spot-v3__cta-buttons .btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  .pbm-spot-v3 { padding: 60px 0 56px; }
  .pbm-spot-v3__hl { font-size: 30px; }
  .pbm-spot-v3__steps { grid-template-columns: 1fr; }
  .pbm-step3__arrow { transform: rotate(90deg); margin: 0 auto; }
  .pbm-spot-v3__cond-grid { grid-template-columns: repeat(3, 1fr); }
  .pbm-spot-v3__cond-head h3 { font-size: 22px; }
  .pbm-spot-v3__cta { flex-direction: column; align-items: stretch; text-align: center; }
  .pbm-spot-v3__cta-buttons { justify-content: center; }
}

@media (max-width: 640px) {
  .pbm-spot-v3__cond-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pbm-spot-v3__hl { font-size: 26px; }
  .pbm-cond3 { padding: 18px 14px; }
}



/* ============================================================
   PHASE 9 — Page rhythm: dark/light mix + various refinements
   - Hero shorter (no doctor photo)
   - Ticker dark
   - Service cards smaller
   - About pillars dark
   - Pitch-r dark
   - PBM Spotlight: dark step cards + PBMT vertical tabs
   - FAQ flat (no boxes)
============================================================ */

/* HERO — slightly less bottom padding */
.hero-v4 { padding: 60px 0 90px; }

/* Hero collage: with doctor photo gone, balance the two photos */
.hero-v4__photo--main {
  top: 6%;
  left: 0;
  width: 60%;
  height: 76%;
}
.hero-v4__photo--top {
  top: 4%;
  right: 4%;
  width: 50%;
  height: 50%;
}
.hero-v4__visual { min-height: 480px; }


/* TICKER — dark variant override */
.tick-r {
  background: linear-gradient(90deg, var(--navy-900) 0%, #141d4f 50%, var(--navy-900) 100%);
  border-top-color: rgba(212, 167, 68, 0.18);
  border-bottom-color: rgba(212, 167, 68, 0.18);
}

.tick-r__label {
  background: var(--gold-400);
  color: var(--navy-900);
}

.tick-r__track > span {
  color: rgba(255, 255, 255, 0.92);
}

.tick-r__track > span i { color: var(--gold-300); }

.tick-r__sep { color: var(--gold-400) !important; }


/* SERVICE CARDS — slightly smaller */
.svc-card {
  border-radius: 18px;
}

.svc-card__media {
  aspect-ratio: 16 / 8;
}

.svc-card__body {
  padding: 22px 24px 22px;
}

.svc-card__body h3 {
  font-size: 21px;
}

.svc-card__body h3 small {
  font-size: 13px;
}

.svc-card__body p {
  font-size: 13.5px;
  margin-bottom: 18px;
}

.svc-card__pill {
  padding: 5px 11px;
  font-size: 10px;
}


/* ABOUT PILLARS — DARK variant */
.about-r__pill {
  background: linear-gradient(135deg, var(--navy-900) 0%, #1a2654 100%);
  border-color: rgba(212, 167, 68, 0.25);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-r__pill::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.22), transparent 65%);
  pointer-events: none;
}

.about-r__pill:hover {
  border-color: var(--gold-400);
  box-shadow: 0 18px 40px rgba(212, 167, 68, 0.22);
  transform: translateY(-4px);
}

.about-r__pill h3 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.about-r__pill p {
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 2;
}

.about-r__pill-ic {
  position: relative;
  z-index: 2;
}


/* PITCH-R — dark variant */
.pitch-r__card {
  background: linear-gradient(120deg, var(--navy-900) 0%, #141d4f 60%, var(--teal-700) 100%);
  border-color: rgba(212, 167, 68, 0.30);
  color: #fff;
  overflow: hidden;
}

.pitch-r__card::before {
  background: radial-gradient(circle, rgba(212, 167, 68, 0.25), transparent 65%);
}

.pitch-r__ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(212, 167, 68, 0.32);
  position: relative;
  z-index: 2;
}

.pitch-r__text {
  position: relative;
  z-index: 2;
}

.pitch-r__text strong {
  color: #fff;
}

.pitch-r__text span {
  color: rgba(255, 255, 255, 0.78);
}

.pitch-r__text em {
  color: var(--gold-300);
  font-style: italic;
}

.pitch-r__ctas {
  position: relative;
  z-index: 2;
}

.pitch-r__ctas .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.pitch-r__ctas .btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
}


/* PBM SPOT — dark step cards (override the white v3 styling) */
.pbm-step3.pbm-step3--dark {
  background: linear-gradient(135deg, var(--navy-900) 0%, #1a2654 100%);
  border-color: rgba(212, 167, 68, 0.25);
  box-shadow: 0 18px 40px -16px rgba(20, 31, 82, 0.30);
  position: relative;
  overflow: hidden;
}

.pbm-step3.pbm-step3--dark::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.20), transparent 65%);
  pointer-events: none;
}

.pbm-step3.pbm-step3--dark:hover {
  border-color: var(--gold-400);
  box-shadow: 0 22px 48px -14px rgba(212, 167, 68, 0.30);
}

.pbm-step3.pbm-step3--dark .pbm-step3__num {
  color: var(--gold-300);
  position: relative;
  z-index: 2;
}

.pbm-step3.pbm-step3--dark .pbm-step3__ic {
  position: relative;
  z-index: 2;
}

.pbm-step3.pbm-step3--dark h4 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.pbm-step3.pbm-step3--dark p {
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 2;
}


/* PBM CONDITIONS TABS — vertical-tab layout (replaces icon grid) */
.pbm-spot-v3__cond-tabs {
  margin-bottom: 40px;
}

.pbm-tabs__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: flex-start;
}

.pbm-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 90px;
}

.pbm-tab {
  all: unset;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid rgba(212, 167, 68, 0.25);
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--t-med);
  box-shadow: 0 8px 22px -10px rgba(20, 31, 82, 0.10);
}

.pbm-tab:hover {
  border-color: var(--gold-400);
  transform: translateX(3px);
}

.pbm-tab.is-active {
  background: linear-gradient(120deg, var(--navy-900), #1a2654);
  border-color: var(--gold-400);
  box-shadow: 0 14px 30px -8px rgba(212, 167, 68, 0.30);
}

.pbm-tab__ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fdf2d6, #f7e8b8);
  color: var(--gold-600);
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--t-med);
}

.pbm-tab.is-active .pbm-tab__ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

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

.pbm-tab__text span {
  font-size: 11.5px;
  color: var(--ink-500);
  font-weight: 500;
  line-height: 1.4;
}

.pbm-tab.is-active .pbm-tab__text strong { color: #fff; }
.pbm-tab.is-active .pbm-tab__text span { color: rgba(255, 255, 255, 0.7); }

.pbm-tab__arrow {
  margin-left: auto;
  color: var(--ink-400);
  font-size: 11px;
  transition: all var(--t-med);
}

.pbm-tab.is-active .pbm-tab__arrow {
  color: var(--gold-300);
  transform: translateX(4px);
}

.pbm-tabs__panels { position: relative; }
.pbm-tab-panel { display: none; }
.pbm-tab-panel.is-active {
  display: block;
  animation: pbmTabFade 0.4s ease;
}

@keyframes pbmTabFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pbm-tab-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pbm-mini {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(212, 167, 68, 0.20);
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 24px -12px rgba(20, 31, 82, 0.14);
  transition: all var(--t-med);
}

.pbm-mini:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: 0 18px 36px -12px rgba(212, 167, 68, 0.28);
}

.pbm-mini__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-mint);
}

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

.pbm-mini:hover .pbm-mini__media img { transform: scale(1.05); }

.pbm-mini__body {
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pbm-mini__body h4 {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 5px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.pbm-mini__body p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-600);
  margin: 0 0 10px;
  flex: 1;
}

.pbm-mini__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 1px dashed rgba(212, 167, 68, 0.25);
}

.pbm-mini__cta i { transition: transform var(--t-fast); }
.pbm-mini:hover .pbm-mini__cta i { transform: translateX(3px); }

@media (max-width: 980px) {
  .pbm-tabs__layout { grid-template-columns: 1fr; }
  .pbm-tabs__nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 8px;
  }
  .pbm-tab { flex-shrink: 0; min-width: 250px; }
  .pbm-tab-panel__grid { grid-template-columns: 1fr; }
}


/* FAQ — flat (no boxes) per request */
.faq-r {
  background: linear-gradient(180deg, #fbfaf6 0%, var(--bg-mint) 100%);
}

.faq-r__grid {
  display: block;
  max-width: 880px;
  margin: 0 auto;
}

.faq-r__item {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(20, 163, 157, 0.18);
  overflow: hidden;
  margin-bottom: 0;
  transition: none;
  box-shadow: none;
}

.faq-r__item:first-child { border-top: 1px solid rgba(20, 163, 157, 0.18); }

.faq-r__item[open] {
  background: transparent;
  border-color: var(--gold-400);
  box-shadow: none;
}

.faq-r__item summary {
  padding: 20px 4px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--f-display);
  color: var(--navy-900);
}

.faq-r__ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(20, 163, 157, 0.10);
  color: var(--teal-700);
  font-size: 12px;
}

.faq-r__item[open] .faq-r__ic {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.faq-r__plus {
  width: 26px;
  height: 26px;
  background: transparent;
  border: 1.5px solid rgba(20, 163, 157, 0.25);
  color: var(--ink-600);
  font-size: 11px;
}

.faq-r__item[open] .faq-r__plus {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: rotate(45deg);
}

.faq-r__item p {
  padding: 0 4px 22px 50px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-700);
}

@media (max-width: 800px) {
  .faq-r__item p { padding-left: 4px; padding-right: 4px; }
}



/* ============================================================
   PHASE 10 — PBM Spotlight step cards: refined white + gold accents
   (replaces the dark variant)
============================================================ */

.pbm-step3 {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border: 1.5px solid rgba(212, 167, 68, 0.30);
  border-radius: 20px;
  padding: 36px 28px 30px;
  text-align: center;
  box-shadow: 0 16px 36px -16px rgba(212, 167, 68, 0.22);
  overflow: hidden;
  transition: all var(--t-med);
}

/* Gold gradient top accent bar */
.pbm-step3::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400) 0%, #f6c761 50%, var(--gold-500) 100%);
}

/* Subtle gold radial accent in the corner */
.pbm-step3::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 68, 0.14), transparent 65%);
  pointer-events: none;
}

.pbm-step3:hover {
  transform: translateY(-6px);
  border-color: var(--gold-500);
  box-shadow: 0 26px 50px -16px rgba(212, 167, 68, 0.36);
}

/* Big faded step number in the top-right corner */
.pbm-step3__num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 800;
  color: rgba(212, 167, 68, 0.22);
  letter-spacing: -1.2px;
  line-height: 1;
  margin: 0;
  z-index: 1;
}

.pbm-step3__ic {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin: 6px auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 14px 32px rgba(212, 167, 68, 0.40);
}

.pbm-step3:hover .pbm-step3__ic {
  transform: scale(1.06);
}

.pbm-step3 h4 {
  position: relative;
  z-index: 2;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.pbm-step3 p {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}

