.quiz-body { background: var(--bg); min-height: 100vh; }

.btn-sm { padding: 10px 20px; font-size: 0.72rem; }
.btn-lg { padding: 18px 42px; font-size: 0.82rem; }
.btn-full { width: 100%; }

.quiz-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
}

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

/* ============ PROGRESS ============ */
.quiz-progress { margin-bottom: 48px; }

.quiz-progress-bar {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.quiz-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
}

.quiz-progress-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ STEPS ============ */
.quiz-step {
  display: none;
  animation: quizFadeIn 0.5s ease forwards;
}
.quiz-step.active { display: block; }

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

#step-intro { text-align: center; }
#step-intro h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 18px 0 22px;
}
.quiz-intro-text {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1rem;
}
#step-intro .eyebrow { display: block; }

.quiz-q-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.quiz-step h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 32px;
}

/* ============ OPTIONS ============ */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.15s;
  font-family: var(--font-sans);
  color: var(--text);
}
.quiz-option:hover {
  border-color: var(--gold);
  background: rgba(201,164,92,0.06);
  transform: translateX(4px);
}
.quiz-option.selected {
  border-color: var(--gold);
  background: rgba(201,164,92,0.1);
}

.quiz-option-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
}
.quiz-option-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============ LEAD FORM ============ */
.quiz-lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.quiz-lead-form input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 16px 18px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s;
}
.quiz-lead-form input:focus { border-color: var(--gold); }

/* ============ RESULT ============ */
#step-result .eyebrow { display: block; }
#step-result h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }

.quiz-result-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.quiz-result-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(160deg, rgba(201,164,92,0.1), transparent 70%);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 28px 30px;
  margin-bottom: 36px;
}

.quiz-result-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.quiz-result-profile {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
}

.quiz-result-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .quiz-shell { padding: 120px 0 60px; }
  .quiz-option { padding: 16px 18px; }
  .quiz-result-actions { flex-direction: column; }
  .quiz-result-actions .btn { text-align: center; }
}
