:root {
  --medical-blue: #1f5f8b;
  --medical-blue-dark: #173f5c;
  --medical-green: #4eb7a4;
  --neutral-50: #f8fbfd;
  --neutral-100: #f1f6fa;
  --neutral-300: #d3e0ea;
  --neutral-600: #5a7284;
  --neutral-900: #192735;
  --shadow-soft: 0 18px 45px rgba(17, 55, 83, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--neutral-900);
  background: var(--neutral-50);
  line-height: 1.6;
}

.wrapper {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(78, 183, 164, 0.25), transparent 38%),
    radial-gradient(circle at 88% 22%, rgba(31, 95, 139, 0.3), transparent 42%),
    linear-gradient(145deg, #eef5fa 0%, #dce9f2 50%, #d4e4ee 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.36;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -120px;
  background: rgba(78, 183, 164, 0.35);
}

.hero::after {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 18%;
  background: rgba(31, 95, 139, 0.26);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 0 4rem;
}

.hero__brand {
  margin-bottom: 4.5rem;
}

.hero__brand .custom-logo-link {
  display: inline-flex;
}

.hero__brand .custom-logo {
  max-width: 220px;
  height: auto;
}

.hero__logo-text {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--medical-blue-dark);
  font-weight: 700;
}

.hero__text {
  max-width: 700px;
}

.hero__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--medical-blue-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: #10263a;
}

.hero p {
  margin: 1rem 0 0;
  color: #30485d;
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 0.82rem 1.4rem;
  margin-top: 1.8rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn--primary {
  background: var(--medical-blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(31, 95, 139, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  background: #1a5279;
}

.quick-info {
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 95, 139, 0.08);
}

.info-card__icon {
  display: inline-flex;
  color: var(--medical-blue);
}

.info-card__icon svg {
  width: 24px;
  height: 24px;
}

.info-card h2 {
  margin: 0.6rem 0 0.2rem;
  font-size: 1rem;
}

.info-card p {
  margin: 0;
  color: var(--neutral-600);
  font-size: 0.95rem;
}

.info-card a {
  color: inherit;
  text-decoration: none;
}

.contact {
  padding: 4rem 0;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.map-card__intro,
.map-card__frame {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 95, 139, 0.08);
}

.map-card__intro {
  padding: 1.5rem;
}

.map-card__intro h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #123046;
}

.map-card__intro p {
  margin: 0.5rem 0 0;
  color: var(--neutral-600);
}

.map-card__button {
  margin-top: 1rem;
}

.map-card__frame {
  overflow: hidden;
  min-height: 320px;
}

.map-card__frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.contact__intro h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #123046;
}

.contact__intro p {
  margin: 0.4rem 0 1.4rem;
  color: var(--neutral-600);
}

.form-feedback {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  font-weight: 500;
}

.form-feedback.success {
  background: #e8f8f4;
  border-color: #8ad5c5;
  color: #185d52;
}

.form-feedback.missing,
.form-feedback.invalid,
.form-feedback.error {
  background: #fff1f0;
  border-color: #ffc9c4;
  color: #9c3434;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 95, 139, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #2f4b60;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--neutral-300);
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--neutral-900);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 95, 139, 0.25);
  border-color: var(--medical-blue);
}

.contact-form__full {
  grid-column: 1 / -1;
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(26, 65, 95, 0.12);
}

.site-footer__inner {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.site-footer a {
  color: var(--medical-blue);
  text-decoration: none;
}

.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 1024px) {
  .quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 1rem 0 4.5rem;
  }

  .hero__brand {
    margin-bottom: 2.5rem;
  }

  .quick-info {
    margin-top: -2.4rem;
    gap: 0.85rem;
  }

  .contact {
    padding: 3rem 0;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-card__frame,
  .map-card__frame iframe {
    min-height: 280px;
  }

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

@media (max-width: 560px) {
  .wrapper {
    width: min(1120px, 94vw);
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    justify-content: flex-start;
  }
}

.patients-page {
  padding-bottom: 4rem;
}

.patients-hero {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(78, 183, 164, 0.2), transparent 30%),
    radial-gradient(circle at right center, rgba(31, 95, 139, 0.22), transparent 28%),
    linear-gradient(180deg, #f7fbfe 0%, #e8f1f7 48%, #eef6fb 100%);
}

.patients-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.35));
}

.patients-hero__content {
  position: relative;
  z-index: 1;
}

.patients-hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.patients-hero__brand .custom-logo-link {
  display: inline-flex;
}

.patients-hero__brand .custom-logo {
  max-width: 220px;
  height: auto;
}

.patients-hero__brand-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--medical-blue-dark);
}

.patients-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.patients-hero__actions a {
  color: var(--medical-blue-dark);
  text-decoration: none;
  font-weight: 600;
}

.patients-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 1.5rem;
  align-items: end;
  padding-top: 4.25rem;
}

.patients-hero__copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  line-height: 1.06;
  color: #0f2740;
  max-width: 12ch;
}

.patients-hero__eyebrow,
.patients-card__eyebrow,
.patients-highlight-card__label {
  margin: 0 0 0.65rem;
  color: var(--medical-blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patients-hero__lead {
  max-width: 60ch;
  margin: 1.15rem 0 0;
  color: #35536a;
  font-size: 1.05rem;
}

.patients-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.patients-button--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--medical-blue-dark);
  box-shadow: inset 0 0 0 1px rgba(23, 63, 92, 0.14);
}

