/* SimpliExpense for Teams — marketing page styles on top of the shared dark-industrial theme. */

/* "How it works" — numbered steps reuse the .feature card look with a forge-amber index badge. */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.step {
  background: var(--surface);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(140, 148, 158, 0.15);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #16110a;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; color: var(--accent); }
.step p { font-size: 0.92rem; color: var(--text-2); }

/* Closing CTA section. */
.closing-copy { color: var(--text-2); font-size: 1.05rem; max-width: 34em; }
.closing-cta { margin-top: 8px; }
