/* ============================================================
   IT-Check – Styles (No23 Digital Designsystem, siehe design.md)
   Petrol als Basis, Giftgrün nur als Signal, Creme statt Grau,
   Inter mit fetten Headlines, Pillen-Buttons, 20px-Radien.
   ============================================================ */

:root {
  /* Markenfarben – abgeleitet von no23digital.com */
  --petrol: #256362;
  --petrol-deep: #052e26;
  --navy: #112b36;
  --accent: #a8e10f;
  --accent-dark: #8fc00a;
  --cream: #f5f2f0;
  --cream-deep: #efeee7;
  --grad-petrol: linear-gradient(135deg, #2b6f6d 0%, #112b36 100%);

  --ink: #111112;
  --gray-600: #555555;
  --gray-400: #888888;
  --white: #ffffff;

  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1120px;

  /* Semantische Ergebnis-Farben (Ampel/Stufen) */
  --ok: #2e9e5b;
  --warn: #d7a021;
  --risk: #e07b39;
  --critical: #cf3f3f;

  --line: rgba(17, 17, 18, 0.07);
  --shadow-hover: 0 16px 40px rgba(17, 43, 54, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap { width: min(var(--maxw), 92vw); margin: 0 auto; }

main { flex: 1; padding: 56px 0 96px; }

h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

a { color: var(--petrol); }

/* Giftgrün-Marker – genau einmal pro Seite (Hero-Headline) */
.accent-line {
  background: linear-gradient(transparent 62%, var(--accent) 62%,
              var(--accent) 94%, transparent 94%);
}

/* ---------- Header / Footer ---------- */

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.3; }

.brand-name { font-weight: 800; letter-spacing: -0.01em; font-size: 15px; }

.brand-claim { font-size: 13px; font-weight: 400; color: var(--gray-600); }

.header-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--petrol-deep);
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.footer-left { display: flex; align-items: center; gap: 14px; }

/* Logo auf dunklem Grund: immer auf weißem Chip */
.footer-logo-chip {
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
  display: inline-flex;
}

.footer-logo-chip img { height: 22px; width: auto; display: block; }

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-left: 18px;
}

.site-footer a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Buttons (immer Pillen) ---------- */

.btn {
  display: inline-block;
  border: none;
  border-radius: 100px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--petrol);
  color: var(--white);
  padding: 14px 30px;
  box-shadow: 0 4px 20px rgba(37, 99, 98, 0.30);
}

.btn-primary:hover { background: var(--petrol-deep); }

.btn-lg { font-size: 16px; padding: 18px 36px; }
.btn-sm { font-size: 0.85rem; padding: 10px 20px; }
.btn-block { width: 100%; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 24px;
}

.btn-ghost:hover { background: var(--petrol-deep); border-color: var(--petrol-deep); color: var(--white); }

.btn:focus-visible,
input:focus-visible,
.option:focus-visible {
  outline: 3px solid rgba(37, 99, 98, 0.45);
  outline-offset: 2px;
}

/* ---------- Start / Auswahl ---------- */

.hero { text-align: center; padding: 40px 0 8px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  background: var(--petrol-deep);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero .lead,
.thanks .lead {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink);
}

.benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 44px auto;
  max-width: 980px;
  text-align: left;
  counter-reset: benefit;
}

.benefits li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--gray-600);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits li:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.benefits strong {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.benefit-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  font-style: normal;
}

.micro { font-size: 13px; color: var(--gray-400); margin-top: 18px; }

/* Quiz-Auswahl */

.chooser-list {
  display: grid;
  gap: 24px;
  max-width: 760px;
  margin: 16px auto 0;
}

.chooser-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chooser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.chooser-card h2 { margin-bottom: 8px; font-weight: 900; }

.chooser-card p { color: var(--gray-600); font-size: 15px; }

.chooser-meta {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--petrol-deep);
}

/* ---------- Quiz ---------- */

.quiz-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.progress {
  flex: 1;
  height: 8px;
  background: rgba(17, 17, 18, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--petrol);
  border-radius: 100px;
  transition: width 0.35s ease;
}

.progress-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  white-space: nowrap;
}

.q-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(17, 43, 54, 0.06);
  padding: clamp(26px, 4vw, 48px);
  animation: slide-in 0.3s ease;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Themen-Label über der Frage – im Stil der Sektions-Labels */
