.services-page {
  background: #fff;
  color: #13161a;
}

.services-page__hero {
  min-height: 380px;
}

.services-page__hero .inner-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(19, 22, 26, 0.9) 0%,
    rgba(19, 22, 26, 0.72) 40%,
    rgba(19, 22, 26, 0.3) 72%,
    transparent 100%
  );
}

.services-page__hero .inner-hero__content {
  min-height: 380px;
  padding: 126px 0 84px;
}

.services-page__hero .simple-page__title {
  color: #fff;
}

.services-page__hero .hero-lead {
  color: rgba(232, 230, 225, 0.74);
}

.services-page__section {
  padding: 96px 0 112px;
}

.services-page__section--light {
  background: #f4f5f0;
}

.services-page__container {
  max-width: 1360px;
  padding-left: 0;
  padding-right: 0;
}

.services-page__head {
  margin-bottom: 48px;
}

.services-page__head .section-heading {
  color: #13161a;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.services-page__cards {
  align-items: stretch;
}

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

.services-page__extra-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(19, 22, 26, 0.08);
  background: #fff;
  color: #13161a;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.services-page__extra-card:hover {
  border-color: rgba(26, 143, 125, 0.42);
  background: #fff;
  transform: translateY(-1px);
}

.services-page__extra-card span {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.services-page__extra-card svg {
  flex-shrink: 0;
  color: var(--forest-teal);
  transition: transform 0.2s ease;
}

.services-page__extra-card:hover svg {
  transform: translateX(4px);
}

.services-page__cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background: #13161a;
}

.services-page__cta-bg,
.services-page__cta-overlay {
  position: absolute;
  inset: 0;
}

.services-page__cta-bg {
  background-image: url("../images/cta-bg.webp");
  background-size: cover;
  background-position: center;
}

.services-page__cta-overlay {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(26, 143, 125, 0.1) 0%,
      transparent 58%
    ),
    rgba(19, 22, 26, 0.85);
}

.services-page__cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services-page__cta-inner .section-heading {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.services-page__cta-inner p {
  max-width: 640px;
  margin: 0 auto 40px;
  color: rgba(232, 230, 225, 0.62);
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.services-page__cta-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.services-page__cta-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 1023px) {
  .services-page__extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .services-page__container {
    padding-left: 0;
    padding-right: 0;
  }

  .services-page__hero .inner-hero__content {
    min-height: 340px;
    padding: 104px 0 64px;
  }

  .services-page__section,
  .services-page__cta {
    padding: 80px 0;
  }

  .services-page__head {
    margin-bottom: 32px;
  }

  .services-page__head .section-heading {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

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

  .services-page__extra-card {
    padding: 20px;
  }
}
