/* ==========================================================================
   KI-Hinweis — Design-System
   Reines CSS, keine Frameworks, keine externen Fonts.
   Light-Mode = Default, Dark-Mode via prefers-color-scheme.
   Aesthetik: seriös-modern, Compliance-Vertrauen. Tiefblau + Cyan-Akzent.
   ========================================================================== */

/* ---------- 1. Design-Tokens ---------- */
:root {
  /* Farben — Light */
  --c-bg: #f7f9fc;
  --c-surface: #ffffff;
  --c-surface-2: #eef3f9;
  --c-text: #16283b;
  --c-text-muted: #4d6178;
  --c-heading: #0b2540;
  --c-primary: #0b2540;          /* Tiefblau — Marke */
  --c-primary-hover: #143a5f;
  --c-on-primary: #ffffff;
  --c-accent: #0e7c9e;           /* Cyan/Tuerkis — Akzent, AA-tauglich auf Weiss */
  --c-accent-strong: #0a637e;
  --c-accent-soft: #e3f4f9;
  --c-border: #d7e0ea;
  --c-border-strong: #b3c2d1;
  --c-code-bg: #0e1e30;
  --c-code-text: #dceaf5;
  --c-note-bg: #e3f4f9;
  --c-note-border: #0e7c9e;
  --c-warn-bg: #fdf3e0;
  --c-warn-border: #b26a00;
  --c-warn-text: #6e4200;
  --c-success: #1a7f4e;
  --c-focus: #0e7c9e;

  /* Abstaende */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Schatten — dezent, mehrstufig */
  --shadow-sm: 0 1px 2px rgba(11, 37, 64, 0.06), 0 1px 1px rgba(11, 37, 64, 0.04);
  --shadow-md: 0 2px 4px rgba(11, 37, 64, 0.06), 0 6px 16px rgba(11, 37, 64, 0.08);
  --shadow-lg: 0 4px 8px rgba(11, 37, 64, 0.08), 0 16px 40px rgba(11, 37, 64, 0.12);

  /* Typo-Skala (mobile-first, fluid) */
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --fs-2xl: clamp(1.9rem, 1.4rem + 2.6vw, 2.9rem);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "Cascadia Code", Consolas,
    "Liberation Mono", Menlo, monospace;

  --content-max: 72rem;
  --text-max: 46rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-bg: #0a1420;
    --c-surface: #101f30;
    --c-surface-2: #16283b;
    --c-text: #d5e2ee;
    --c-text-muted: #98acc0;
    --c-heading: #eaf2f9;
    --c-primary: #2f6ea5;
    --c-primary-hover: #3d81bb;
    --c-on-primary: #ffffff;
    --c-accent: #4cc4e0;
    --c-accent-strong: #7fd6ea;
    --c-accent-soft: #10303d;
    --c-border: #24384d;
    --c-border-strong: #38516b;
    --c-code-bg: #060d15;
    --c-code-text: #cfe2f0;
    --c-note-bg: #10303d;
    --c-note-border: #4cc4e0;
    --c-warn-bg: #33260e;
    --c-warn-border: #d99a2b;
    --c-warn-text: #f0cd8a;
    --c-success: #4dc98a;
    --c-focus: #4cc4e0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.4), 0 6px 16px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.5), 0 16px 40px rgba(0, 0, 0, 0.55);
  }
}

/* ---------- 2. Reset / Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0; /* kein horizontaler Overflow in Flex/Grid */
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  color: var(--c-heading);
  line-height: 1.25;
  margin: 0 0 var(--sp-4);
  overflow-wrap: break-word;
}

h1 { font-size: var(--fs-2xl); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: var(--fs-lg); font-weight: 700; }
h4 { font-size: var(--fs-md); font-weight: 600; }

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { color: var(--c-accent-strong); }

ul, ol { padding-left: 1.4em; margin: 0 0 var(--sp-4); }
li { margin-bottom: var(--sp-2); }

hr {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: var(--sp-6) 0;
}

strong { color: var(--c-heading); }

/* Fokus-Stile — deutlich sichtbar, AA */
:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Skip-Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-primary);
  color: var(--c-on-primary);
  padding: var(--sp-2) var(--sp-4);
  border-radius: 0 0 var(--r-sm) 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
  color: var(--c-on-primary);
}

/* ---------- 3. Layout-Container ---------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.container--text {
  max-width: var(--text-max);
}

.section {
  padding-block: var(--sp-7);
}

.section--alt {
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
}

.section-head {
  max-width: var(--text-max);
  margin: 0 auto var(--sp-6);
  text-align: center;
}
.section-head p { color: var(--c-text-muted); }

/* ---------- 4. Header / Nav (mobil: einfach umbrechend, kein Burger) ---------- */
.site-header {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2) var(--sp-5);
  padding-block: var(--sp-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 800;
  font-size: var(--fs-md);
  color: var(--c-heading);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--c-accent); }
