/* =========================================================
   SUVIRA — HERNIA / LAPAROSCOPIC SURGERY LANDING PAGE
   Same design language as the Suvira homepage.
   ========================================================= */

:root {
  /* TEAL */
  --teal-50: #e8f5f3;
  --teal-100: #c5e6e1;
  --teal-200: #92d2c9;
  --teal-300: #4dbeaf;
  --teal-400: #2cb29f;
  --teal-500: #26a69a;
  --teal-600: #1e8b80;
  --teal-700: #167068;
  --teal-800: #0f5852;
  --teal-900: #0a3d39;
  --teal-bg-light: #ecf7f5;

  /* NAVY */
  --navy-950: #050f30;
  --navy-900: #0b1a42;
  --navy-800: #14285c;
  --navy-700: #1e3a7e;
  --navy-600: #2c4a91;
  --navy-50: #f3f5fb;
  --navy-100: #e6ebf6;
  --navy-150: #dde3f0;
  --navy-bg-tint: #eef2fa;

  /* CREAM */
  --cream-50: #fbf7ee;
  --cream-100: #f5eedb;

  /* GOLD */
  --gold-300: #e8b651;
  --gold-400: #d59f3a;
  --gold-500: #b9852b;
  --gold-600: #8c6420;

  /* INK */
  --ink-50: #f8f9fb;
  --ink-100: #ebedf2;
  --ink-200: #d2d7e0;
  --ink-300: #a8b0bf;
  --ink-400: #7c8597;
  --ink-500: #5e6878;
  --ink-600: #46505f;
  --ink-700: #2f3946;
  --ink-800: #1d242e;
  --ink-900: #0f141b;

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

  /* Typography */
  --f-display: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Sizes */
  --fs-h1: 44px;
  --fs-h2: 34px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-eyebrow: 12px;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;
  --r-pill: 999px;

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

  /* Transitions */
  --t-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 0.30s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

/* ============ Layout primitives ============ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section__head {
  margin-bottom: 40px;
}

.section__head--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  margin-bottom: 14px;
}

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

.accent-teal {
  color: var(--teal-600);
}

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

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

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

.section__desc {
  font-size: 15.5px;
  color: var(--ink-600);
  line-height: 1.7;
  max-width: 720px;
  margin: 8px auto 0;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.btn--lg {
  padding: 10px 24px;
  font-size: 15px;
}

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

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

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

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

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

.btn--ghost-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

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

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

.link-arrow:hover {
  gap: 10px;
}

/* ============ TOPBAR / HEADER ============ */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  font-size: 12.5px;
}

.topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.topbar__emerg {
  background: var(--teal-500);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
}

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

.header {
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo img {
  width: 190px;
  height: 100%;
}

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

.header__nav a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-700);
  transition: color var(--t-fast);
}

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

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

.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  color: var(--navy-900);
}

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

.header__phone strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.header__phone span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-500);
  justify-content: center;
  display: flex;
  flex-direction: column;

}

.header__phone span i {
  color: #fff;
}

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

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
}

/* ============ HERO — doctor highlight + lead form ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #f0f8f6 100%);
  overflow: hidden;
  padding: 60px 0;
}

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

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

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

/* Left text column */
.hero__title {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-900);
  letter-spacing: -1.1px;
  margin: 8px 0 20px;
}

.hero__title span {
  color: var(--teal-600);
}

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

.hero__lede strong {
  color: var(--navy-900);
  font-weight: 700;
}

/* Featured doctor card — bigger, more prominent */
.hero__doctor--featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 15px 10px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 14px 32px rgba(11, 26, 66, 0.10);
  border: 1px solid var(--ink-100);
  border-left: 4px solid var(--teal-500);
  margin-bottom: 22px;
  max-width: 620px;
}

.hero__doctor--featured .hero__doctor-photo {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--teal-50);
  flex-shrink: 0;
}

.hero__doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero__doctor-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 11px;
  border: 3px solid var(--white);
}

.hero__doctor-info {
  display: flex;
  flex-direction: column;
}

.hero__doctor-label {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.hero__doctor-info strong {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.4px;
  line-height: 1.15;
}

.hero__doctor-role {
  font-size: 14px;
  color: var(--ink-600);
  margin-top: 3px;
  font-weight: 500;
}

.hero__doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ink-100);
}

