.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 760px;
  padding: 80px 24px 58px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1), transparent 38%),
    linear-gradient(180deg, #030304 0%, #070708 100%);
}

.services-section > .services-title {
  margin: 0 24px 48px;
  color: #fffaf0;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.services-section > .services-title strong {
  font-weight: 800;
}

.services-section > .services-title span {
  color: var(--gold-2);
  font-weight: 800;
}

.services-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 900px);
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.02);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 38px 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 74% 16%, rgba(0, 0, 0, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 -48px 70px rgba(255, 255, 255, 0.035);
  text-align: left;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  color: #fffaf0;
  font-size: 48px;
  line-height: 1;
}

.service-card h2 {
  color: #fffaf0;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.service-card h2::after {
  color: var(--gold-2);
  content: ".";
}

.service-card p {
  max-width: 390px;
  min-height: 42px;
  margin-top: 12px;
  color: rgba(248, 245, 237, 0.58);
  font-size: 18px;
  line-height: 1.12;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 26px;
  margin: 22px 0 30px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 26px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #000000, #1a1a1a);
  color: #fffaf0;
  font-size: 12px;
  font-weight: 700;
}

.service-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border-radius: 20px;
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.28);
}

.services-chevron {
  position: relative;
  width: 66px;
  height: 46px;
  margin-top: 56px;
}

.services-chevron span {
  position: absolute;
  left: 50%;
  display: block;
  width: 34px;
  height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transform: translateX(-50%) rotate(45deg);
}

.services-chevron span:first-child {
  top: 0;
}

.services-chevron span:last-child {
  top: 15px;
}

html[data-theme="light"] .services-section {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf7ef 0%, #f4ecde 100%);
}

html[data-theme="light"] .services-shell,
html[data-theme="light"] .service-card {
  background: rgba(255, 255, 255, 0.62);
}

html[data-theme="light"] .service-card h2 {
  color: #1b1b1d;
}

html[data-theme="light"] .services-section > .services-title {
  color: #1b1b1d;
}

html[data-theme="light"] .service-card p {
  color: rgba(27, 27, 29, 0.64);
}

@media (max-width: 900px) {
  .services-section {
    min-height: 1060px;
    padding: 70px 18px 54px;
  }

  .services-section > .services-title {
    margin-bottom: 36px;
    font-size: 40px;
  }

  .services-shell {
    grid-template-columns: 1fr;
    width: min(100%, 370px);
    padding: 14px;
    border-radius: 28px;
  }

  .service-card {
    min-height: 340px;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .service-icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    font-size: 38px;
  }

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