:root {
  --pcum-ink: #123047;
  --pcum-muted: #5c7180;
  --pcum-primary: #075985;
  --pcum-primary-dark: #064663;
  --pcum-primary-light: #e6f5fa;
  --pcum-accent: #0f8b83;
  --pcum-gold: #f3b61f;
  --pcum-surface: #ffffff;
  --pcum-background: #f5f8fa;
  --pcum-border: #dce7ec;
  --pcum-shadow-sm: 0 8px 30px rgba(18, 48, 71, 0.08);
  --pcum-shadow-lg: 0 24px 70px rgba(18, 48, 71, 0.15);
  --pcum-radius-sm: 12px;
  --pcum-radius: 20px;
  --pcum-radius-lg: 30px;
  --pcum-font-scale: 100%;
}

html {
  font-size: var(--pcum-font-scale);
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--pcum-surface);
  color: var(--pcum-ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--pcum-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

a {
  color: var(--pcum-primary);
}

a:hover {
  color: var(--pcum-accent);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--pcum-gold);
  outline-offset: 3px;
}

.container {
  max-width: 1240px;
}

.skip-link {
  background: var(--pcum-gold);
  border-radius: 0 0 10px 10px;
  color: #111827;
  font-weight: 700;
  left: 24px;
  padding: 10px 18px;
  position: fixed;
  top: 0;
  transform: translateY(-120%);
  transition: transform 0.2s ease;
  z-index: 10000;
}

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

.section-pad {
  overflow: visible;
  padding: 96px 0;
}

.section-kicker,
.page-hero__kicker {
  color: var(--pcum-accent);
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-kicker--light {
  color: #a7f3d0;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  margin-bottom: 44px;
}

.section-heading--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-align: center;
}

.section-heading h2,
.about-modern h2,
.diagnostics h2,
.appointment-modern h2,
.faq-modern h2,
.contact-modern h2 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1.12;
  margin: 0;
}

.section-heading p,
.section-heading--center p {
  color: var(--pcum-muted);
  font-size: 1.12rem;
  margin: 0;
}

.section-heading--center p {
  margin-top: 16px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  line-height: 1.2;
  min-height: 50px;
  padding: 14px 23px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button--primary {
  background: var(--pcum-primary);
  box-shadow: 0 10px 28px rgba(7, 89, 133, 0.22);
  color: #fff;
}

.button--primary:hover {
  background: var(--pcum-primary-dark);
  color: #fff;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(7, 89, 133, 0.18);
  color: var(--pcum-primary-dark);
}

.button--secondary:hover,
.button--ghost:hover {
  background: #fff;
  border-color: var(--pcum-primary);
  color: var(--pcum-primary);
}

.button--ghost,
.button--outline {
  background: transparent;
  border-color: var(--pcum-border);
  color: var(--pcum-primary);
}

.button--light {
  background: #fff;
  color: var(--pcum-primary-dark);
}

.button--light:hover {
  background: #dff7f3;
  color: var(--pcum-primary-dark);
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 8px;
}

.text-link i,
.service-card__more i {
  transition: transform 0.2s ease;
}

.text-link:hover i,
.service-card:hover .service-card__more i {
  transform: translateX(4px);
}

/* Top bar and main navigation */
.topbar#topbar {
  background: var(--pcum-primary-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  height: auto;
  position: relative;
  z-index: 998;
}

.topbar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 42px;
}

.topbar__contact,
.accessibility-tools {
  align-items: center;
  display: flex;
  gap: 20px;
}

.topbar__contact a,
.topbar__contact span,
.accessibility-tools a {
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  gap: 7px;
}

.topbar__contact a:hover,
.accessibility-tools a:hover {
  color: #fff;
}

.accessibility-tools {
  gap: 5px;
}

.accessibility-tools__label {
  margin-right: 5px;
}

.accessibility-tools button,
.accessibility-tools a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  min-width: 29px;
  padding: 0 7px;
}

.accessibility-tools button:hover,
.accessibility-tools a:hover,
.accessibility-tools button[aria-pressed="true"] {
  background: var(--pcum-gold);
  color: #17212b;
}

.site-header#header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 231, 236, 0.8);
  box-shadow: 0 6px 24px rgba(18, 48, 71, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  transition: box-shadow 0.2s ease;
  z-index: 997;
}

.site-header#header.header-scrolled {
  box-shadow: 0 10px 35px rgba(18, 48, 71, 0.12);
  top: 0;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  min-height: 102px;
}

.site-brand {
  flex: 0 0 auto;
  margin-right: auto;
}

#header .site-brand img {
  display: block;
  height: auto;
  max-height: 76px;
  width: auto;
}

#header .navbar {
  padding: 0;
}

#header .navbar > ul {
  align-items: center;
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#header .navbar li {
  padding: 0;
  position: relative;
}

#header .navbar > ul > li > a {
  border: 0;
  border-radius: 9px;
  color: var(--pcum-ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 5px;
  padding: 10px 9px;
  white-space: nowrap;
}

#header .navbar > ul > li > a:hover,
#header .navbar > ul > li:hover > a,
#header .navbar > ul > li > a.active {
  background: var(--pcum-primary-light);
  color: var(--pcum-primary);
}

#header .navbar .dropdown-menu {
  background: #fff;
  border: 1px solid var(--pcum-border);
  border-radius: 14px;
  box-shadow: var(--pcum-shadow-lg);
  display: block;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 255px;
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 15px);
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  visibility: hidden;
  z-index: 1000;
}

#header .navbar .dropdown-menu::before {
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  right: 0;
  top: -17px;
}

#header .navbar .dropdown:hover > .dropdown-menu,
#header .navbar .dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

#header .navbar .dropdown-menu a {
  align-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--pcum-ink);
  display: flex;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.3;
  padding: 10px 12px;
  white-space: normal;
}

#header .navbar .dropdown-menu a:hover {
  background: var(--pcum-primary-light);
  color: var(--pcum-primary);
}

#header .navbar .dropdown-menu .dropdown-menu {
  left: calc(100% + 9px);
  top: -8px;
}

#header .appointment-btn {
  align-items: center;
  background: var(--pcum-primary);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  margin: 0;
  padding: 12px 17px;
}

#header .appointment-btn:hover {
  background: var(--pcum-primary-dark);
  color: #fff;
}