.topic-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.topic-chip::before {
  content: "";
  flex: none;
  width: 40px;
  height: 2px;
  background: var(--petrol);
}

.q-text {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.q-options { display: grid; gap: 12px; }

.option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  font: inherit;
  font-size: 15.5px;
  background: var(--cream-deep);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.option:hover { border-color: var(--petrol); background: var(--cream); }

.option.selected { border-color: var(--petrol); background: var(--cream); }

.option-letter {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(17, 17, 18, 0.12);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--petrol-deep);
  text-transform: uppercase;
}

.option.selected .option-letter,
.option:hover .option-letter {
  background: var(--petrol);
  border-color: var(--petrol);
  color: var(--white);
}

/* ---------- Dankeseite / Score ---------- */

.thanks { text-align: center; padding: 8px 0 30px; }

.score-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  background: var(--grad-petrol);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.score-ring-wrap { position: relative; width: 150px; height: 150px; flex: none; }

.score-ring { width: 100%; height: 100%; transform: rotate(-90deg); }

.ring-bg, .ring-val {
  fill: none;
  stroke-width: 11;
  stroke-linecap: round;
}

.ring-bg { stroke: rgba(255, 255, 255, 0.15); }

.ring-val {
  stroke: var(--accent);
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.25, 0.8, 0.35, 1), stroke 0.4s ease;
}

.score-num {
  position: absolute;
  inset: 0;
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  align-items: baseline;
  column-gap: 2px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.score-num small { font-size: 1rem; font-weight: 700; opacity: 0.75; }

.score-meta { max-width: 420px; text-align: left; }

.score-kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.score-tier {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 6px 0 10px;
}

.score-hint { font-size: 15px; color: rgba(255, 255, 255, 0.85); }

/* ---------- Report + Blur-Gate ---------- */

.report {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.report-body { padding: clamp(28px, 4vw, 52px); }

.report-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.report-head h2 { font-weight: 900; }

.report-date { font-size: 13px; color: var(--gray-400); }

/* Report-Zwischenüberschriften im Sektions-Label-Stil */
.report-body h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin: 36px 0 12px;
}

.report-body h3::before {
  content: "";
  flex: none;
  width: 24px;
  height: 2px;
  background: var(--petrol);
}

.report-note { font-size: 14px; color: var(--gray-600); margin-bottom: 14px; }

.report.locked .report-body {
  filter: blur(9px);
  user-select: none;
  pointer-events: none;
}

.gate {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(245, 242, 240, 0.35), rgba(245, 242, 240, 0.8));
  overflow-y: auto;
}

.gate-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: clamp(26px, 4vw, 40px);
  width: min(480px, 100%);
  text-align: center;
  margin: auto 0;
}

.gate-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }

.gate-card h2 { font-weight: 900; }

.gate-sub { font-size: 15px; color: var(--gray-600); margin: 12px 0 22px; }

.field { text-align: left; margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.field .label-hint { font-weight: 400; color: var(--gray-400); }

.field input {
  width: 100%;
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid rgba(17, 17, 18, 0.14);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.field input:focus { border-color: var(--petrol); }

.field input.invalid { border-color: var(--critical); }

/* Honeypot unsichtbar halten */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
  font-size: 12.5px;
  color: var(--gray-600);
  margin: 6px 0 20px;
  cursor: pointer;
}

.consent input { margin-top: 3px; accent-color: var(--petrol); }

.form-error {
  background: #fdecec;
  color: var(--critical);
  border: 1px solid #f3c2c2;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  padding: 10px 14px;
  margin-bottom: 14px;
  text-align: left;
}

/* ---------- Kategorien & Ampel ---------- */

.cat-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr 52px;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14.5px;
}

.cat-label { font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }

