/* ============================================================
   4. SERVICES SECTION
   ============================================================ */

.services {
  background: #FFFFFF;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 5rem 1.25rem;
  position: relative;
  z-index: 5;
}

@media (min-width: 640px) {
  .services {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 6rem 2rem;
  }
}

@media (min-width: 768px) {
  .services {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 8rem 2.5rem;
  }
}

.services__heading {
  color: #0C0C0C;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  font-size: clamp(3rem, 12vw, 160px);
  margin-bottom: 4rem;
}

@media (min-width: 640px) { .services__heading { margin-bottom: 5rem; } }
@media (min-width: 768px) { .services__heading { margin-bottom: 7rem; } }

.services__list {
  max-width: 64rem;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.15);
}

.service-item:first-child {
  border-top: 1px solid rgba(12, 12, 12, 0.15);
}

@media (min-width: 640px) { .service-item { padding: 2.5rem 0; gap: 2rem; } }
@media (min-width: 768px) { .service-item { padding: 3rem 0; gap: 3rem; } }

.service-item__num {
  flex: 0 0 auto;
  color: #0C0C0C;
  font-weight: 900;
  line-height: 1;
  font-size: clamp(3rem, 10vw, 140px);
}

.service-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.service-item__name {
  color: #0C0C0C;
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.2vw, 2.1rem);
}

.service-item__desc {
  color: #0C0C0C;
  font-weight: 300;
  line-height: 1.625;
  max-width: 42rem;
  font-size: clamp(0.85rem, 1.6vw, 1.25rem);
  opacity: 0.6;
}