.patients-button--ghost:hover,
.patients-button--ghost:focus-visible {
  transform: translateY(-2px);
  background: #fff;
}

.patients-highlight-card,
.patients-card,
.patients-section-card,
.patients-cta__card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 95, 139, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.patients-highlight-card {
  padding: 1.35rem;
}

.patients-highlight-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.patients-highlight-card__list li {
  display: grid;
  gap: 0.22rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(31, 95, 139, 0.08);
}

.patients-highlight-card__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.patients-highlight-card__list span {
  color: var(--neutral-600);
  font-size: 0.9rem;
}

.patients-highlight-card__list strong {
  color: #15344d;
  font-size: 1rem;
}

.patients-shell {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: -2.9rem;
  position: relative;
  z-index: 2;
}

.patients-sidebar {
  display: grid;
  align-self: start;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}

.patients-card {
  padding: 1.35rem;
}

.patients-card h2,
.patients-section-card h2,
.patients-cta__card h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

.patients-toc ol {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.patients-toc a {
  color: #29465c;
  text-decoration: none;
}

.patients-toc a:hover,
.patients-toc a:focus-visible,
.patients-contact-card__link:hover,
.patients-contact-card__link:focus-visible {
  color: var(--medical-blue);
}

.patients-contact-card p {
  margin: 0.75rem 0 1rem;
  color: var(--neutral-600);
}

.patients-contact-card__link {
  display: block;
  color: #15344d;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.patients-content {
  display: grid;
  gap: 1rem;
}

.patients-section-card {
  padding: 1.5rem;
}

.patients-section-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.patients-section-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.3rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(31, 95, 139, 0.1);
  color: var(--medical-blue);
  font-weight: 700;
}

.patients-richtext {
  color: #29465c;
}

.patients-richtext p {
  margin: 0 0 1rem;
}

.patients-richtext p:last-child {
  margin-bottom: 0;
}

.patients-richtext__heading {
  margin: 1.25rem 0 0.8rem;
  color: #123046;
  font-size: 1.05rem;
}

.patients-richtext__list,
.patients-richtext__steps {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.patients-richtext__list li::marker,
.patients-richtext__steps li::marker {
  color: var(--medical-blue);
}

.patients-cta {
  margin-top: 1.75rem;
}

.patients-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.5rem;
}

.patients-cta__card p {
  margin: 0.55rem 0 0;
  color: var(--neutral-600);
}

.patients-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 1024px) {
  .patients-hero__grid,
  .patients-shell {
    grid-template-columns: 1fr;
  }

  .patients-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .patients-page {
    padding-bottom: 3rem;
  }

  .patients-hero {
    padding-bottom: 4rem;
  }

  .patients-hero__topbar,
  .patients-cta__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .patients-hero__grid {
    padding-top: 2.75rem;
  }

  .patients-shell {
    margin-top: -2rem;
  }

  .patients-sidebar {
    grid-template-columns: 1fr;
  }

  .patients-section-card,
  .patients-card,
  .patients-highlight-card,
  .patients-cta__card {
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  .patients-hero__actions,
  .patients-hero__buttons,
  .patients-cta__actions {
    width: 100%;
  }

  .patients-hero__actions a,
  .patients-hero__buttons .btn,
  .patients-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .patients-section-card {
    padding: 1.15rem;
  }
}

.home-page {
  padding-bottom: 4rem;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #123046;
}

.home-hero__media,
.home-hero__overlay {
  position: absolute;
  inset: 0;
}

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

.home-hero__overlay {
  background: linear-gradient(110deg, rgba(10, 28, 44, 0.88) 0%, rgba(16, 43, 65, 0.78) 42%, rgba(18, 48, 70, 0.52) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 1.25rem 0 3.5rem;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.home-header__brand .custom-logo-link {
  display: inline-flex;
}

.home-header__brand .custom-logo {
  max-width: 190px;
  height: auto;
}

.home-header__brand-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.home-header__menu a,
.home-header__phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.home-header__phone {
  white-space: nowrap;
}

.home-hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 1.5rem;
  padding: 3rem 0 1rem;
}

.home-section__eyebrow {
  margin: 0 0 0.8rem;
  color: #8fd4c8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-section__eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.98;
  max-width: 11ch;
}

.home-hero__lead {
  margin: 1.25rem 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.home-hero__actions,
.home-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.home-button--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.home-button--light:hover,
.home-button--light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.home-button--soft {
  background: rgba(31, 95, 139, 0.08);
  color: var(--medical-blue-dark);
  box-shadow: inset 0 0 0 1px rgba(31, 95, 139, 0.12);
}

.home-button--soft:hover,
.home-button--soft:focus-visible {
  background: rgba(31, 95, 139, 0.14);
  transform: translateY(-2px);
}

.home-hero__trust-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-hero__trust-list li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.94rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-hero__panel,
.home-card,
.home-feature-card,
.home-step-card,
.home-contact__card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.home-hero__panel {
  padding: 1.35rem;
}

.home-hero__panel-item {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(31, 95, 139, 0.08);
}

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

.home-hero__panel-item span {
  color: var(--neutral-600);
  font-size: 0.9rem;
}

.home-hero__panel-item strong {
  color: #123046;
}

.home-overview,
.home-features,
.home-journey,
.home-contact {
  margin-top: 1.6rem;
}

.home-quick-actions,
.home-explainer,
.home-services-showcase,
.home-technology,
.home-testimonials {
  margin-top: 1.6rem;
}

.home-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-quick-card,
.home-explainer,
.home-service-card,
.home-technology,
.home-stat-card,
.home-testimonial-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
}

.home-quick-card {
  padding: 1.4rem;
}

.home-quick-card h2,
.home-explainer__content h2,
.home-services-showcase__intro h2,
.home-technology__content h2,
.home-testimonials__intro h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.home-quick-card h2,
.home-service-card h3,
.home-feature-card h3,
.home-card h3,
.home-step-card h3 {
  text-wrap: balance;
}

.home-quick-card h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.home-quick-card p,
.home-services-showcase__intro p,
.home-technology__content p,
.home-testimonials__intro p,
.home-explainer__content p,
.home-service-card p,
.home-testimonial-card p,
.home-stat-card span {
  color: var(--neutral-600);
}

.home-quick-card__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.home-quick-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(31, 95, 139, 0.08);
}

.home-quick-card__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.home-quick-card__list span {
  color: var(--neutral-600);
}

.home-quick-card__list strong {
  color: #123046;
}

.home-explainer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  padding: 1.6rem;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.home-explainer__media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.home-explainer__media img {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(25, 99, 148, 0.12));
}