.hero__doctor-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__doctor-stat strong {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.3px;
  line-height: 1;
}

.hero__doctor-stat span {
  font-size: 10.5px;
  color: var(--ink-500);
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.hero__usp {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 15px;
  margin: 0;
  padding: 0;
}

.hero__usp li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy-900);
}

.hero__usp li i {
  color: var(--teal-500);
  font-size: 15px;
  flex-shrink: 0;
}

/* Right side — lead-capture form */
.hero__lead {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 30px 28px 28px;
  box-shadow: 0 24px 50px rgba(11, 26, 66, 0.14);
  border: 1px solid var(--ink-100);
  position: relative;
}

.hero__lead::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 22px;
  right: 22px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  border-radius: 0 0 var(--r-pill) var(--r-pill);
}

.hero__lead-head {
  margin-bottom: 20px;
}

.hero__lead-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero__lead-eyebrow i {
  color: var(--teal-500);
  font-size: 12px;
}

.hero__lead-head h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.3px;
  margin: 0 0 6px;
}

.hero__lead-head p {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.5;
  margin: 0;
}

.hero__lead-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.hero__lead-field label {
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}

.hero__lead-field .req {
  color: #c42020;
}

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

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

.hero__lead-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230b1a42' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}

.hero__lead-mobile {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
}

.hero__lead-mobile .prefix {
  display: grid;
  place-items: center;
  padding: 0 13px;
  background: var(--bg-soft);
  color: var(--navy-900);
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--ink-200);
  border-right: 0;
  border-radius: var(--r-md) 0 0 var(--r-md);
}

.hero__lead-mobile input {
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.hero__lead-submit {
  width: 100%;
  margin-top: 4px;
}

.hero__lead-foot {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero__lead-foot span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-display);
  font-size: 11px;
  color: var(--ink-500);
  font-weight: 500;
}

.hero__lead-foot i {
  color: var(--teal-600);
  font-size: 11px;
}

/* ============ WHAT IS HERNIA — concise strip ============ */
.what-strip {
  background: var(--white);
}

.what-strip__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.what-strip__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.what-strip__card {
  background: linear-gradient(180deg, var(--teal-bg-light), var(--white));
  border: 1px solid var(--teal-100);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.what-strip__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.what-strip__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-sm);
}

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

.what-strip__card p {
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.55;
}

/* ============ TICKER / TRUST STRIP ============ */
.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%);
  }
}
/* ============ TYPES — interactive comparison cards ============ */
.types {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.htype {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border-top: 4px solid var(--htype-color, var(--teal-500));
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}

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

.htype__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: color-mix(in srgb, var(--htype-color, var(--teal-500)) 12%, var(--white));
}

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

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

.htype__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--htype-color, var(--teal-500)) 60%, transparent) 100%);
  pointer-events: none;
}

.htype__head {
  padding: 0 22px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  margin-top: -28px;
  z-index: 2;
}

.htype__ic {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--htype-color, var(--teal-500));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--htype-color, var(--teal-500)) 45%, transparent);
  border: 3px solid var(--white);
}

.htype__pill {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  background: var(--htype-color, var(--teal-500));
  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;
  z-index: 3;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--htype-color, var(--teal-500)) 50%, transparent);
}

.htype__body {
  padding: 0 22px 18px;
  flex: 1;
}

.htype__name {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 4px 0 4px;
}

.htype__name em {
  font-style: italic;
  color: var(--ink-500);
  font-weight: 400;
  font-size: 13px;
  display: block;
}

.htype__desc {
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.6;
  margin-bottom: 14px;
}

.htype__signs {
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin-top: auto;
}

.htype__signs-label {
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink-500);
  margin-bottom: 8px;
  display: block;
}

.htype__signs ul {
  list-style: none;
  display: grid;
  gap: 4px;
}

.htype__signs li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-700);
  line-height: 1.45;
}

.htype__signs li i {
  color: var(--htype-color, var(--teal-500));
  font-size: 11px;
  margin-top: 4px;
  flex-shrink: 0;
}

.htype__foot {
  padding: 0 22px 20px;
}

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

.htype:hover .htype__cta {
  gap: 10px;
}


/* Featured type — Hernia Repair flagship (fits one grid column, vertically distinctive) */
.htype--featured {
  position: relative;
  border-color: var(--htype-color, var(--cardiac-600));
  border-top-width: 6px;
  box-shadow: 0 18px 38px rgba(196, 32, 32, 0.18);
}