.brand svg { flex: none; }

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1) var(--sp-2);
  margin: 0;
  padding: 0;
}
.site-nav li { margin: 0; }

.site-nav a {
  display: inline-block;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  color: var(--c-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-sm);
}
.site-nav a:hover {
  background: var(--c-surface-2);
  color: var(--c-heading);
}
.site-nav a[aria-current="page"] {
  background: var(--c-accent-soft);
  color: var(--c-accent-strong);
  font-weight: 700;
}

@media (max-width: 640px) {
  .site-header__inner { justify-content: center; }
  .site-nav { margin-left: 0; width: 100%; }
  .site-nav ul { justify-content: center; }
}

/* ---------- 5. Footer ---------- */
.site-footer {
  background: var(--c-primary);
  color: #c7d6e4;
  margin-top: var(--sp-8);
  padding-block: var(--sp-6);
  font-size: var(--fs-sm);
}
@media (prefers-color-scheme: dark) {
  .site-footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    color: var(--c-text-muted);
  }
}

.site-footer a { color: inherit; }
.site-footer a:hover { color: #ffffff; }
@media (prefers-color-scheme: dark) {
  .site-footer a:hover { color: var(--c-accent); }
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  margin: 0 0 var(--sp-4);
  padding: 0;
}
.site-footer__links li { margin: 0; }
/* Touch-Ziel >= 24px (WCAG 2.2, 2.5.8): Links bekommen vertikales Padding. */
.site-footer__links a {
  display: inline-block;
  padding: 0.4rem 0.2rem;
}

.site-footer__disclaimer {
  opacity: 0.85;
  max-width: var(--text-max);
}

.site-footer__meta {
  margin-top: var(--sp-4);
  opacity: 0.7;
}

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: var(--fs-base);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-primary);
  color: var(--c-on-primary);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--c-primary-hover);
  color: var(--c-on-primary);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--c-heading);
  border-color: var(--c-border-strong);
}
.btn-ghost:hover {
  background: var(--c-surface-2);
  border-color: var(--c-accent);
  color: var(--c-heading);
}

.btn--lg { padding: 0.9rem 1.9rem; font-size: var(--fs-md); }
.btn--sm { padding: 0.4rem 0.9rem; font-size: var(--fs-sm); }
.btn--block { width: 100%; }

/* ---------- 7. Cards + Grid ---------- */
.grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .grid--2, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 600px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.card > * { margin: 0; }
.card h3, .card h4 { margin: 0; }
.card p { color: var(--c-text-muted); }
.card .card__link { margin-top: auto; font-weight: 600; }

.card--hover {
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.card--hover:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--c-accent);
}

.card--accent {
  border-top: 4px solid var(--c-accent);
}

.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-md);
  background: var(--c-accent-soft);
  color: var(--c-accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Schritt-Nummern ("So funktioniert's") */
.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-pill);
  background: var(--c-primary);
  color: var(--c-on-primary);
  font-weight: 800;
  font-size: var(--fs-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- 8. Hero ---------- */
.hero {
  padding-block: var(--sp-8) var(--sp-7);
  text-align: center;
  background:
    radial-gradient(60rem 30rem at 50% -12rem, var(--c-accent-soft), transparent 70%),
    var(--c-bg);
}

.hero h1 {
  max-width: 52rem;
  margin-inline: auto;
}

.hero__sub {
  font-size: var(--fs-md);
  color: var(--c-text-muted);
  max-width: 40rem;
  margin: 0 auto var(--sp-6);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

.hero__trust {
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

/* Kicker / Eyebrow ueber Ueberschriften */
.kicker {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent-strong);
  margin-bottom: var(--sp-3);
}

/* Badges / Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-pill);
  background: var(--c-accent-soft);
  color: var(--c-accent-strong);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 1px solid transparent;
}
.pill--outline {
  background: transparent;
  border-color: var(--c-border-strong);
  color: var(--c-text-muted);
}

/* ---------- 9. Formulare / Wizard (Radio-Cards) ---------- */
label {
  font-weight: 600;
  color: var(--c-heading);
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  color: var(--c-text);
  background: var(--c-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 1px;
  border-color: var(--c-focus);
}

.field {
  margin-bottom: var(--sp-5);
}
.field > label {
  display: block;
  margin-bottom: var(--sp-2);
}
.field__hint {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-top: var(--sp-1);
}

/* Radio-Cards: <label class="radio-card"><input type="radio">…</label> */
.radio-card-group {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .radio-card-group { grid-template-columns: repeat(2, 1fr); }
}

.radio-card {
  position: relative;
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4);
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}
.radio-card:hover { border-color: var(--c-border-strong); }

.radio-card input[type="radio"],
.radio-card input[type="checkbox"] {
  flex: none;
  margin-top: 0.3rem;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--c-accent);
}

.radio-card:has(input:checked) {
  border-color: var(--c-accent);
  background: var(--c-accent-soft);
  box-shadow: var(--shadow-sm);
}
.radio-card:has(input:focus-visible) {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
}

.radio-card__title {
  display: block;
  font-weight: 700;
  color: var(--c-heading);
}
.radio-card__desc {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--c-text-muted);
  margin-top: var(--sp-1);
}