#header .mobile-nav-toggle {
  align-items: center;
  background: var(--pcum-primary-light);
  border: 0;
  border-radius: 10px;
  color: var(--pcum-primary);
  display: none;
  font-size: 1.55rem;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

/* Hero */
.hero#hero {
  align-items: center;
  background-image: linear-gradient(90deg, rgba(242, 249, 252, 0.99) 0%, rgba(242, 249, 252, 0.95) 38%, rgba(242, 249, 252, 0.2) 67%, rgba(242, 249, 252, 0.04) 100%), url("../img/hero-clinic-v2.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: scroll;
  display: flex;
  height: auto;
  margin: 0;
  min-height: 650px;
  overflow: visible;
  padding: 90px 0 122px;
  position: relative;
}

.hero#hero .hero__grid {
  padding-bottom: 0;
}

.hero#hero::after {
  background: linear-gradient(90deg, var(--pcum-gold), var(--pcum-accent));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  width: 100%;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) 325px;
}

.hero__content {
  max-width: 730px;
}

.hero .eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 89, 133, 0.13);
  border-radius: 999px;
  color: var(--pcum-primary);
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.05em;
  padding: 8px 13px;
  text-transform: uppercase;
}

.hero#hero h1 {
  color: var(--pcum-ink);
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 24px 0 24px;
  max-width: 670px;
  text-transform: none;
}

.hero__lead {
  color: #36556a;
  font-size: 1.26rem;
  line-height: 1.55;
  margin: 0;
  max-width: 650px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  margin: 27px 0 0;
  padding: 0;
}

.hero__trust li {
  align-items: center;
  color: #36556a;
  display: flex;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 7px;
}

.hero__trust i {
  color: var(--pcum-accent);
}

.hero-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--pcum-radius-lg);
  box-shadow: var(--pcum-shadow-lg);
  padding: 28px;
}

.hero-card__icon {
  align-items: center;
  background: var(--pcum-primary-light);
  border-radius: 14px;
  color: var(--pcum-primary);
  display: flex;
  font-size: 1.5rem;
  height: 50px;
  justify-content: center;
  margin-bottom: 18px;
  width: 50px;
}