.htype--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(196, 32, 32, 0.28);
}

.htype--featured .htype__name {
  font-size: 22px;
}

.htype--featured .htype__signs {
  background: linear-gradient(180deg, rgba(196, 32, 32, 0.06), rgba(196, 32, 32, 0.02));
  border: 1px solid rgba(196, 32, 32, 0.18);
}

.htype--featured .htype__cta {
  font-weight: 700;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--htype-color, #c42020), #ef4b4b);
  color: var(--white) !important;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 22px rgba(196, 32, 32, 0.28);
}

.htype--featured .htype__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(196, 32, 32, 0.38);
}

.htype__flag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--htype-color, #c42020), #ef4b4b);
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(196, 32, 32, 0.35);
  z-index: 3;
}

.htype__flag i {
  font-size: 9.5px;
}

.htype--featured .htype__pill {
  top: auto;
  bottom: 14px;
}

/* ============ SYMPTOMS / WHEN-TO-CONSULT — dark background ============ */
.symptoms {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

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

.symptoms::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  pointer-events: none;
}

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

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

.symptoms .accent-teal {
  color: var(--teal-300);
}

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

.symptoms .eyebrow {
  background: rgba(38, 166, 154, 0.18);
  color: var(--teal-300);
  border-color: rgba(38, 166, 154, 0.40);
}

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

.symbox {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}

.symbox:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.symbox--urgent {
  border-color: rgba(239, 75, 75, 0.35);
}

.symbox--urgent:hover {
  border-color: rgba(239, 75, 75, 0.55);
}

.symbox--routine {
  border-color: rgba(38, 166, 154, 0.35);
}

.symbox--routine:hover {
  border-color: rgba(38, 166, 154, 0.55);
}

.symbox__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--white);
}

.symbox--routine .symbox__icon {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
}

.symbox--urgent .symbox__icon {
  background: linear-gradient(135deg, #ef4b4b, #c42020);
}

.symbox h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.symbox h3 em {
  font-style: normal;
  font-weight: 700;
}

.symbox--routine h3 em {
  color: var(--teal-300);
}

.symbox--urgent h3 em {
  color: #ff8a8a;
}

.symbox>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  line-height: 1.55;
}

.symlist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.symlist li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
}

.symlist li i {
  margin-top: 4px;
  font-size: 11px;
  flex-shrink: 0;
}

.symbox--routine .symlist li i {
  color: var(--teal-300);
}

.symbox--urgent .symlist li i {
  color: #ff8a8a;
}

.symbox--urgent {
  border-color: rgba(239, 75, 75, 0.40);
  background: rgba(239, 75, 75, 0.06);
}

.symbox--urgent:hover {
  background: rgba(239, 75, 75, 0.10);
  border-color: rgba(239, 75, 75, 0.60);
}

.symbox__urgent-cta {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(239, 75, 75, 0.12);
  border: 1px solid rgba(239, 75, 75, 0.32);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.symbox__urgent-cta strong {
  font-family: var(--f-display);
  font-size: 14px;
  color: #ffb3b3;
  display: block;
}

.symbox__urgent-cta span {
  display: block;
  font-size: 12px;
  color: rgba(255, 179, 179, 0.85);
  margin-top: 2px;
}

/* ============ WHY DELAY — progression timeline (REDESIGNED) ============ */
.risk {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  color: var(--white);
  padding: 90px 0;
  overflow: hidden;
}

.risk__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(38, 166, 154, 0.18), transparent 45%),
    radial-gradient(circle at 88% 78%, rgba(239, 75, 75, 0.15), transparent 45%),
    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: auto, auto, 64px 64px, 64px 64px;
  pointer-events: none;
  opacity: 0.95;
}

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

.risk__head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.risk__head .h-display {
  color: var(--white);
  font-size: 32px;
  letter-spacing: -0.5px;
  line-height: 1.22;
}

.risk__head .h-display em {
  font-style: italic;
  color: #ff8e8e;
}

/* Horizontal timeline of 3 phases */
.risk__timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto 36px;
}

.risk-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med);
  display: flex;
  flex-direction: column;
}

.risk-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.20);
}

.risk-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  transition: width var(--t-med);
}

.risk-step:hover::before {
  width: 100%;
}

