@charset "UTF-8";

/* =========================================================
   Clience — Geldwäscheprävention & Compliance
   Design: "Nachweiskette" — Paragrafen als Struktur, Hairlines als Raster.
   Schriften selbst gehostet (kein Google-CDN, DSGVO).
   ========================================================= */

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-var-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex Mono";
  src: url("fonts/plexmono-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex Mono";
  src: url("fonts/plexmono-500-latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #030611;
  --blue: #1c3e72;
  --blue-deep: #142c52;
  --blue-tint: #2d5a9e;
  /* Grünstufen nach Funktion getrennt, nicht nach Optik:
     --green      Buttonflächen — 4,67:1 mit weißer Schrift, erfüllt WCAG AA
     --green-hover  deutlich dunkler, damit der Hover sichtbar ist
     --green-deep   grüner Text auf hellem Grund — 5,37:1
     --green-bright das Marken-Grün der CI, nur dekorativ (Punkt, Haken, Balken) */
  --green: #1a8631;
  --green-hover: #146524;
  --green-deep: #187b2d;
  --green-bright: #1f9d3a;
  --lime: #6dcf22;
  --ice: #ebf1f9;
  --ice-deep: #dbe5f2;
  --rule: #d3d8e3;
  --text: #525762;
  /* Gedämpfter Grauton für Hilfstexte — 5,35:1 auf Weiß, 4,71:1 auf Eisblau,
     erfüllt WCAG AA auf beiden Flächen. */
  --muted: #656b78;
  --paper: #ffffff;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 48px);
  --band-y: clamp(56px, 8vw, 104px);
  --r: 10px;
}

/* ---------- Reset & Basis ---------- */

*, *::before, *::after { box-sizing: border-box; }

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

@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;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "cv05" 1, "ss03" 1;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-deep); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Überschriften bekommen beim Schrittwechsel programmatisch den Fokus,
   damit Screenreader mitkommen — der Ring gehört dort aber nicht hin. */
[tabindex="-1"]:focus, [tabindex="-1"]:focus-visible { outline: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
  /* Deutsche Komposita sind lang — auf schmalen Displays lieber umbrechen
     als über den Rand laufen. */
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.3rem, 4.9vw, 3.65rem); }
h2 { font-size: clamp(1.85rem, 3.7vw, 2.85rem); }
h3 { font-size: clamp(1.18rem, 1.9vw, 1.42rem); letter-spacing: -0.014em; }
h4 { font-size: 1.03rem; letter-spacing: -0.008em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  color: #3f4551;
}

