/* Inline Quiz-Block — gemeinsame Styles für Landing & /check */
.quiz-block { width: 100%; }
.quiz-step { animation: qbFade 0.3s ease; }
@keyframes qbFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.quiz-eyebrow { color: var(--gold); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.75rem; }
.quiz-headline { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; line-height: 1.2; color: var(--navy); margin-bottom: 0.75rem; }
.quiz-lead { font-size: 15px; color: var(--gray); line-height: 1.6; margin-bottom: 1.5rem; }
.quiz-features { list-style: none; margin-bottom: 2rem; padding: 0; }
.quiz-features li { padding: 6px 0; font-size: 14px; color: var(--navy); }

.btn-gold { background: var(--gold); color: var(--navy); border: none; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 500; cursor: pointer; font-family: inherit; display: inline-block; text-decoration: none; }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); }
.btn-ghost-dark { background: transparent; color: var(--gray); border: 1px solid var(--border); padding: 13px 28px; border-radius: 8px; font-size: 14px; cursor: pointer; font-family: inherit; }
.btn-ghost-dark:hover { color: var(--navy); border-color: var(--navy); }

.quiz-progress { height: 4px; background: var(--light-bg); border-radius: 2px; margin-bottom: 0.5rem; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--gold); transition: width 0.3s ease; width: 0%; }
.quiz-progress-text { font-size: 12px; color: var(--gray); margin-bottom: 2rem; }

.q-block { animation: qbFade 0.25s ease; }
.q-question { font-family: 'Playfair Display', serif; font-size: 1.35rem; line-height: 1.3; color: var(--navy); margin-bottom: 0.75rem; font-weight: 600; }
.q-hint { font-size: 13px; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.5; padding: 0.75rem 1rem; background: var(--light-bg); border-radius: 8px; border-left: 3px solid var(--gold); }
.q-options { display: flex; flex-direction: column; gap: 8px; }
.q-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: all 0.15s; font-size: 14px; color: var(--navy); }
.q-option:hover { border-color: var(--gold); background: rgba(200,169,110,0.04); }
.q-option.selected { border-color: var(--gold); background: rgba(200,169,110,0.1); }
.q-radio { width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 50%; flex-shrink: 0; position: relative; }
.q-option.selected .q-radio { border-color: var(--gold); }
.q-option.selected .q-radio::after { content: ''; position: absolute; inset: 3px; background: var(--gold); border-radius: 50%; }
.q-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: 12px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.input { width: 100%; padding: 11px 14px; font-size: 14px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; color: var(--navy); background: var(--white); }
.input:focus { outline: none; border-color: var(--gold); }
.form-row.checkbox { display: flex; gap: 10px; align-items: flex-start; margin: 0.75rem 0; }
.form-row.checkbox input { width: auto; margin-top: 3px; accent-color: var(--gold); }
.form-row.checkbox label { font-size: 12px; color: var(--gray); line-height: 1.5; font-weight: 400; }
.form-row.checkbox a { color: var(--gold); }
.form-error { background: #FFEBEE; color: #b71c1c; padding: 0.85rem 1rem; border-radius: 8px; font-size: 13px; margin-bottom: 1rem; display: none; }
.form-error.show { display: block; }

.result-gauge { text-align: center; margin: 0 auto 1.5rem; }
.result-gauge svg { display: block; margin: 0 auto; }
.result-actions { display: flex; gap: 12px; margin-top: 2rem; flex-wrap: wrap; }
.result-pdf-note { margin-top: 1.5rem; padding: 1rem; background: #E8F5E9; border-radius: 8px; font-size: 13px; color: #1b5e20; }

/* Variants */
.quiz-embedded { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: 0 12px 40px rgba(13,27,42,0.06); border: 1px solid var(--border); }
.quiz-page { padding: 3rem 3.5rem; max-width: 700px; }

@media (max-width: 640px) {
  .quiz-embedded { padding: 1.5rem; border-radius: 12px; }
  .quiz-headline { font-size: 1.4rem; }
  .form-grid { grid-template-columns: 1fr; }
}
