@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/poppins-400.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/poppins-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700 800;
  src: url("fonts/poppins-700.woff2") format("woff2");
}

:root {
  --navy-950: #031b43;
  --navy-900: #05255a;
  --navy-800: #063574;
  --navy-700: #084a94;
  --blue-600: #0878ce;
  --cyan-500: #14b9eb;
  --cyan-100: #dcf5ff;
  --coral-500: #ff4b4b;
  --coral-600: #ed343b;
  --ink: #082453;
  --body: #435571;
  --soft: #f2f7fd;
  --line: #dce8f5;
  --white: #ffffff;
  --shadow-sm: 0 8px 28px rgba(5, 39, 84, 0.09);
  --shadow-lg: 0 20px 55px rgba(3, 29, 70, 0.17);
  --radius: 22px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  background: var(--white);
  color: var(--body);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

.skip-link {
  background: var(--white);
  border-radius: 0 0 10px 10px;
  color: var(--navy-900);
  font-weight: 800;
  left: 18px;
  padding: 12px 18px;
  position: fixed;
  top: -80px;
  transition: top 160ms ease;
  z-index: 200;
}

.skip-link:focus {
  top: 0;
}

.topbar {
  background: linear-gradient(90deg, var(--navy-950), #073a7d);
  color: rgba(255, 255, 255, 0.93);
  height: 36px;
}

.topbar__inner {
  align-items: center;
  display: flex;
  font-size: 12.5px;
  height: 100%;
  justify-content: space-between;
}

.topbar__contacts,
.topbar__contacts a,
.topbar__contacts > span {
  align-items: center;
  display: flex;
}

.topbar__contacts {
  gap: 14px;
}

.topbar__contacts a,
.topbar__contacts > span {
  gap: 7px;
  white-space: nowrap;
}

.topbar svg {
  height: 16px;
  width: 16px;
}

.topbar__divider {
  background: var(--cyan-500);
  height: 18px;
  width: 1px;
}

.topbar p {
  margin: 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(5, 44, 94, 0.08);
  height: 94px;
  position: relative;
  transition:
    box-shadow 180ms ease,
    height 180ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(5, 35, 76, 0.1);
  height: 78px;
  position: sticky;
  top: 0;
}

.header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

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

.brand > img {
  height: 78px;
  object-fit: contain;
  width: 93px;
}

.brand__rule {
  background: var(--cyan-500);
  height: 64px;
  margin: 0 13px 0 3px;
  width: 2px;
}

.brand__copy {
  display: flex;
  flex-direction: column;
}

.brand__copy strong {
  color: #0a4089;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}

.brand__copy small {
  color: var(--coral-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 7px 0 3px;
}

.brand__copy b {
  color: #0872bc;
  font-size: 12px;
  letter-spacing: 1.8px;
}

.primary-nav {
  align-items: stretch;
  align-self: stretch;
  display: flex;
  gap: clamp(26px, 3vw, 48px);
}

.primary-nav a {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 15px;
  font-weight: 700;
  position: relative;
}

.primary-nav a::after {
  background: linear-gradient(90deg, var(--cyan-500) 0 52%, var(--coral-500) 52%);
  bottom: 20px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  width: 34px;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--blue-600);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
  align-items: center;
  background: var(--soft);
  border: 0;
  border-radius: 50%;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.menu-toggle span {
  background: var(--navy-900);
  border-radius: 2px;
  height: 2px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
  width: 21px;
}

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

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

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

.hero {
  background: var(--navy-950);
  min-height: 575px;
  overflow: hidden;
  position: relative;
}

.hero__image {
  background-image: url("assets/hero-medical-team.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero__overlay {
  background:
    linear-gradient(
      104deg,
      rgba(2, 25, 65, 0.99) 0%,
      rgba(3, 39, 94, 0.98) 37%,
      rgba(5, 56, 125, 0.82) 50%,
      rgba(4, 48, 104, 0.1) 66%,
      transparent 78%
    ),
    linear-gradient(0deg, rgba(1, 25, 63, 0.15), transparent 55%);
  inset: 0;
  position: absolute;
}

.hero__inner {
  min-height: 575px;
  padding-bottom: 103px;
  padding-top: 58px;
  position: relative;
  z-index: 2;
}

.hero__copy {
  color: var(--white);
  max-width: 610px;
}

.eyebrow {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  margin: 0 0 13px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--cyan-500);
}

.accent-lines {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
}

.accent-lines i {
  background: var(--cyan-500);
  height: 4px;
  width: 52px;
}

.accent-lines i:last-child {
  background: var(--coral-500);
  width: 42px;
}

.hero h1,
.doctor-hero h1 {
  color: var(--white);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(50px, 5.1vw, 76px);
  font-weight: 700;
  letter-spacing: -2.2px;
  line-height: 1.04;
  margin: 0;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.65;
  margin: 20px 0 27px;
  max-width: 570px;
}

.hero__actions,
.doctor-hero__actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  height: 21px;
  width: 21px;
}

.button--coral {
  background: linear-gradient(105deg, #ff574e, var(--coral-600));
  box-shadow: 0 12px 24px rgba(239, 49, 59, 0.24);
  color: var(--white);
}

.button--coral:hover {
  box-shadow: 0 15px 30px rgba(239, 49, 59, 0.32);
}

.button--glass {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.13);
}

.button--blue {
  background: linear-gradient(105deg, var(--navy-800), var(--blue-600));
  box-shadow: 0 12px 24px rgba(7, 75, 149, 0.2);
  color: var(--white);
}

.button--white {
  background: var(--white);
  color: var(--navy-800);
}

.trust-strip {
  backdrop-filter: blur(15px);
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.12),
    rgba(15, 85, 163, 0.45)
  );
  border: 1px solid rgba(151, 214, 255, 0.75);
  border-radius: 17px;
  bottom: 17px;
  box-shadow:
    inset 0 0 25px rgba(100, 193, 255, 0.16),
    0 16px 34px rgba(0, 21, 57, 0.24);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: 28px;
  overflow: hidden;
  position: absolute;
  right: 28px;
}

.trust-strip article {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 16px;
  min-height: 88px;
  padding: 15px 28px;
  position: relative;
}

.trust-strip article:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.38);
  content: "";
  height: 46px;
  position: absolute;
  right: 0;
  top: 21px;
  width: 1px;
}

