.page-services {
  background-image: linear-gradient(rgba(26, 42, 54, 0.5), rgba(26, 42, 54, 0.24)),
    url("./img/IMG_2670.jpeg");
  background-position: center;
  background-size: cover;
  padding-bottom: 48px;
}

.services-section {
  display: grid;
  gap: 28px;
  padding: clamp(32px, 6vw, 72px) 0 48px;
}

.services-intro {
  display: grid;
  gap: 14px;
  max-width: 780px;
  color: #ffffff;
}

.services-intro__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.services-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.8;
}

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

.service-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.service-card--dark {
  color: #455a64;
  background: #ffffff;
}

.service-card__eyebrow {
  color: inherit;
  opacity: 0.75;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.service-card--dark .feature-list li::before {
  background: var(--brand);
}

.service-card:not(.service-card--dark) h2 {
  color: var(--brand);
}

.services-actions {
  justify-content: flex-start;
}

@media (max-width: 920px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .services-section {
    gap: 20px;
    padding: 24px 0 32px;
  }

  .services-copy {
    font-size: 17px;
    line-height: 1.6;
  }

  .service-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

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