.le-wizard-progress {
  margin-bottom: var(--le-space-8);
  padding: var(--le-space-5);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--le-border-light);
  border-radius: var(--le-radius-md);
  box-shadow: var(--le-shadow-sm);
}

.le-wizard-progress__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--le-space-2);
  margin-bottom: var(--le-space-5);
}

.le-wizard-progress__status {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--le-text-secondary);
}

.le-wizard-progress__title {
  font-family: var(--le-font-display);
  font-size: var(--le-text-lg);
  font-weight: 600;
  color: var(--le-text);
}

.le-wizard-progress__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: var(--le-space-3);
  margin: 0;
  padding: 0;
}

.le-wizard-progress__step {
  position: relative;
  padding: var(--le-space-3);
  border: 1px solid var(--le-border-light);
  border-radius: var(--le-radius-sm);
  background-color: #fff;
  text-align: center;
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-text-secondary);
  transition: border-color var(--le-transition-fast), color var(--le-transition-fast);
}

.le-wizard-progress__step .le-wizard-progress__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: var(--le-space-2);
  border-radius: 50%;
  border: 2px solid var(--le-border);
  font-size: var(--le-text-xs);
  font-weight: 600;
  color: var(--le-text);
  background-color: #fff;
}

.le-wizard-progress__step.is-complete {
  border-color: var(--le-accent);
  color: var(--le-text);
}

.le-wizard-progress__step.is-complete .le-wizard-progress__circle {
  background-color: var(--le-accent);
  border-color: var(--le-accent);
  color: #fff;
}

.le-wizard-progress__step.is-active {
  border-color: var(--le-primary);
  box-shadow: 0 0 0 3px rgba(31, 61, 88, 0.1);
  color: var(--le-text);
}

.le-wizard-progress__step.is-active .le-wizard-progress__circle {
  border-color: var(--le-primary);
  color: var(--le-primary);
}

@media (max-width: 640px) {
  .le-wizard-progress__steps {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
