/* =============================================================
   SUVIRA HOSPITAL · RIRS KIDNEY STONE LANDING · v4
   Brand: Navy #1e3a7e + Teal #26a69a + Gold #d9a441 (Suvira logo)
   Fonts: DM Serif Display (headings) + Plus Jakarta Sans (body)
   Goal: structurally different from the TKR page, same brand.
   ============================================================= */

:root {
  --navy: #1e3a7e;
  --navy-dark: #14285c;
  --navy-deep: #0b1a42;
  --navy-soft: #2c4a91;

  --teal: #26a69a;
  --teal-light: #4ec4b9;
  --teal-dark: #1a8279;
  --teal-bg: #e8f6f5;

  --gold: #d9a441;
  --gold-light: #e8bf5e;
  --gold-dark: #a37820;
  --gold-bg: #fdf7e8;

  --white: #ffffff;
  --off-white: #f8fafc;
  --cream: #fbf8f1;
  --gray-50: #f5f7fa;
  --gray-100: #e5ebf2;
  --gray-200: #cbd5e1;
  --gray-400: #64748b;
  --gray-500: #475569;
  --gray-700: #181818;
  --gray-800: #1e293b;
  --ink: #0f172a;

  --success: #16a97e;
  --danger: #dc2626;

  --sh-xs: 0 1px 2px rgba(11, 26, 66, .05);
  --sh-sm: 0 2px 8px rgba(11, 26, 66, .06);
  --sh-md: 0 8px 24px rgba(11, 26, 66, .08);
  --sh-lg: 0 16px 40px rgba(11, 26, 66, .1);
  --sh-xl: 0 24px 60px rgba(11, 26, 66, .15);
  --sh-xxl: 0 40px 100px rgba(11, 26, 66, .2);
  --sh-navy: 0 10px 30px rgba(30, 58, 126, .25);
  --sh-teal: 0 10px 30px rgba(38, 166, 154, .25);
  --sh-gold: 0 10px 30px rgba(217, 164, 65, .3);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 999px;

  --container: 1240px;
  --sec-y: 60px;

  --f-display: 'DM Serif Display', Georgia, serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--navy-deep);
}

em {
  font-style: italic;
  color: var(--teal-dark);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ================ TOP BAR ================ */
.topbar {
  background: var(--navy-deep);
  color: #c8d0e0;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

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

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

.topbar i {
  color: var(--teal-light);
  margin-right: 4px;
}

.topbar a {
  color: #c8d0e0;
}

.topbar a:hover {
  color: var(--teal-light);
}

.topbar__emerg {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-weight: 700;
}

.topbar__emerg i {
  color: var(--navy-deep);
}

.topbar__emerg a {
  color: var(--navy-deep);
  font-weight: 700;
}

/* ================ HEADER ================ */
.header {
  position: sticky;
  top: 0;
  padding: 4px 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow .25s ease, padding .25s ease;
}

.header.is-scrolled {
  box-shadow: var(--sh-md);
  padding: 4px 0;
}

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

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 180px;
  transition: height .25s ease;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 28px;
}

.header__nav>a {
  padding: 8px 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: all .2s ease;
}

.header__nav>a:hover {
  color: var(--teal);
  background: var(--gray-50);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: var(--r-full);
  transition: background .25s ease;
}

.header__phone:hover {
  background: var(--gray-50);
}

.header__phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  box-shadow: var(--sh-teal);
}

.header__phone-text {
  line-height: 1.15;
}

.header__phone-text small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.header__phone-text strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-deep);
}

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

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: all .3s ease;
}

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

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

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

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: var(--sh-teal);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(38, 166, 154, .4);
  filter: brightness(1.05);
}

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

.btn--outline:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

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

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

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

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
}

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

/* ================ COMMON SECTIONS ================ */
.section {
  padding: var(--sec-y) 0;
  position: relative;
}

.section__head {
  max-width: 820px;
  margin-bottom: 40px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__title {
  font-family: var(--f-display);
  font-size: 34px;
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.12;
}

.section__title .accent {
  color: var(--teal);
  font-style: italic;
}

.section__desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--teal-bg);
  border-radius: var(--r-full);
  border: 1px solid rgba(38, 166, 154, .15);
}

/* =============================================================
   HERO — full-width, hospital bg + doctor portrait
   ============================================================= */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  padding: 0 0 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: hero-zoom 24s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(11, 26, 66, .88) 0%, rgba(20, 40, 92, .76) 40%, rgba(30, 58, 126, .55) 70%, rgba(30, 58, 126, .35) 100%),
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(11, 26, 66, .4) 100%);
}

.hero__content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 0 60px;
  min-height: 560px;
  position: relative;
}