.risk-step--good::before {
  background: var(--teal-400);
}

.risk-step--mid::before {
  background: var(--gold-400);
}

.risk-step--bad::before {
  background: #ef4b4b;
}

.risk-step__phase {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}

.risk-step--good .risk-step__phase {
  color: var(--teal-300);
}

.risk-step--mid .risk-step__phase {
  color: var(--gold-300);
}

.risk-step--bad .risk-step__phase {
  color: #ff8e8e;
}

.risk-step__title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.risk-step__detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.risk-step__arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.30);
  font-size: 20px;
  padding: 0 10px;
}

.risk__cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.risk__cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.risk__cta-note i {
  color: var(--teal-300);
  font-size: 14px;
}

/* ============ TREATMENT OPTIONS — light background, white cards ============ */
.treatment-vs {
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #e9f4f1 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.tvs-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 30px 28px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  overflow: hidden;
}

.tvs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height var(--t-med);
}

.tvs-card--open::before {
  background: linear-gradient(90deg, #c42020, #ef4b4b);
}

.tvs-card--lap::before {
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
}

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

.tvs-card--open:hover {
  border-color: rgba(196, 32, 32, 0.25);
}

.tvs-card--lap:hover {
  border-color: var(--teal-300);
}

.tvs-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--teal-500);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: var(--shadow-teal);
  z-index: 2;
}

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

.tvs-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}

.tvs-card--open .tvs-card__icon {
  background: linear-gradient(135deg, #c42020, #ef4b4b);
  box-shadow: 0 8px 18px rgba(196, 32, 32, 0.30);
}

.tvs-card--lap .tvs-card__icon {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  box-shadow: 0 8px 18px rgba(38, 166, 154, 0.32);
}

.tvs-card__label {
  display: block;
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.tvs-card--open .tvs-card__label {
  color: #c42020;
}

.tvs-card--lap .tvs-card__label {
  color: var(--teal-700);
}

.tvs-card__title {
  font-family: var(--f-display);
  font-size: 23px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.4px;
  line-height: 1.1;
}

.tvs-card__sub {
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.55;
  margin-bottom: 22px;
}

/* Hero stat block — typography driven */
.tvs-hero {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 22px;
  border-radius: var(--r-lg);
  margin-bottom: 22px;
}

.tvs-card--open .tvs-hero {
  background: linear-gradient(180deg, rgba(196, 32, 32, 0.05), rgba(196, 32, 32, 0.01));
  border: 1px solid rgba(196, 32, 32, 0.10);
}

.tvs-card--lap .tvs-hero {
  background: linear-gradient(180deg, rgba(38, 166, 154, 0.08), rgba(38, 166, 154, 0.02));
  border: 1px solid var(--teal-100);
}

.tvs-hero__big {
  text-align: center;
  min-width: 120px;
}

.tvs-hero__big strong {
  display: block;
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
}

.tvs-hero__big strong small {
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 2px;
  vertical-align: super;
  opacity: 0.75;
}

.tvs-hero__big span {
  display: block;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 8px;
}

.tvs-hero__big--neg strong {
  color: #c42020;
}

.tvs-hero__big--pos strong {
  color: var(--teal-600);
}

.tvs-hero__split {
  width: 1px;
  height: 64px;
  background: var(--ink-100);
}

.tvs-hero__small {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-600);
  line-height: 1.5;
}

.tvs-hero__pip {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(196, 32, 32, 0.10);
  color: #c42020;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
}

.tvs-hero__ports {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tvs-hero__ports span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-100);
  position: relative;
}

.tvs-hero__ports span::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--teal-300);
  opacity: 0;
  animation: portRing 2.4s ease-out infinite;
}

.tvs-hero__ports span:nth-child(1)::after {
  animation-delay: 0s;
}

.tvs-hero__ports span:nth-child(2)::after {
  animation-delay: 0.4s;
}

.tvs-hero__ports span:nth-child(3)::after {
  animation-delay: 0.8s;
}

@keyframes portRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

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

/* Stats list */
.tvs-stats {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
}

.tvs-stats li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-100);
}

.tvs-stats li:last-child {
  border-bottom: 0;
}

