.page-hero {
  padding: 5rem 0 3rem;
}

.page-hero__inner {
  display: grid;
  gap: 1.1rem;
  max-width: 820px;
}

.apps-grid .card {
  display: grid;
  gap: 0.9rem;
}

.suite-more {
  max-width: 720px;
  margin-top: 2rem;
}

.suite-more p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 3rem;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid var(--border-2);
  font-weight: 800;
}
