/* ═══════════════════════════════════
   KEUZEHULP — Supplement Quiz
═══════════════════════════════════ */

.quiz {
  max-width: 640px;
  margin: 0 auto;
}

.quiz__progress {
  height: 3px;
  background: var(--border);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-12);
  overflow: hidden;
}

.quiz__progress-bar {
  height: 100%;
  background: var(--acc);
  border-radius: var(--r-full);
  width: 0%;
  transition: width var(--dur-med) var(--ease-out);
}

.quiz__question {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiz__step-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: var(--sp-3);
}

.quiz__title {
  font-family: var(--heading);
  font-size: var(--text-xl);
  color: var(--deep);
  margin-bottom: var(--sp-6);
  line-height: 1.3;
}

.quiz__options {
  display: grid;
  gap: var(--sp-3);
}

.quiz__option {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  font-size: 15px;
  font-weight: 500;
  color: var(--deep);
  -webkit-user-select: none;
  user-select: none;
}

.quiz__option:hover {
  border-color: var(--acc);
  transform: translateX(4px);
}

.quiz__option.selected {
  border-color: var(--acc);
  background: var(--pale);
}

.quiz__option-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast);
}

.quiz__option.selected .quiz__option-radio {
  border-color: var(--acc);
}

.quiz__option.selected .quiz__option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--acc);
  border-radius: 50%;
}

.quiz__nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

/* Results */

.quiz__results {
  max-width: 960px;
  margin: 0 auto;
}

.quiz__results-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.quiz__results-header .section-label {
  justify-content: center;
}

.quiz__result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: border-color var(--dur-med) var(--ease-out),
              transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}

.quiz__result-card:hover {
  border-color: var(--acc);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quiz__result-icon {
  width: 56px;
  height: 56px;
  background: var(--pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.quiz__result-name {
  font-family: var(--heading);
  font-size: var(--text-lg);
  color: var(--deep);
  margin-bottom: var(--sp-2);
}

.quiz__result-reason {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.quiz__result-price {
  font-family: var(--heading);
  font-size: var(--text-base);
  color: var(--deep);
  margin-bottom: var(--sp-1);
}

.quiz__result-dagprijs {
  font-size: var(--text-sm);
  color: var(--acc);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}

.quiz__result-link {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--acc);
  text-decoration: none;
  transition: color var(--dur-fast);
}

.quiz__result-link:hover {
  color: var(--deep);
}

.quiz__disclaimer {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  font-style: italic;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */

@media (max-width: 768px) {
  .quiz__question {
    min-height: auto;
  }

  .quiz__title {
    font-size: var(--text-lg);
  }

  .quiz__results .grid-3 {
    grid-template-columns: 1fr !important;
  }
}