.hero__left {
  color: var(--white);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero__kicker i {
  color: var(--gold-light);
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.hero__title-small {
  display: block;
  font-style: italic;
  font-size: .55em;
  color: rgba(255, 255, 255, .75);
  font-weight: 400;
  margin-bottom: 6px;
  text-shadow: none;
}

.hero__title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero__lede {
  font-size: 17px;
  color: rgba(255, 255, 255, .92);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 560px;
}

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

.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
  font-size: 13.5px;
}

.hero__stars {
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__stars strong {
  color: var(--white);
  font-family: var(--f-display);
  font-size: 18px;
  margin: 0 8px 0 4px;
}

.hero__stars span {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

/* Doctor card in hero */
.hero__doc {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-xl);
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
  justify-self: end;
  width: 100%;
  max-width: 440px;
}

.hero__doc-img {
  position: relative;
  width: 140px;
  height: 170px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.hero__doc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .3);
  border-radius: var(--r-md);
  pointer-events: none;
}

.hero__doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero__doc-body {
  color: var(--white);
  line-height: 1.3;
}

.hero__doc-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.hero__doc-body strong {
  display: block;
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 4px;
}

.hero__doc-creds {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12.5px;
  color: var(--teal-light);
  margin-bottom: 4px;
}

.hero__doc-role {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.4;
  margin-bottom: 10px;
}

.hero__doc-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hero__doc-chips span {
  padding: 4px 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--white);
}

.hero__doc-chips i {
  color: var(--gold-light);
  margin-right: 3px;
  font-size: 9px;
}

/* Hero stats strip across bottom */
.hero__stats-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 26, 66, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  z-index: 2;
}

.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.hero__stat {
  text-align: center;
  color: var(--white);
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero__stat:last-child {
  border-right: none;
}

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

.hero__stat strong span {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  margin-left: 3px;
}

.hero__stat>span {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
}

.btn--ghost-white {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--ghost-white:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* =============================================================
   INSURANCE STRIP
   ============================================================= */
.strip {
  background: var(--gray-50);
  padding: 22px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.strip__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.strip__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  white-space: nowrap;
}

.strip__logos {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.strip__logos span {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 400;
  letter-spacing: .02em;
  transition: color .2s ease;
  font-weight: 700;
}

.strip__logos span:hover {
  color: var(--navy);
}

/* =============================================================
   STONE SIZE VISUALIZER — compact single-row gauge
   ============================================================= */
.size-viz {
  background: var(--white);
}

.gauge {
  max-width: 960px;
  margin: 0 auto 48px;
  padding: 0 10px;
}

.gauge__ticks {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 6px;
}

.gauge__ticks span {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .02em;
}

.gauge__bar {
  display: flex;
  height: 46px;
  border-radius: var(--r-full);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100);
}

.gauge__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.gauge__seg span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.gauge__seg--natural {
  background: linear-gradient(90deg, #9aa4b2, #7a8695);
}



.gauge__seg--rirs {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  font-size: 13px;
  letter-spacing: .01em;
  box-shadow: inset 0 0 0 2px var(--white), 0 0 0 2px var(--teal-dark);
  z-index: 2;
}

.gauge__seg--rirs i {
  margin-left: 8px;
  color: var(--gold-light);
  font-size: 12px;
}

.gauge__seg--pcnl {
  background: linear-gradient(90deg, var(--navy-soft), var(--navy));
}

.gauge__seg--open {
  background: linear-gradient(90deg, var(--navy), var(--navy-deep));
}

.gauge__arrow {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: .02em;
}

.gauge__arrow i {
  margin-right: 6px;
  color: var(--gold);
}

/* Why-tryptic: compact cards with icon */
.why-tryptic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 22px 20px 22px;
  transition: all .3s ease;
  position: relative;
}

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

.why-card__ic {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal-bg), var(--white));
  border: 1px solid var(--teal-bg);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 14px;
  transition: all .3s ease;
}

.why-card:hover .why-card__ic {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-color: var(--teal);
}

.why-card h4 {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--navy-deep);
  margin: 0 0 6px;
  font-weight: 400;
  line-height: 1.2;
}

.why-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

/* =============================================================
   VIDEO SECTION — Dr. Punia explains RIRS
   ============================================================= */
.video-sec {
  background: linear-gradient(180deg, #e9e9e9 0%, var(--off-white) 100%);
}

.video-sec__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.video-sec__text .section__title {
  margin-bottom: 10px;
}

.video-sec__text .section__desc {
  margin-bottom: 10px;
}

.video-sec__points {
  margin-bottom: 15px;
}

.video-sec__points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--navy-deep);
  font-weight: 500;
  padding: 8px 0;
}

.video-sec__points i {
  color: var(--teal);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.video-sec__player {
  position: relative;
}

.video-sec__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  background: var(--navy-deep);
}

.video-sec__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-sec__caption {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-sm);
  font-size: 12.5px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.video-sec__caption i {
  color: #ff0000;
  font-size: 16px;
}

/* =============================================================
   STONE TYPES — light, refined card grid
   ============================================================= */
.stone-chart {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.stones-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stone-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.stone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--teal);
}

.stone-card--featured {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(217, 164, 65, .15);
}

.stone-card--featured:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 20px 50px rgba(217, 164, 65, .25);
}