.home-explainer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.home-excellence {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  margin-top: 1.6rem;
  align-items: stretch;
}

.home-excellence__content,
.home-excellence__media {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
}

.home-excellence__content {
  padding: 1.6rem;
}

.home-excellence__content h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.home-excellence__content p:not(.home-section__eyebrow) {
  color: var(--neutral-600);
}

.home-excellence__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.35rem;
}

.home-stat-card--light {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: none;
}

.home-stat-card--light .home-stat-card__value {
  display: block;
  color: var(--medical-blue);
}

.home-stat-card--light .home-stat-card__label {
  display: block;
  margin-top: 0.45rem;
  color: var(--medical-blue);
}

.home-stat-card .home-stat-card__icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 0.95rem;
  background: rgba(31, 95, 139, 0.08);
  color: var(--medical-blue);
}

.home-stat-card .home-stat-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
}

.home-excellence__media {
  overflow: hidden;
}

.home-excellence__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.home-services-showcase__intro {
  max-width: 64ch;
}

.home-services-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.home-service-card {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.home-service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(78, 183, 164, 0.95), rgba(31, 95, 139, 0.9));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.home-service-card:hover::after,
.home-service-card:focus-within::after {
  transform: scaleX(1);
}

.home-service-card__index {
  display: inline-flex;
  width: 2.3rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 0.95rem;
  background: rgba(31, 95, 139, 0.08);
  color: var(--medical-blue);
  font-weight: 700;
}

.home-service-card h3 {
  margin: 0;
  color: #123046;
  font-size: 1.12rem;
}

.home-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.7rem;
  color: var(--medical-blue);
  text-decoration: none;
  font-weight: 700;
}

.home-service-card a::after {
  content: "→";
  transition: transform 0.2s ease;
}

.home-service-card a:hover::after,
.home-service-card a:focus-visible::after {
  transform: translateX(3px);
}

.home-technology {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #123046 0%, #173d59 100%);
}

.home-technology .home-section__eyebrow,
.home-technology__content h2,
.home-technology__content p {
  color: #fff;
}

.home-technology__content p {
  color: rgba(255, 255, 255, 0.8);
}

.home-technology__stats {
  display: grid;
  gap: 0.9rem;
}

.home-stat-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.home-stat-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
}

.home-stat-card span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
}

.home-studies-banner {
  margin-top: 1.6rem;
}

.home-studies-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 28px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-soft);
}

.home-studies-banner__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.home-studies-banner__media img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 40px rgba(5, 20, 32, 0.24));
}

.home-studies-banner__content {
  max-width: 56ch;
  color: #fff;
}

.home-studies-banner__content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.home-studies-banner__content p:last-of-type {
  color: rgba(255, 255, 255, 0.84);
}

