/* ===========================================================================
   LEVIORA · Seitenspezifisches
   ========================================================================= */

/* ---------- Seiten-Hero (Unterseiten) ------------------------------------- */
.page-hero { padding-block: clamp(2.5rem, 6vw, 5rem) var(--s-8); background: var(--cream); position: relative; overflow: hidden; }
.page-hero .kicker { margin-bottom: var(--s-3); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 46ch; margin-top: var(--s-4); }

.breadcrumb { font-size: var(--fs-small); margin-bottom: var(--s-4); color: var(--text-muted); }
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5em; }
.breadcrumb li + li::before { content: "›"; margin-right: .5em; color: var(--gold-deep); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 500; }

/* ---------- Checklisten-Raster (Leistungen im Überblick) ------------------ */
.checklist { list-style: none; padding: 0; display: grid; gap: var(--s-3); }
@media (min-width: 720px) { .checklist { grid-template-columns: 1fr 1fr; } }
.checklist li {
  display: flex; gap: var(--s-3); align-items: flex-start;
  background: var(--paper); border: 1px solid var(--gold-line);
  border-radius: var(--r-sm); padding: var(--s-3) var(--s-4); max-width: none;
}
.checklist li::before {
  content: "✓"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-sand); color: var(--gold-deep); font-weight: 700;
  display: grid; place-items: center; font-size: .9rem;
}

/* ---------- Rechtsrahmen-Block (§) ---------------------------------------- */
.law-block {
  background: var(--gold-sand); border-left: 5px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: var(--s-5) var(--s-6);
}
.law-block__tag {
  display: inline-block; font-weight: 700; color: var(--gold-deep);
  font-size: var(--fs-small); letter-spacing: .06em; margin-bottom: var(--s-2);
}
.law-block__plain { font-size: var(--fs-small); color: var(--graphite); margin-top: var(--s-3); }

/* ---------- Zitat --------------------------------------------------------- */
.quote { display: grid; gap: var(--s-4); justify-items: start; }
.quote__mark { width: 42px; height: 42px; color: var(--gold); }
.quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35; max-width: 26ch;
}
.quote figcaption { font-size: var(--fs-small); color: var(--text-muted); }
.quote figcaption strong { display: block; color: var(--ink); font-size: 1rem; }

/* ---------- Pflegegrad-Check ---------------------------------------------- */
.pgcheck {
  background: var(--paper); border: 1px solid var(--gold-line);
  border-radius: var(--r-lg); padding: clamp(var(--s-5), 4vw, var(--s-7));
  box-shadow: var(--shadow-sm); position: relative;
}
.pgcheck__note {
  display: flex; gap: var(--s-3); align-items: flex-start;
  background: var(--gold-sand); border-radius: var(--r-sm);
  padding: var(--s-4); font-size: var(--fs-small); line-height: 1.6;
}
.pgcheck__note svg { width: 22px; flex: none; color: var(--gold-deep); margin-top: 1px; }
.pgcheck__note p { max-width: none; }

/* Fortschritt als Federspur */
.pgcheck__progress { margin-bottom: var(--s-5); }
.pgcheck__bar {
  height: 8px; border-radius: var(--r-pill); background: var(--gold-sand); overflow: hidden;
}
.pgcheck__bar i {
  display: block; height: 100%; width: 0%; border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-champagne), var(--gold));
  transition: width var(--t-slow) var(--ease-out);
}
.pgcheck__count { font-size: var(--fs-small); color: var(--text-muted); margin-top: var(--s-2); }

.pgcheck__q { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25; margin-bottom: var(--s-2); }
.pgcheck__hint { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: var(--s-5); }

.pgcheck__options { display: grid; gap: var(--s-3); margin-bottom: var(--s-5); }
.pgopt {
  display: flex; align-items: center; gap: var(--s-4);
  min-height: 64px; padding: var(--s-3) var(--s-5); width: 100%; text-align: left;
  background: var(--cream); border: 2px solid var(--gold-line); border-radius: var(--r-md);
  font-size: 1.0625rem; font-weight: 500; cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.pgopt:hover { border-color: var(--gold); transform: translateX(3px); }
.pgopt[aria-pressed="true"] { border-color: var(--gold-deep); background: var(--gold-sand); }
.pgopt__key {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--paper); border: 2px solid var(--gold-line);
  display: grid; place-items: center; font-size: .95rem; font-weight: 700; color: var(--gold-deep);
}
.pgopt[aria-pressed="true"] .pgopt__key { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.pgcheck__nav { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between; align-items: center; }

/* Ergebnis */
.pgresult { display: grid; gap: var(--s-5); }
.pgresult__badge {
  display: inline-flex; flex-direction: column; align-items: center; gap: .2em;
  background: var(--ink); color: var(--cream); border-radius: var(--r-md);
  padding: var(--s-5) var(--s-7); justify-self: start;
}
.pgresult__badge span { font-size: var(--fs-small); color: var(--gold-champagne);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.pgresult__badge strong { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; line-height: 1.1; }
.pgresult__what { display: grid; gap: var(--s-3); }
.pgresult__what li { display: flex; gap: var(--s-3); align-items: flex-start; max-width: none; }
.pgresult__what li::before { content: "→"; color: var(--gold-deep); font-weight: 700; flex: none; }
.pgresult__what { list-style: none; padding: 0; }

/* ---------- Dankeseite ---------------------------------------------------- */
.thanks { display: grid; gap: var(--s-5); justify-items: center; text-align: center; padding-block: var(--s-9); }
.thanks__mark { width: 96px; }

/* ---------- Rechtstexte --------------------------------------------------- */
.legal { padding-block: var(--s-8); }
.legal h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: var(--s-7); }
.legal h3 { margin-top: var(--s-5); }
.legal p, .legal li { margin-top: var(--s-3); }
.legal ul { padding-left: 1.3em; }
.legal address { font-style: normal; line-height: 1.8; }