.stone-card__ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px 5px 10px;
  border-radius: var(--r-full);
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--sh-md);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stone-card__ribbon i {
  font-size: 10px;
  color: #fff9e5;
}

.stone-card__orb {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: all .6s ease;
}


.stone-card:hover .stone-card__orb::after {
  transform: rotate(20deg);
}

.stone-card__orb i {
  font-size: 54px;
  color: var(--white);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .2));
  transition: transform .4s ease;
}

.stone-card:hover .stone-card__orb i {
  transform: scale(1.08);
}

/* Color variants per stone type */
.stone-card__orb--gold {
  background: linear-gradient(135deg, #f3c56a 0%, #d9a441 55%, #a37820 100%);
}

.stone-card__orb--amber {
  background: linear-gradient(135deg, #ffad73 0%, #e88a3a 55%, #c06820 100%);
}

.stone-card__orb--teal {
  background: linear-gradient(135deg, #4ec4b9 0%, #26a69a 55%, #1a8279 100%);
}

.stone-card__orb--navy {
  background: linear-gradient(135deg, #2c4a91 0%, #1e3a7e 55%, #0b1a42 100%);
}

.stone-card__orb--violet {
  background: linear-gradient(135deg, #c9a7e8 0%, #b388dc 55%, #6b3db0 100%);
}

.stone-card__orb--rose {
  background: linear-gradient(135deg, #e88a8a 0%, #b04545 55%, #8a2a2a 100%);
}

.stone-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stone-card__head {
  margin-bottom: 10px;
}

.stone-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: 4px 11px 4px 8px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
  border: 1px solid var(--gray-100);
}

.stone-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .6);
}

.stone-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy-deep);
  margin: 0;
  font-weight: 400;
  letter-spacing: -.005em;
}

.stone-card p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

.stone-card__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-100);
}

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

.stone-card__stat i {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--teal-bg);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.stone-card__stat>div {
  line-height: 1.2;
  min-width: 0;
}

.stone-card__stat strong {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.stone-card__stat span {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stone-card--featured .stone-card__stat i {
  background: var(--gold-bg);
  color: var(--gold-dark);
}

/* =============================================================
   WARNING SIGNS — dark navy section with glassmorphism cards
   ============================================================= */
.warning-signs {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.warning-signs__bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .9;
}

.warning-signs__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
}

.warning-signs__glow--top {
  top: -10%;
  left: 8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(217, 164, 65, .22), transparent 65%);
}

.warning-signs__glow--bot {
  bottom: -8%;
  right: 6%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(38, 166, 154, .22), transparent 65%);
}

.warning-signs .container {
  position: relative;
  z-index: 2;
}

.eyebrow--dark {
  background: rgba(217, 164, 65, .15);
  color: var(--gold-light);
  border: 1px solid rgba(217, 164, 65, .3);
}

.eyebrow--dark i {
  margin-right: 2px;
}

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

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

.section__desc--light strong {
  color: var(--white);
  font-weight: 700;
}

.accent-gold {
  color: var(--gold-light);
  font-style: italic;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

/* Card */
.sign-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 24px 26px 26px;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.sign-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 164, 65, .08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.sign-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(217, 164, 65, .45);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.sign-card:hover::before {
  opacity: 1;
}

/* Corner wrapper — holds number + optional pill */
.sign-card__corner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  min-height: 30px;
}

.sign-card__num {
  font-family: var(--f-display);
  font-size: 40px;
  color: rgba(217, 164, 65, .28);
  font-style: italic;
  line-height: 1;
  font-weight: 400;
  transition: color .3s ease;
}

.sign-card:hover .sign-card__num {
  color: rgba(217, 164, 65, .55);
}

/* Pill — small label next to number */
.sign-card__pill {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.sign-card__pill--common {
  background: rgba(217, 164, 65, .18);
  color: var(--gold-light);
  border: 1px solid rgba(217, 164, 65, .35);
}

.sign-card__pill--danger {
  background: var(--danger);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(220, 38, 38, .4);
}

.sign-card__pill--danger i {
  font-size: 10px;
}

/* Icon */
.sign-card__ic {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(217, 164, 65, .28);
  transition: transform .3s ease;
}

.sign-card:hover .sign-card__ic {
  transform: scale(1.06) rotate(-4deg);
}

.sign-card h4 {
  color: var(--white);
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 8px;
}

.sign-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Featured "most common" variant */
.sign-card--primary {
  background: linear-gradient(135deg, rgba(217, 164, 65, .18) 0%, rgba(217, 164, 65, .06) 100%);
  border-color: rgba(217, 164, 65, .45);
  box-shadow: 0 10px 32px rgba(217, 164, 65, .12);
}

.sign-card--primary:hover {
  background: linear-gradient(135deg, rgba(217, 164, 65, .24) 0%, rgba(217, 164, 65, .1) 100%);
  border-color: var(--gold-light);
  box-shadow: 0 20px 56px rgba(217, 164, 65, .28);
}

.sign-card--primary::before {
  display: none;
}

.sign-card--primary .sign-card__num {
  color: rgba(217, 164, 65, .55);
}

/* Emergency variant */
.sign-card--emergency {
  background: linear-gradient(135deg, rgba(220, 38, 38, .22), rgba(220, 38, 38, .08));
  border-color: rgba(252, 165, 165, .4);
}

.sign-card--emergency:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, .3), rgba(220, 38, 38, .12));
  border-color: #fca5a5;
  box-shadow: 0 20px 50px rgba(220, 38, 38, .4);
}