.tvs-stats__label {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tvs-stats__val {
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  text-align: right;
}

.tvs-stats__val--neg {
  color: #c42020;
}

.tvs-stats__val--pos {
  color: var(--teal-700);
}

.tvs-card__cta {
  width: 100%;
  justify-content: center;
}

/* ============ ADVANTAGES OF LAP ============ */
.adv {
  background: linear-gradient(180deg, var(--navy-50) 0%, var(--navy-100) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.advcard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

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

.advcard__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--teal-50);
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
}

.advcard__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: 19px;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(38, 166, 154, 0.30);
  position: relative;
  z-index: 1;
}

.advcard h4 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.advcard p {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============ PROCESS / TIMELINE ============ */
.process {
  background: var(--white);
}

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

.proc-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-300), var(--teal-500), var(--teal-300));
  z-index: 0;
}

.pstep {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.pstep__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal-500);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: 0 6px 18px rgba(38, 166, 154, 0.30);
  transition: transform var(--t-fast);
}

.pstep:hover .pstep__num {
  transform: scale(1.06);
}

.pstep h5 {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.pstep__time {
  display: block;
  font-size: 11px;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.pstep p {
  font-size: 12px;
  color: var(--ink-600);
  line-height: 1.5;
}

/* ============ DOCTOR — large profile card ============ */
.doctor {
  background: var(--white);
}

.doc-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-100);
}

.doc-card__media {
  position: relative;
  background: var(--teal-50);
  min-height: 100%;
}

.doc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.doc-card__chip {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.doc-card__chip i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.doc-card__chip strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}

.doc-card__chip span {
  display: block;
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 2px;
}

.doc-card__body {
  padding: 40px 38px;
}

.doc-card__role {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal-700);
  margin-bottom: 8px;
}

.doc-card__name {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.doc-card__creds {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-style: italic;
  color: var(--ink-600);
  margin-bottom: 18px;
}

.doc-card__bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 22px;
}

.doc-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 0;
  margin-bottom: 22px;
  border-top: 1px solid var(--cream-100);
  border-bottom: 1px solid var(--cream-100);
}

.doc-card__stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 4px;
}

.doc-card__stat span {
  font-size: 11.5px;
  color: var(--ink-500);
  font-family: var(--f-display);
  font-weight: 500;
}

.doc-card__expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.doc-card__expertise span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-700);
}

.doc-card__expertise span i {
  color: var(--teal-500);
  font-size: 10px;
}

.doc-card__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============ ABOUT HOSPITAL — split image + content ============ */
.abouthos {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.abouthos__badge i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-300);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.abouthos__badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
}

.abouthos__badge span {
  display: block;
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 2px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.abouthos__body p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--ink-700);
}

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

.abouthos__pillars {
  list-style: none;
  margin: 22px 0 26px;
  display: grid;
  gap: 10px;
}

.abouthos__pillars li {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-md);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.abouthos__pillars li:hover {
  background: var(--white);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

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

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

.abouthos__pillars li span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-600);
  line-height: 1.5;
}

/* ============ GALLERY MINI — 5-image asymmetric mosaic ============ */
.gallery-mini {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  position: relative;
  overflow: hidden;
}

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

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

.gmini-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.gmini-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

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

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

.gmini-item:hover img {
  transform: scale(1.06);
}

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

.gmini-item:hover::after {
  opacity: 0.95;
}

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

.gmini-item__cap strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

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

/* Mosaic positioning: large left tile spans 2 rows, then 4 small tiles */
.gmini-item--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gmini-item--2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.gmini-item--3 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.gmini-item--4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.gmini-item--5 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.gmini-item--1 .gmini-item__cap strong {
  font-size: 20px;
}

/* ============ GOOGLE REVIEWS — Google profile lookalike ============ */
.greviews {
  background: linear-gradient(180deg, #f5f7fa 0%, #ebeff7 100%);
  position: relative;
  overflow: hidden;
}

.greviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(66, 133, 244, 0.08), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(52, 168, 83, 0.07), transparent 40%);
  pointer-events: none;
}

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

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

/* Profile summary card */
.gprofile {
  max-width: 920px;
  margin: 0 auto 32px;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 30px 32px;
  box-shadow: 0 8px 28px rgba(20, 40, 92, 0.08);
  border: 1px solid var(--ink-100);
}

.gprofile__head {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--ink-100);
}

.gprofile__logo {
  font-family: "Product Sans", "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}

.gprofile__info h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 2px;
}

.gprofile__info span {
  font-size: 12.5px;
  color: var(--ink-500);
}

