/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 1.8rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 196, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  background: rgba(0, 245, 196, 0.05);
}

.step-circle svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

.step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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





/* No specific styles for this page */


