:root {
  --ink: #12323a;
  --muted: #55717a;
  --brand: #037b92;
  --brand-dark: #02586d;
  --green: #35a85d;
  --green-soft: #e8f7ef;
  --aqua: #e9f8fb;
  --line: #d9eaee;
  --white: #ffffff;
  --page: #f7fbfc;
  --shadow: 0 18px 55px rgba(3, 91, 108, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brand-dark);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(217, 234, 238, 0.8);
  backdrop-filter: blur(14px);
}

.topbar {
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-dark), var(--brand), var(--green));
  font-size: 14px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

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

.topbar__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.45);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--green));
  border-radius: var(--radius);
  font-size: 24px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #244d57;
  font-weight: 700;
}

.nav-menu a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.nav-menu a:not(.button)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--brand-dark);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.is-active,
.lang-button:hover,
.lang-button:focus-visible {
  color: var(--white);
  background: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--brand-dark);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--green));
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(3, 123, 146, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(3, 123, 146, 0.28);
}

.button--ghost {
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button--small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px;
}

.button--wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 114px);
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 92px) 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(53, 168, 93, 0.16), transparent 31%),
    linear-gradient(135deg, #f6fdff 0%, #eaf8fb 48%, #f8fff9 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  content: "";
  background: rgba(3, 123, 146, 0.08);
  border-radius: 50%;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 68px);
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.hero__lead {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span,
.credential-list span,
.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.hero__visual {
  position: relative;
  isolation: isolate;
}

.doctor-card {
  position: relative;
  overflow: hidden;
  max-width: 460px;
  margin-left: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.doctor-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(2, 88, 109, 0.78));
  pointer-events: none;
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--aqua);
  object-fit: contain;
  object-position: center top;
}

.doctor-card__badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: var(--white);
  background: rgba(3, 123, 146, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.doctor-card__badge strong,
.doctor-card__badge span {
  display: block;
}

.quick-panel {
  position: absolute;
  left: 0;
  bottom: 52px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 275px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(18, 50, 58, 0.13);
}

.quick-panel__icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.quick-panel a {
  display: block;
  color: var(--brand-dark);
  font-weight: 900;
}

.metric-band {
  background: var(--brand-dark);
}

.metric-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.metric-band__grid div {
  min-height: 132px;
  display: grid;
  align-content: center;
  padding: 24px;
  background: var(--brand-dark);
}

.metric-band strong {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.metric-band span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.promo-showcase {
  padding: clamp(52px, 8vw, 86px) 0;
  background: var(--white);
}

.promo-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(26px, 5vw, 52px);
  align-items: center;
}

.promo-showcase__copy p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.promo-showcase__image {
  overflow: hidden;
  margin: 0;
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-showcase__image img {
  width: 100%;
  aspect-ratio: 1600 / 702;
  object-fit: contain;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
  background: var(--white);
}

.section--soft {
  background: var(--aqua);
}

.section--image {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 88, 109, 0.94), rgba(3, 123, 146, 0.78)),
    url("assets/images/surgery-hero.webp") center / cover;
}

.section--image h2,
.section--image .eyebrow {
  color: var(--white);
}

.section--image p {
  color: rgba(255, 255, 255, 0.84);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
}

.section-heading {
  max-width: 650px;
}

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

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.profile-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.credential-list span {
  background: var(--green-soft);
}

.visual-gallery-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.visual-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
  gap: 14px;
  margin-top: 42px;
}

.visual-gallery figure {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(3, 91, 108, 0.08);
}

.visual-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.visual-gallery figure:first-child img {
  height: 320px;
}

.visual-gallery figcaption {
  padding: 12px 14px;
  color: var(--brand-dark);
  font-weight: 900;
}

.care-snapshot {
  border-top: 1px solid var(--line);
}

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

.journey-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(3, 91, 108, 0.08);
}

.journey-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.journey-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 185px auto;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(3, 91, 108, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(3, 123, 146, 0.35);
  box-shadow: 0 18px 42px rgba(3, 91, 108, 0.15);
}

.service-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  background: var(--green-soft);
}

.service-card div {
  padding: 20px;
}

