/* Assessment page - enterprise UX */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.step-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.step-indicator.active + .step-label,
.step-item:has(.step-indicator.active) .step-label {
  color: rgba(255,255,255,0.9);
}
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 2px;
  transition: width 0.3s ease;
}