/* Wizard-Schritte */
.wizard-step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-5);
}
.wizard-step[hidden] { display: none; }

.wizard-progress {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.wizard-progress__step {
  flex: 1;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--c-border);
}
.wizard-progress__step.is-active { background: var(--c-accent); }
.wizard-progress__step.is-done { background: var(--c-primary); }

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  margin-top: var(--sp-5);
}

/* ---------- 10. Code-/Snippet-Boxen mit Copy-Button-Slot ---------- */
.snippet {
  position: relative;
  background: var(--c-code-bg);
  color: var(--c-code-text);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  margin: 0 0 var(--sp-5);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.snippet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--fs-sm);
  color: var(--c-code-text);
}

.snippet pre {
  margin: 0;
  padding: var(--sp-4);
  overflow-x: auto;   /* Scroll im Container, nie die Seite */
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
}
.snippet code { font-family: inherit; }

/* Copy-Button (Slot: .snippet__header > .btn-copy oder frei positioniert) */
.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.3rem 0.75rem;
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-code-text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.btn-copy:hover { background: rgba(255, 255, 255, 0.2); }
.btn-copy.is-copied {
  background: var(--c-success);
  border-color: var(--c-success);
  color: #ffffff;
}

/* Helle Text-Snippet-Variante (fertiger Hinweistext zum Kopieren) */
.snippet--light {
  background: var(--c-surface);
  color: var(--c-text);
}
.snippet--light .snippet__header {
  background: var(--c-surface-2);
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.snippet--light pre {
  font-family: var(--font-sans);
  white-space: pre-wrap;
  word-break: break-word;
}
.snippet--light .btn-copy {
  color: var(--c-heading);
  background: var(--c-surface);
  border-color: var(--c-border-strong);
}
.snippet--light .btn-copy:hover { background: var(--c-accent-soft); }
.snippet--light .btn-copy.is-copied { color: #ffffff; }

/* ---------- 11. Hinweis-Boxen ---------- */
.note,
.warn {
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid;
  border-left-width: 4px;
  margin: 0 0 var(--sp-5);
  font-size: var(--fs-sm);
}
.note {
  background: var(--c-note-bg);
  border-color: var(--c-note-border);
  color: var(--c-text);
}
.warn {
  background: var(--c-warn-bg);
  border-color: var(--c-warn-border);
  color: var(--c-warn-text);
}
.note > :last-child,
.warn > :last-child { margin-bottom: 0; }
.note strong, .warn strong { color: inherit; }

/* ---------- 12. FAQ (details/summary) ---------- */
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: var(--sp-4);
  font-weight: 700;
  color: var(--c-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  border-radius: var(--r-md);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  border-bottom: 1px solid var(--c-border);
  border-radius: var(--r-md) var(--r-md) 0 0;
}

.faq-item .faq-item__body {
  padding: var(--sp-4);
  color: var(--c-text-muted);
}
.faq-item .faq-item__body > :last-child { margin-bottom: 0; }

/* ---------- 13. Tabellen (responsive im Scroll-Container) ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
  -webkit-overflow-scrolling: touch;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 30rem;
  font-size: var(--fs-sm);
  background: var(--c-surface);
}
th, td {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
th {
  background: var(--c-surface-2);
  color: var(--c-heading);
  font-weight: 700;
}
tr:last-child td { border-bottom: 0; }

/* ---------- 14. Prose (Ratgeber-Artikel) ---------- */
.prose {
  max-width: var(--text-max);
  margin-inline: auto;
}
.prose h2 { margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-6); }
.prose > h2:first-child { margin-top: 0; }

.article-meta {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-5);
}

/* ---------- 15. Utilities ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--c-text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mb-6 { margin-bottom: var(--sp-6); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 16. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover,
  .card--hover:hover { transform: none; }
}

/* ---------- 17. Print ---------- */
@media print {
  .site-header, .site-footer, .btn, .btn-copy { display: none !important; }
  body { background: #ffffff; color: #000000; }
}