.hero-card__label {
  color: var(--pcum-muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-card__phone {
  color: var(--pcum-ink);
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.hero-card__phone--small {
  font-size: 1.1rem;
  margin-top: 2px;
}

.hero-card hr {
  border-color: var(--pcum-border);
  margin: 22px 0;
  opacity: 1;
}

.hero-card__detail {
  align-items: flex-start;
  color: var(--pcum-muted);
  display: flex;
  gap: 10px;
}

.hero-card__detail i {
  color: var(--pcum-primary);
  margin-top: 3px;
}

.hero-card__link {
  align-items: center;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 20px;
}

/* Quick actions */
.quick-actions {
  margin-top: -54px;
  overflow: visible;
  padding: 0 0 30px;
  position: relative;
  z-index: 5;
}

.quick-actions__grid {
  background: #fff;
  border: 1px solid var(--pcum-border);
  border-radius: var(--pcum-radius);
  box-shadow: var(--pcum-shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.quick-action {
  align-items: center;
  color: var(--pcum-ink);
  display: grid;
  gap: 13px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 118px;
  padding: 22px;
  position: relative;
  transition: background 0.2s ease;
}

.quick-action + .quick-action {
  border-left: 1px solid var(--pcum-border);
}

.quick-action:hover {
  background: var(--pcum-primary-light);
  color: var(--pcum-ink);
}

.quick-action__icon {
  align-items: center;
  background: var(--pcum-primary-light);
  border-radius: 12px;
  color: var(--pcum-primary);
  display: flex;
  font-size: 1.15rem;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.quick-action strong,
.quick-action small {
  display: block;
}

.quick-action strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.25;
}

.quick-action small {
  color: var(--pcum-muted);
  font-size: 0.78rem;
  line-height: 1.3;
  margin-top: 4px;
}

.quick-action > i {
  color: var(--pcum-primary);
}

/* About */
.about-modern__grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.about-modern__image {
  background: linear-gradient(180deg, rgba(7, 89, 133, 0.02), rgba(7, 89, 133, 0.2)), url("../img/about.jpg") center / cover;
  border: 1px solid rgba(7, 89, 133, 0.16);
  border-radius: var(--pcum-radius-lg);
  box-shadow: 0 0 0 6px #fff, var(--pcum-shadow-lg);
  isolation: isolate;
  min-height: 570px;
  position: relative;
}

.about-modern__image::before {
  border: 1px solid var(--pcum-gold);
  border-radius: calc(var(--pcum-radius-lg) + 5px);
  content: "";
  inset: -11px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.about-modern__badge {
  background: var(--pcum-primary-dark);
  border-radius: 16px;
  bottom: 24px;
  color: #fff;
  left: 24px;
  max-width: 270px;
  padding: 18px 20px;
  position: absolute;
}

.about-modern__badge strong,
.about-modern__badge span {
  display: block;
}

.about-modern__badge strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
}

.about-modern__badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.4;
  margin-top: 3px;
}

.about-modern__content > p {
  color: var(--pcum-muted);
  font-size: 1.12rem;
  margin: 22px 0 0;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 31px 0;
}

.feature-list > div {
  align-items: center;
  display: flex;
  gap: 15px;
}

.feature-list i {
  align-items: center;
  background: var(--pcum-primary-light);
  border-radius: 12px;
  color: var(--pcum-primary);
  display: flex;
  flex: 0 0 auto;
  font-size: 1.15rem;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
}

.feature-list small {
  color: var(--pcum-muted);
}

/* Stats */
.stats {
  background: var(--pcum-background);
  overflow: visible;
  padding: 42px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  align-items: center;
  display: grid;
  gap: 0 14px;
  grid-template-columns: auto 1fr;
  padding: 5px 30px;
}

.stat + .stat {
  border-left: 1px solid var(--pcum-border);
}

.stat > i {
  color: var(--pcum-primary);
  font-size: 1.55rem;
  grid-row: 1 / 3;
}

.stat__number {
  color: var(--pcum-ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.stat__label {
  color: var(--pcum-muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

/* Services */
.services-modern {
  background: #fff;
}

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

.service-card {
  background: var(--pcum-background);
  border: 1px solid transparent;
  border-radius: var(--pcum-radius);
  color: var(--pcum-ink);
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 30px;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card:hover {
  background: #fff;
  border-color: var(--pcum-border);
  box-shadow: var(--pcum-shadow-sm);
  color: var(--pcum-ink);
  transform: translateY(-5px);
}

.service-card__icon {
  align-items: center;
  background: #fff;
  border-radius: 15px;
  color: var(--pcum-primary);
  display: flex;
  font-size: 1.35rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 26px;
  width: 54px;
}

.service-card h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0 0 10px;
}

.service-card p {
  color: var(--pcum-muted);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.service-card__more {
  align-items: center;
  color: var(--pcum-primary);
  display: flex;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
  margin-top: auto;
}

/* Diagnostics */
.diagnostics {
  background: linear-gradient(135deg, #064663 0%, #075985 55%, #0f766e 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.diagnostics::before,
.diagnostics::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  height: 440px;
  position: absolute;
  width: 440px;
}

.diagnostics::before {
  left: -220px;
  top: -250px;
}

.diagnostics::after {
  bottom: -300px;
  right: -180px;
}

.diagnostics__grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1fr);
  position: relative;
  z-index: 1;
}

.diagnostics h2 {
  color: #fff;
}

.diagnostics__content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  margin: 22px 0 30px;
}

.diagnostics__cards {
  display: grid;
  gap: 12px;
}

.diagnostics__cards a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  color: #fff;
  display: grid;
  gap: 17px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 20px 22px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.diagnostics__cards a:hover {
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
  transform: translateX(5px);
}

.diagnostics__cards a > i:first-child {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  font-size: 1.15rem;
  height: 44px;
  justify-content: center;
  width: 44px;
}

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

.diagnostics__cards strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
}

.diagnostics__cards small {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 2px;
}

/* Appointment */
.appointment-modern {
  background: #fff;
}

.appointment-modern__card {
  align-items: center;
  background: linear-gradient(110deg, var(--pcum-primary-light), #f4fbfa);
  border: 1px solid #cfe5ea;
  border-radius: var(--pcum-radius-lg);
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 42px 50px;
}

.appointment-modern__icon {
  align-items: center;
  background: var(--pcum-primary);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(7, 89, 133, 0.2);
  color: #fff;
  display: flex;
  font-size: 1.7rem;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.appointment-modern h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.appointment-modern__content p {
  color: var(--pcum-muted);
  margin: 10px 0 0;
  max-width: 650px;
}

.appointment-modern__actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* News */
.news {
  background: var(--pcum-background);
}

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

.news-card {
  background: #fff;
  border: 1px solid var(--pcum-border);
  border-radius: var(--pcum-radius);
  box-shadow: 0 6px 22px rgba(18, 48, 71, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 275px;
  padding: 28px;
}

.news-card__date,
.news-entry__date {
  align-items: center;
  color: var(--pcum-accent);
  display: flex;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 18px;
}

.news-card p {
  color: #3d596a;
  margin: 0 0 24px;
}

.news-card .text-link {
  margin-top: auto;
}

.news__empty {
  grid-column: 1 / -1;
  width: 100%;
}

.section-action {
  margin-top: 34px;
  text-align: center;
}

/* FAQ */
.faq-modern {
  background: #fff;
}

.faq-modern__grid {
  align-items: start;
  display: grid;
  gap: 78px;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
}

.faq-modern__intro {
  position: sticky;
  top: 125px;
}

.faq-modern__intro p {
  color: var(--pcum-muted);
  margin: 20px 0 28px;
}

.faq-modern .accordion {
  display: grid;
  gap: 11px;
}

.faq-modern .accordion-item {
  border: 1px solid var(--pcum-border);
  border-radius: 15px;
  overflow: hidden;
}

.faq-modern .accordion-button {
  background: #fff;
  box-shadow: none;
  color: var(--pcum-ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 20px 22px;
}

.faq-modern .accordion-button:not(.collapsed) {
  background: var(--pcum-primary-light);
  color: var(--pcum-primary-dark);
}

.faq-modern .accordion-button::after {
  background-color: rgba(7, 89, 133, 0.1);
  background-position: center;
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.faq-modern .accordion-body {
  color: var(--pcum-muted);
  padding: 0 22px 22px;
}

/* Contact */
.contact-modern {
  background: var(--pcum-background);
}

.contact-modern__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
}

.contact-modern__details {
  display: grid;
  gap: 10px;
}

.contact-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--pcum-border);
  border-radius: 15px;
  color: var(--pcum-ink);
  display: flex;
  gap: 15px;
  padding: 16px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: #a9ced9;
  box-shadow: var(--pcum-shadow-sm);
  color: var(--pcum-ink);
  transform: translateY(-2px);
}

.contact-card > span {
  align-items: center;
  background: var(--pcum-primary-light);
  border-radius: 11px;
  color: var(--pcum-primary);
  display: flex;
  flex: 0 0 auto;
  font-size: 1.1rem;
  height: 43px;
  justify-content: center;
  width: 43px;
}

.contact-card small,
.contact-card strong,
.contact-card em {
  display: block;
}

.contact-card small {
  color: var(--pcum-muted);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  line-height: 1.3;
  margin-top: 2px;
}

.contact-card em {
  color: var(--pcum-muted);
  font-size: 0.78rem;
  font-style: normal;
}

.contact-modern__map {
  border-radius: var(--pcum-radius);
  box-shadow: var(--pcum-shadow-sm);
  min-height: 500px;
  overflow: hidden;
}

.contact-modern__map iframe {
  border: 0;
  height: 100%;
  min-height: 500px;
  width: 100%;
}

/* Subpages and CMS content */
.page-main {
  background: var(--pcum-background);
}

.page-hero {
  background: linear-gradient(135deg, #e6f5fa 0%, #f4fbfa 65%, #fff7df 100%);
  overflow: hidden;
  padding: 62px 0 68px;
  position: relative;
}

.page-hero::after {
  border: 55px solid rgba(7, 89, 133, 0.035);
  border-radius: 50%;
  content: "";
  height: 330px;
  position: absolute;
  right: -80px;
  top: -180px;
  width: 330px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-breadcrumbs {
  margin-bottom: 30px;
}

.page-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-breadcrumbs li {
  color: var(--pcum-muted);
  font-size: 0.82rem;
}

.page-breadcrumbs li + li::before {
  color: #8fa1ac;
  content: "/";
  margin-right: 7px;
}

.page-breadcrumbs a {
  font-weight: 700;
}

.page-hero h1 {
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0;
  max-width: 950px;
}

.page-hero > .container > p {
  color: var(--pcum-muted);
  font-size: 1.12rem;
  margin: 18px 0 0;
  max-width: 720px;
}

.page-content {
  min-height: 360px;
}

.page-content.section-pad {
  padding-top: 44px;
}

.content-card {
  background: #fff;
  border: 1px solid var(--pcum-border);
  border-radius: var(--pcum-radius);
  box-shadow: var(--pcum-shadow-sm);
  margin: 0 auto;
  max-width: 1040px;
  padding: clamp(26px, 5vw, 58px);
}

.rich-content {
  color: #334f61;
  overflow-wrap: anywhere;
}

.rich-content > :first-child {
  margin-top: 0 !important;
}

.rich-content > :last-child {
  margin-bottom: 0 !important;
}

.article-contact {
  background: linear-gradient(145deg, #f3fafd 0%, #f7fbfa 100%);
  border: 1px solid #cfe4ed;
  border-radius: 18px;
  margin-top: 42px;
  padding: clamp(24px, 4vw, 42px);
}

.article-contact__heading {
  margin-bottom: 28px;
}

.article-contact__heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 5px 0 9px;
}

.article-contact__heading p {
  color: var(--pcum-muted);
  margin: 0;
}

.article-contact__form {
  position: relative;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-consent {
  color: var(--pcum-heading);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  background: #fff;
  border: 1px solid #bdd3de;
  border-radius: 10px;
  color: var(--pcum-text);
  font: inherit;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--pcum-primary);
  box-shadow: 0 0 0 4px rgba(7, 89, 133, 0.12);
  outline: 0;
}

.form-field small {
  color: var(--pcum-muted);
  font-size: 0.8rem;
}

.form-consent {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 11px;
  line-height: 1.5;
}

.form-consent input {
  accent-color: var(--pcum-primary);
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.article-contact__footer {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 26px;
}

.article-contact__footer p {
  color: var(--pcum-muted);
  font-size: 0.85rem;
  margin: 0;
  max-width: 520px;
}

.article-contact__footer .button {
  border: 0;
  flex: 0 0 auto;
}

.form-alert {
  align-items: flex-start;
  border: 1px solid;
  border-radius: 11px;
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  padding: 13px 15px;
}

.form-alert--success {
  background: #ecfdf5;
  border-color: #86d8b5;
  color: #126447;
}

.form-alert--error {
  background: #fff3f2;
  border-color: #efaaa4;
  color: #9f2f27;
}

.contact-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.article-contact--home {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--pcum-shadow-sm);
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
  margin-top: 24px;
  padding: clamp(24px, 3vw, 34px);
}

.article-contact--home .article-contact__heading {
  margin-bottom: 0;
  padding-right: 8px;
}

.article-contact--home .article-contact__heading h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  margin-top: 7px;
}

.article-contact--home .article-contact__body {
  min-width: 0;
}

.article-contact--home .article-contact__grid {
  gap: 16px;
}

.article-contact--home .form-field textarea {
  min-height: 124px;
}

.article-contact--home .article-contact__footer {
  margin-top: 20px;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  line-height: 1.25;
  margin: 1.7em 0 0.65em;
}

.rich-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.rich-content h3 {
  font-size: 1.38rem;
}

.rich-content p,
.rich-content ul,
.rich-content ol {
  margin-bottom: 1.15em;
}

.rich-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rich-content img,
.rich-content video,
.rich-content iframe {
  height: auto !important;
  max-width: 100% !important;
}

.rich-content img {
  border-radius: 10px;
}

.rich-content table {
  border-collapse: collapse;
  display: block;
  margin: 24px 0;
  max-width: 100%;
  overflow-x: auto;
  width: max-content;
}

.rich-content th,
.rich-content td {
  border: 1px solid var(--pcum-border);
  min-width: 130px;
  padding: 10px 12px;
  vertical-align: top;
}

.rich-content th {
  background: var(--pcum-primary-light);
  color: var(--pcum-ink);
}

.rich-content blockquote {
  background: var(--pcum-primary-light);
  border-left: 4px solid var(--pcum-primary);
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  padding: 18px 22px;
}

.news-list {
  display: grid;
  gap: 20px;
}

.news-entry {
  margin: 0 auto;
  width: 100%;
}

.news-entry + .news-entry {
  margin-top: 0;
}

.news-entry__date {
  border-bottom: 1px solid var(--pcum-border);
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.empty-state {
  color: var(--pcum-muted);
  padding: 48px 24px;
  text-align: center;
}

.empty-state > i {
  color: #92b6c3;
  font-size: 3.2rem;
}

.empty-state h2 {
  font-size: 1.55rem;
  margin: 16px 0 6px;
}

.empty-state .button {
  margin-top: 16px;
  text-decoration: none;
}

.tender-tabs {
  background: #fff;
  border: 1px solid var(--pcum-border);
  border-radius: 999px;
  display: flex;
  gap: 5px;
  margin: 0 auto 30px;
  max-width: max-content;
  padding: 5px;
}

.tender-tabs a {
  border-radius: 999px;
  color: var(--pcum-muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 17px;
}

.tender-tabs a:hover,
.tender-tabs a.active {
  background: var(--pcum-primary);
  color: #fff;
}

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

.tender-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--pcum-border);
  border-radius: 15px;
  color: var(--pcum-ink);
  display: grid;
  gap: 17px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 20px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tender-card:hover {
  border-color: #a9ced9;
  box-shadow: var(--pcum-shadow-sm);
  color: var(--pcum-ink);
  transform: translateY(-2px);
}

.tender-card__icon {
  align-items: center;
  background: var(--pcum-primary-light);
  border-radius: 11px;
  color: var(--pcum-primary);
  display: flex;
  font-size: 1.15rem;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.tender-card small,
.tender-card strong {
  display: block;
}

.tender-card small {
  color: var(--pcum-muted);
  font-size: 0.76rem;
  margin-bottom: 3px;
}

.tender-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  line-height: 1.45;
}

.tender-card > i {
  color: var(--pcum-primary);
}

.document-meta {
  align-items: center;
  background: var(--pcum-primary-light);
  border-radius: 10px;
  color: var(--pcum-primary);
  display: flex;
  font-weight: 700;
  gap: 9px;
  margin-bottom: 28px;
  padding: 12px 15px;
}

/* Footer */
.site-footer#footer {
  background: #0e2c3e;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.site-footer__top {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  padding-bottom: 60px;
  padding-top: 70px;
}

.site-footer__brand img {
  background: #fff;
  border-radius: 8px;
  height: auto;
  max-width: 290px;
  padding: 5px;
  width: 100%;
}

.site-footer__brand p {
  margin: 20px 0;
  max-width: 310px;
}

.site-footer__social {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  gap: 9px;
}

.site-footer__social:hover {
  color: #a7f3d0;
}

.site-footer__column h2 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  margin: 7px 0 20px;
}

.site-footer__column ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__column a:hover {
  color: #fff;
}

.site-footer__contact address {
  display: grid;
  font-style: normal;
  gap: 12px;
}

.site-footer__contact p {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  margin: 0;
}

.site-footer__contact i {
  color: #7dd3cf;
  margin-top: 3px;
}

.site-footer__contact small {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__official {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.8rem;
}

.site-footer__official .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  padding-bottom: 19px;
  padding-top: 19px;
}

.site-footer__official a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer__bottom {
  font-size: 0.78rem;
}

.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  padding-top: 22px;
}

/* Cookie notice and back to top */
.cookie-notice {
  align-items: center;
  background: #fff;
  border: 1px solid var(--pcum-border);
  border-radius: 16px;
  bottom: 22px;
  box-shadow: var(--pcum-shadow-lg);
  display: flex;
  gap: 24px;
  left: 50%;
  max-width: min(620px, calc(100% - 32px));
  padding: 17px 18px 17px 22px;
  position: fixed;
  transform: translateX(-50%);
  width: max-content;
  z-index: 9998;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice strong,
.cookie-notice p {
  display: block;
}

.cookie-notice strong {
  color: var(--pcum-ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
}

.cookie-notice p {
  color: var(--pcum-muted);
  font-size: 0.8rem;
  line-height: 1.35;
  margin: 2px 0 0;
}

.cookie-notice button {
  background: var(--pcum-primary);
  border: 0;
  border-radius: 999px;
  color: #fff;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 16px;
}

.back-to-top {
  background: var(--pcum-primary);
  border-radius: 50%;
  bottom: 20px;
  height: 46px;
  right: 20px;
  width: 46px;
}

.back-to-top:hover {
  background: var(--pcum-primary-dark);
}

/* 2026 light visual refresh
   A calmer, task-first layout inspired by current Polish healthcare portals. */
:root {
  --pcum-ink: #102f44;
  --pcum-muted: #607687;
  --pcum-primary: #00658a;
  --pcum-primary-dark: #08465f;
  --pcum-primary-light: #e9f6fa;
  --pcum-accent: #07877b;
  --pcum-background: #f5f9fa;
  --pcum-border: #dce8ed;
  --pcum-shadow-sm: 0 10px 30px rgba(16, 47, 68, 0.07);
  --pcum-shadow-lg: 0 24px 64px rgba(16, 47, 68, 0.12);
  --pcum-radius-sm: 10px;
  --pcum-radius: 18px;
  --pcum-radius-lg: 28px;
}

body {
  -webkit-font-smoothing: antialiased;
  background: var(--pcum-surface);
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1280px;
}

.section-pad {
  padding: 88px 0;
}

.section-kicker,
.page-hero__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.section-heading {
  gap: clamp(32px, 6vw, 78px);
  margin-bottom: 38px;
}

.section-heading h2,
.about-modern h2,
.diagnostics h2,
.appointment-modern h2,
.faq-modern h2,
.contact-modern h2 {
  font-size: clamp(1.95rem, 3.2vw, 2.9rem);
  letter-spacing: -0.035em;
}

.section-heading p,
.section-heading--center p {
  font-size: 1.06rem;
}

.button {
  border-radius: 12px;
  min-height: 48px;
  padding: 13px 21px;
}

.button--primary {
  box-shadow: 0 9px 22px rgba(0, 101, 138, 0.19);
}

/* Light utility bar and a quieter main navigation. */
.topbar#topbar {
  background: #edf7fa;
  border-bottom: 1px solid #d8e9ef;
  color: var(--pcum-ink);
}

.topbar__inner {
  min-height: 40px;
}

.topbar__contact a,
.topbar__contact span,
.accessibility-tools a {
  color: #365a6d;
}

.topbar__contact a:hover,
.accessibility-tools a:hover {
  color: var(--pcum-primary);
}

.topbar__contact i {
  color: var(--pcum-primary);
}

.accessibility-tools button,
.accessibility-tools a {
  background: var(--pcum-surface);
  border: 1px solid #d3e5eb;
  border-radius: 7px;
  color: var(--pcum-primary-dark);
}

.accessibility-tools button:hover,
.accessibility-tools a:hover,
.accessibility-tools button[aria-pressed="true"] {
  background: var(--pcum-primary);
  border-color: var(--pcum-primary);
  color: #fff;
}

.site-header#header {
  border-bottom-color: #e2ebef;
  box-shadow: 0 5px 18px rgba(16, 47, 68, 0.045);
}

.site-header#header.header-scrolled {
  box-shadow: 0 10px 30px rgba(16, 47, 68, 0.09);
}

.site-header__inner {
  gap: 20px;
  min-height: 96px;
}

#header .site-brand img {
  max-height: 74px;
}

#header .navbar > ul {
  gap: 1px;
}

#header .navbar > ul > li > a {
  border-radius: 8px;
  font-size: 0.81rem;
  padding: 11px 8px;
}

#header .navbar > ul > li > a:hover,
#header .navbar > ul > li:hover > a,
#header .navbar > ul > li > a.active {
  background: #eef7fa;
}

#header .navbar .dropdown-menu {
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(16, 47, 68, 0.13);
}

#header .appointment-btn {
  border-radius: 12px;
  box-shadow: 0 9px 22px rgba(0, 101, 138, 0.16);
  padding: 12px 16px;
}

