/* Alix — request wizard */
.wizard {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 0;
  overflow: hidden;
}
.wiz-progress {
  height: 6px;
  background: rgba(10, 53, 122, 0.08);
}
.wiz-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient-brand);
  transition: width 0.4s var(--ease);
}
.wiz-steps {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  min-height: 320px;
}
.wiz-h {
  margin-bottom: 1.4rem;
}
.wiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.4rem, 4vw, 2.4rem);
  border-top: 1px solid rgba(10, 53, 122, 0.08);
}
.wiz-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* type cards */
.type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.type-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
  text-align: start;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--glass-border);
  background: var(--glass-bg);
  transition: 0.25s var(--ease);
}
.type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}
.type-card.on {
  border-color: var(--alix-blue);
  box-shadow: var(--glow);
  background: color-mix(in srgb, var(--alix-blue) 8%, white);
}
.type-ico {
  font-size: 1.8rem;
}
.type-card strong {
  color: var(--text-strong);
}

/* fields */
.field {
  margin-bottom: 1.4rem;
}
.f-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-strong);
}
.req {
  color: #e23;
}
.f-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-strong);
  color: var(--text-strong);
  font: inherit;
}
.f-input:focus-visible {
  outline: 2px solid var(--alix-blue);
}
.opt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.opt {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  transition: 0.2s var(--ease);
}
.opt:hover {
  border-color: var(--alix-blue);
}
.opt.on {
  background: color-mix(in srgb, var(--alix-blue) 14%, white);
  border-color: var(--alix-blue);
  color: var(--alix-blue-deep);
  font-weight: 600;
}

.svc-banner {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(43, 164, 255, 0.12);
  color: var(--alix-blue-deep);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

/* review */
.review {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.rev-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(10, 53, 122, 0.12);
}
.rev-row span {
  color: var(--text-muted);
}
.rev-row b {
  color: var(--text-strong);
  text-align: end;
}

/* flash + success */
.wiz-flash {
  background: #fff3f3;
  color: #c0392b;
  border: 1px solid #f3c0c0;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: 0.25s var(--ease);
}
.wiz-flash.show {
  opacity: 1;
  transform: none;
}
.wiz-success {
  padding: 1.5rem 0;
}
.success-mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: var(--glow);
}
.wiz-success .btn {
  margin-top: 1.4rem;
}

@media (max-width: 540px) {
  .type-grid {
    grid-template-columns: 1fr;
  }
}