.gprofile__score {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid var(--ink-100);
}

.gprofile__rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}

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

.gprofile__stars {
  color: #FBBC05;
  font-size: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.gprofile__count {
  display: block;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 4px;
}

.gprofile__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #4285F4;
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}

.gprofile__btn:hover {
  background: #1c64d3;
  transform: translateY(-1px);
}

.gprofile__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 520px;
  margin: 0 auto;
}

.gbar {
  display: grid;
  grid-template-columns: 30px 1fr 40px;
  gap: 12px;
  align-items: center;
}

.gbar__label {
  font-family: var(--f-display);
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 600;
  text-align: right;
}

.gbar__track {
  height: 8px;
  background: var(--ink-100);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.gbar__fill {
  height: 100%;
  background: #FBBC05;
  border-radius: var(--r-pill);
  transition: width 0.6s ease;
}

.gbar__count {
  font-family: var(--f-display);
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 500;
}

/* Individual review cards */
.greview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.grcard {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px 24px;
  border: 1px solid var(--ink-100);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.grcard:hover {
  border-color: var(--ink-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.grcard__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.grcard__head img {
  width: 30px;
}

.grcard__avi {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
}

.grcard__author strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.2;
}

.grcard__author span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 2px;
}

.grcard__google {
  color: #4285F4;
  font-size: 16px;
}

.grcard__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.grcard__stars {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 1px;
}

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

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

.greviews__foot {
  text-align: center;
  margin-top: 32px;
}

.greviews__foot img {
  width: 24px;
}

/* ============ INLINE CTA PITCH STRIPS ============ */
.ctapitch {
  padding: 28px 0;
}

.ctapitch--teal {
  background: linear-gradient(135deg, var(--teal-50) 0%, #d8efea 100%);
  border-top: 1px solid var(--teal-100);
  border-bottom: 1px solid var(--teal-100);
}

.ctapitch--navy {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.ctapitch__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.ctapitch__text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.ctapitch--teal .ctapitch__text strong {
  color: var(--navy-900);
}

.ctapitch--navy .ctapitch__text strong {
  color: var(--white);
}

.ctapitch__text span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.ctapitch--teal .ctapitch__text span {
  color: var(--ink-600);
}

.ctapitch--navy .ctapitch__text span {
  color: rgba(255, 255, 255, 0.78);
}

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

/* ============ FAQs ============ */
.faqs {
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #e3f1ee 100%);
  position: relative;
  overflow: hidden;
}

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

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

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

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

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

.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.4;
}

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

.qa summary i {
  color: var(--teal-600);
  font-size: 14px;
  transition: transform var(--t-fast);
  flex-shrink: 0;
}

.qa[open] summary i {
  transform: rotate(45deg);
}

.qa p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.7;
}

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

/* ============ BOOK / CONTACT ============ */
.book {
  background: var(--bg-soft);
  position: relative;
}

.book__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.book__info {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.book__info::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.25), transparent 70%);
}

.book__info h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
}

.book__info>p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
  line-height: 1.65;
  position: relative;
}

.book__info-list {
  list-style: none;
  display: grid;
  gap: 16px;
  position: relative;
  margin-bottom: 24px;
}

.book__info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.book__info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.book__info-list li i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(38, 166, 154, 0.20);
  color: var(--teal-300);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.book__info-list li strong {
  display: block;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--teal-300);
  margin-bottom: 4px;
}

.book__info-list li span {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.4;
}

.book__form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 34px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
}

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

.book__form>p {
  font-size: 13.5px;
  color: var(--ink-600);
  margin-bottom: 22px;
}

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

.form-row--full {
  grid-template-columns: 1fr;
}

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

.form-field label .req {
  color: #ef4b4b;
}

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

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

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

.form-mobile {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0;
}

.form-mobile .prefix {
  background: var(--bg-soft);
  border: 1px solid var(--ink-200);
  border-right: 0;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink-700);
  font-size: 13px;
}

.form-mobile input {
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.book__form-submit {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}

.book__form-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

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

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

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__brand img {
  width: 200px;
  margin-bottom: 16px;
  background: white;
  padding: 8px;
  border-radius: var(--r-sm);
}

.footer__brand p {
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

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

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

.footer__social a:hover {
  background: var(--teal-500);
  color: var(--white);
  border-color: var(--teal-500);
}

.footer h5 {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}

.footer__list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer__list a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t-fast);
}

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