/* A two-part hero: clear message on the left, reassuring image on the right. */
.hero#hero {
  background: radial-gradient(circle at 8% 20%, #edf8fb 0, rgba(237, 248, 251, 0) 36%),
              linear-gradient(135deg, #fbfdfe 0%, #f3f9fb 100%);
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  padding: 72px 0 96px;
}

.hero#hero::before {
  background: linear-gradient(90deg, rgba(234, 246, 250, 0.16), rgba(255, 255, 255, 0.01)), url("../img/hero-clinic-v2.jpg") center / cover no-repeat;
  border: 1px solid rgba(0, 101, 138, 0.1);
  border-radius: 34px;
  bottom: 38px;
  box-shadow: 0 25px 65px rgba(16, 47, 68, 0.12);
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - 1280px) / 2));
  top: 38px;
  width: min(47vw, 620px);
  z-index: 1;
}

.hero#hero::after {
  background: rgba(7, 135, 123, 0.08);
  border-radius: 50%;
  bottom: -210px;
  height: 410px;
  left: 34%;
  width: 410px;
  z-index: 0;
}

.hero#hero .hero__grid {
  gap: clamp(42px, 6vw, 82px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 650px;
}

.hero .eyebrow {
  background: var(--pcum-surface);
  border-color: #d7e9ef;
  box-shadow: 0 6px 18px rgba(16, 47, 68, 0.04);
}

