/* keuzehulp.css — Wizard styles */

.wizard-section {
  min-height: calc(100vh - 64px);
  padding-block: clamp(var(--space-8), 4vw, var(--space-16));
}

/* Progress */
.wizard-progress {
  display: none;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}
.progress-bar {
  height: 4px;
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width 0.4s var(--ease-out);
}
.progress-label {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-2);
}

/* Wizard Card */
.wizard-card {
  max-width: 720px;
  margin-inline: auto;
}

/* Intro */
.wizard-intro {
  text-align: center;
  padding: var(--space-10) var(--space-4);
}
.wizard-intro h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.wizard-intro p {
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}
.wizard-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Question */
.q-header {
  text-align: center;
  margin-bottom: var(--space-8);
}
.q-number {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}
.q-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.q-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
}

/* Options */
.q-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.q-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-interactive);
  position: relative;
}
.q-option:hover:not(.q-option-disabled) {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}
.q-option-selected {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 0 0 1px var(--color-primary);
}
.q-option-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.q-option-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.q-option-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  flex: 1;
}
.q-check {
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--text-base);
}

/* Wizard Nav */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.wizard-nav .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Results */
.results-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.results-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

/* Podium */
.results-podium {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
.result-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
}
.result-card-1 {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px oklch(from var(--color-accent) l c h / 0.15);
}
.result-rank {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
}
.result-card-1 .result-rank {
  background: var(--color-accent);
}
.result-body { flex: 1; }
.result-header-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.result-header-row h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
}
.result-match {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.match-bar {
  flex: 1;
  height: 8px;
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.match-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1s var(--ease-out);
}
.match-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  min-width: 5ch;
}
.result-best-for {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.result-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Rest List */
.results-rest {
  margin-bottom: var(--space-10);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.rest-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.rest-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
}
.rest-item:last-child { border-bottom: none; }
.rest-rank {
  width: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}
.rest-name {
  font-weight: 600;
  font-size: var(--text-sm);
  width: 140px;
  flex-shrink: 0;
}
.rest-bar {
  flex: 1;
  height: 6px;
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.rest-fill {
  height: 100%;
  border-radius: var(--radius-full);
}
.rest-pct {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  min-width: 3ch;
  text-align: right;
}

/* CTA */
.results-cta { max-width: 720px; margin-inline: auto; }

/* Mobile */
@media (max-width: 767px) {
  .result-card { flex-direction: column; gap: var(--space-3); padding: var(--space-4); }
  .result-rank { width: 36px; height: 36px; font-size: var(--text-base); }
  .trust-item { font-size: var(--text-xs); }
  .rest-name { width: 100px; font-size: var(--text-xs); }
}

/* Contact step */
.contact-step {
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
}
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
}
.field-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}
.field-group input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color 0.2s;
}
.field-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}
.field-group input::placeholder {
  color: var(--color-text-faint);
}
