.qw-wizard {
  font-family: "Montserrat", Sans-serif;
  background: #ffffff;
  border-radius: 8px;
  padding: 28px 26px;
  color: #192a3d;
  max-width: 480px;
}
.qw-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}
.qw-progress-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e1e8ed;
  transition: background 0.2s ease;
}
.qw-progress-dot.qw-active,
.qw-progress-dot.qw-done {
  background: #c21d20;
}
.qw-step-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c21d20;
  font-weight: 600;
  margin-bottom: 6px;
}
.qw-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #192a3d;
}
.qw-step { display: none; }
.qw-step.qw-visible { display: block; }
.qw-field { margin-bottom: 16px; }
.qw-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #3a4f66;
}
.qw-field input[type="text"],
.qw-field input[type="email"],
.qw-field input[type="number"],
.qw-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d5dce2;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}
.qw-field textarea { resize: vertical; min-height: 70px; }
.qw-option-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.qw-option-group.qw-option-3col { grid-template-columns: 1fr 1fr 1fr; }
.qw-option {
  border: 1px solid #d5dce2;
  border-radius: 6px;
  padding: 12px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #3a4f66;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.qw-option:hover { border-color: #c21d20; }
.qw-option.qw-selected {
  border-color: #c21d20;
  background: #c21d20;
  color: #ffffff;
}
.qw-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  gap: 10px;
}
.qw-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.qw-btn-primary { background: #c21d20; color: #ffffff; }
.qw-btn-primary:hover { background: #a51215; }
.qw-btn-secondary { background: transparent; color: #3a4f66; }
.qw-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.qw-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eef1f4;
  font-size: 13px;
}
.qw-summary-row span:first-child { color: #6b7a89; }
.qw-summary-row span:last-child { font-weight: 600; text-align: right; }
.qw-done-state { text-align: center; padding: 20px 0; }
.qw-done-state .qw-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #c21d20;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}
.qw-error {
  color: #a51215;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.qw-error.qw-show { display: block; }
