/* ── Schnellcheck-Seite ─────────────────────────────────────
   Setzt die CSS Custom Properties aus css/style.css voraus.
   ──────────────────────────────────────────────────────────── */

/* --- Sichtbarkeit (wird per JS getoggelt) --- */
.hidden { display: none; }

/* --- Seitenbereich --- */
.sc-section {
  background: var(--lightgrey);
  padding: 4rem 1rem 5rem;
}

/* --- Karte (zentrierte Box) --- */
.sc-wrap {
  max-width: 42rem;
  margin: 0 auto;
}

.sc-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .sc-card { padding: 2.25rem; }
}

/* --- Hauptüberschrift --- */
.sc-heading {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--red);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

@media (min-width: 640px) {
  .sc-heading { font-size: 1.875rem; line-height: 2.25rem; }
}

/* --- Fortschrittsbalken --- */
.progress-bar-container {
  width: 100%;
  background: var(--mid-grey);
  border-radius: var(--radius);
  overflow: hidden;
  height: 1rem;
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: var(--red);
  transition: width 0.3s ease-in-out;
  text-align: center;
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1rem;
  border-radius: var(--radius);
}

/* --- Start-Bereich --- */
.sc-start { text-align: center; }

.sc-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--anthrazit);
  margin-bottom: 1.5rem;
}

/* --- Fragen --- */
.sc-question {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--anthrazit);
  margin-bottom: 1.5rem;
}

/* --- Antwort-Optionen --- */
.action-button {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  transition: background var(--transition), transform 0.1s ease;
}

.action-button:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.answer-option {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  text-align: left;
  background: #f9fafb;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--anthrazit);
}

.answer-option:hover { background: #f3f4f6; border-color: var(--red); }
.answer-option:focus { border-color: var(--red); outline: none; }

/* --- Abschluss --- */
.sc-completion { text-align: center; }

.sc-score-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.sc-score-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--anthrazit);
  margin-bottom: 1.75rem;
}

/* --- Quick-Wins --- */
.sc-quickwins {
  text-align: left;
  background: var(--lightgrey);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.sc-quickwins-heading {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1rem;
}

.sc-quickwins-list {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--anthrazit);
  line-height: 1.7;
}

.sc-quickwins-list > li + li { margin-top: 0.75rem; }

/* --- Quick-Win Links (Affiliate) --- */
.quick-win-link { color: var(--red); text-decoration: underline; font-weight: 600; }
.quick-win-link:hover { color: var(--red-hover); }

.affiliate-notice {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

/* --- CTA nach dem Ergebnis --- */
.sc-cta {
  padding-top: 1.5rem;
  border-top: 1px solid var(--mid-grey);
  text-align: center;
}

.sc-cta p {
  font-size: 1rem;
  color: var(--anthrazit);
  margin-bottom: 1rem;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .action-button,
  .answer-option,
  .progress-bar { transition: none; }
}