.service-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-card__link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 252, 0.98)),
    radial-gradient(circle at 85% 14%, rgba(3, 123, 146, 0.14), transparent 32%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(3, 91, 108, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card::after {
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 96px;
  height: 96px;
  content: "";
  background: rgba(53, 168, 93, 0.1);
  border-radius: 50%;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(3, 123, 146, 0.42);
  box-shadow: 0 18px 44px rgba(3, 91, 108, 0.16);
}

.category-icon {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(3, 91, 108, 0.08);
}

.category-icon img {
  width: 64px;
  height: 64px;
}

.category-card strong {
  position: relative;
  z-index: 1;
  font-size: 19px;
  line-height: 1.25;
}

.category-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.doctor-designation {
  display: grid;
  gap: 4px;
  max-width: 620px;
  margin-top: 22px;
  padding: 14px 16px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.doctor-designation strong {
  color: var(--ink);
}

.doctor-designation span {
  font-weight: 800;
}

.service-hero {
  padding: clamp(54px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(53, 168, 93, 0.14), transparent 28%),
    linear-gradient(135deg, #f6fdff 0%, #eaf8fb 55%, #f8fff9 100%);
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}

.service-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.treatment-hero {
  overflow: hidden;
}

.treatment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.treatment-badges span {
  padding: 8px 11px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.treatment-icon-panel {
  min-height: 380px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 5vw, 46px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(53, 168, 93, 0.16), transparent 36%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.treatment-icon-panel img {
  width: min(180px, 48vw);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(3, 91, 108, 0.12));
}

.treatment-icon-panel strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
}

.treatment-icon-panel small {
  max-width: 360px;
  color: var(--muted);
  font-weight: 800;
}

.treatment-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.treatment-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(3, 91, 108, 0.08);
}

.treatment-panel h2 {
  margin-bottom: 16px;
  font-size: 22px;
}

.treatment-panel--prose p {
  color: var(--muted);
  line-height: 1.75;
}

.treatment-panel--prose p + p {
  margin-top: 14px;
}

.treatment-links-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.treatment-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.treatment-link-cloud a {
  padding: 10px 12px;
  color: var(--brand-dark);
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.treatment-link-cloud a:hover,
.treatment-link-cloud a:focus-visible {
  color: var(--white);
  background: var(--brand-dark);
}

.cta-strip {
  padding: clamp(42px, 7vw, 72px) 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--green));
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-strip h2,
.cta-strip .eyebrow {
  color: var(--white);
}

.cta-strip p {
  max-width: 780px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.button--light {
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: none;
}

.service-photo-card {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  object-position: center top;
}

.service-photo-card--wide img {
  aspect-ratio: 1600 / 702;
  object-fit: contain;
}

.service-photo-card figcaption {
  padding: 14px 16px;
  color: var(--brand-dark);
  background: var(--white);
  font-weight: 900;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.profile-detail-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

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

.service-detail p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.service-info-card {
  padding: 26px;
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(3, 91, 108, 0.1);
}

.service-info-card .check-list {
  margin-top: 20px;
}

.service-highlight {
  background: var(--white);
}

.service-highlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.service-highlight p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.requested-url {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  padding: 11px 13px;
  color: var(--brand-dark);
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.service-image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.service-image-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(3, 91, 108, 0.1);
}

.service-band {
  padding: clamp(42px, 7vw, 72px) 0;
  background: var(--brand-dark);
}

.service-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.service-band article {
  min-height: 190px;
  padding: 26px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--brand-dark);
}

.service-band span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #aaf0c0;
  font-size: 14px;
  font-weight: 900;
}

.service-band h3 {
  color: var(--white);
}

.service-band p {
  margin-top: 10px;
}

.service-cta-block {
  background: var(--white);
}

.capability-section {
  background:
    linear-gradient(135deg, rgba(2, 88, 109, 0.96), rgba(3, 123, 146, 0.9)),
    url("assets/images/dr-ovi-ot.webp") center / cover;
}

.capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.capability-section h2,
.capability-section .eyebrow {
  color: var(--white);
}

.capability-section p {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.capability-list a,
.capability-list span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  font-weight: 900;
  backdrop-filter: blur(6px);
}

.capability-list a:hover,
.capability-list a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.report-section {
  background: var(--aqua);
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.report-image {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.report-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.report-grid p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.report-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.report-checks span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.care-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #284e58;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
}

.care-card {
  padding: 26px;
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.care-card ol {
  display: grid;
  gap: 14px;
  margin: 22px 0 28px;
  padding-left: 22px;
  color: var(--muted);
}

.care-card li::marker {
  color: var(--brand);
  font-weight: 900;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  min-height: 360px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-list span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(3, 91, 108, 0.07);
}

.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.social-section {
  background: var(--brand-dark);
}

.social-wide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.social-wide-card .eyebrow,
.social-wide-card h2 {
  color: var(--white);
}

.social-wide-card p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.appointment-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 168, 93, 0.16), transparent 28%),
    linear-gradient(135deg, #f5fcff 0%, #eaf8fb 52%, #f4fff7 100%);
}

.contact-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(3, 123, 146, 0.16), transparent 28%),
    linear-gradient(135deg, #f7fdff 0%, #e8f7ef 52%, #e9f8fb 100%);
}

.appointment-page-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.9fr);
}

