.onboarding-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 40px;
  max-width: 700px;
  padding: 0 20px;
}

.onboarding-progress .step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 13px;
  color: #999;
  padding-top: 35px;
}

.onboarding-progress .step::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 2px solid #ccc;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.onboarding-progress .step.done {
  color: #28a745;
}

.onboarding-progress .step.done::before {
  background: #28a745;
  border-color: #28a745;
  content: '\2713';
  color: white;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
}

.onboarding-progress .step.current {
  color: #007bff;
  font-weight: bold;
}

.onboarding-progress .step.current::before {
  background: #007bff;
  border-color: #007bff;
}

.onboarding-progress .step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 12px;
  left: calc(50% + 12px);
  right: calc(-50% + 12px);
  height: 2px;
  background: #ccc;
  z-index: -1;
}

.onboarding-progress .step.done:not(:last-child)::after {
  background: #28a745;
}