.sign-card--emergency::before {
  display: none;
}

.sign-card--emergency .sign-card__ic {
  background: linear-gradient(135deg, #fca5a5, var(--danger));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(220, 38, 38, .45);
}

.sign-card--emergency .sign-card__num {
  color: rgba(252, 165, 165, .35);
}

.sign-card--emergency:hover .sign-card__num {
  color: rgba(252, 165, 165, .65);
}

.sign-card--emergency p strong {
  color: #fca5a5;
  font-weight: 700;
}

/* Signs CTA ribbon */
.signs-cta {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: var(--r-xl);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 24px 60px rgba(217, 164, 65, .3);
  position: relative;
  overflow: hidden;
}

.signs-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, .2), transparent 70%);
  border-radius: 50%;
}

.signs-cta__left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 260px;
  position: relative;
  z-index: 2;
}

.signs-cta__left>i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.signs-cta__left strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy-deep);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}

.signs-cta__left span {
  font-size: 16px;
  color: var(--navy-dark);
  font-weight: 500;
  line-height: 1.4;
}

.signs-cta__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.signs-cta__call {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.signs-cta__call:hover {
  color: var(--navy-dark);
}

.signs-cta__call i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.btn--gold {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

.btn--gold:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* =============================================================
   VS TABLE — comparison rows
   ============================================================= */
.vs-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.vs-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--teal-bg), transparent 70%);
  border-radius: 50%;
}

.vs-section .container {
  position: relative;
}

.vs-table {
  max-width: 1040px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-100);
}

.vs-table__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-100);
}

.vs-table__row:last-child {
  border-bottom: none;
}

.vs-table__row--head {
  background: var(--navy-deep);
}

.vs-table__row--head>div {
  padding: 22px 26px;
  font-family: var(--f-display);
  font-size: 15.5px;
  color: var(--white);
  font-weight: 400;
}

.vs-table__row--head .vs-table__col {
  text-align: center;
  font-size: 17px;
  position: relative;
}

.vs-table__row--head .vs-table__col--rirs {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.vs-table__row--head .vs-table__col--rirs::before {
  content: '✓ Best choice';
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-light);
  background: rgba(0, 0, 0, .2);
  padding: 2px 8px;
  border-radius: var(--r-full);
  text-transform: uppercase;
}

.vs-table__label {
  padding: 18px 26px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--gray-50);
  display: flex;
  align-items: center;
}

.vs-table__col {
  padding: 18px 26px;
  font-size: 16px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.vs-table__col--old i {
  color: var(--danger);
}

.vs-table__col--rirs {
  background: rgba(38, 166, 154, .04);
  color: var(--navy-deep);
  font-weight: 700;
}

.vs-table__col--rirs i {
  color: var(--success);
}

/* =============================================================
   PROCEDURE STEPS — compact 5-step horizontal flow
   ============================================================= */
.procedure-steps {
  background: var(--white);
}

.proc-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.proc-flow::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--gray-100) 0, var(--gray-100) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.proc-step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 20px 20px 22px;
  text-align: center;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
}

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

.proc-step__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.proc-step__num {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--teal);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.proc-step__time {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-bg);
  padding: 3px 8px;
  border-radius: var(--r-full);
}

.proc-step__ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-100);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: var(--sh-sm);
  transition: all .3s ease;
}

.proc-step:hover .proc-step__ic {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-color: var(--teal);
  transform: scale(1.06);
  box-shadow: var(--sh-teal);
}

.proc-step h3 {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--navy-deep);
  margin: 0 0 6px;
  font-weight: 400;
  line-height: 1.2;
}

.proc-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.proc-step--hero {
  background: linear-gradient(180deg, #fff 0%, var(--gold-bg) 100%);
  border-color: var(--gold);
  box-shadow: var(--sh-sm);
}

.proc-step--hero .proc-step__num {
  color: var(--gold-dark);
}

.proc-step--hero .proc-step__time {
  background: var(--gold);
  color: var(--white);
}

.proc-step--hero .proc-step__ic {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--sh-gold);
}

.proc-step--hero:hover .proc-step__ic {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* =============================================================
   SURGEON BANNER
   ============================================================= */
.surgeon-bar {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.surgeon-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(38, 166, 154, .18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(217, 164, 65, .1), transparent 40%);
}

.surgeon-bar__card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 50px;
  align-items: center;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xl);
  padding: 40px;
}