.home-studies-banner__button {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.home-studies-banner__button:hover,
.home-studies-banner__button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.home-testimonials__intro {
  max-width: 64ch;
}

.home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.home-testimonial-card {
  padding: 1.35rem;
}

.home-testimonial-card span {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  background: rgba(31, 95, 139, 0.08);
  color: var(--medical-blue);
  font-weight: 700;
}

.home-overview {
  display: grid;
  gap: 1.25rem;
}

.home-overview__intro {
  max-width: 64ch;
}

.home-overview__intro h2,
.home-features__content h2,
.home-journey__intro h2,
.home-contact__copy h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.home-overview__intro p:last-child,
.home-features__content > p:last-child,
.home-contact__copy > p:last-child {
  color: var(--neutral-600);
  font-size: 1rem;
}

.home-overview__cards,
.home-feature-grid,
.home-journey__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-card,
.home-feature-card,
.home-step-card {
  padding: 1.35rem;
}

.home-card h3,
.home-feature-card h3,
.home-step-card h3 {
  margin: 0;
  color: #123046;
  font-size: 1.15rem;
}

.home-card p,
.home-feature-card p,
.home-step-card p,
.home-journey__intro p,
.home-contact__list,
.home-contact__list a {
  color: var(--neutral-600);
}

.home-card a {
  color: var(--medical-blue);
  text-decoration: none;
  font-weight: 600;
}

.home-features {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: stretch;
}

.home-features__media {
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  box-shadow: var(--shadow-soft);
}

.home-features__media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.home-features__content {
  padding: 0.5rem 0;
}

.home-step-card span {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(31, 95, 139, 0.1);
  color: var(--medical-blue);
  font-weight: 700;
}

.home-contact__card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  padding: 1.35rem;
}

.home-contact__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.home-contact__list a {
  text-decoration: none;
}

.home-contact__map {
  min-height: 340px;
}