.appointment__copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 13px 16px;
  color: var(--brand-dark);
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

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

.contact-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(3, 91, 108, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(3, 123, 146, 0.35);
  box-shadow: 0 18px 42px rgba(3, 91, 108, 0.14);
}

.contact-card span {
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  word-break: break-word;
}

.contact-card p {
  color: var(--muted);
}

.animated-info {
  padding: clamp(44px, 7vw, 72px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, var(--brand-dark), var(--brand), var(--green));
}

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

.animated-info__card {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.animated-info__card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.animated-info__card h2 {
  color: var(--white);
  font-size: 22px;
}

.animated-info__card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.visit-cards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.visit-cards div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(3, 91, 108, 0.07);
}

.visit-cards strong,
.visit-cards span {
  display: block;
}

.visit-cards strong {
  color: var(--ink);
}

.visit-cards span {
  margin-top: 6px;
  color: var(--muted);
}

.social-update-card {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(3, 123, 146, 0.1), rgba(53, 168, 93, 0.12));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.social-update-card h3 {
  margin-top: 4px;
}

.social-update-card p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--muted);
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: #274a54;
  font-weight: 800;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfeff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.appointment-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.report-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
}

.report-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #274a54;
  font-weight: 800;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--brand-dark);
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.checkbox-card input {
  width: 16px;
  min-height: auto;
  accent-color: var(--brand);
}

.robot-check {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  padding: 13px 14px;
  color: var(--brand-dark);
  background: var(--green-soft);
  border: 1px solid #c7e8d5;
  border-radius: var(--radius);
  font-weight: 900;
}

.robot-check input {
  width: 18px;
  min-height: auto;
  height: 18px;
  accent-color: var(--brand);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(3, 123, 146, 0.12);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.seo-section {
  padding: 44px 0;
  background: var(--green-soft);
  border-block: 1px solid #caecd7;
}

.seo-section__inner {
  max-width: 960px;
}

.seo-section h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.seo-section p {
  margin-top: 12px;
  color: #315c47;
}

.keyword-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.keyword-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid #c7e8d5;
  border-radius: var(--radius);
  font-weight: 900;
}

.landing-hero {
  padding: clamp(58px, 8vw, 96px) 0;
  background:
    linear-gradient(135deg, rgba(233, 248, 251, 0.92), rgba(232, 247, 239, 0.86)),
    url("assets/images/surgery-hero.webp") center / cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.landing-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
}

.landing-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.landing-card h2 {
  font-size: 28px;
}

.landing-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.landing-section {
  padding: clamp(56px, 8vw, 92px) 0;
  background: var(--white);
}

.landing-section--soft {
  background: var(--aqua);
}

.landing-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 58px);
}

.landing-content p,
.landing-content li {
  color: var(--muted);
  font-size: 18px;
}

.landing-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.landing-cta {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--green));
  border-radius: var(--radius);
}

.landing-cta h2 {
  color: var(--white);
}