.surgeon-bar__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.surgeon-bar__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.surgeon-bar__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 14px 10px 12px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-md);
}

.surgeon-bar__badge i {
  width: 34px;
  height: 34px;
  background: var(--navy-deep);
  color: var(--gold-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.surgeon-bar__badge span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
}

.surgeon-bar__body {
  color: var(--white);
}

.surgeon-bar__body .eyebrow {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  color: var(--gold-light);
}

.surgeon-bar__name {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin: 0 0 6px;
  font-weight: 400;
  line-height: 1.1;
}

.surgeon-bar__creds {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--teal-light);
  margin-bottom: 6px;
}

.surgeon-bar__role {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 20px;
}

.surgeon-bar__bio {
  font-size: 15px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
  margin-bottom: 26px;
}

.surgeon-bar__bio strong {
  color: var(--white);
  font-weight: 600;
}

.surgeon-bar__journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 26px;
}

.journey-item {
  background: rgba(255, 255, 255, .04);
  padding: 14px 14px;
  text-align: center;
  transition: background .2s ease;
}

.journey-item:hover {
  background: rgba(255, 255, 255, .1);
}

.journey-item__year {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.journey-item__label {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 2px;
  font-style: italic;
}

.journey-item__where {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.3;
}

.journey-item--now {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.journey-item--now .journey-item__year {
  color: var(--white);
}

.journey-item--now:hover {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
}

.surgeon-bar__expertise {
  margin-bottom: 22px;
}

.surgeon-bar__expertise h4 {
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 10px;
}

.surgeon-bar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.surgeon-bar__chips span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
}

.surgeon-bar__assoc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(217, 164, 65, .1);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-xs);
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
}

.surgeon-bar__assoc i {
  color: var(--gold-light);
  margin-top: 2px;
  font-size: 16px;
}

.surgeon-bar__assoc strong {
  color: var(--white);
  margin-right: 4px;
}

.surgeon-bar__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.surgeon-bar__ctas .btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
}

.surgeon-bar__ctas .btn--outline:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}

/* =============================================================
   HOSPITAL — masonry wall
   ============================================================= */
.hospital-wall {
  background: var(--off-white);
}

.mason {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
  margin-bottom: 40px;
}

.mason__cell {
  margin: 0;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s ease;
}

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

.mason__cell--big {
  grid-column: span 2;
  grid-row: span 2;
}

.mason__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.mason__cell figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(11, 26, 66, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--white);
}

.mason__cell figcaption strong {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 2px;
}

.mason__cell figcaption span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .72);
}

.mason__cell--big figcaption strong {
  font-size: 20px;
}

.mason__cell--big figcaption span {
  font-size: 13px;
}

.spec-bar {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.spec-bar>strong {
  font-size: 13px;
  color: var(--navy-deep);
  font-weight: 700;
  letter-spacing: .03em;
}

.spec-bar__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.spec-bar__chips span {
  padding: 7px 14px;
  background: var(--gray-50);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s ease;
}

.spec-bar__chips span:hover {
  background: var(--teal-bg);
  color: var(--teal-dark);
}

.spec-bar__chips i {
  color: var(--teal);
  font-size: 12px;
}

/* =============================================================
   PRICING TABLE — single comparison table
   ============================================================= */
.pricing-table {
  background: var(--white);
}

.ptable {
  max-width: 1120px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-100);
}

.ptable__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.05fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.ptable__h {
  padding: 28px 22px 24px;
  border-right: 1px solid var(--gray-100);
  text-align: center;
  position: relative;
}

.ptable__h:last-child {
  border-right: none;
}

.ptable__h--features {
  background: var(--navy-deep);
  color: var(--white);
  text-align: left;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.ptable__tier {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-bg);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
}

.ptable__h strong {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--navy-deep);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 4px;
}

.ptable__h em {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 12.5px;
  color: var(--gray-400);
  display: block;
  margin-bottom: 12px;
}

.ptable__price {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--navy-deep);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 12px;
}

.ptable__price sup {
  font-size: 12px;
  color: var(--gray-400);
  font-family: var(--f-body);
  font-weight: 500;
  top: -1em;
}

.ptable__h--feat {
  background: linear-gradient(180deg, #fffaf0 0%, #fff5e0 100%);
  border-bottom: 3px solid var(--gold);
  padding-top: 34px;
}

.ptable__h--feat .ptable__tier {
  background: var(--gold-bg);
  color: var(--gold-dark);
}

.ptable__ribbon {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--r-full);
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
  white-space: nowrap;
}

.ptable__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.05fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background .2s ease;
}

.ptable__row:last-child {
  border-bottom: none;
}

.ptable__row:hover {
  background: var(--gray-50);
}

.ptable__f {
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-deep);
  border-right: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
}