@media (max-width: 1100px) {
  .home-hero__grid,
  .home-features,
  .home-contact__card,
  .home-explainer,
  .home-technology,
  .home-excellence,
  .home-studies-banner__inner {
    grid-template-columns: 1fr;
  }

  .home-overview__cards,
  .home-feature-grid,
  .home-journey__steps,
  .home-quick-actions,
  .home-testimonials__grid,
  .home-excellence__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-studies-banner__media {
    order: 2;
  }

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

@media (max-width: 900px) {
  .home-header {
    flex-wrap: wrap;
  }

  .home-header__nav {
    order: 3;
    width: 100%;
  }

  .home-header__menu {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .home-page {
    padding-bottom: 3rem;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__content {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .home-hero__grid {
    padding-top: 2rem;
  }

  .home-overview__cards,
  .home-feature-grid,
  .home-journey__steps,
  .home-quick-actions,
  .home-services-showcase__grid,
  .home-testimonials__grid,
  .home-excellence__stats {
    grid-template-columns: 1fr;
  }

  .home-features__media img {
    min-height: 320px;
  }

  .home-explainer,
  .home-excellence__content {
    padding: 1.2rem;
  }

  .home-studies-banner__inner {
    padding: 1.5rem;
  }

  .home-excellence__media img {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .home-header,
  .home-hero__panel,
  .home-card,
  .home-feature-card,
  .home-step-card,
  .home-contact__card,
  .home-quick-card,
  .home-explainer,
  .home-excellence__content,
  .home-excellence__media,
  .home-studies-banner__inner,
  .home-service-card,
  .home-technology,
  .home-stat-card,
  .home-testimonial-card {
    border-radius: 18px;
  }

  .home-header__menu,
  .home-hero__trust-list,
  .home-hero__actions,
  .home-contact__actions {
    width: 100%;
  }

  .home-hero__actions .btn,
  .home-contact__actions .btn,
  .home-header__phone {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.site-header {
  position: relative;
  z-index: 5;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 20px;
}

.site-header__brand,
.site-header__phone,
.site-header__toggle {
  flex-shrink: 0;
}

.site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-header--overlay .site-header__inner,
.site-header--minimal .site-header__inner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.site-header--solid .site-header__inner {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
}

.site-header__brand .custom-logo-link {
  display: inline-flex;
}

.site-header__brand .custom-logo {
  max-width: 190px;
  height: auto;
}

.site-header__brand-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.site-header__menu > li {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-header__menu .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.site-header__menu > li > a {
  padding: 0.2rem 0;
}

.site-header__submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-left: 0.15rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--medical-blue);
  color: #fff;
  cursor: pointer;
}

.site-header__submenu-icon {
  display: inline-flex;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.site-header__menu .menu-item-has-children:hover > .site-header__submenu-toggle .site-header__submenu-icon,
.site-header__menu .menu-item-has-children.is-submenu-open > .site-header__submenu-toggle .site-header__submenu-icon,
.site-header__menu .menu-item-has-children:focus-within > .site-header__submenu-toggle .site-header__submenu-icon {
  transform: rotate(-135deg) translateY(-1px);
}

.site-header__menu .sub-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 0.95rem);
  left: 0;
  min-width: 250px;
  margin: 0;
  padding: 0.45rem;
  border-radius: 18px;
  background: var(--medical-blue);
  border: 1px solid rgba(31, 95, 139, 0.22);
  box-shadow: 0 22px 40px rgba(17, 55, 83, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
  pointer-events: none;
}

.site-header__menu .sub-menu li {
  margin: 0;
}

.site-header__menu .sub-menu a {
  display: block;
  padding: 0.78rem 0.95rem;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.site-header__menu .sub-menu a:hover,
.site-header__menu .sub-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.site-header__menu .menu-item-has-children:hover > .sub-menu,
.site-header__menu .menu-item-has-children:focus-within > .sub-menu,
.site-header__menu .menu-item-has-children.is-submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  background: transparent;
  cursor: pointer;
  margin-right: 0.25rem;
}

.site-header--overlay .site-header__toggle,
.site-header--minimal .site-header__toggle {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.site-header--solid .site-header__toggle {
  background: rgba(31, 95, 139, 0.06);
  box-shadow: inset 0 0 0 1px rgba(31, 95, 139, 0.1);
}

.site-header__toggle-line {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.site-header__menu a,
.site-header__phone {
  text-decoration: none;
  font-weight: 600;
}

.site-header__menu a {
  position: relative;
}

.site-header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-header__menu a:hover::after,
.site-header__menu a:focus-visible::after,
.site-header__menu .current-menu-item > a::after,
.site-header__menu .current_page_item > a::after,
.site-header__menu .current-menu-ancestor > a::after,
.site-header__menu .current-page-ancestor > a::after {
  transform: scaleX(1);
}

.site-header--overlay .site-header__menu a,
.site-header--overlay .site-header__phone,
.site-header--overlay .site-header__brand-text,
.site-header--minimal .site-header__menu a,
.site-header--minimal .site-header__phone,
.site-header--minimal .site-header__brand-text,
.site-header--overlay .site-header__toggle-line,
.site-header--minimal .site-header__toggle-line {
  color: #fff;
}

.site-header--solid .site-header__menu a,
.site-header--solid .site-header__phone,
.site-header--solid .site-header__brand-text,
.site-header--solid .site-header__toggle-line {
  color: #16354c;
}

.site-header__phone {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__phone svg {
  width: 1.2rem;
  height: 1.2rem;
}

.site-header--overlay .site-header__phone,
.site-header--minimal .site-header__phone {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.site-header--solid .site-header__phone {
  background: rgba(31, 95, 139, 0.06);
  box-shadow: inset 0 0 0 1px rgba(31, 95, 139, 0.1);
}

.site-header--overlay .site-header__toggle-line,
.site-header--minimal .site-header__toggle-line {
  background: #fff;
}

.site-header--solid .site-header__toggle-line {
  background: #16354c;
}

.site-header--overlay .site-header__menu a::after,
.site-header--minimal .site-header__menu a::after {
  background: rgba(255, 255, 255, 0.92);
}

.site-header--solid .site-header__menu a::after {
  background: var(--medical-blue);
}

.site-footer__nav {
  display: flex;
}

.site-footer__menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin: 0;
  padding: 0;
}

.site-footer__menu a {
  color: var(--medical-blue);
  text-decoration: none;
}

.content-page {
  padding-bottom: 4rem;
}

.content-page__hero {
  position: relative;
  min-height: 52vh;
  overflow: hidden;
  background: #103047;
}

.content-page__media,
.content-page__overlay {
  position: absolute;
  inset: 0;
}

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

.content-page__overlay {
  background: linear-gradient(110deg, rgba(10, 28, 44, 0.88) 0%, rgba(18, 48, 70, 0.74) 48%, rgba(18, 48, 70, 0.4) 100%);
}

.content-page__hero-inner {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0 3.5rem;
}

.content-page__hero-copy {
  max-width: 54rem;
  padding-top: 3rem;
}

.content-page__hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.03;
}

.content-page__hero-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.content-page__body {
  margin-top: -2.6rem;
  position: relative;
  z-index: 2;
}

.content-page__card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
}

.entry-content {
  color: #314a5e;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: #123046;
  line-height: 1.15;
}

.entry-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin: 1.8rem 0 0.8rem;
}

.entry-content h3 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  margin: 1.35rem 0 0.7rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  margin: 0 0 1rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}

.entry-content li::marker {
  color: var(--medical-blue);
}

.entry-content a {
  color: var(--medical-blue);
}

.entry-content blockquote {
  margin-left: 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--medical-green);
  background: var(--neutral-100);
  border-radius: 0 14px 14px 0;
}

.inner-page {
  padding-bottom: 4rem;
}

.inner-page__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--medical-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  background: linear-gradient(180deg, #103047, #183d59);
}

.inner-hero--compact {
  min-height: 52vh;
}

.inner-hero--contact {
  min-height: auto;
  padding: 1.1rem 0 3rem;
  background: radial-gradient(circle at top right, rgba(78, 183, 164, 0.18), transparent 30%), linear-gradient(180deg, #eef5fa, #f7fbfe);
}

.inner-hero__media,
.inner-hero__overlay {
  position: absolute;
  inset: 0;
}

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

.inner-hero__overlay {
  background: linear-gradient(105deg, rgba(10, 28, 44, 0.88) 0%, rgba(18, 48, 70, 0.76) 50%, rgba(18, 48, 70, 0.35) 100%);
}

.inner-hero--contact .inner-hero__overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.55));
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0 3.5rem;
}

.inner-hero__copy {
  padding-top: 3rem;
  max-width: 60ch;
}

.inner-hero__copy--narrow {
  max-width: 44rem;
}

.inner-hero__copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.02;
}

.inner-hero__copy p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.inner-hero:not(.inner-hero--contact) .inner-page__eyebrow,
.inner-hero:not(.inner-hero--contact) .inner-hero__copy h1,
.inner-hero:not(.inner-hero--contact) .inner-hero__copy p {
  color: #fff;
}

.inner-hero--contact .inner-hero__copy h1 {
  color: #123046;
}

.inner-hero--contact .inner-hero__copy p {
  color: #486072;
}

.inner-section {
  margin-top: 1.5rem;
}

.inner-section--split,
.inner-section--accent {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: start;
}

.inner-section--accent {
  padding: 1.5rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
}

.inner-section h2,
.inner-section__intro h2,
.contact-page__content h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.inner-richtext,
.inner-richtext p,
.inner-section--accent p,
.contact-page__lead {
  color: var(--neutral-600);
}

.inner-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.inner-card,
.service-card,
.contact-page__content {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
}

.inner-card h3,
.service-card h3 {
  margin: 0;
  color: #123046;
  font-size: 1.15rem;
}

.service-card__index {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(31, 95, 139, 0.1);
  color: var(--medical-blue);
  font-weight: 700;
}

.service-card--linked {
  position: relative;
  overflow: hidden;
}

.service-card--linked::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(78, 183, 164, 0.95), rgba(31, 95, 139, 0.9));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.service-card--linked:hover::after,
.service-card--linked:focus-within::after {
  transform: scaleX(1);
}