.hero#hero h1 {
  font-size: clamp(3rem, 5.2vw, 4.75rem);
  letter-spacing: -0.058em;
  line-height: 1.01;
  margin: 22px 0 20px;
  max-width: 620px;
}

.hero__lead {
  color: #466477;
  font-size: 1.18rem;
  line-height: 1.58;
  max-width: 610px;
}

.hero__actions {
  margin-top: 29px;
}

.hero__trust {
  gap: 9px;
  margin-top: 24px;
}

.hero__trust li {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #dfebef;
  border-radius: 999px;
  padding: 6px 10px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(16, 47, 68, 0.18);
  margin-left: 34px;
  padding: 25px;
}

.hero-card__icon {
  border-radius: 12px;
  height: 48px;
  width: 48px;
}

.hero-card__phone {
  font-size: 1.6rem;
}

.quick-actions {
  margin-top: -39px;
  padding-bottom: 34px;
}

.quick-actions__grid {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 12px;
  overflow: visible;
}

.quick-action,
.quick-action + .quick-action {
  background: var(--pcum-surface);
  border: 1px solid var(--pcum-border);
  border-radius: 16px;
  box-shadow: var(--pcum-shadow-sm);
  min-height: 112px;
  padding: 20px;
}

.quick-action:hover {
  background: #f2fafc;
  border-color: #b8d8e2;
  box-shadow: 0 14px 36px rgba(16, 47, 68, 0.1);
  transform: translateY(-3px);
}