.ptable__c {
  padding: 14px 22px;
  font-size: 13.5px;
  color: var(--gray-700);
  border-right: 1px solid var(--gray-100);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ptable__c:last-child {
  border-right: none;
}

.ptable__c i {
  color: var(--teal);
  font-size: 16px;
}

.ptable__c--feat {
  background: rgba(217, 164, 65, .06);
  font-weight: 700;
  color: var(--navy-deep);
}

.ptable__c--feat i {
  color: var(--gold);
}

.ptable__c--no i {
  color: var(--gray-200);
}

.pricing-table__note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
  margin: 20px auto 40px;
  max-width: 720px;
}

.pay-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.pay-support__item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
}

.pay-support__item i {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--sh-teal);
}

.pay-support__item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--navy-deep);
  font-weight: 400;
  margin-bottom: 2px;
}

.pay-support__item span {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.4;
}

/* =============================================================
   GOOGLE REVIEWS — 6 compact swipeable cards
   ============================================================= */
.reviews {
  background: var(--off-white);
}

.reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.reviews__head-left .section__title {
  margin-bottom: 0;
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--sh-sm);
}

.reviews__rating-score {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.reviews__rating-score strong {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--navy-deep);
  font-weight: 400;
}

.reviews__rating-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .08em;
}

.reviews__rating-score span {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
}

.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.g-badge__g {
  width: 22px;
  height: 22px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.gr {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 20px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.gr__head img {
  width: 30px;
}

.gr__avi {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 400;
  flex-shrink: 0;
}

.gr__who {
  flex: 1;
  line-height: 1.2;
  min-width: 0;
}

.gr__who strong {
  display: block;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gr__who span {
  font-size: 11.5px;
  color: var(--gray-400);
}

.gr__g {
  font-size: 18px;
  color: #4285f4;
  flex-shrink: 0;
}

.gr__stars {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-400);
}

.gr__stars i {
  color: var(--gold);
  font-size: 12px;
  margin-right: 1px;
}

.gr p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
}

.reviews__cta>span {
  font-size: 16px;
  color: var(--gray-500);
  font-style: italic;
}

.reviews__cta .btn i {
  color: #4285f4;
}

.reviews__cta .btn:hover i {
  color: inherit;
}

/* =============================================================
   FAQ — 2 column with categories
   ============================================================= */
.faq-section {
  background: var(--white);
}

.faq-section__container {
  max-width: 1100px;
}

.faq-section__head {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section__head .section__title {
  margin-bottom: 14px;
}

.faq-section__head a {
  color: var(--teal-dark);
}

.faq-section__head a:hover {
  text-decoration: underline;
}

.faq-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-col__label {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--navy-deep);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
  font-weight: 400;
  display: inline-block;
}

.qa {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  transition: all .2s ease;
}

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

.qa summary {
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1.3;
}

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

.qa summary>i {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-dark);
  border: 1px solid var(--gray-100);
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: all .3s ease;
}

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

.qa p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.65;
}

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

/* =============================================================
   BOOK SECTION
   ============================================================= */
.book-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.book-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.book-section__lede {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 18px 0 32px;
}

.book-section__lede strong {
  color: var(--navy-deep);
  font-weight: 700;
}

.book-section__contacts {
  display: grid;
  gap: 0;
}

.bsc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--gray-100);
}

.bsc-item:last-child {
  border-bottom: none;
}

.bsc-item__ic {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--teal-bg);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.bsc-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.bsc-item span {
  font-size: 14.5px;
  color: var(--navy-deep);
  line-height: 1.5;
  font-weight: 500;
}

.bsc-item a {
  color: var(--navy-deep);
}

.bsc-item a:hover {
  color: var(--teal-dark);
}

.book-section__form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: sticky;
  top: 110px;
}

.book-section__form-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 26px 32px;
}

.book-section__form-top h3 {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--white);
  margin: 0 0 4px;
  font-weight: 400;
}

.book-section__form-top p {
  color: rgba(255, 255, 255, .8);
  font-size: 13.5px;
  margin: 0;
}

.book-section__form-body {
  padding: 26px 32px 30px;
}

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

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.form-field label em {
  color: var(--danger);
  font-style: normal;
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--off-white);
  transition: all .2s ease;
}

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

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

.phone-input {
  display: flex;
  align-items: stretch;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: all .2s ease;
}

.phone-input:focus-within {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(38, 166, 154, .12);
}

.phone-input>span {
  padding: 12px 14px;
  background: var(--gray-50);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 16px;
  border-right: 1px solid var(--gray-100);
}

.phone-input>input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.book-section__form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin: 12px 0 0;
}

.book-section__form-note i {
  color: var(--success);
  margin-right: 4px;
}

/* =============================================================
   MAP
   ============================================================= */
.map {
  line-height: 0;
  background: var(--off-white);
}

.map iframe {
  filter: grayscale(.15) contrast(1.02);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--navy-deep);
  color: #aeb8c8;
  padding-top: 80px;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1.7fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer .footer__col ul.links {
  column-count: 2;
}

.footer__brand p {
  font-size: .92rem;
  line-height: 1.75;
  margin: 18px 0;
}

.footer__brand em {
  color: var(--gold-light);
}