.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer__contact-item i {
  color: var(--teal-300);
  font-size: 13px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer__contact-item span {
  font-size: 13px;
  line-height: 1.55;
}

.footer__bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

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

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

.videos::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.45;
  pointer-events: none;
}

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

/* Make headline + description visible on dark */
.videos .h-display {
  color: var(--white);
}

.videos .accent-teal {
  color: var(--teal-300);
}

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

.videos .eyebrow {
  background: rgba(255, 0, 0, 0.12);
  color: #ffffff;
  border-color: rgba(255, 0, 0, 0.30);
}

.videos__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.videos__head>div:first-child {
  max-width: 640px;
}

.videos__head .eyebrow .fa-youtube {
  color: #ff5757;
  font-size: 13px;
}

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

.videos__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
  backdrop-filter: blur(8px);
}

.videos__arrow:hover {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: var(--white);
  transform: translateY(-2px);
}

.videos__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Carousel container — scrolls horizontally */
.vidcarousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: thin;
  padding-bottom: 20px;
}

.vidcarousel::-webkit-scrollbar {
  height: 6px;
}

.vidcarousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.vidcarousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.20);
  border-radius: 3px;
}

.vidcarousel::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.32);
}

.vidcard {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex;
  flex-direction: column;
}

.vidcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.40);
  border-color: rgba(38, 166, 154, 0.30);
}

.vidcard__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

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

.vidcard__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.vidcard:hover .vidcard__thumb img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.mobile-bar {
  display: none;
}

.vidcard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.95);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(255, 0, 0, 0.5);
  transition: transform var(--t-fast), background var(--t-fast);
  animation: vidPlayPulse 2.4s ease-out infinite;
}

.vidcard:hover .vidcard__play {
  transform: translate(-50%, -50%) scale(1.10);
  background: #cc0000;
}

@keyframes vidPlayPulse {
  0% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(255, 0, 0, 0.55);
  }

  70% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 0 18px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.vidcard__play i {
  margin-left: 4px;
}

.vidcard__thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.vidcard__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vidcard__body h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin: 0;
}

.vidcard__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: auto;
}