.quick-action__icon {
  border-radius: 11px;
}

/* Light, separated content bands. */
.about-modern {
  background: var(--pcum-surface);
}

.about-modern__grid {
  gap: clamp(48px, 7vw, 92px);
}

.about-modern__image {
  border: 0;
  border-radius: 24px;
  box-shadow: var(--pcum-shadow-lg);
  min-height: 510px;
}

.about-modern__image::before {
  border-color: rgba(243, 182, 31, 0.6);
  border-radius: 29px;
  inset: -8px;
}

.about-modern__badge {
  background: rgba(8, 70, 95, 0.96);
  border-radius: 13px;
}

.feature-list {
  gap: 16px;
  margin: 27px 0;
}

.feature-list > div {
  border-bottom: 1px solid #e7eef1;
  padding-bottom: 14px;
}

.feature-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stats {
  background: var(--pcum-background);
  padding: 56px 0;
}

.stats__grid {
  background: var(--pcum-surface);
  border: 1px solid var(--pcum-border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(16, 47, 68, 0.055);
  padding: 25px 8px;
}

.stat {
  padding: 7px 27px;
}

.stat > i {
  align-items: center;
  background: var(--pcum-primary-light);
  border-radius: 11px;
  display: flex;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.services-modern {
  background: var(--pcum-background);
}

.services-modern__grid {
  gap: 16px;
}

.service-card {
  background: var(--pcum-surface);
  border-color: var(--pcum-border);
  border-radius: 16px;
  min-height: 292px;
  padding: 27px;
}

.service-card:hover {
  border-color: #afd1dc;
  box-shadow: 0 15px 40px rgba(16, 47, 68, 0.09);
  transform: translateY(-4px);
}

.service-card__icon {
  background: var(--pcum-primary-light);
  border-radius: 13px;
  margin-bottom: 22px;
}

.diagnostics {
  background: linear-gradient(135deg, #eaf7fa 0%, #edf9f6 100%);
  color: var(--pcum-ink);
}

.diagnostics::before,
.diagnostics::after {
  border-color: rgba(0, 101, 138, 0.07);
}

.diagnostics h2 {
  color: var(--pcum-ink);
}

.diagnostics .section-kicker--light {
  color: var(--pcum-accent);
}

.diagnostics__content p {
  color: var(--pcum-muted);
}

.diagnostics .button--light {
  background: var(--pcum-primary);
  color: #fff;
}

.diagnostics .button--light:hover {
  background: var(--pcum-primary-dark);
  color: #fff;
}

.diagnostics__cards a {
  background: rgba(255, 255, 255, 0.9);
  border-color: #d4e7ec;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 47, 68, 0.05);
  color: var(--pcum-ink);
}

.diagnostics__cards a:hover {
  background: #fff;
  border-color: #afd1dc;
  color: var(--pcum-ink);
}

.diagnostics__cards a > i:first-child {
  background: var(--pcum-primary-light);
  color: var(--pcum-primary);
}

.diagnostics__cards a > i:last-child {
  color: var(--pcum-primary);
}

.diagnostics__cards small {
  color: var(--pcum-muted);
}

.appointment-modern {
  background: var(--pcum-surface);
}

.appointment-modern__card {
  background: linear-gradient(120deg, #075d7e 0%, #087f80 100%);
  border: 0;
  box-shadow: 0 20px 50px rgba(7, 93, 126, 0.17);
  color: #fff;
  padding: 40px 46px;
}

.appointment-modern__icon {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.appointment-modern .section-kicker {
  color: #bbf1e8;
}

.appointment-modern h2 {
  color: #fff;
}

.appointment-modern__content p {
  color: rgba(255, 255, 255, 0.8);
}

.appointment-modern__card .button--primary {
  background: #fff;
  box-shadow: none;
  color: var(--pcum-primary-dark);
}

.appointment-modern__card .button--primary:hover {
  background: #e9f8f5;
  color: var(--pcum-primary-dark);
}

.appointment-modern__card .button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.appointment-modern__card .button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.news {
  background: var(--pcum-surface);
}

.news-card {
  background: var(--pcum-background);
  border-color: transparent;
  border-radius: 16px;
  box-shadow: none;
  min-height: 255px;
  padding: 27px;
}

.news-card:hover {
  border-color: var(--pcum-border);
  box-shadow: var(--pcum-shadow-sm);
}

.faq-modern {
  background: var(--pcum-background);
}

.faq-modern .accordion-item {
  border-radius: 13px;
}

.faq-modern .accordion-button {
  padding: 19px 21px;
}

.contact-modern {
  background: var(--pcum-surface);
}

.contact-card {
  background: var(--pcum-background);
  border-color: transparent;
  border-radius: 13px;
}

.contact-card:hover {
  background: #fff;
  border-color: #b7d5de;
}

.contact-modern__map {
  border: 1px solid var(--pcum-border);
  border-radius: 16px;
  box-shadow: none;
  min-height: 470px;
}

.contact-modern__map iframe {
  min-height: 470px;
}

.article-contact--home {
  background: var(--pcum-background);
  border-color: transparent;
  box-shadow: none;
}

/* Cleaner, more compact article and tender pages. */
.page-main {
  background: var(--pcum-background);
}

.page-hero {
  background: linear-gradient(120deg, #f2f9fb 0%, #f9fcfc 72%, #fffaf0 100%);
  border-bottom: 1px solid var(--pcum-border);
  padding: 46px 0 40px;
}

.page-hero::after {
  border-color: rgba(0, 101, 138, 0.025);
}

.page-breadcrumbs {
  margin-bottom: 20px;
}

.page-breadcrumbs li {
  font-size: 0.8rem;
}

.page-hero h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.45rem);
  letter-spacing: -0.045em;
}

.page-hero > .container > p {
  font-size: 1.06rem;
  margin-top: 13px;
}

.page-content.section-pad {
  padding-bottom: 72px;
  padding-top: 30px;
}

.content-card {
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(16, 47, 68, 0.055);
  max-width: 1100px;
  padding: clamp(26px, 4.5vw, 54px);
}

.news-entry__date {
  margin-bottom: 23px;
  padding-bottom: 15px;
}

.tender-tabs {
  border-radius: 13px;
  box-shadow: 0 6px 20px rgba(16, 47, 68, 0.04);
}

.tender-tabs a {
  border-radius: 9px;
}

.tender-card {
  border-radius: 13px;
}

.site-footer#footer {
  background: #0b3449;
}

.site-footer__top {
  padding-bottom: 54px;
  padding-top: 62px;
}

.site-footer__brand img {
  border-radius: 10px;
}

.cookie-notice {
  border-radius: 13px;
  box-shadow: 0 18px 50px rgba(16, 47, 68, 0.16);
}

/* High contrast */
.pcum-high-contrast {
  --pcum-ink: #fff;
  --pcum-muted: #f3f4f6;
  --pcum-primary: #ffdf00;
  --pcum-primary-dark: #000;
  --pcum-primary-light: #161616;
  --pcum-accent: #ffdf00;
  --pcum-gold: #00ffff;
  --pcum-surface: #000;
  --pcum-background: #080808;
  --pcum-border: #fff;
}

.pcum-high-contrast body,
.pcum-high-contrast .site-header#header,
.pcum-high-contrast .quick-actions__grid,
.pcum-high-contrast .quick-action,
.pcum-high-contrast .service-card,
.pcum-high-contrast .news-card,
.pcum-high-contrast .accordion-item,
.pcum-high-contrast .accordion-button,
.pcum-high-contrast .contact-card,
.pcum-high-contrast .article-contact,
.pcum-high-contrast .content-card,
.pcum-high-contrast .tender-card,
.pcum-high-contrast .cookie-notice {
  background: #000;
  color: #fff;
}

.pcum-high-contrast .form-field input,
.pcum-high-contrast .form-field textarea {
  background: #000;
  border-color: #fff;
  color: #fff;
}

.pcum-high-contrast .hero#hero {
  background-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 100%), url("../img/hero-clinic-v2.jpg");
}

.pcum-high-contrast .hero#hero::before {
  display: none;
}