.footer__logo {
  height: 58px;
  width: auto;
}

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

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .9rem;
  transition: all .3s ease;
}

.footer__socials a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--f-d);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 3px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul a {
  color: #aeb8c8;
  font-size: .9rem;
  transition: all .25s ease;
}

.footer__col ul a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .88rem;
  line-height: 1.6;
}

.footer__contact i {
  color: var(--teal-light);
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
}

.footer__contact a {
  color: #aeb8c8;
}

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

.footer__bottom {
  background: rgba(0, 0, 0, .3);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: .82rem;
  text-align: center;
}

.footer__bottom p {
  margin: 0 0 6px;
}

.footer__bottom a {
  color: var(--teal-light);
}

.footer__bottom a:hover {
  text-decoration: underline;
}

.disclaimer {
  color: #7b8497;
  font-size: .78rem;
  font-style: italic;
  margin: 6px 0 0;
}

.footer-logo {
  border-radius: 10px;
}

/* =============================================================
   FABs + MOBILE BAR
   ============================================================= */
.fab {
  position: fixed;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  z-index: 80;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  transition: transform .3s ease;
}

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

.fab--call {
  bottom: 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.fab:hover {
  transform: scale(1.08);
}

.fab__ring {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  animation: fab-ring 2s infinite;
}

@keyframes fab-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 20px rgba(11, 26, 66, .1);
  z-index: 80;
  grid-template-columns: 1fr 1fr 1.3fr;
}

.mobile-bar__btn {
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  border-right: 1px solid var(--gray-100);
  color: #fff;
}

.mobile-bar__btn:last-child {
  border-right: none;
}

