.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-xl);
  padding: var(--space-md) 0;
}

.step {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.step--pending {
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
}

.step--active {
  background: var(--color-primary);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.step--done {
  background: var(--color-success-bg);
  color: var(--color-success);
  font-weight: 600;
}

.step .icon {
  width: 14px;
  height: 14px;
}

.step-connector {
  width: 24px;
  height: 2px;
  background: var(--color-border);
  flex-shrink: 0;
}

.step-connector--done {
  background: var(--color-success);
}

@media (max-width: 600px) {
  .step {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .step-connector {
    width: 12px;
  }
}
