.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--outline);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 3rem;
}

.step-card {
  background: var(--bg);
  padding: 2.25rem 2rem;
}

.step-num {
  font-family: var(--font-d);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--s3);
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
  user-select: none;
}

.step-title {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

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