strong { color: var(--ink); font-weight: 600; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 20px; z-index: 200;
  border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- Layout-Bänder ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.band { padding-block: var(--band-y); }
.band--tight { padding-block: clamp(38px, 5vw, 64px); }
.band--ice { background: var(--ice); }
.band--ink { background: var(--ink); }
.band--blue { background: var(--blue); }
.band--ruled { border-top: 1px solid var(--rule); }

.band--ink h1, .band--ink h2, .band--ink h3, .band--ink h4,
.band--blue h1, .band--blue h2, .band--blue h3, .band--blue h4 { color: #fff; }
.band--ink, .band--blue { color: #b9c2d4; }
.band--ink strong, .band--blue strong { color: #fff; }
.band--ink .lede, .band--blue .lede { color: #c6cfdf; }

/* ---------- Eyebrow / § -Marker ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.735rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
  max-width: 120px;
}
.eyebrow--plain::after { display: none; }
.band--ink .eyebrow, .band--blue .eyebrow { color: var(--lime); }
.band--ink .eyebrow::after, .band--blue .eyebrow::after { background: rgba(255, 255, 255, 0.22); }

.par {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--blue);
  white-space: nowrap;
}
.band--ink .par, .band--blue .par { color: var(--lime); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn svg { flex: none; transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--go { background: var(--green); color: #fff; }
.btn--go:hover { background: var(--green-hover); color: #fff; }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--blue); color: #fff; }

.btn--line { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--line:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--onink { background: #fff; color: var(--ink); }
.btn--onink:hover { background: var(--lime); color: var(--ink); }

.btn--ghostink { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.32); }
.btn--ghostink:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.6); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.micro {
  font-size: 0.855rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 12px;
}
/* Auf dem Blau ist der Hilfstext knapp — #a2afc5 hält 4,78:1 auf beiden dunklen Bändern. */
.band--ink .micro, .band--blue .micro { color: #a2afc5; }

/* ---------- Kopfzeile ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.masthead__in {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}
.brand__dot { color: var(--green-bright); }
.brand__sub {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 24px; }
.nav > .btn { display: none; } /* nur im aufgeklappten Mobilmenü */
/* `:not(.btn)` ist hier zwingend: sonst schlägt `.nav a` die Buttonfarbe
   und der CTA im Mobilmenü steht grau auf grün. */
.nav a:not(.btn) {
  font-size: 0.94rem;
  font-weight: 500;
  color: #3f4551;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:not(.btn):hover { color: var(--ink); border-bottom-color: var(--green); }
.nav a:not(.btn)[aria-current="page"] { color: var(--ink); border-bottom-color: var(--green); }

.masthead .btn { padding: 11px 18px; font-size: 0.9rem; }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 940px) {
  .burger { display: inline-flex; margin-left: auto; }
  .nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    background: #fff;
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gut) 20px;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a:not(.btn) { padding: 13px 0; border-bottom: 1px solid var(--ice-deep); }
  .nav a:not(.btn):hover, .nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--ice-deep); }
  .masthead__in > .btn { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 14px; justify-content: center; }
}

/* ---------- Hero ---------- */

.hero { padding-block: clamp(44px, 6vw, 84px) clamp(50px, 7vw, 92px); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.hero h1 { margin-bottom: 20px; }
.hero__lede { max-width: 33em; }
.hero .btn-row { margin-top: 28px; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.hero__fact { display: flex; align-items: baseline; gap: 9px; font-size: 0.9rem; }
.hero__fact b {
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Signatur: § 2-Abfrage ---------- */

.probe {
  background: var(--ice);
  border: 1px solid var(--ice-deep);
  border-radius: 14px;
  overflow: hidden;
}
.probe__head { padding: 22px 24px 18px; border-bottom: 1px solid var(--ice-deep); }
.probe__head h2 {
  font-size: 1.16rem;
  letter-spacing: -0.014em;
  line-height: 1.25;
}
.probe__head p { font-size: 0.88rem; margin: 8px 0 0; color: #616874; }

.probe__body { padding: 18px 24px 24px; }

.probe__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.probe__select {
  width: 100%;
  font-family: var(--body);
  font-size: 0.97rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 13px 42px 13px 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%231C3E72' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}
.probe__select:hover { border-color: var(--blue); }

.verdict { margin-top: 18px; }
.verdict[hidden] { display: none; }

.verdict__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.verdict__tag--must { background: var(--ink); color: #fff; }
.verdict__tag--may { background: var(--blue); color: #fff; }
.verdict__tag--none { background: #fff; color: var(--blue); border: 1px solid var(--rule); }

.verdict h3 { font-size: 1.06rem; line-height: 1.35; margin-bottom: 10px; }
.verdict p { font-size: 0.92rem; line-height: 1.55; color: #4e545f; }

.verdict__rows { list-style: none; margin: 14px 0 0; padding: 0; }
.verdict__rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--ice-deep);
  font-size: 0.88rem;
}
.verdict__rows b { font-family: var(--display); font-weight: 600; color: var(--ink); text-align: right; }

.verdict .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ---------- Zahlen-Band (Bußgelder) ---------- */

.figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}
.figure { background: var(--ink); padding: 26px 24px 24px; }
.band--blue .figure { background: var(--blue); }
/* Höhere Spezifität als `.figure p` weiter unten — sonst gewinnt die
   Fließtextgröße und die Zahl verliert ihre Wirkung. */
.figure .figure__n {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.1vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.figure .figure__n span { color: var(--lime); }
.figure p:not(.figure__n) { font-size: 0.885rem; line-height: 1.5; color: #a9b4c8; margin: 0; }
.figure .par { display: block; margin-top: 12px; }

/* ---------- Karten ---------- */

.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: 10px; }
.card p:not(.card__price) { font-size: 0.94rem; }
.card__foot { margin-top: auto; padding-top: 18px; }

/* Nur die Textlinks im Kartenfuß umfärben — echte Buttons behalten ihre
   eigene Farbgebung, sonst steht Grün auf Grün. */
.card__foot a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.card__foot a:not(.btn):hover { text-decoration: underline; }
.card--ice { background: var(--ice); border-color: var(--ice-deep); }
.card--flag { border-left: 3px solid var(--green-bright); }

.card .card__price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.card .card__price small { font-family: var(--body); font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }

/* ---------- Pflichtenkette (§ -Sequenz) ---------- */

.chain { list-style: none; margin: 40px 0 0; padding: 0; }
.chain li {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 40px);
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.chain li:last-child { border-bottom: 1px solid var(--rule); }
.chain h3 { margin-bottom: 7px; }
.chain p { font-size: 0.94rem; margin: 0; }
.chain__par { padding-top: 4px; }

@media (max-width: 640px) {
  .chain li { grid-template-columns: minmax(0, 1fr); gap: 8px; }
}

/* ---------- Zweispalter ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--top { align-items: start; }
.split--narrow { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); }

@media (max-width: 860px) {
  .split, .split--narrow { grid-template-columns: minmax(0, 1fr); }
}

.portrait {
  border-radius: 14px;
  overflow: hidden;
  background: var(--ice);
  border: 1px solid var(--ice-deep);
}
.portrait img { width: 100%; height: auto; }

/* ---------- Prosa-Listen ---------- */

.ticks { list-style: none; margin: 20px 0 0; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.96rem;
  line-height: 1.55;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--green-bright);
  border-bottom: 2px solid var(--green-bright);
  transform: rotate(-45deg);
}
.band--ink .ticks li::before, .band--blue .ticks li::before { border-color: var(--lime); }

.plain { list-style: none; margin: 18px 0 0; padding: 0; }
.plain li {
  padding: 11px 0;
  border-top: 1px solid var(--rule);
  font-size: 0.94rem;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.plain li:last-child { border-bottom: 1px solid var(--rule); }

/* ---------- Zitat ---------- */

.quote {
  border-left: 3px solid var(--green-bright);
  padding-left: clamp(20px, 3vw, 32px);
}
.quote p {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.016em;
  color: var(--ink);
  margin-bottom: 16px;
}
.quote cite { font-style: normal; font-size: 0.89rem; color: var(--muted); }
.quote cite b { display: block; color: var(--ink); font-weight: 600; }

/* ---------- FAQ ---------- */

.faq { margin-top: 34px; border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  position: relative;
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 27px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 32px; }
.faq details > div { padding: 0 8px 22px 0; font-size: 0.95rem; max-width: 62em; }
.faq summary:hover { color: var(--green-deep); }

/* ---------- Compliance-Check (Funnel) ---------- */

.check {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  max-width: 780px;
  margin-inline: auto;
}
.check__bar { height: 4px; background: var(--ice-deep); }
.check__fill { height: 100%; width: 0; background: var(--green-bright); transition: width 0.32s ease; }

.check__head {
  padding: 26px clamp(22px, 4vw, 38px) 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.check__step {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.check__body { padding: 16px clamp(22px, 4vw, 38px) 30px; }
.check__body h2 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: 10px; }
.check__q { font-size: 0.95rem; margin-bottom: 22px; }

.opts { display: grid; gap: 10px; margin: 0 0 24px; }
.opt {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 15px 17px;
  cursor: pointer;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.opt:hover { border-color: var(--blue); background: #fbfcfe; }
.opt input { margin: 3px 0 0; accent-color: var(--green); width: 17px; height: 17px; flex: none; }
.opt span { font-size: 0.95rem; line-height: 1.45; color: #3f4551; }
.opt input:checked + span { color: var(--ink); font-weight: 500; }
.opt:has(input:checked) { border-color: var(--green); background: #f4fbf5; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.97rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 12px 14px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--blue); }
.field textarea { min-height: 118px; resize: vertical; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field--split { grid-template-columns: 1fr; } }

/* Pflichttext, kein Blickfang — er darf den Absenden-Knopf nicht erdrücken. */
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 18px 0 22px;
}
.consent input { margin: 3px 0 0; accent-color: var(--green); width: 17px; height: 17px; flex: none; }

.check__nav { display: flex; justify-content: space-between; gap: 12px; align-items: center; }

.result__score {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.result__score span { font-size: 0.4em; color: #8a919e; letter-spacing: -0.02em; }
.result__bars { list-style: none; margin: 26px 0 0; padding: 0; }
.result__bars li { padding: 13px 0; border-top: 1px solid var(--rule); }
.result__bars li:last-child { border-bottom: 1px solid var(--rule); }
.result__row { display: flex; justify-content: space-between; gap: 14px; font-size: 0.92rem; margin-bottom: 8px; }
.result__row b { font-family: var(--display); color: var(--ink); }
.result__track { height: 6px; background: var(--ice-deep); border-radius: 3px; overflow: hidden; }
.result__val { height: 100%; background: var(--green-bright); border-radius: 3px; }
.result__val[data-low="true"] { background: var(--blue); }

/* ---------- Kontaktband ---------- */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: minmax(0, 1fr); } }

.contact__lines { list-style: none; margin: 26px 0 0; padding: 0; }
.contact__lines li { padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.contact__lines li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.contact__lines a { color: #fff; text-decoration: none; font-weight: 500; }
.contact__lines a:hover { color: var(--lime); text-decoration: underline; }
.contact__lines .par { display: block; margin-bottom: 3px; }

/* Die Formularkarte ist eine weiße Insel in einem dunklen Band. Ohne diesen
   Reset erbt sie die hellen Textfarben des Bandes — weiß auf weiß. */
.formcard { background: #fff; border-radius: 14px; padding: clamp(24px, 3.5vw, 34px); color: var(--text); }
.formcard h3, .formcard h4 { color: var(--ink); }
.formcard strong { color: var(--ink); }
.formcard a { color: var(--blue); }
.formcard a:hover { color: var(--green-deep); }
.formcard h3 { margin-bottom: 6px; }
.formcard > p { font-size: 0.92rem; margin-bottom: 22px; color: var(--text); }
.formcard .consent span { color: var(--text); }
/* Der Absenden-Knopf ist das Ziel der ganzen Karte: größer als die
   Standard-Buttons und mit Abstand zum Pflichttext darüber. */
.formcard .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 18px 24px;
  margin-top: 4px;
}

.formnote {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* ---------- Fußzeile ---------- */

.foot { background: var(--ink); color: #8d97a9; padding-block: clamp(46px, 6vw, 72px) 34px; }
.foot a { color: #c3cbd9; text-decoration: none; }
.foot a:hover { color: var(--lime); }
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
}
@media (max-width: 800px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot__grid { grid-template-columns: 1fr; } }

.foot .brand { color: #fff; margin-bottom: 14px; }
.foot h3 {
  color: #fff;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 9px; font-size: 0.92rem; }
.foot p { font-size: 0.9rem; line-height: 1.6; }

.foot__base {
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ---------- Rechtstext-Seiten ---------- */

.legal { max-width: 760px; }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 44px 0 14px; }
.legal h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.legal h2:first-of-type { margin-top: 30px; }
.legal p, .legal li { font-size: 0.96rem; }
.legal ul { padding-left: 22px; margin: 0 0 1.05em; }
.legal li { margin-bottom: 8px; }
.legal address { font-style: normal; line-height: 1.75; }

/* ---------- Seitenkopf für Unterseiten ---------- */

.pagehead { padding-block: clamp(40px, 5vw, 68px) clamp(30px, 4vw, 48px); }
.pagehead h1 { margin-bottom: 18px; }
.pagehead .lede { max-width: 40em; }

.crumb {
  font-family: var(--mono);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--green-deep); }

.hide { display: none; }

/* ---------- Hilfsklassen ----------
   Ersetzen die früheren style-Attribute. Die Content-Security-Policy
   erlaubt kein style-src 'unsafe-inline'; Inline-Styles wurden im
   Produktivbetrieb schlicht verworfen. */

.u-mt12px { margin-top:12px; }
.u-mt14px { margin-top:14px; }
.u-mt18px { margin-top:18px; }
.u-mt26px { margin-top:26px; }
.u-pt0 { padding-top:0; }
.u-mt30px { margin-top:30px; }
.u-jccenter { justify-content:center; }
.u-mt34px { margin-top:34px; }
.u-mt38px { margin-top:38px; }
.u-m18pxauto0 { margin:18px auto 0; }
.u-mw900px { max-width:900px; }
.u-jccenter-mt28px { justify-content:center; margin-top:28px; }
.u-mt0-bt0-pt0 { margin-top:0; border-top:0; padding-top:0; }
.u-mt20px { margin-top:20px; }
.u-mw680px { max-width:680px; }
.u-asstart { align-self:start; }
.u-fs105rem-mb12px { font-size:1.05rem; margin-bottom:12px; }
.u-fs105rem-p18px28px { font-size:1.05rem; padding:18px 28px; }
.u-set1 { font-size:clamp(1.2rem,2vw,1.5rem); margin-bottom:10px; }
.u-set2 { font-size:clamp(1.3rem,2.2vw,1.7rem); margin-bottom:14px; }
.u-set3 { font-size:clamp(1.3rem,2.2vw,1.7rem); margin-bottom:16px; }
.u-jccenter-mt26px { justify-content:center; margin-top:26px; }
.u-miauto { margin-inline:auto; }
.u-mt0 { margin-top:0; }
.u-mt24px-mw52em { margin-top:24px; max-width:52em; }
.u-mt28px { margin-top:28px; }
.u-mt36px { margin-top:36px; }
.u-mt40px { margin-top:40px; }
.u-mw44em-mt16px { max-width:44em; margin-top:16px; }
.u-mw44em-mt18px { max-width:44em; margin-top:18px; }
.u-mw46em-mt16px { max-width:46em; margin-top:16px; }
.u-mw46em-mt18px { max-width:46em; margin-top:18px; }
.u-mw52em { max-width:52em; }
.u-mw640px { max-width:640px; }
.u-mw780px-miauto-tacenter { max-width:780px; margin-inline:auto; text-align:center; }
.u-mw780px-tacenter { max-width:780px; text-align:center; }
.u-mw820px { max-width:820px; }
.u-tacenter-mw720px { text-align:center; max-width:720px; }
.u-tacenter-mw740px { text-align:center; max-width:740px; }
.u-tacenter-mw760px { text-align:center; max-width:760px; }
.u-w100-jccenter { width:100%; justify-content:center; }