.mobile-bar__btn i {
  font-size: 18px;
}


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

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.2, .8, .2, 1), transform .6s cubic-bezier(.2, .8, .2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================
   SWIPE-ROW — mobile-app-like horizontal swipe for card groups
   (Active only on mobile; behaves as normal grid on desktop.)
   ============================================================= */
.swipe-row {
  /* no effect on desktop */
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  :root {
    --sec-y: 40px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-bottom: 120px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 60px 0 40px;
    min-height: auto;
  }

  .hero__doc {
    justify-self: stretch;
    max-width: 100%;
  }

  .hero__stats-inner {
    padding: 16px 0;
  }

  .hero__stat strong {
    font-size: 26px;
  }

  /* Strip */
  .strip__inner {
    flex-direction: column;
    gap: 12px;
  }

  .strip__logos {
    justify-content: center;
  }

  /* Gauge */
  .gauge__seg {
    font-size: 11px;
    padding: 0 6px;
  }

  .gauge__seg--rirs {
    font-size: 12px;
  }

  /* Why tryptic */
  .why-tryptic {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Video */
  .video-sec__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  /* Symptoms */
  .symptoms-split__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .anatomy {
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 16/10;
  }

  /* Stones */
  .stones-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Procedure */
  .proc-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .proc-flow::before {
    display: none;
  }

  /* Surgeon */
  .surgeon-bar__card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px;
  }

  .surgeon-bar__photo {
    max-width: 340px;
    margin: 0 auto;
  }

  /* Hospital */
  .mason {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }

  .mason__cell--big {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Pricing */
  .ptable__head {
    grid-template-columns: 1fr;
  }

  .ptable__h {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }

  .ptable__h--features {
    display: none;
  }

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

  .ptable__row .ptable__f {
    grid-column: 1 / -1;
    background: var(--gray-50);
    padding: 10px 22px;
    font-size: 12.5px;
    border-right: none;
  }

  .pay-support {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* FAQ */
  .faq-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Book */
  .book-section__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .book-section__form {
    position: static;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* VS Table */
  .vs-table__row {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .vs-table__label,
  .vs-table__col {
    padding: 14px 18px;
    font-size: 13px;
  }
}

@media (max-width: 780px) {

  /* Mobile nav */
  .header__nav,
  .header__actions {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 28px 30px;
    gap: 4px;
    box-shadow: var(--sh-xl);
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    z-index: 99;
  }

  .header__nav.is-open {
    transform: translateX(0);
    display: flex;
  }

  .header__nav>a {
    padding: 14px 18px;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }

  /* Topbar */
  .topbar__left,
  .topbar__right {
    justify-content: center;
    gap: 12px;
  }

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

  .hide-sm {
    display: none !important;
  }

  .hide-md {
    display: none !important;
  }

  /* Section spacing */
  .section__head {
    margin-bottom: 34px;
  }

  /* ========================================================
     MOBILE SWIPE-ROW — horizontal scroll with snap, app-like
     ======================================================== */
  .swipe-row {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    gap: 14px;
    padding: 4px 16px 18px;
    margin: 0 -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .swipe-row::-webkit-scrollbar {
    display: none;
  }

  .swipe-row>* {
    flex: 0 0 82%;
    max-width: 340px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .swipe-row>*:last-child {
    margin-right: 16px;
  }

  /* Hero */
  .hero {
    padding-bottom: 40px;
  }

  .hero__content {
    padding: 40px 0 30px;
    gap: 24px;
  }

  .hero__title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero__title-small {
    font-size: .6em;
  }

  .hero__lede {
    font-size: 15px;
  }

  .hero__cta-row {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .hero__cta-row .btn {
    width: 100%;
  }

  .hero__trust {
    flex-wrap: wrap;
  }

  .hero__doc {
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .hero__doc-img {
    width: 100px;
    height: 120px;
  }

  .hero__doc-body strong {
    font-size: 16px;
  }

  .hero__doc-creds {
    font-size: 12px;
  }

  .hero__doc-role {
    font-size: 11px;
  }

  .hero__stats-strip {
    position: relative;
  }

  .hero__stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px 0;
  }

  .hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 8px 10px;
  }

  .hero__stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

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

  /* Strip */
  .strip__logos {
    gap: 12px;
  }

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

  /* Gauge — stack info vertically on very small */
  .gauge__ticks span:nth-child(even) {
    display: none;
  }

  .gauge {
    margin-bottom: 40px;
  }

  .gauge__bar {
    height: 42px;
  }

  .gauge__seg {
    font-size: 10px;
  }

  .gauge__seg--rirs {
    font-size: 11px;
  }

  .gauge__seg--rirs i {
    display: none;
  }

  /* Video */
  .video-sec__frame {
    border-radius: var(--r-md);
  }

  /* Symptoms - 1 col */
  .symptoms-split__grid {
    gap: 36px;
  }

  .anatomy {
    aspect-ratio: 1 / 1;
  }

  .anatomy__pin-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  .symp-list h4 {
    font-size: 14.5px;
  }

  .symp-list p {
    font-size: 13.5px;
  }

  /* VS table */
  .vs-table__row--head>div {
    padding: 14px 12px;
    font-size: 12.5px;
  }

  .vs-table__row--head .vs-table__col {
    font-size: 13px;
  }

  .vs-table__row--head .vs-table__col--rirs::before {
    display: none;
  }

  .vs-table__label,
  .vs-table__col {
    padding: 10px 10px;
    font-size: 12px;
  }

  .vs-table__label {
    font-size: 12.5px;
  }

  /* Procedure - swipe row */
  .proc-step {
    padding: 18px 18px 20px;
  }

  .proc-step h3 {
    font-size: 16px;
  }

  .proc-step p {
    font-size: 12.5px;
  }

  /* Surgeon */
  .surgeon-bar__card {
    padding: 0;
  }

  .pay-support__item {
    padding: 15px;
  }

  .topbar {
    display: none;
  }

  .surgeon-bar__photo {
    margin: 0 auto;
    height: 260px;
    width: 100%;
  }

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

  .surgeon-bar__name {
    font-size: 1.75rem;
  }

  /* Hospital - masonry to single column */
  .mason {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mason__cell {
    height: 200px;
  }

  .mason__cell--big {
    grid-column: auto;
    height: 240px;
  }

  .spec-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  /* Pricing */
  .ptable__row {
    grid-template-columns: 1fr 1fr;
  }

  .ptable__row .ptable__f {
    font-size: 12px;
  }

  .ptable__row .ptable__c:nth-child(4) {
    grid-column: 1 / -1;
    border-top: 1px dashed var(--gray-100);
  }

  /* Reviews */
  .reviews__rating {
    width: 100%;
    justify-content: space-between;
  }

  .gr {
    padding: 16px 18px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer {
    padding: 50px 0 0;
  }

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

  .footer__base-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Mobile bar */
  .mobile-bar {
    display: grid;
    background: #132248;
  }

  body {
    padding-bottom: 68px;
  }

  .fab {
    display: none;
  }
}

@media (max-width: 480px) {
  .section__title {
    font-size: 1.65rem;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .surgeon-bar__journey {
    grid-template-columns: 1fr;
  }

  .stone-card__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__doc {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .hero__doc-img {
    width: 160px;
    height: 150px;
    margin: 0 auto;
  }

  .hero__doc-chips {
    justify-content: center;
  }
}

@media print {

  .fab,
  .mobile-bar,
  .topbar,
  .header__toggle,
  .map {
    display: none;
  }
}

.section.stone-chart .stones-row img {
  max-width: 100%;
  display: block;
  height: 101%;
  object-fit: cover;
}

.contact__list {
  margin-bottom: 30px;
}

.contact__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact__list li:last-child {
  border-bottom: none;
}

.contact__list i {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: rgb(30 57 123 / 13%);
  color: #1a3474;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__list strong {
  display: block;
  font-size: .95rem;
  margin-bottom: 2px;
}

.contact__list span,
.contact__list a {
  font-size: .92rem;
  line-height: 1.55;
}

.contact__list a:hover {
  color: var(--teal-light);
}

.contact__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact__trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: #c5cdd8;
  font-weight: 600;
}

.contact__trust i {
  color: var(--gold-light);
  font-size: 1rem;
}