.vidcard__meta i {
  color: #ff5757;
  font-size: 13px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .container {
    padding: 0 15px;
  }

  /* Hero — single column on tablet */
  .hero {
    padding: 36px 0 48px;
  }

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

  .hero__title {
    font-size: 36px;
  }

  .hero__doctor--featured {
    max-width: 100%;
  }

  .hero__lead {
    max-width: 560px;
    margin: 0 auto;
  }

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

  .ticker__item {
    border-right: none;
  }

  /* What strip */
  .what-strip__row {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Types / Symptoms / Adv / Process */
  .types__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  /* Treatment dual-card — keep side-by-side, tighten */
  .tvs {
    gap: 18px;
  }

  .tvs-card {
    padding: 26px 22px;
  }

  .tvs-card__title {
    font-size: 21px;
  }

  .tvs-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px;
  }

  .tvs-hero__split {
    width: 100%;
    height: 1px;
  }

  /* Videos carousel — show 2 cards */
  .vidcarousel {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  /* Risk timeline */
  .risk__timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 560px;
  }

  .risk-step__arrow {
    display: none;
  }

  /* Doctor */
  .doc-card {
    grid-template-columns: 1fr;
  }

  .doc-card__media {
    aspect-ratio: 12/10;
  }

  /* About hospital */
  .abouthos__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 720px;
    margin: 0 auto;
  }

  .abouthos__media {
    aspect-ratio: 16/10;
    max-height: 460px;
  }

  /* Gallery mini — 2-col on tablet */
  .gmini-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 200px 200px;
  }

  .gmini-item--1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .gmini-item--2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .gmini-item--3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .gmini-item--4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .gmini-item--5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  /* Google reviews */
  .gprofile__head {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    justify-items: center;
  }

  .gprofile__score {
    border-left: none;
    border-top: 1px solid var(--ink-100);
    padding: 16px 0 0;
    width: 100%;
  }

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

  /* CTA pitch */
  .ctapitch__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 18px;
  }

  .ctapitch__actions {
    justify-content: center;
  }

  /* Book / Footer / Header */
  .book__grid {
    grid-template-columns: 1fr;
  }

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

  .header__nav {
    display: none;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 40px 0;
  }

  .section__head--center {
    margin-bottom: 20px;
  }

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

  /* Hero mobile */
  .hero__title {
    font-size: 28px;
  }

  .hero__lede {
    font-size: 14.5px;
  }

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

  .hero__doctor--featured {
    padding: 16px 18px;
    gap: 16px;
    display: block;
  }

  .hero__doctor--featured .hero__doctor-photo {
    width: 150px;
    height: 150px;
    margin: auto;
    margin-bottom: 10px;
  }

  .hero__doctor-info {
    text-align: center;
  }

  .hero__doctor-info strong {
    font-size: 24px;
  }

  .hero__doctor-label {
    margin-bottom: 10px;
  }

  .hero__doctor-stats {
    gap: 6px;
  }


  .hero__doctor-stat span {
    font-size: 12px;
  }

  .hero__lead {
    padding: 20px;
  }

  .hero__lead-head h3 {
    font-size: 19px;
  }

  /* Treatment dual-card stacks */
  .tvs {
    grid-template-columns: 1fr;
  }

  .tvs-hero__big strong {
    font-size: 32px;
  }

  /* Videos carousel — 1 card per view */
  .vidcarousel {
    grid-auto-columns: calc(100% - 32px);
  }

  .videos__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .videos__nav {
    align-self: flex-end;
  }

  /* Strips & grids → single column */
  .ticker__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

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

  /* Gallery mini — single col */
  .gmini-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 180px 180px 180px 180px;
  }

  .gmini-item--1,
  .gmini-item--2,
  .gmini-item--3,
  .gmini-item--4,
  .gmini-item--5 {
    grid-column: 1;
  }

  .gmini-item--1 {
    grid-row: 1;
  }

  .gmini-item--2 {
    grid-row: 2;
  }

  .gmini-item--3 {
    grid-row: 3;
  }

  .gmini-item--4 {
    grid-row: 4;
  }

  .gmini-item--5 {
    grid-row: 5;
  }

  /* Risk head */
  .risk__head .h-display {
    font-size: 24px;
  }

  .risk__cta {
    flex-direction: column;
  }

  /* Forms & footer */
  .form-row {
    grid-template-columns: 1fr;
  }

  .doc-card__name {
    font-size: 26px;
  }

  .doc-card__stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .doc-card__body {
    padding: 30px 15px;
  }

  .symbox {
    padding: 20px;
  }

  .abouthos__media {
    aspect-ratio: 10 / 10;
    max-height: 460px;
  }

  .abouthos__badge {
    bottom: 10px;
    left: 10px;
    padding: 10px;
  }

  .pstep {
    padding: 20px 10px;
    background: #ededed;
    border-radius: 10px;
  }

  .proc-grid {
    gap: 15px;
  }

  .grcard {
    padding: 15px;
  }

  .risk {
    padding: 40px 0;
  }

  .book__form,
  .book__info {
    padding: 24px 22px;
  }

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

  /* Header */
  .header__cta .header__phone {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .hero__title {
    font-size: 24px;
  }

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

  .hero__cta-row {
    flex-direction: column;
  }

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


  .doc-card__cta {
    flex-direction: column;
  }

  .doc-card__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .ctapitch__actions {
    flex-direction: column;
  }

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

  .gprofile {
    padding: 22px 20px;
  }

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

  .topbar__inner {
    display: none;
  }

  .header__cta .btn.btn--primary {
    display: none;
  }

  .doc-card__stat strong {
    font-size: 20px;
  }

  .greview-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .greview-grid::-webkit-scrollbar {
    display: none;
  }

  .grcard {
    min-width: 88%;
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  .gmini-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .gmini-grid::-webkit-scrollbar {
    display: none;
  }

  .gmini-item {
    min-width: 85%;
    flex: 0 0 85%;
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: hidden;
  }

  .gmini-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
  }

  .mobile-bar {
    display: flex;
    background: #0b1b43;
    width: 90%;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .mobile-bar__btn {
    background: transparent;
    color: #fff;
  }

  .fab.fab--wa,
  .fab--call {
    display: none;
  }

  .mobile-bar__btn i {
    color: #fff !important;
  }

  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    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: #fff;
    background: transparent;
    transition: background var(--t-fast);
    min-height: 48px;
    gap: 10px;
  }

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

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

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


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

}