.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 24px;
}

.wizard-progress span {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbe5e3;
  text-indent: -999px;
}

.wizard-progress span.is-complete,
.wizard-progress span.is-current {
  background: var(--teal-dark);
}

.wizard-step[hidden] {
  display: none;
}

.wizard-step h4 {
  margin: 0 0 8px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.wizard-step > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.wizard-option-grid {
  display: grid;
  gap: 10px;
}

.wizard-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 13px 15px;
  border: 1px solid #c9d5d3;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.wizard-option:has(input:checked) {
  border-color: var(--teal-dark);
  background: #e9faf7;
  box-shadow: 0 0 0 2px rgba(0, 169, 157, 0.1);
}

.wizard-option input {
  width: 19px;
  min-height: 19px;
  margin: 0;
  accent-color: var(--teal-dark);
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.wizard-actions .button {
  border: 0;
  cursor: pointer;
}

.wizard-back {
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  color: var(--teal-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.wizard-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: #6d7b7f;
  font-size: 12px;
}

.wizard-context strong {
  color: var(--teal-dark);
}

@media (max-width: 640px) {
  .wizard-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .wizard-actions .button,
  .wizard-back {
    width: 100%;
  }
}