.pcum-high-contrast .hero__trust li,
.pcum-high-contrast .diagnostics__cards a {
  background: #000;
  border-color: #fff;
  color: #fff;
}

.pcum-high-contrast .topbar__contact a,
.pcum-high-contrast .topbar__contact span,
.pcum-high-contrast .accessibility-tools a {
  color: #fff;
}

.pcum-high-contrast .hero-card,
.pcum-high-contrast .appointment-modern__card,
.pcum-high-contrast .page-hero {
  background: #080808;
  border-color: #fff;
}

.pcum-high-contrast .hero .eyebrow,
.pcum-high-contrast .button--secondary,
.pcum-high-contrast .button--light {
  background: #000;
  border-color: #ffdf00;
  color: #ffdf00;
}

.pcum-high-contrast .button--primary,
.pcum-high-contrast #header .appointment-btn,
.pcum-high-contrast .appointment-modern__icon {
  background: #ffdf00;
  color: #000;
}

.pcum-high-contrast .topbar#topbar,
.pcum-high-contrast .site-footer#footer,
.pcum-high-contrast .diagnostics {
  background: #000;
}

.pcum-high-contrast .rich-content,
.pcum-high-contrast .hero__lead,
.pcum-high-contrast .hero__trust li,
.pcum-high-contrast .section-heading p,
.pcum-high-contrast .about-modern__content > p,
.pcum-high-contrast .service-card p,
.pcum-high-contrast .news-card p,
.pcum-high-contrast .faq-modern__intro p,
.pcum-high-contrast .page-hero > .container > p {
  color: #fff;
}

