.services-page__intro {
  width: 100%;
  padding: 1.45rem 1.5rem 1.65rem;
}

.services-page__intro h1 {
  max-width: 880px;
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.services-page__intro > p:not(.eyebrow) {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--color-text-soft);
  line-height: 1.68;
}

.services-page__actions {
  margin-top: 1.25rem;
}

.services-list {
  width: 100%;
  padding: 0 1.5rem 0.6rem;
}

.service-group {
  margin: 0 0 0.85rem;
}

.service-group__content {
  position: relative;
  padding: 0.55rem 0.8rem 0.75rem;
}

.service-group__content::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  left: 50%;
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(180deg, transparent, rgba(120, 183, 221, 0.58) 18%, rgba(255, 255, 255, 0.96) 50%, rgba(120, 183, 221, 0.58) 82%, transparent);
  box-shadow: 0 0 8px rgba(98, 166, 208, 0.3);
  pointer-events: none;
}

.service-group__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.32rem 2.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-group__link {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0.52rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--color-text);
  line-height: 1.45;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

.service-group__link:hover,
.service-group__link:focus-visible {
  border-color: rgba(106, 166, 203, 0.36);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(224, 242, 253, 0.9), rgba(255, 255, 255, 0.82));
  box-shadow: 0 0 13px rgba(99, 171, 214, 0.18);
  color: var(--color-blue-deep);
}

.service-detail {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.2rem 1.5rem 0.55rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-detail__back {
  width: fit-content;
  margin: 0.15rem 0 1.1rem;
}

.service-detail__header {
  max-width: 960px;
  margin: 0;
  padding: 0 0 1.2rem;
}

.service-detail__header h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.service-detail__body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 1.5rem;
  align-items: start;
  padding: 1.7rem 0 0.35rem;
}

.service-detail__body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(143, 191, 220, 0.45) 15%, rgba(255, 255, 255, 0.98) 50%, rgba(143, 191, 220, 0.45) 85%, transparent);
  box-shadow: 0 0 9px rgba(112, 178, 218, 0.34), 0 0 18px rgba(255, 255, 255, 0.85);
}

.service-detail__body::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 25%;
  left: 25%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95), rgba(145, 204, 238, 0.18) 48%, transparent 75%);
  filter: blur(4px);
  pointer-events: none;
}

.service-detail__description-wrap {
  min-width: 0;
}

.service-detail__description {
  max-width: 780px;
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1.02rem;
  line-height: 1.68;
}

.service-price {
  padding: 0.85rem 1rem;
  border: 1px solid #a8c6d8;
  border-radius: 8px;
  background: var(--color-blue-pale);
  box-shadow: 0 3px 10px rgba(48, 102, 137, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.service-price span,
.service-price strong {
  display: block;
}

.service-price span {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.service-detail__actions {
  width: calc(100% - 210px - 1.5rem);
  box-sizing: border-box;
  justify-content: flex-end;
  margin-top: 1.1rem;
  padding-right: clamp(3.5rem, 9vw, 8rem);
}
