.service-page {
  min-height: calc(100vh - var(--header-h));
  overflow: clip;
  background: #fafbfc;
}

.service-editorial {
  padding: 24px 0 54px;
}

.service-editorial__content {
  max-width: 1040px;
  color: #344054;
  font-size: 18px;
  line-height: 1.72;
}

.service-editorial__content > :first-child {
  margin-top: 0;
}

.service-editorial__content > :last-child {
  margin-bottom: 0;
}

.service-editorial__content h2,
.service-editorial__content h3,
.service-editorial__content h4 {
  color: #172033;
  line-height: 1.2;
  margin: 1.8em 0 .65em;
}

.service-editorial__content h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.service-editorial__content h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.service-editorial__content p,
.service-editorial__content ul,
.service-editorial__content ol {
  margin: 0 0 1em;
}

.service-editorial__content li + li {
  margin-top: .35em;
}

@media (max-width: 767px) {
  .service-editorial {
    padding: 8px 0 32px;
  }

  .service-editorial__content {
    font-size: 16px;
    line-height: 1.62;
  }
}

.service-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
}

.service-breadcrumbs a:hover {
  color: var(--smd-blue);
}

.service-breadcrumbs span:last-child {
  color: var(--smd-text);
  font-weight: 600;
}

.service-hero {
  padding-bottom: 40px;
}

.service-hero-card {
  position: relative;
  min-height: 420px;
  padding: 56px;
  overflow: hidden;
  border-radius: 24px;
  background: #e6f6ee;
}

.service-hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(42%, 580px);
}

.service-hero-title {
  margin: 0 0 16px;
  color: var(--smd-text);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.service-hero-description {
  max-width: 420px;
  margin: 0 0 28px;
  color: #5a6672;
  font-size: 16px;
  line-height: 1.6;
}

.service-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 14px;
  background: var(--smd-green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(73, 189, 80, 0.24);
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-hero-button:hover,
.service-hero-button:focus-visible {
  color: #fff;
  background: var(--smd-green-hover);
  transform: translateY(-1px);
}

.service-hero-media {
  position: absolute;
  top: 50%;
  left: 38%;
  z-index: 1;
  width: 400px;
  pointer-events: none;
  transform: translateY(-50%);
}

.service-hero-image {
  display: block;
  width: 400px;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .1));
  transform-origin: center;
  animation: serviceHeroPulse 2.5s ease-in-out infinite;
}

@keyframes serviceHeroPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.service-hero-items {
  position: absolute;
  top: 50%;
  right: clamp(12px, 2.4vw, 40px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: clamp(260px, 24vw, 320px);
  gap: 6px;
  transform: translateY(-50%);
}

.service-hero-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  gap: 10px;
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
  transition: box-shadow .3s ease, transform .3s ease;
}

.service-hero-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
  transform: translateX(-4px);
}