.trust-strip__icon {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
}

.trust-strip__icon svg {
  height: 27px;
  width: 27px;
}

.trust-strip article div {
  display: flex;
  flex-direction: column;
}

.trust-strip strong {
  font-size: 14px;
}

.trust-strip small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10.5px;
  margin-top: 4px;
}

.section {
  padding: 105px 0;
}

.split-layout {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.image-composition {
  min-height: 490px;
  position: relative;
}

.image-composition::before {
  border: 2px solid var(--cyan-500);
  border-radius: 26px;
  content: "";
  inset: 25px -18px -22px 24px;
  position: absolute;
  z-index: -1;
}

.image-composition img {
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  height: 490px;
  object-fit: cover;
  width: 100%;
}

.image-composition__badge {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  bottom: 22px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  position: absolute;
  right: -22px;
}

.image-composition__badge strong {
  color: var(--cyan-500);
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.image-composition__badge span {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.section-copy h2,
.section-heading h2,
.lab-layout h2,
.contact-layout h2,
.directory-heading h2 {
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(35px, 3.6vw, 52px);
  letter-spacing: -1.2px;
  line-height: 1.13;
  margin: 0;
}

.lead-copy {
  font-size: 16px;
  line-height: 1.8;
  margin: 22px 0 27px;
}

.value-list {
  display: grid;
  gap: 5px;
}

.value-list article {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 38px 1fr;
  padding: 15px 0;
}

.value-list article > span {
  color: var(--cyan-500);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.value-list h3 {
  color: var(--ink);
  font-size: 14px;
  margin: 0 0 4px;
}

.value-list p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.text-link {
  color: var(--blue-600);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  margin-top: 25px;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.visually-hidden {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Achievements editorial carousel */

.achievements-section {
  background:
    radial-gradient(circle at 82% 48%, rgba(20, 185, 235, 0.12), transparent 29%),
    linear-gradient(135deg, #ffffff 0%, #f8fcff 58%, #edf9fc 100%);
  min-height: 900px;
  overflow: hidden;
  position: relative;
}

.achievements-section::before,
.achievements-section::after {
  border: 1px solid rgba(20, 185, 235, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.achievements-section::before {
  height: 690px;
  right: -90px;
  top: 86px;
  width: 690px;
}

.achievements-section::after {
  bottom: -180px;
  height: 360px;
  left: -130px;
  width: 360px;
}

.achievements-section__orb {
  background: rgba(210, 244, 252, 0.54);
  border-radius: 50%;
  height: 760px;
  pointer-events: none;
  position: absolute;
  right: -85px;
  top: 70px;
  width: 760px;
}

.achievements-section__orb::before {
  border: 1px solid rgba(20, 185, 235, 0.13);
  border-radius: inherit;
  content: "";
  inset: 80px;
  position: absolute;
}

.achievements-layout {
  display: grid;
  gap: 66px;
  grid-template-columns: 345px minmax(0, 1fr);
  min-height: 690px;
  position: relative;
  z-index: 2;
}

.achievements-intro {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 10px 44px 10px 0;
}

.achievements-intro h2 {
  color: var(--ink);
  font-size: clamp(48px, 4.4vw, 52px);
  letter-spacing: -2.1px;
  line-height: 0.99;
  margin: 0;
}

.achievements-intro__rule {
  background: var(--coral-500);
  border-radius: 999px;
  display: block;
  height: 4px;
  margin: 27px 0 35px;
  width: 86px;
}

.achievements-intro__lead {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.achievement-current {
  margin-top: auto;
}

.achievement-current > span {
  color: #8194aa;
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.achievement-current h3 {
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.45px;
  line-height: 1.25;
  margin: 0;
}

.achievement-current p {
  color: #71869d;
  font-size: 11px;
  line-height: 1.6;
  margin: 14px 0 0;
}

.achievement-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 31px;
}

.achievement-controls button {
  align-items: center;
  background: var(--navy-900);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 52px;
  justify-content: center;
  padding: 0;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
  width: 52px;
}

.achievement-controls button:hover {
  box-shadow: 0 10px 22px rgba(3, 39, 90, 0.2);
  transform: translateY(-2px);
}

.achievement-controls button:focus-visible,
.achievement-gallery:focus-visible {
  outline: 3px solid rgba(20, 185, 235, 0.48);
  outline-offset: 4px;
}

.achievement-controls button svg {
  height: 24px;
  width: 24px;
}

.achievement-controls .achievement-controls__next {
  background: var(--cyan-500);
}

.achievement-controls .achievement-controls__pause {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-900);
}

.achievement-control-icon--play,
.achievement-controls__pause.is-paused .achievement-control-icon--pause {
  display: none;
}

.achievement-controls__pause.is-paused .achievement-control-icon--play {
  display: block;
}

.achievement-gallery {
  min-height: 690px;
  outline: none;
  position: relative;
  touch-action: pan-y;
}

.achievement-stack {
  height: 548px;
  left: 0;
  position: absolute;
  right: 0;
  top: 15px;
}

.achievement-slide {
  background: #dcebf3;
  border: 14px solid var(--white);
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(4, 39, 83, 0.16);
  height: 470px;
  left: 50%;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    opacity 650ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 650ms ease,
    box-shadow 650ms ease;
  width: min(780px, calc(100% - 42px));
}

.achievement-slide::before {
  background-image:
    linear-gradient(rgba(2, 27, 63, 0.18), rgba(2, 27, 63, 0.18)),
    var(--achievement-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(13px);
  inset: -25px;
  position: absolute;
  transform: scale(1.08);
}

.achievement-slide::after {
  background: linear-gradient(
    180deg,
    rgba(2, 27, 63, 0) 48%,
    rgba(2, 27, 63, 0.2) 63%,
    rgba(2, 27, 63, 0.94) 100%
  );
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 320ms ease;
}

.achievement-slide img {
  height: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

.achievement-slide figcaption {
  bottom: 29px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  left: 32px;
  opacity: 0;
  position: absolute;
  right: 30px;
  transform: translateY(12px);
  transition:
    opacity 300ms ease 260ms,
    transform 300ms ease 260ms;
  z-index: 3;
}

.achievement-slide figcaption span {
  align-self: flex-start;
  background: var(--cyan-500);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
  margin-bottom: 10px;
  padding: 7px 14px;
  text-transform: uppercase;
}

.achievement-slide figcaption strong {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.3;
}

.achievement-slide.is-active {
  box-shadow:
    0 28px 65px rgba(4, 39, 83, 0.24),
    0 0 0 1px rgba(20, 185, 235, 0.08);
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -42%) scale(1);
  transition:
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 650ms ease,
    box-shadow 650ms ease;
  z-index: 6;
}

.achievement-slide.is-active::after {
  opacity: 1;
}

.achievement-slide.is-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.achievement-slide.is-prev {
  filter: saturate(0.72);
  opacity: 0.19;
  pointer-events: auto;
  transform: translate(calc(-50% - 104px), calc(-50% - 48px)) rotate(-5deg)
    scale(0.92);
  z-index: 2;
}

.achievement-slide.is-next {
  filter: saturate(0.78);
  opacity: 0.34;
  pointer-events: auto;
  transform: translate(calc(-50% + 112px), calc(-50% - 63px)) rotate(4deg)
    scale(0.9);
  z-index: 4;
}

.achievement-slide.is-far-prev {
  filter: blur(1px) saturate(0.55);
  opacity: 0.1;
  transform: translate(calc(-50% - 170px), calc(-50% - 56px)) rotate(-8deg)
    scale(0.83);
  z-index: 1;
}

.achievement-slide.is-far-next {
  filter: blur(1px) saturate(0.55);
  opacity: 0.15;
  transform: translate(calc(-50% + 180px), calc(-50% - 70px)) rotate(7deg)
    scale(0.81);
  z-index: 3;
}

.achievement-progress {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  right: -6px;
  top: 195px;
  z-index: 8;
}

.achievement-progress strong,
.achievement-progress b {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.8px;
}

.achievement-progress b {
  color: #8ca0b4;
}

.achievement-progress > span {
  background: #cfdee8;
  border-radius: 999px;
  display: block;
  height: 175px;
  overflow: hidden;
  position: relative;
  width: 4px;
}

.achievement-progress i {
  background: var(--cyan-500);
  border-radius: inherit;
  display: block;
  height: 12.5%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateY(var(--achievement-progress, 300%));
  transition: transform 650ms ease;
  width: 100%;
}

.achievement-gallery__hint {
  bottom: 2px;
  color: #71869f;
  font-size: 9px;
  font-weight: 800;
  left: 0;
  letter-spacing: 1px;
  margin: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
}

.specialities-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(17, 180, 231, 0.09), transparent 25%),
    var(--soft);
}

.section-heading,
.directory-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 43px;
}

.section-heading > p,
.directory-heading > p {
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 4px;
  max-width: 470px;
}

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

.speciality-card {
  background: var(--white);
  border: 1px solid rgba(12, 77, 147, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  min-height: 320px;
  overflow: hidden;
  position: relative;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.speciality-card img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.speciality-card > div {
  padding: 19px 20px 21px;
  position: relative;
}

.speciality-card span {
  color: var(--cyan-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.speciality-card h3 {
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  margin: 6px 0;
}

.speciality-card p {
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}

.speciality-cta {
  background:
    linear-gradient(140deg, rgba(16, 185, 235, 0.18), transparent 46%),
    linear-gradient(140deg, var(--navy-800), var(--navy-950));
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 28px;
  position: relative;
  transition: transform 180ms ease;
}

.speciality-cta:hover {
  transform: translateY(-7px);
}

.speciality-cta::before {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  height: 150px;
  position: absolute;
  right: -48px;
  top: -35px;
  width: 150px;
}

.speciality-cta span {
  color: var(--cyan-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.speciality-cta strong {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  line-height: 1.2;
  margin-top: 8px;
}

.speciality-cta i {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  font-size: 22px;
  height: 44px;
  justify-content: center;
  margin-top: 22px;
  width: 44px;
}

.schedule-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(20, 185, 235, 0.14), transparent 27%),
    linear-gradient(130deg, var(--navy-950), #073a7f);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.schedule-section::after {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  height: 480px;
  position: absolute;
  right: -190px;
  top: -240px;
  width: 480px;
}

.section-heading--light {
  position: relative;
  z-index: 2;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.72);
}

.schedule-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
}

.schedule-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  min-height: 153px;
  padding: 23px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.schedule-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.schedule-card span {
  color: var(--cyan-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.schedule-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  margin: 8px 0 18px;
}

.schedule-card strong {
  font-size: 13px;
}

.schedule-action {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 34px;
  position: relative;
  z-index: 2;
}

.schedule-action p {
  font-size: 13px;
  font-weight: 700;
  margin: 0 20px 0 0;
}

.schedule-action .button {
  min-height: 44px;
  padding: 0 22px;
}

.lab-layout {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 0.88fr 1.12fr;
}

.lab-layout h2 span {
  color: var(--blue-600);
}

.lab-features {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 29px;
}

.lab-features span {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  min-height: 43px;
  padding: 0 14px;
}

.lab-features span::before {
  background: var(--cyan-500);
  border-radius: 50%;
  content: "";
  height: 6px;
  margin-right: 9px;
  width: 6px;
}

.lab-layout__image {
  min-height: 520px;
  position: relative;
}

.lab-layout__image::before {
  background: var(--cyan-100);
  border-radius: 30px;
  content: "";
  inset: 20px -20px -20px 25px;
  position: absolute;
  z-index: -1;
}

.lab-layout__image > img {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  height: 520px;
  object-fit: cover;
  width: 100%;
}

.lab-layout__card {
  align-items: center;
  background: var(--white);
  border-radius: 15px;
  bottom: 24px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1px 14px;
  grid-template-columns: 46px 1fr;
  left: -30px;
  min-width: 300px;
  padding: 17px;
  position: absolute;
}

.lab-layout__card svg {
  color: var(--blue-600);
  grid-row: 1 / 3;
  height: 38px;
  width: 38px;
}

.lab-layout__card strong {
  color: var(--ink);
  font-size: 12px;
}

.lab-layout__card span {
  font-size: 10px;
}

.contact-section {
  background:
    linear-gradient(100deg, rgba(3, 26, 66, 0.99), rgba(5, 58, 126, 0.96)),
    var(--navy-900);
  color: var(--white);
  padding: 85px 0;
}

.contact-layout {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-layout h2 {
  color: var(--white);
}

.contact-layout__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0 27px;
}

.contact-cards {
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-cards > * {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 103px;
  padding: 17px;
  transition: background 160ms ease;
}

.contact-cards a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact-cards span {
  color: var(--cyan-500);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.site-footer {
  background: #021633;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  gap: 55px;
  grid-template-columns: 1.65fr 0.75fr 1fr 1fr;
  padding-bottom: 48px;
}

.brand--footer {
  min-width: 0;
}

.brand--footer > img {
  filter: brightness(1.18);
  height: 68px;
  width: 78px;
}

.brand--footer .brand__copy strong {
  color: var(--white);
  font-size: 22px;
}

.brand--footer .brand__copy small {
  font-size: 8px;
}

.brand--footer .brand__copy b {
  color: #7bc8ff;
  font-size: 10px;
}

.footer__grid > div:first-child > p {
  font-size: 11px;
  line-height: 1.7;
  margin: 19px 0 0;
  max-width: 330px;
}

.footer__grid h3 {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin: 7px 0 19px;
}

.footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
}

.footer__grid > div:not(:first-child) > a,
.footer__grid > div:not(:first-child) > p {
  font-size: 10.5px;
  line-height: 1.65;
  margin: 0 0 10px;
}

.footer__grid > div:not(:first-child) > a:hover {
  color: var(--cyan-500);
}

.footer__grid strong {
  color: var(--white);
}

.footer-link {
  color: var(--cyan-500);
  font-weight: 800;
}

.footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 9.5px;
  justify-content: space-between;
  min-height: 58px;
}

.footer__bottom p {
  margin: 0;
}

.whatsapp-float,
.back-to-top {
  align-items: center;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 11px 28px rgba(3, 28, 57, 0.3);
  display: flex;
  height: 56px;
  justify-content: center;
  position: fixed;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  width: 56px;
  z-index: 100;
}

.whatsapp-float {
  background: #25d366;
  border: 2px solid var(--white);
  color: var(--white);
  right: 22px;
}

.whatsapp-float svg {
  height: 28px;
  width: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.back-to-top {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-800);
  cursor: pointer;
  font-size: 19px;
  opacity: 0;
  pointer-events: none;
  right: 88px;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

/* Doctors page */

.doctor-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(21, 185, 235, 0.19), transparent 28%),
    linear-gradient(115deg, var(--navy-950), #073d84);
  color: var(--white);
  overflow: hidden;
  padding: 85px 0 92px;
  position: relative;
}

.doctor-hero__pattern {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, #000);
  position: absolute;
}

.doctor-hero__inner {
  align-items: center;
  display: grid;
  gap: 95px;
  grid-template-columns: 1.25fr 0.75fr;
  position: relative;
  z-index: 2;
}

.doctor-hero h1 {
  font-size: clamp(48px, 5.2vw, 72px);
}

.doctor-hero__inner > div:first-child > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
  margin: 22px 0 29px;
  max-width: 650px;
}

.doctor-hero__summary {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(150, 218, 255, 0.42);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px;
}

.doctor-hero__summary > span {
  color: var(--cyan-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.doctor-hero__summary > strong {
  font-family: "Poppins", sans-serif;
  font-size: 90px;
  line-height: 1;
  margin: 10px 0;
}

.doctor-hero__summary > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 auto;
  max-width: 210px;
}

.doctor-hero__summary > div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 15px;
}

.doctor-hero__summary small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}

.doctor-directory {
  background:
    radial-gradient(circle at 4% 12%, rgba(20, 185, 235, 0.07), transparent 22%),
    var(--soft);
  padding: 100px 0 112px;
}

.directory-heading {
  margin-bottom: 31px;
}

.doctor-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.doctor-filters button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--body);
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 800;
  min-height: 40px;
  padding: 0 16px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.doctor-filters button:hover,
.doctor-filters button.active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}

.doctor-filters button span {
  align-items: center;
  background: var(--coral-500);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 8px;
  height: 20px;
  justify-content: center;
  margin-left: 6px;
  width: 20px;
}

.filter-status {
  color: #71819a;
  font-size: 10px;
  margin: 0 0 25px;
}

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

.doctor-card {
  background: var(--white);
  border: 1px solid rgba(9, 78, 149, 0.1);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-rows: 365px 1fr;
  min-height: 640px;
  overflow: hidden;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.doctor-card.is-hidden {
  display: none;
}

.doctor-card__portrait {
  background:
    radial-gradient(circle at 50% 30%, rgba(20, 185, 235, 0.08), transparent 38%),
    #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.doctor-card__portrait::after {
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}

.doctor-card__portrait img {
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 300ms ease;
  width: 100%;
}

.doctor-card:hover .doctor-card__portrait img {
  transform: scale(1.025);
}

.doctor-card__portrait > span {
  background: rgba(4, 45, 101, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  bottom: 15px;
  color: var(--white);
  font-size: 8.5px;
  font-weight: 800;
  left: 15px;
  max-width: calc(100% - 30px);
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
}

.doctor-card__body {
  display: flex;
  flex-direction: column;
  padding: 23px;
}

.doctor-card__index {
  color: var(--cyan-500);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 7px;
}

.doctor-card h3 {
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  letter-spacing: -0.3px;
  margin: 0 0 11px;
}

.doctor-card__qualification {
  color: var(--body);
  font-size: 11px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.doctor-card__qualification--muted {
  color: #8a6b26;
  font-style: italic;
}

.doctor-card__role {
  background: var(--soft);
  border-left: 3px solid var(--cyan-500);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  margin: 0 0 17px;
  padding: 10px 12px;
}

.doctor-card__role small {
  color: #71819a;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.7px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.doctor-card__role strong {
  color: var(--ink);
  font-size: 9.5px;
  line-height: 1.45;
}

.doctor-card__body > a {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--blue-600);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
}

.doctor-card__body > a span {
  font-size: 17px;
  transition: transform 160ms ease;
}

.doctor-card__body > a:hover span {
  transform: translateX(4px);
}

.doctor-contact-band {
  background:
    radial-gradient(circle at 85% 25%, rgba(20, 185, 235, 0.18), transparent 26%),
    linear-gradient(110deg, var(--navy-950), #073b80);
  color: var(--white);
  padding: 68px 0;
}

.doctor-contact-band__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.doctor-contact-band h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.7px;
  margin: 0 0 8px;
}

.doctor-contact-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  margin: 0;
}

.doctor-contact-band__inner > div:last-child {
  display: flex;
  gap: 12px;
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 24px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .brand {
    min-width: 310px;
  }

  .brand > img {
    height: 70px;
    width: 82px;
  }

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

  .hero__overlay {
    background:
      linear-gradient(
        100deg,
        rgba(2, 25, 65, 0.99) 0%,
        rgba(3, 39, 94, 0.98) 43%,
        rgba(5, 56, 125, 0.72) 58%,
        rgba(4, 48, 104, 0.08) 77%,
        transparent 85%
      );
  }

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

  .split-layout,
  .lab-layout {
    gap: 50px;
  }

  .achievements-layout {
    gap: 35px;
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .achievements-intro {
    padding-right: 28px;
  }

  .achievement-slide {
    height: 440px;
    width: min(700px, calc(100% - 30px));
  }

  .achievement-progress {
    right: -1px;
  }

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  .topbar {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
    position: sticky;
    top: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand > img {
    height: 61px;
    width: 70px;
  }

  .brand__rule {
    height: 49px;
    margin-right: 10px;
  }

  .brand__copy strong {
    font-size: 21px;
  }

  .brand__copy small {
    font-size: 7px;
    letter-spacing: 2.4px;
    margin: 5px 0 2px;
  }

  .brand__copy b {
    font-size: 9px;
  }

  .menu-toggle {
    display: flex;
    z-index: 3;
  }

  .primary-nav {
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(3, 29, 70, 0.18);
    flex-direction: column;
    gap: 0;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 28px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 76px;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      padding 220ms ease;
  }

  .primary-nav.open {
    max-height: calc(100vh - 76px);
    opacity: 1;
    overflow-y: auto;
    padding-bottom: 20px;
    padding-top: 10px;
    pointer-events: auto;
  }

  .primary-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    min-height: 51px;
  }

  .primary-nav a::after {
    bottom: 10px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
  }

  .primary-nav a.active::after {
    transform: scaleX(1);
  }

  .hero,
  .hero__inner {
    min-height: 715px;
  }

  .hero__image {
    background-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 25, 65, 0.98) 0%,
        rgba(3, 39, 94, 0.93) 46%,
        rgba(4, 50, 110, 0.53) 77%,
        rgba(3, 39, 83, 0.2) 100%
      );
  }

  .hero__inner {
    padding-bottom: 208px;
    padding-top: 70px;
  }

  .hero__copy {
    max-width: 575px;
  }

  .trust-strip {
    bottom: 20px;
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: 57px;
    padding: 8px 19px;
  }

  .trust-strip article:not(:last-child)::after {
    bottom: 0;
    height: 1px;
    left: 18px;
    right: 18px;
    top: auto;
    width: auto;
  }

  .trust-strip__icon {
    flex-basis: 38px;
    height: 38px;
  }

  .trust-strip__icon svg {
    height: 21px;
    width: 21px;
  }

  .section {
    padding: 82px 0;
  }

  .split-layout,
  .lab-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-layout {
    gap: 62px;
  }

  .image-composition {
    margin-right: 18px;
    min-height: 430px;
  }

  .image-composition img {
    height: 430px;
  }

  .section-heading,
  .directory-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .achievements-section {
    min-height: 0;
  }

  .achievements-section__orb {
    height: 620px;
    right: -220px;
    top: 395px;
    width: 620px;
  }

  .achievements-layout {
    gap: 40px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .achievements-intro {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 0 0 36px;
  }

  .achievements-intro h2 br {
    display: none;
  }

  .achievements-intro__rule {
    margin: 21px 0 26px;
  }

  .achievements-intro__lead {
    max-width: 580px;
  }

  .achievement-current {
    margin-top: 38px;
  }

  .achievement-current h3 {
    max-width: 520px;
  }

  .achievement-gallery {
    min-height: 620px;
  }

  .achievement-stack {
    top: 7px;
  }

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

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

  .lab-layout {
    gap: 50px;
  }

  .lab-layout__image {
    margin-left: 28px;
  }

  .contact-layout {
    gap: 45px;
  }

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

  .doctor-hero {
    padding: 75px 0;
  }

  .doctor-hero__inner {
    gap: 55px;
    grid-template-columns: 1fr 280px;
  }

  .doctor-hero__summary > strong {
    font-size: 72px;
  }

  .doctor-contact-band__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand > img {
    height: 55px;
    width: 61px;
  }

  .brand__rule {
    height: 43px;
    margin-left: 0;
    margin-right: 8px;
  }

  .brand__copy strong {
    font-size: 18px;
  }

  .brand__copy small {
    font-size: 6px;
    letter-spacing: 2px;
  }

  .brand__copy b {
    font-size: 7.5px;
    letter-spacing: 1.3px;
  }

  .menu-toggle {
    height: 42px;
    width: 42px;
  }

  .primary-nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero__image {
    background-position: 66% bottom;
  }

  .hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 25, 65, 1) 0%,
        rgba(3, 39, 94, 0.98) 42%,
        rgba(4, 45, 99, 0.75) 64%,
        rgba(3, 32, 72, 0.38) 100%
      );
  }

  .hero__inner {
    padding-bottom: 208px;
    padding-top: 47px;
  }

  .hero h1,
  .doctor-hero h1 {
    font-size: 45px;
    letter-spacing: -1.4px;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 18px;
  }

  .hero__actions,
  .doctor-hero__actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    left: 18px;
    right: 18px;
  }

  .trust-strip article {
    padding-left: 13px;
    padding-right: 13px;
  }

  .trust-strip strong {
    font-size: 11px;
  }

  .trust-strip small {
    font-size: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .lab-layout h2,
  .contact-layout h2,
  .directory-heading h2 {
    font-size: 36px;
  }

  .image-composition {
    min-height: 350px;
  }

  .image-composition img {
    height: 350px;
  }

  .image-composition__badge {
    bottom: 16px;
    padding: 15px;
    right: -12px;
  }

  .image-composition__badge span {
    font-size: 14px;
  }

  .achievements-intro h2 {
    font-size: 43px;
    letter-spacing: -1.4px;
  }

  .achievements-intro__lead {
    font-size: 13px;
  }

  .achievement-current {
    margin-top: 30px;
  }

  .achievement-current h3 {
    font-size: 20px;
  }

  .achievement-controls button {
    height: 46px;
    width: 46px;
  }

  .achievement-gallery {
    min-height: 490px;
  }

  .achievement-stack {
    height: 390px;
    top: 0;
  }

  .achievement-slide {
    border-width: 10px;
    border-radius: 24px;
    height: 340px;
    width: calc(100% - 14px);
  }

  .achievement-slide figcaption {
    bottom: 20px;
    left: 21px;
    right: 20px;
  }

  .achievement-slide figcaption strong {
    font-size: 17px;
  }

  .achievement-slide.is-active {
    transform: translate(-50%, -43%) scale(1);
  }

  .achievement-slide.is-prev {
    transform: translate(calc(-50% - 35px), calc(-50% - 46px)) rotate(-4deg)
      scale(0.92);
  }

  .achievement-slide.is-next {
    transform: translate(calc(-50% + 40px), calc(-50% - 53px)) rotate(4deg)
      scale(0.9);
  }

  .achievement-slide.is-far-prev {
    transform: translate(calc(-50% - 60px), calc(-50% - 48px)) rotate(-7deg)
      scale(0.84);
  }

  .achievement-slide.is-far-next {
    transform: translate(calc(-50% + 68px), calc(-50% - 58px)) rotate(7deg)
      scale(0.82);
  }

  .achievement-progress {
    bottom: 34px;
    flex-direction: row;
    gap: 11px;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }

  .achievement-progress > span {
    height: 4px;
    width: 150px;
  }

  .achievement-progress i {
    height: 100%;
    left: 0;
    top: 0;
    transform: translateX(var(--achievement-progress, 300%));
    width: 12.5%;
  }

  .achievement-gallery__hint {
    bottom: 0;
    font-size: 7px;
    letter-spacing: 0.65px;
  }

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

  .speciality-card,
  .speciality-cta {
    min-height: 0;
  }

  .speciality-card {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .speciality-card img {
    height: 100%;
    min-height: 165px;
  }

  .speciality-card > div {
    padding: 18px;
  }

  .speciality-card h3 {
    font-size: 17px;
  }

  .speciality-cta {
    min-height: 220px;
  }

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

  .schedule-card {
    min-height: 130px;
  }

  .schedule-action {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-action p {
    margin: 0 0 13px;
    text-align: center;
  }

  .lab-features {
    grid-template-columns: 1fr;
  }

  .lab-layout__image {
    margin-left: 14px;
    min-height: 390px;
  }

  .lab-layout__image > img {
    height: 390px;
  }

  .lab-layout__card {
    bottom: 17px;
    left: -14px;
    min-width: 260px;
  }

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

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

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
  }

  .whatsapp-float,
  .back-to-top {
    bottom: 15px;
    height: 52px;
    width: 52px;
  }

  .whatsapp-float {
    right: 15px;
  }

  .back-to-top {
    right: 77px;
  }

  .doctor-hero {
    padding: 62px 0;
  }

  .doctor-hero__inner {
    grid-template-columns: 1fr;
  }

  .doctor-hero__summary {
    min-height: 240px;
  }

  .doctor-directory {
    padding: 68px 0 78px;
  }

  .doctor-filters {
    flex-wrap: nowrap;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scrollbar-width: none;
  }

  .doctor-filters::-webkit-scrollbar {
    display: none;
  }

  .doctor-filters button {
    flex: 0 0 auto;
  }

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

  .doctor-card {
    grid-template-rows: 390px 1fr;
    min-height: 650px;
  }

  .doctor-contact-band__inner > div:last-child {
    flex-direction: column;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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