.service-card__link,
.service-detail-card__link {
  color: var(--medical-blue);
  text-decoration: none;
  font-weight: 700;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
}

.service-card__link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.service-card__link:hover::after,
.service-card__link:focus-visible::after {
  transform: translateX(3px);
}

.service-detail-page__shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.service-detail-page__sidebar {
  display: grid;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: 1rem;
}

.service-detail-page__highlights {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-detail-page__highlights li {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.94rem;
}

.service-detail-page__content-wrap {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.service-detail-page__overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-page__overview-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
}

.service-detail-page__overview-index {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  background: rgba(31, 95, 139, 0.08);
  color: var(--medical-blue);
  font-weight: 700;
}

.service-detail-page__overview-card h2 {
  margin: 0;
  color: #123046;
  font-size: 1.15rem;
}

.service-detail-page__overview-card p {
  color: var(--neutral-600);
}

.service-detail-card p {
  color: var(--neutral-600);
}

.service-detail-card__link {
  display: block;
  margin-bottom: 0.65rem;
}

.service-detail-page__content {
  min-width: 0;
}

.inner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-page__sidebar {
  display: grid;
  gap: 1rem;
}

.contact-info-card .btn {
  margin-top: 1.2rem;
}

.contact-map-card {
  overflow: hidden;
  padding: 0;
}

.contact-map-card iframe {
  border: 0;
  width: 100%;
  min-height: 320px;
  height: 100%;
}

@media (max-width: 1100px) {
  .inner-grid,
  .services-grid,
  .contact-page__grid,
  .inner-section--split,
  .inner-section--accent {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__nav {
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease, margin-top 0.2s ease;
  }

  .site-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.35rem;
    border-radius: 18px;
  }

  .site-header__menu > li {
    display: block;
  }

  .site-header__menu a {
    display: block;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
  }

  .site-header__menu .menu-item-has-children > a {
    display: inline-flex;
    width: calc(100% - 2.2rem);
  }

  .site-header__submenu-toggle {
    position: absolute;
    top: 0.55rem;
    right: 0.35rem;
    width: 2rem;
    height: 2rem;
  }

  .site-header__menu .sub-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: var(--medical-blue);
    box-shadow: 0 18px 34px rgba(17, 55, 83, 0.2);
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.25s ease, margin-top 0.2s ease;
    pointer-events: auto;
  }

  .site-header__menu .sub-menu a {
    padding: 0.72rem 0.9rem;
    margin-left: 0.55rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .site-header--solid .site-header__menu .sub-menu a {
    background: rgba(255, 255, 255, 0.1);
  }

  .site-header--solid .site-header__menu a,
  .site-header--solid .site-header__phone,
  .site-header--solid .site-header__brand-text,
  .site-header--solid .site-header__toggle-line {
    color: #fff;
  }

  .site-header__menu .menu-item-has-children:hover > .sub-menu,
  .site-header__menu .menu-item-has-children:focus-within > .sub-menu,
  .site-header__menu .menu-item-has-children.is-submenu-open > .sub-menu {
    max-height: 60vh;
    margin-top: 0.35rem;
  }

  .site-header__menu a::after {
    display: none;
  }

  .site-header--overlay .site-header__nav,
  .site-header--minimal .site-header__nav {
    background: rgba(8, 24, 37, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    backdrop-filter: blur(14px);
  }

  .site-header--solid .site-header__nav {
    background: var(--medical-blue);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    box-shadow: 0 22px 40px rgba(17, 55, 83, 0.24);
  }

  .site-header.is-menu-open .site-header__nav {
    max-height: min(80vh, 42rem);
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.9rem;
  }

  .site-header.is-menu-open .site-header__toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .site-header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .site-header__toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .content-page {
    padding-bottom: 3rem;
  }

  .content-page__hero {
    min-height: auto;
  }

  .content-page__hero-copy {
    padding-top: 2rem;
  }

  .inner-page {
    padding-bottom: 3rem;
  }

  .inner-hero,
  .inner-hero--compact {
    min-height: auto;
  }

  .inner-hero__copy {
    padding-top: 2rem;
  }

  .inner-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header__inner,
  .content-page__card,
  .inner-card,
  .service-card,
  .contact-page__content,
  .inner-section--accent {
    border-radius: 18px;
  }

  .site-header__menu,
  .site-header__phone,
  .inner-actions,
  .inner-actions .btn {
    width: 100%;
    display: block;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header__phone {
    grid-column: 1 / -1;
    order: 3;
    display: inline-flex;
    width: calc(100% - 2.2rem);
    justify-self: start;
    position: static;
    margin-top: 0.45rem;
  }

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

  .site-header__toggle {
    margin-right: 0.45rem;
  }

  .site-footer__menu {
    flex-direction: column;
    gap: 0.55rem;
  }
}

.studies-page__intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

.studies-page__intro-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
  background: #04111d;
}

.studies-page__intro-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.studies-page__intro-card,
.studies-topic-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
}

.studies-page__intro-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.studies-page__intro-card h2,
.studies-topic-card h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.studies-page__intro-card p:last-child,
.studies-topic-card p {
  color: var(--neutral-600);
}

.studies-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.35rem;
}