.service-hero-item__name {
  flex: 1;
  color: var(--smd-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.service-hero-item__icon {
  display: flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.service-hero-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-hero-item:first-child .service-hero-item__icon svg {
  fill: currentColor;
  stroke: none;
}

.service-anchor-nav {
  position: sticky;
  top: var(--smd-service-sticky-header-bottom, var(--header-h));
  z-index: 50;
  width: 100%;
  border-bottom: 2px solid #e2e8f0;
  background: #fff;
}

.service-anchor-nav__inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-anchor-nav__inner::-webkit-scrollbar {
  display: none;
}

.service-anchor-nav__link,
.service-anchor-nav__link:visited {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 18px 32px;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: color .2s ease;
}

.service-anchor-nav__link::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--smd-blue);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.service-anchor-nav__link:hover,
.service-anchor-nav__link:focus-visible,
.service-anchor-nav__link.is-active {
  color: var(--smd-text);
}

.service-anchor-nav__link.is-active::after {
  transform: scaleX(1);
}

.service-page [id^="sec-"] {
  scroll-margin-top: calc(var(--smd-service-sticky-header-bottom, var(--header-h)) + 72px);
}

.service-advantages {
  padding: 72px 0;
  background: #fff;
}

.service-section-title {
  margin: 0 0 36px;
  color: var(--smd-text);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
}

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

.service-advantage-card {
  min-width: 0;
  padding: 36px 28px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #f8fafc;
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.service-advantage-card:hover {
  border-color: #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  transform: translateY(-4px);
}

.service-advantage-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
}

.service-advantage-card__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-advantage-card__icon--pulse svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-advantage-card h3 {
  margin: 0 0 12px;
  color: var(--smd-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.service-advantage-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.service-stages {
  padding: 72px 0;
  background: #f8fafc;
}

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

.service-stage-card {
  min-width: 0;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #faf8f5;
}

.service-stage-card__label {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-stage-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 16px 0 20px;
  border-radius: 50%;
}

.service-stage-card__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.service-stage-card__icon--pulse svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-stage-card h3 {
  margin: 0 0 12px;
  color: var(--smd-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.service-stage-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.service-doctors {
  padding: 72px 0;
  background: #fff;
}

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

.service-doctor-card,
.service-doctors-all {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  text-align: center;
}

.service-doctor-card {
  position: relative;
  background: #fff;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  cursor: pointer;
}

.service-doctor-card__profile-link {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
}

.service-doctor-card__profile-link:focus-visible {
  outline: 3px solid rgba(31, 145, 101, .35);
  outline-offset: 3px;
}

.service-doctor-card:hover {
  border-color: var(--smd-blue);
  box-shadow: 0 8px 24px rgba(31, 145, 101, .1);
  transform: translateY(-6px);
}

.service-doctor-card__photo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
}

.service-doctor-card__photo,
.service-doctor-card__placeholder {
  display: flex;
  width: 140px;
  height: 140px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf5fb;
  color: var(--smd-blue);
  font-size: 34px;
  font-weight: 800;
  object-fit: cover;
}

.service-doctor-card__experience {
  position: absolute;
  bottom: -10px;
  left: 50%;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--smd-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transform: translateX(-50%);
}

.service-doctor-card__name {
  width: 100%;
  min-height: 42px;
  margin: 8px 0;
  color: var(--smd-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.service-doctor-card__name a {
  position: relative;
  z-index: 1;
  color: inherit;
}

.service-doctor-card__specialties {
  width: 100%;
  min-height: 40px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.4;
}

.service-doctor-card__position {
  width: 100%;
  min-height: 32px;
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

.service-doctor-card__location {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  gap: 6px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
}

.service-doctor-card__location svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-doctor-card__price {
  margin-top: auto;
  padding: 16px 0;
  color: var(--smd-blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.service-doctor-card__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--smd-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-doctor-card__button:hover,
.service-doctor-card__button:focus-visible {
  background: var(--smd-green-hover);
  color: #fff;
  box-shadow: 0 6px 16px rgba(73, 189, 80, .25);
  transform: translateY(-1px);
}

.service-doctors-all {
  justify-content: center;
  background: #f8fafc;
}

.service-doctors-all__icon {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #e6f6ee;
  color: var(--smd-blue);
}

.service-doctors-all__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-doctors-all h3 {
  margin: 0 0 12px;
  color: var(--smd-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.service-doctors-all p {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.service-doctors-all a {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 13px 18px;
  border: 1px solid var(--smd-blue);
  border-radius: 12px;
  color: var(--smd-blue);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.service-doctors-all a:hover,
.service-doctors-all a:focus-visible {
  background: var(--smd-blue);
  color: #fff;
}

.service-prices {
  padding: 72px 0;
  background: #f8fafc;
}

.service-analysis-link {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 48px 32px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(10, 24, 38, .72), rgba(10, 24, 38, .72)),
    var(--service-analysis-image, linear-gradient(135deg, #264e68, #182938)) center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(15, 40, 60, .16);
  isolation: isolate;
  text-align: center;
}

.service-analysis-link__content {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.service-analysis-link__logo {
  display: block;
  width: min(240px, 64vw);
  height: auto;
  max-height: 44px;
  margin: 0 auto 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-analysis-link__partner-name {
  display: block;
  margin: -10px auto 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}

.service-analysis-link h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.service-analysis-link a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  gap: 10px;
  border-radius: 12px;
  background: var(--smd-green);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .24);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-analysis-link a:hover,
.service-analysis-link a:focus-visible {
  background: var(--smd-green-hover);
  color: #fff;
  box-shadow: 0 15px 34px rgba(37, 211, 102, .3);
  transform: translateY(-2px);
}

.service-analysis-link a span {
  font-size: 24px;
  line-height: .8;
}

.service-price-list {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
}

.service-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 24px;
  border-bottom: 1px solid #f1f5f9;
  transition: background .15s ease;
}

.service-price-row[hidden] {
  display: none;
}

.service-prices.is-expanded .service-price-row[data-price-extra] {
  animation: servicePriceReveal .3s ease both;
}

@keyframes servicePriceReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-price-row:last-child {
  border-bottom: 0;
}

.service-price-row:hover {
  background: #f8fafc;
}

.service-price-row__name {
  min-width: 0;
  color: var(--smd-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.service-price-row__right {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
}

.service-price-row__value {
  color: var(--smd-text);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.service-price-row__button {
  display: inline-flex;
  min-width: 126px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 999px;
  background: var(--smd-green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-price-row__button:hover,
.service-price-row__button:focus-visible {
  background: var(--smd-green-hover);
  color: #fff;
  box-shadow: 0 4px 12px rgba(73, 189, 80, .28);
  transform: translateY(-1px);
}

.service-prices__toggle-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}

.service-prices__toggle {
  padding: 12px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: var(--smd-text);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}

.service-prices__toggle:hover,
.service-prices__toggle:focus-visible {
  border-color: var(--smd-blue);
  color: var(--smd-blue);
}

.service-diseases {
  padding: 72px 0;
  border-top: 1px solid #e8ecf0;
  background: #fff;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-chip {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: var(--smd-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.service-chip[hidden] {
  display: none;
}

.service-chips.is-expanded .service-chip[data-chip-extra] {
  animation: serviceChipReveal .3s ease both;
}

@keyframes serviceChipReveal {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-chip:not(.service-chip--more):hover {
  border-color: var(--smd-blue);
  background: #f0faf5;
  color: var(--smd-blue);
}

.service-chip--more {
  color: var(--smd-blue);
  font-weight: 600;
  cursor: pointer;
}

.service-chip--more:hover,
.service-chip--more:focus-visible {
  border-color: var(--smd-blue);
  background: #f0faf5;
}

.service-when {
  padding: 72px 0;
  background: #f8fafc;
}

.service-when__grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.service-when__intro .service-section-title {
  margin-bottom: 0;
}

.service-when__intro p {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.service-diagnostics {
  padding: 72px 0;
  border-top: 1px solid #e8ecf0;
  background: #fff;
}

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

.service-diagnostics__grid.has-one-column {
  grid-template-columns: minmax(0, 1fr);
  max-width: 680px;
}

.service-diagnostics__card {
  padding: 32px;
  border: 1px solid #e8ecf0;
  border-radius: 18px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-diagnostics__card:hover {
  border-color: var(--smd-blue);
  box-shadow: 0 14px 32px rgba(32, 122, 181, .1);
  transform: translateY(-2px);
}

.service-diagnostics__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.service-diagnostics__header h3 {
  margin: 0;
  color: var(--smd-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.service-diagnostics__icon {
  display: inline-flex;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-diagnostics__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-diagnostics__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-diagnostics__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #eef1f4;
  color: #354253;
  font-size: 15px;
  line-height: 1.45;
}

.service-diagnostics__list li:last-child {
  border-bottom: 0;
}

.service-diagnostics__name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-diagnostics__dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--smd-blue);
}

.service-diagnostics__price {
  flex: 0 0 auto;
  color: var(--smd-blue);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.service-faq {
  padding: 72px 0;
  background: #fafbfc;
}

.service-faq__list {
  width: 100%;
}

.service-faq__item {
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.service-faq__item:last-child {
  margin-bottom: 0;
}

.service-faq__item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.service-faq__item.is-open {
  border-color: rgba(31, 145, 101, .2);
  box-shadow: 0 4px 24px rgba(31, 145, 101, .12);
  transform: none;
}

.service-faq__item h3 {
  margin: 0;
}

.service-faq__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  border: 0;
  background: none;
  color: var(--smd-text);
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: opacity .2s ease;
}

.service-faq__question:hover,
.service-faq__question:focus-visible {
  color: var(--smd-text);
  opacity: .85;
}

.service-faq__question:focus-visible {
  outline: 2px solid var(--smd-blue);
  outline-offset: -3px;
}

.service-faq__icon {
  display: inline-flex;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #f0faf5;
  color: var(--smd-blue);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform .3s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.service-faq__item.is-open .service-faq__icon {
  border-color: var(--smd-blue);
  background: var(--smd-blue);
  color: #fff;
  transform: rotate(45deg);
}

.service-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.service-faq__answer-inner {
  padding: 0 32px 28px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.service-faq__answer-inner p {
  margin: 0;
}

.service-faq__answer-inner p + p {
  margin-top: 12px;
}

.service-appointment {
  padding: 0 0 64px;
  background: #fafbfc;
}

.service-appointment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 64px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--service-appointment-start, #1f9165) 0%, var(--service-appointment-end, #54c596) 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(15, 48, 74, 0.18);
}

.service-appointment-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 800;
}

.service-appointment-card p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
}

.service-appointment-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
  gap: 12px;
}

.service-appointment-phone-primary {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.service-appointment-actions .service-appointment-phone-secondary {
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.service-appointment-actions .service-appointment-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--service-appointment-button, #25d366);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}

.service-appointment-actions .service-appointment-button:hover,
.service-appointment-actions .service-appointment-button:focus-visible {
  color: #fff;
  filter: brightness(.92);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .service-diagnostics__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-advantages__grid,
  .service-stages__grid,
  .service-doctors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero-card {
    min-height: 320px;
    padding: 32px 28px;
  }

  .service-hero-copy {
    max-width: 50%;
  }

  .service-hero-media {
    width: 320px;
  }

  .service-hero-image {
    width: 320px;
  }

  .service-hero-items {
    right: 20px;
    width: 240px;
  }

  .service-hero-item {
    padding: 12px 14px;
  }

  .service-hero-item__name {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .service-advantages {
    padding: 48px 0;
  }

  .service-stages {
    padding: 48px 0;
  }

  .service-doctors {
    padding: 48px 0;
  }

  .service-prices {
    padding: 48px 0;
  }

  .service-analysis-link {
    min-height: 250px;
    padding: 36px 20px;
    border-radius: 18px;
  }

  .service-analysis-link h3 {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .service-analysis-link a {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
  }

  .service-diseases {
    padding: 48px 0;
  }

  .service-when {
    padding: 48px 0;
  }

  .service-diagnostics {
    padding: 48px 0;
  }

  .service-faq {
    padding: 48px 0;
  }

  .service-section-title {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .service-advantages__grid,
  .service-stages__grid,
  .service-doctors__grid {
    grid-template-columns: 1fr;
  }

  .service-advantage-card,
  .service-stage-card {
    padding: 28px 24px;
  }

  .service-advantage-card__icon,
  .service-stage-card__icon {
    width: 44px;
    height: 44px;
  }

  .service-advantage-card h3,
  .service-stage-card h3 {
    font-size: 17px;
  }

  .service-advantage-card p,
  .service-stage-card p {
    font-size: 14px;
  }

  .service-doctor-card,
  .service-doctors-all {
    padding: 28px 20px;
  }

  .service-doctor-card__photo-wrap,
  .service-doctor-card__photo,
  .service-doctor-card__placeholder {
    width: 110px;
    height: 110px;
  }

  .service-price-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }

  .service-price-row__right {
    width: 100%;
    justify-content: space-between;
  }

  .service-price-row__button {
    min-width: 150px;
  }

  .service-chip {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .service-when__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-when__intro p {
    margin-top: 12px;
    font-size: 14px;
  }

  .service-diagnostics__card {
    padding: 24px 20px;
  }

  .service-diagnostics__header h3 {
    font-size: 17px;
  }

  .service-diagnostics__list li {
    padding: 14px 0;
    font-size: 14px;
  }

  .service-faq__question {
    padding: 20px 24px;
    font-size: 15px;
  }

  .service-faq__answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
  }

  .service-faq__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .service-breadcrumbs {
    overflow: hidden;
    font-size: 11px;
    white-space: nowrap;
  }

  .service-breadcrumbs span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .service-hero {
    padding-bottom: 28px;
  }

  .service-hero-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .service-hero-copy {
    max-width: 100%;
  }

  .service-hero-title {
    font-size: 28px;
  }

  .service-hero-description {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .service-hero-button {
    width: 100%;
    min-height: 46px;
  }

  .service-hero-media {
    position: static;
    width: 180px;
    margin: 16px auto 0;
    transform: none;
  }

  .service-hero-image {
    width: 180px;
    max-height: 180px;
  }

  .service-hero-items {
    position: static;
    flex-direction: row;
    width: 100%;
    margin-top: 12px;
    padding-bottom: 4px;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    transform: none;
  }

  .service-hero-items::-webkit-scrollbar {
    display: none;
  }

  .service-hero-item {
    flex: 0 0 160px;
    min-width: 160px;
    padding: 12px 14px;
  }

  .service-hero-item__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .service-anchor-nav__link {
    min-height: 50px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .service-appointment {
    padding: 0 0 42px;
  }

  .service-appointment-card {
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
  }

  .service-appointment-card h2 {
    font-size: 24px;
  }

  .service-appointment-card p {
    font-size: 15px;
  }

  .service-appointment-actions {
    width: 100%;
    align-items: center;
  }

  .service-appointment-phone-primary {
    font-size: 18px;
  }

  .service-appointment-actions .service-appointment-button {
    width: 100%;
    padding: 16px 32px;
  }
}

@media (max-width: 480px) {
  .service-advantages {
    padding: 36px 0;
  }

  .service-stages {
    padding: 36px 0;
  }

  .service-doctors {
    padding: 36px 0;
  }

  .service-prices {
    padding: 36px 0;
  }

  .service-diseases {
    padding: 36px 0;
  }

  .service-when {
    padding: 36px 0;
  }

  .service-diagnostics {
    padding: 36px 0;
  }

  .service-faq {
    padding: 36px 0;
  }

  .service-section-title {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .service-doctor-card,
  .service-doctors-all {
    padding: 24px 16px;
  }

  .service-doctor-card__photo-wrap,
  .service-doctor-card__photo,
  .service-doctor-card__placeholder {
    width: 90px;
    height: 90px;
  }

  .service-doctor-card__name {
    font-size: 15px;
  }

  .service-doctor-card__price {
    font-size: 16px;
  }

  .service-price-row {
    padding: 18px 16px;
  }

  .service-price-row__right {
    flex-direction: column;
    align-items: stretch;
  }

  .service-price-row__value {
    font-size: 15px;
  }

  .service-price-row__button {
    width: 100%;
    min-width: 0;
  }
}
