/* ============================================
   SERVICES
   ============================================ */

.services {
  background: var(--white-dim);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(11, 27, 58, 0.18);
  border-color: transparent;
}

.service-card__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--violet-500);
  letter-spacing: 0.08em;
}

.service-card__icon {
  width: 46px;
  height: 46px;
  margin: 22px 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--violet-100);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--violet-500);
}

.service-card h3 {
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--grey-600);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 13.5px;
  color: var(--navy-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-300);
  flex-shrink: 0;
}

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