.studies-topic-card {
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.studies-topic-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(78, 183, 164, 0.95), rgba(31, 95, 139, 0.9));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.studies-topic-card:hover::after,
.studies-topic-card:focus-within::after {
  transform: scaleX(1);
}

.studies-topic-card__icon {
  display: inline-flex;
  width: 6.2rem;
  height: 6.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1.1rem;
  background: rgba(31, 95, 139, 0.08);
  color: var(--medical-blue);
  box-shadow: inset 0 0 0 1px rgba(31, 95, 139, 0.08);
}

.studies-topic-card__icon svg {
  width: 2.8rem;
  height: 2.8rem;
}

.studies-topic-card h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
}

.studies-topic-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.studies-topic-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.studies-topic-card--link:hover,
.studies-topic-card--link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(31, 95, 139, 0.2);
  box-shadow: 0 22px 40px rgba(17, 55, 83, 0.14);
}

.study-detail-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.study-detail-page__figure {
  margin-top: 1.5rem;
}

.study-detail-page__figure-card {
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(31, 95, 139, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  max-width: 860px;
  margin: 0 auto;
}

.study-detail-page__intro + .study-detail-page__figure {
  margin-top: 1.2rem;
}

.study-detail-page__figure-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.study-detail-page__copy,
.study-detail-page__aside,
.study-publication-card {
  background: #fff;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
}

.study-detail-page__copy,
.study-detail-page__aside {
  padding: 1.5rem;
}

.study-detail-page__copy h2,
.study-detail-page__section-head h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.study-detail-page__copy p:last-child,
.study-detail-page__copy p,
.study-detail-page__aside,
.study-publication-card__meta {
  color: var(--neutral-600);
}

.study-detail-page__facts {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.study-detail-page__facts li {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(31, 95, 139, 0.08);
}

.study-detail-page__facts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.study-detail-page__publications {
  margin-top: 1.5rem;
}

.study-detail-page__section-head {
  max-width: 60ch;
}

.study-detail-page__list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.study-publication-card {
  padding: 1.35rem;
  border-radius: 22px;
}

.study-publication-card__authors {
  margin: 0 0 0.6rem;
  color: var(--medical-blue);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.study-publication-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

.study-publication-card h3 a {
  color: #123046;
  text-decoration: none;
}

.study-publication-card h3 a:hover,
.study-publication-card h3 a:focus-visible {
  color: var(--medical-blue);
}

.study-publication-card__meta {
  margin: 0.7rem 0 0;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .studies-page__intro,
  .studies-page__grid {
    grid-template-columns: 1fr;
  }

  .study-detail-page__intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .studies-page__intro-media {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .studies-page__intro-card,
  .studies-topic-card {
    border-radius: 18px;
  }

  .study-publication-card,
  .study-detail-page__copy,
  .study-detail-page__aside,
  .study-detail-page__figure-card {
    border-radius: 18px;
  }
}

/* Premium refinements */

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 8% -8%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 183, 164, 0.24) 0%, rgba(78, 183, 164, 0) 72%);
  z-index: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  top: 8%;
  right: -6%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
  z-index: 0;
}

.home-hero__copy {
  max-width: 760px;
}

.home-hero__copy h1 {
  text-wrap: balance;
}

.home-hero__panel {
  position: relative;
  overflow: hidden;
}

.home-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--medical-green), rgba(31, 95, 139, 0.9));
}

.home-hero__panel-lead {
  margin: 0 0 0.8rem;
  color: #476174;
  font-size: 0.96rem;
}

.home-hero__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--medical-blue);
  text-decoration: none;
  font-weight: 700;
}

.home-hero__panel-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.home-hero__panel-link:hover::after,
.home-hero__panel-link:focus-visible::after {
  transform: translateX(3px);
}

.home-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.home-metric-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.home-metric-card strong,
.home-metric-card span {
  display: block;
}

.home-metric-card strong {
  color: #fff;
  font-size: 0.96rem;
}

.home-metric-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.home-premium-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 1rem;
  margin-top: -1.2rem;
  position: relative;
  z-index: 2;
}

.home-premium-band__card,
.home-premium-tile,
.home-signature__panel,
.home-signature-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
}

.home-premium-band__card {
  padding: 1.5rem;
}