.landing-cta p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.landing-cta .button {
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #073b49;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
  padding: 56px 0 34px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.footer-bottom span,
.footer-bottom a {
  margin: 0;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  min-width: 76px;
  min-height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(18, 50, 58, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero__grid,
  .promo-showcase__grid,
  .landing-hero__grid,
  .service-hero__grid,
  .split,
  .landing-content,
  .service-detail__grid,
  .profile-detail-grid,
  .service-highlight__grid,
  .capability-grid,
  .report-grid,
  .social-wide-card,
  .care-grid,
  .feature-panel,
  .treatment-content-grid,
  .treatment-links-card,
  .animated-info__grid,
  .cta-grid,
  .appointment {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .doctor-card {
    margin-inline: auto;
  }

  .quick-panel {
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    width: min(92%, 310px);
  }

  .metric-band__grid,
  .contact-grid,
  .profile-links-grid,
  .visual-gallery,
  .category-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-band__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .topbar__divider {
    display: none;
  }

  .navbar {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 108px 16px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-page-menu {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 10px 8px;
  }

  .nav-menu .button {
    margin-top: 6px;
  }

  .language-switcher {
    width: max-content;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero__visual {
    padding-bottom: 28px;
  }

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

  .floating-call {
    display: grid;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding: 38px 0 62px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
  }

  .metric-band__grid,
  .visual-gallery,
  .journey-grid,
  .service-image-strip,
  .capability-list,
  .report-checks,
  .report-options,
  .contact-grid,
  .profile-links-grid,
  .category-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .metric-band__grid div {
    min-height: 104px;
  }

  .journey-card {
    min-height: auto;
  }

  .journey-card span {
    margin-bottom: 22px;
  }

  .service-card {
    grid-template-rows: 170px auto;
  }

  .service-card img {
    height: 170px;
  }

  .promo-showcase__image img {
    aspect-ratio: 16 / 9;
  }

  .category-card {
    min-height: 210px;
  }

  .treatment-icon-panel {
    min-height: 280px;
  }

  .care-card,
  .appointment-form,
  .service-info-card {
    padding: 20px;
  }

  .doctor-card__badge {
    display: grid;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Dynamic portal refresh */
.brand__mark {
  overflow: hidden;
  padding: 2px;
  background: var(--white);
  border: 2px solid rgba(3, 123, 146, 0.22);
  border-radius: 50%;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.language-switcher--header {
  flex: 0 0 auto;
  background: #f2fafb;
}

.language-switcher--header .lang-button {
  white-space: nowrap;
}

.promo-showcase__image figcaption {
  padding: 13px 16px;
  color: var(--white);
  background: var(--brand-dark);
  font-weight: 900;
  text-align: center;
}

.metric-band__grid div {
  position: relative;
  overflow: hidden;
}

.metric-band__grid div::after {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 100px;
  height: 100px;
  content: "";
  border: 18px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.category-card {
  min-height: 390px;
  grid-template-rows: 205px auto auto;
  gap: 12px;
  padding: 0 20px 22px;
  background: var(--white);
}

.category-card::after {
  display: none;
}

.category-icon {
  width: calc(100% + 40px);
  height: 205px;
  margin-left: -20px;
  overflow: hidden;
  background: #f9fcfd;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.category-icon img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
}

.category-card strong {
  margin-top: 6px;
  font-size: 20px;
}

.category-card small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.section--offer {
  padding-block: clamp(42px, 6vw, 70px);
  background: #eef9f4;
}

.online-offer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 38px);
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
  color: var(--white);
  background: linear-gradient(120deg, var(--brand-dark), var(--brand) 68%, #218b58);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(2, 88, 109, 0.22);
}

.online-offer::after {
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  content: "";
  border: 48px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.online-offer__badge {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--brand-dark);
  background: var(--white);
  border-radius: 50%;
}

.online-offer__badge strong {
  font-size: 32px;
  line-height: 1;
}

.online-offer__badge span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 900;
}

.online-offer__copy,
.online-offer > a {
  position: relative;
  z-index: 1;
}

.online-offer .eyebrow,
.online-offer h2,
.online-offer p {
  color: var(--white);
}

.online-offer h2 {
  margin: 4px 0 10px;
  max-width: 760px;
  font-size: clamp(24px, 3vw, 38px);
}

.online-offer p {
  margin: 0;
  font-size: 17px;
}

.online-offer p strong {
  margin-inline: 6px;
  font-size: 24px;
}

.button--light {
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: none;
}

.online-offer--compact {
  padding: clamp(24px, 4vw, 34px);
}

.location-panel,
.facebook-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.location-panel__copy p,
.facebook-panel p {
  color: var(--muted);
  font-size: 18px;
}

.map-frame,
.facebook-frame {
  overflow: hidden;
  min-height: 390px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe,
.facebook-frame iframe {
  width: 100%;
  height: 390px;
  display: block;
  border: 0;
}

.facebook-frame {
  display: grid;
  place-items: center;
  padding: 12px;
}

.facebook-frame iframe {
  max-width: 500px;
}

.treatment-icon-panel--image {
  overflow: hidden;
  padding: 0 0 22px;
  align-content: start;
}

.treatment-icon-panel--image img {
  width: 100%;
  height: 310px;
  padding: 18px;
  object-fit: contain;
  background: #fff;
  filter: none;
  border-bottom: 1px solid var(--line);
}

.treatment-icon-panel--image strong,
.treatment-icon-panel--image small {
  padding-inline: 22px;
}

.service-media-section {
  background: #f4fafb;
}

.service-medical-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-medical-gallery figure {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(3, 91, 108, 0.1);
}

.service-medical-gallery img {
  width: 100%;
  height: 360px;
  padding: 14px;
  object-fit: contain;
}

.service-medical-gallery figcaption {
  padding: 13px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.profile-lead {
  max-width: 760px;
}

.profile-designation {
  color: var(--brand-dark) !important;
  font-weight: 900;
}

.profile-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.profile-story {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(3, 91, 108, 0.09);
}

.profile-story--wide {
  grid-column: 1 / -1;
}

.profile-story--accent {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.profile-story--accent h2,
.profile-story--accent .eyebrow,
.profile-story--accent li {
  color: var(--white);
}

.profile-story__number {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.profile-story p:not(.eyebrow) {
  color: var(--muted);
}

.profile-story h2 {
  margin-bottom: 16px;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.publication-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.publication-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.publication-card h3 {
  margin: 12px 0 20px;
  font-size: 20px;
  line-height: 1.35;
}

.publication-card a {
  margin-top: auto;
  color: var(--brand-dark);
  font-weight: 800;
}

.verification-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.verification-links a,
.verification-links span {
  padding: 10px 14px;
  background: var(--brand-dark);
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

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

.expertise-list li {
  position: relative;
  padding-left: 24px;
}

.expertise-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #85e0a4;
  font-weight: 900;
}

.profile-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.profile-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(3, 91, 108, 0.12);
}

.custom-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
}

.article-content {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.article-content p + p {
  margin-top: 20px;
}

.article-section + .article-section {
  margin-top: 42px;
}

.article-section h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
}

.article-section .faq-item + .faq-item {
  margin-top: 12px;
}

.article-sources ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.article-sources a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: end;
  margin-bottom: 24px;
}

.blog-search label {
  grid-column: 1 / -1;
  color: var(--brand-dark);
  font-weight: 900;
}

.blog-search input {
  min-width: 0;
  height: 50px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.blog-search input:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(3, 123, 146, 0.14);
}

.blog-search span {
  padding: 13px 15px;
  color: var(--white);
  background: var(--brand-dark);
  border-radius: 6px;
  font-weight: 800;
}

.blog-empty {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: var(--soft);
  border-radius: var(--radius);
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 0 20px 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(3, 91, 108, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(3, 91, 108, 0.14);
}

.blog-card img {
  width: calc(100% + 40px);
  height: 220px;
  margin-left: -20px;
  object-fit: cover;
  object-position: center;
}

.blog-card span,
.blog-card small {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card strong {
  font-size: 21px;
  line-height: 1.25;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.child-page-list {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.child-page-list a {
  padding: 10px 0;
  color: var(--brand-dark);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .navbar {
    gap: 12px;
  }

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

  .nav-menu {
    inset: 116px 16px auto;
  }

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

  .location-panel,
  .facebook-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__divider,
  .topbar a:last-child {
    display: none;
  }

  .navbar {
    min-height: 72px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    max-width: 150px;
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .navbar-actions {
    gap: 6px;
  }

  .language-switcher--header {
    gap: 2px;
    padding: 2px;
  }

  .language-switcher--header .lang-button {
    min-height: 32px;
    padding: 4px 7px;
    font-size: 12px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 7px;
  }

  .nav-menu {
    inset: 112px 12px auto;
  }

  .metric-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-band__grid div {
    min-height: 132px;
    padding: 20px 15px;
  }

  .metric-band strong {
    font-size: 30px;
  }

  .metric-band span {
    font-size: 13px;
    line-height: 1.35;
  }

  .category-grid,
  .blog-grid,
  .profile-story-grid,
  .profile-photo-grid,
  .publication-grid,
  .custom-page-layout {
    grid-template-columns: 1fr;
  }

  .blog-search {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 360px;
  }

  .online-offer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .online-offer__badge {
    width: 92px;
    height: 92px;
  }

  .online-offer > a {
    width: 100%;
  }

  .map-frame,
  .facebook-frame {
    min-height: 320px;
  }

  .map-frame iframe,
  .facebook-frame iframe {
    height: 320px;
  }

  .service-medical-gallery img,
  .treatment-icon-panel--image img {
    height: 280px;
  }

  .profile-story,
  .profile-story--wide {
    grid-column: auto;
  }

  .promo-showcase__image img,
  .service-photo-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 390px) {
  .brand strong {
    max-width: 112px;
  }

  .language-switcher--header .lang-button {
    padding-inline: 5px;
  }
}

.google-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 950;
  width: min(calc(100% - 36px), 920px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(2, 60, 73, 0.24);
}

.google-consent[hidden] {
  display: none;
}

.google-consent h2 {
  margin-bottom: 9px;
  font-size: 25px;
}

.google-consent__copy > p:last-child {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.55;
}

.google-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.google-consent__actions .button {
  white-space: nowrap;
}

.privacy-choices {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 120;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(2, 60, 73, 0.15);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 700px) {
  .google-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .google-consent h2 {
    font-size: 22px;
  }

  .google-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .google-consent__actions .button {
    width: 100%;
  }
}