/* Responsive navigation and layout */
@media (max-width: 1199px) {
  .site-header__inner {
    gap: 15px;
  }

  #header .navbar > ul > li > a {
    font-size: 0.76rem;
    padding: 10px 6px;
  }

  #header .appointment-btn span {
    display: none;
  }

  #header .appointment-btn {
    border-radius: 12px;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
  }

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

  .quick-action:nth-child(3) {
    border: 1px solid var(--pcum-border);
  }

  .quick-action:nth-child(4) {
    border: 1px solid var(--pcum-border);
  }

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

  .appointment-modern__actions {
    flex-direction: row;
    grid-column: 2;
  }

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

  .site-footer__contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 991px) {
  .section-pad {
    padding: 76px 0;
  }

  .page-content.section-pad {
    padding-top: 36px;
  }

  .topbar__contact a:nth-child(2),
  .topbar__contact .topbar__hours,
  .accessibility-tools__label {
    display: none;
  }

  .site-header__inner {
    min-height: 89px;
  }

  #header .site-brand img {
    max-height: 63px;
    max-width: 270px;
  }

  #header .mobile-nav-toggle {
    display: inline-flex;
    position: relative;
    right: auto;
    top: auto;
    z-index: 1001;
  }

  #header .navbar > ul {
    background: #fff;
    border-radius: 15px;
    bottom: 15px;
    display: none;
    left: 15px;
    overflow-y: auto;
    padding: 72px 12px 18px;
    position: fixed;
    right: 15px;
    top: 15px;
  }

  #header .navbar.navbar-mobile {
    background: rgba(6, 35, 52, 0.78);
    inset: 0;
    position: fixed;
    z-index: 999;
  }

  #header .navbar.navbar-mobile > ul {
    display: block;
  }

  #header .navbar.navbar-mobile .mobile-nav-toggle {
    background: var(--pcum-primary-light);
    position: fixed;
    right: 28px;
    top: 28px;
  }

  #header .navbar > ul > li > a {
    border-radius: 9px;
    font-size: 1rem;
    padding: 12px;
  }

  #header .navbar .dropdown-menu,
  #header .navbar .dropdown-menu .dropdown-menu {
    background: var(--pcum-background);
    border: 0;
    box-shadow: none;
    display: none;
    left: auto;
    margin: 3px 10px 9px;
    min-width: 0;
    opacity: 1;
    padding: 5px;
    position: static;
    top: auto;
    transform: none;
    visibility: visible;
  }

  #header .navbar .dropdown-menu.dropdown-active {
    display: block;
  }

  #header .navbar .dropdown:hover > .dropdown-menu:not(.dropdown-active),
  #header .navbar .dropdown:focus-within > .dropdown-menu:not(.dropdown-active) {
    display: none;
  }

  .hero#hero {
    background: radial-gradient(circle at 15% 15%, #eaf7fa 0, rgba(234, 247, 250, 0) 45%), #f8fbfc;
    min-height: 0;
    padding: 72px 0 104px;
  }

  .hero#hero::before {
    display: none;
  }

  .hero#hero .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .about-modern__grid,
  .diagnostics__grid,
  .faq-modern__grid,
  .contact-modern__grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .about-modern__image {
    min-height: 480px;
  }

  .about-modern__content {
    order: -1;
  }

  .stats__grid {
    gap: 30px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

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

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

  .faq-modern__intro {
    position: static;
  }

  .contact-modern__map,
  .contact-modern__map iframe {
    min-height: 400px;
  }

  .article-contact--home {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .article-contact--home .article-contact__heading {
    max-width: 620px;
    padding-right: 0;
  }

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

  .site-footer__contact {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 1rem;
  }

  .section-pad {
    padding: 62px 0;
  }

  .page-content.section-pad {
    padding-top: 28px;
  }

  .article-contact {
    margin-top: 30px;
    padding: 22px 18px;
  }

  .article-contact--home {
    gap: 22px;
    margin-top: 22px;
  }

  .article-contact__grid {
    grid-template-columns: 1fr;
  }

  .article-contact__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .article-contact__footer .button {
    justify-content: center;
    width: 100%;
  }

  .topbar__inner {
    min-height: 39px;
  }

  .topbar__contact a span {
    display: inline;
  }

  .topbar__contact a {
    font-size: 0.78rem;
  }

  .accessibility-tools a {
    display: none;
  }

  .accessibility-tools button {
    min-width: 27px;
  }

  .site-header__inner {
    gap: 9px;
    min-height: 78px;
  }

  #header .site-brand img {
    max-height: 51px;
    max-width: 215px;
  }

  #header .appointment-btn,
  #header .mobile-nav-toggle {
    height: 40px;
    width: 40px;
  }

  .hero#hero {
    padding: 60px 0 96px;
  }

  .hero#hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero__lead {
    font-size: 1.08rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .quick-actions {
    margin-top: -43px;
  }

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

  .quick-action,
  .quick-action:nth-child(3),
  .quick-action:nth-child(4) {
    border: 1px solid var(--pcum-border);
    min-height: 94px;
    padding: 17px;
  }

  .quick-action:first-child {
    border: 1px solid var(--pcum-border);
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .about-modern__image {
    min-height: 390px;
  }

  .about-modern__image::before {
    display: none;
  }

  .about-modern__badge {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

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

  .stat,
  .stat + .stat,
  .stat:nth-child(3) {
    border-left: 0;
    padding: 4px 8px;
  }

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

  .service-card {
    min-height: 280px;
  }

  .diagnostics__grid {
    gap: 40px;
  }

  .diagnostics__cards a {
    padding: 16px;
  }

  .appointment-modern__card {
    display: block;
    padding: 30px 24px;
  }

  .appointment-modern__icon {
    margin-bottom: 22px;
  }

  .appointment-modern__actions {
    display: grid;
    margin-top: 25px;
  }

  .page-hero {
    padding: 42px 0 50px;
  }

  .page-breadcrumbs {
    margin-bottom: 22px;
  }

  .content-card {
    border-radius: 15px;
    padding: 24px 20px;
  }

  .tender-tabs {
    border-radius: 14px;
    display: grid;
    max-width: none;
  }

  .tender-tabs a {
    text-align: center;
  }

  .tender-card {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 17px;
  }

  .tender-card > i {
    display: none;
  }

  .site-footer__top {
    gap: 38px;
    grid-template-columns: 1fr;
    padding-bottom: 48px;
    padding-top: 55px;
  }

  .site-footer__bottom .container {
    flex-direction: column;
    gap: 7px;
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 28px);
  }
}

@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;
  }
}