.home-premium-band__card h2,
.home-signature__panel h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.home-premium-band__card p:last-child,
.home-premium-tile p,
.home-signature__panel p:last-child,
.home-signature-card p {
  color: var(--neutral-600);
}

.home-premium-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-premium-tile {
  padding: 1.3rem;
}

.home-premium-tile span,
.home-card__index {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(31, 95, 139, 0.08);
  color: var(--medical-blue);
  font-weight: 700;
}

.home-premium-tile h3,
.home-signature-card h3 {
  margin: 0;
  color: #123046;
  font-size: 1.1rem;
}

.home-card {
  position: relative;
  overflow: hidden;
}

.home-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(78, 183, 164, 0.95), rgba(31, 95, 139, 0.9));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.home-card:hover::after,
.home-card:focus-within::after {
  transform: scaleX(1);
}

.home-signature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.home-signature__panel,
.home-signature-card {
  padding: 1.45rem;
}

.home-signature__content {
  display: grid;
  gap: 1rem;
}

.home-contact__card {
  overflow: hidden;
}

.home-contact__copy {
  position: relative;
}

.home-contact__copy::before {
  content: "";
  position: absolute;
  top: -1.35rem;
  left: -1.35rem;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 183, 164, 0.18) 0%, rgba(78, 183, 164, 0) 72%);
}

.patients-hero {
  background: linear-gradient(180deg, #e8f1f7 0%, #f4f9fc 50%, #f9fcfe 100%);
}

.patients-hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.16;
}

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

.patients-hero__overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(248, 252, 254, 0.92));
}

.patients-hero__copy {
  max-width: 780px;
}

.patients-hero__copy h1 {
  text-wrap: balance;
}

.patients-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.patients-highlight-pill {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: 0 14px 30px rgba(17, 55, 83, 0.08);
}

.patients-highlight-pill strong,
.patients-highlight-pill span {
  display: block;
}

.patients-highlight-pill strong {
  color: #123046;
  font-size: 1rem;
}

.patients-highlight-pill span {
  margin-top: 0.28rem;
  color: var(--neutral-600);
  font-size: 0.9rem;
}

.patients-highlight-card {
  position: relative;
  overflow: hidden;
}

.patients-highlight-card::before,
.patients-note-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(78, 183, 164, 0.95), rgba(31, 95, 139, 0.9));
}

.patients-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  margin-top: -1.4rem;
  position: relative;
  z-index: 2;
}

.patients-overview__intro,
.patients-overview-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 95, 139, 0.08);
  box-shadow: var(--shadow-soft);
}

.patients-overview__intro {
  padding: 1.5rem;
}

.patients-overview__intro h2 {
  margin: 0;
  color: #123046;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.patients-overview__intro p:last-child,
.patients-overview-card p,
.patients-note-card p {
  color: var(--neutral-600);
}

.patients-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.patients-overview-card {
  padding: 1.25rem;
}

.patients-overview-card span {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 0.95rem;
  background: rgba(31, 95, 139, 0.08);
  color: var(--medical-blue);
  font-weight: 700;
}

.patients-overview-card h3,
.patients-note-card h2 {
  margin: 0;
  color: #123046;
  font-size: 1.1rem;
}

.patients-shell {
  margin-top: 1.4rem;
}

.patients-note-card {
  position: relative;
}

.patients-section-card {
  position: relative;
  overflow: hidden;
}

.patients-section-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(78, 183, 164, 0.95), rgba(31, 95, 139, 0.9));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.patients-section-card:hover::after,
.patients-section-card:focus-within::after {
  opacity: 1;
}

.patients-section-card--intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.95));
}

.patients-toc li {
  line-height: 1.45;
}

.js-enhanced .reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1100px) {
  .home-premium-band,
  .home-signature,
  .patients-overview,
  .service-detail-page__shell,
  .service-detail-page__overview {
    grid-template-columns: 1fr;
  }

  .home-premium-band__grid,
  .patients-overview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-hero__metrics,
  .patients-hero__highlights,
  .home-premium-band__grid,
  .patients-overview__grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page__sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .home-premium-band {
    margin-top: 1.6rem;
  }

  .patients-overview {
    margin-top: 1.2rem;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    max-width: 12ch;
  }

  .home-hero__lead,
  .patients-hero__lead {
    font-size: 0.98rem;
  }

  .home-premium-band__card,
  .home-premium-tile,
  .home-signature__panel,
  .home-signature-card,
  .patients-overview__intro,
  .patients-overview-card,
  .patients-highlight-pill {
    border-radius: 20px;
  }

  .patients-hero__copy h1 {
    font-size: clamp(2rem, 9vw, 3.3rem);
    max-width: 13ch;
  }

  .patients-shell {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .home-hero__trust-list li,
  .home-metric-card,
  .patients-highlight-pill,
  .service-card,
  .patients-section-card,
  .patients-card,
  .home-card,
  .home-feature-card,
  .home-step-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-contact__card,
  .home-hero__panel,
  .patients-highlight-card,
  .patients-overview__intro,
  .patients-overview-card,
  .service-detail-card,
  .content-page__card {
    padding: 1.1rem;
  }

  .home-contact__map,
  .map-card__frame,
  .contact-map-card iframe {
    min-height: 260px;
  }

  .service-detail-page__highlights {
    flex-direction: column;
  }
}