.cat-bar {
  height: 10px;
  background: rgba(17, 17, 18, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.cat-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.8s ease;
}

.cat-pct { text-align: right; font-weight: 800; color: var(--petrol-deep); }

.weakest-note {
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  background: var(--cream);
  border-left: 3px solid var(--petrol);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
}

.insurance-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ampel {
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(17, 43, 54, 0.08);
}

.ampel.green { background: var(--ok); }
.ampel.yellow { background: var(--warn); }
.ampel.red { background: var(--critical); }

/* ---------- Empfehlungen ---------- */

.rec-card {
  display: flex;
  gap: 16px;
  border-left: 5px solid var(--gray-400);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 12px;
  background: var(--cream-deep);
}

.rec-card.warn { border-left-color: var(--warn); }
.rec-card.risk { border-left-color: var(--risk); }
.rec-card.critical { border-left-color: var(--critical); }

.rec-prio {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}

.rec-topic {
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.rec-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: 2px;
  color: var(--white);
  white-space: nowrap;
}

.rec-badge.warn { background: var(--warn); }
.rec-badge.risk { background: var(--risk); }
.rec-badge.critical { background: var(--critical); }

.rec-answer { font-size: 13px; color: var(--gray-400); margin: 4px 0 8px; }

.rec-text { font-size: 15px; color: var(--ink); }

.ok-list { list-style: none; display: grid; gap: 8px; }

.ok-list li { display: flex; gap: 10px; align-items: baseline; font-size: 15px; color: var(--gray-600); }

.ok-list strong { color: var(--ink); }

.ok-check { color: var(--ok); font-weight: 900; flex: none; }

.all-ok {
  background: #ecf8f1;
  border: 1px solid #cdeeda;
  color: var(--ok);
  border-radius: var(--radius-sm);
  padding: 18px;
  font-weight: 700;
}

/* Nächster Schritt als Callout im Petrol-Verlauf */
.next-step {
  margin-top: 40px;
  background: var(--grad-petrol);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}

.next-step h3 {
  margin: 0 0 10px;
  color: var(--accent);
}

.next-step h3::before { background: var(--accent); }

.next-step p {
  color: var(--white);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  line-height: 1.5;
}

/* ---------- CTA nach Freischaltung ---------- */

.report-actions { margin-top: 32px; }

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--grad-petrol);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}

.cta-banner h2 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 8px;
}

.cta-banner p { font-size: 15px; color: rgba(255, 255, 255, 0.85); max-width: 520px; }

.cta-buttons { display: flex; flex-direction: column; gap: 12px; flex: none; }

/* Conversion-Button auf dunkler Fläche: Giftgrün, Text in Petrol-Deep */
.cta-banner .btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--petrol-deep);
  box-shadow: 0 4px 20px rgba(168, 225, 15, 0.35);
}

.cta-banner .btn-primary:hover { background: var(--accent); }

.cta-banner .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.cta-banner .btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); color: var(--white); }

.restart-row { text-align: center; margin-top: 26px; }

.restart-row .btn-ghost { border-width: 1.5px; border-color: rgba(17, 17, 18, 0.25); }

/* ---------- Termin-Modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(17, 43, 54, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 5vh 16px 40px;
}

.modal-overlay[hidden] { display: none; }

.modal-dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 820px;
  width: 100%;
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.modal-dialog h2 { font-weight: 900; padding-right: 48px; }

.modal-sub { color: var(--gray-600); font-size: 15px; margin: 10px 0 22px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.modal-close:hover { background: var(--cream-deep); transform: rotate(90deg); }

.booking-frame {
  width: 100%;
  height: min(660px, 68vh);
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

/* HubSpot-Meetings-Embed (Iframe wird vom HubSpot-Script injiziert) */
.meetings-iframe-container {
  width: 100%;
  min-height: min(660px, 68vh);
}

.meetings-iframe-container iframe {
  border-radius: var(--radius-sm);
}

.booking-fallback {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
}

.booking-fallback p { color: var(--gray-600); font-size: 15px; }

.booking-fallback strong { color: var(--ink); }

.booking-mail {
  display: inline-block;
  margin-top: 14px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent-dark);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

body.modal-open { overflow: hidden; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .benefits { grid-template-columns: 1fr; }
  .score-card { flex-direction: column; text-align: center; }
  .score-meta { text-align: center; }
  .quiz-top { flex-wrap: wrap; }
  .progress { order: 3; flex-basis: 100%; }
}

@media (max-width: 560px) {
  main { padding: 32px 0 64px; }
  .btn-lg { width: 100%; }
  .gate-card, .q-card, .modal-dialog { padding: 32px 24px; }
  .brand-claim { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Druck (PDF-Export des Reports) ---------- */

@media print {
  body { background: #fff; }
  .site-header, .site-footer, .thanks, .report-actions, .gate, .modal-overlay { display: none !important; }
  main { padding: 0; }
  .wrap { width: 100%; }
  .score-card { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .report { border: none; }
  /* Gesperrter Report bleibt auch beim Drucken verborgen */
  .report.locked .report-body { display: none; }
  .rec-card { break-inside: avoid; }
}
