.services-section {
  padding:
    110px
    max(var(--side-padding), calc((100vw - var(--container)) / 2));

  background:
    radial-gradient(circle at 12% 18%, rgba(248,170,56,.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);

  color: #101010;
}

.services-header {
  margin-bottom: 48px;
}

.section-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}

.services-header h2 {
  margin-top: 12px;

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.04em;
}

.services-header p {
  max-width: 520px;
  margin-top: 18px;

  color: rgba(16,16,16,.68);

  font-size: 16px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;

  min-height: 430px;

  border-radius: 18px;

  background: #fff;

  box-shadow:
    0 16px 45px rgba(0,0,0,.07);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.service-card::before {
  content: "";

  position: absolute;
  inset: 0;

  border: 1px solid rgba(0,0,0,.06);
  border-radius: inherit;

  pointer-events: none;

  transition: .35s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 28px 75px rgba(0,0,0,.13);
}

.service-card:hover::before {
  border-color: rgba(248,170,56,.38);
}

.service-card img {
  width: 100%;
  height: 245px;

  display: block;

  object-fit: cover;

  transition:
    transform .55s ease,
    filter .55s ease;
}

.service-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.service-number {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;

  font-size: 64px;
  line-height: 1;
  font-weight: 900;

  color: rgba(255,255,255,.65);

  text-shadow:
    0 8px 30px rgba(0,0,0,.28);

  pointer-events: none;
}

.service-content {
  position: relative;
  z-index: 2;

  padding: 24px;
}

.service-title {
  display: inline-flex;
  align-items: center;

  padding: 9px 15px;

  border-radius: 999px;

  background: rgba(248,170,56,.12);

  color: var(--accent);

  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-content p {
  margin-top: 16px;

  color: rgba(16,16,16,.68);

  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services-section {
    padding: 70px var(--side-padding);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    height: 220px;
  }

  .service-number {
    font-size: 52px;
  }
}