/* Surion Exit Control – Landingpage
   Design-Tokens aus surion-group.com: Anthrazit #081014, Grau #707070/#C8C8C8/#F2F3F5, Geist, Radien 10 px und 100 px */

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* Fallback mit angepassten Metriken, damit beim Nachladen der Schrift nichts springt */
@font-face {
  font-family: "Geist Fallback";
  src: local("Arial"), local("Helvetica");
  size-adjust: 104%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
}

:root {
  --ink: #081014;
  --ink-2: #2a3136;
  --mut: rgba(8, 16, 20, 0.72);
  --line: rgba(8, 16, 20, 0.12);
  --gray: #F2F3F5;
  --gray-2: #C8C8C8;
  --white: #ffffff;
  --w-mut: rgba(255, 255, 255, 0.72);
  --w-line: rgba(255, 255, 255, 0.14);
  --r: 10px;
  --pill: 100px;
  --pad-x: 20px;
  --sec-y: 64px;
  --max: 1280px;
  --font: "Geist", "Geist Fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
@media (min-width: 768px) { :root { --pad-x: 48px; --sec-y: 96px; } }
@media (min-width: 1280px) { :root { --pad-x: 80px; --sec-y: 112px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 50; padding: 10px 16px; border-radius: var(--pill); background: var(--white); color: var(--ink); text-decoration: none; font-weight: 500; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--pad-x)); margin: 0 auto; padding: 0 var(--pad-x); }
.sec { padding: var(--sec-y) 0; scroll-margin-top: 0; }
.sec--dark { background: var(--ink); color: var(--white); }
.sec--white { background: var(--white); }
.sec--gray { background: var(--gray); }

.h1, .h2 { font-weight: 500; letter-spacing: -0.05em; line-height: 1.06; }
.h1 { font-size: clamp(26px, 8.2vw, 58px); }
.h2 { font-size: clamp(30px, 7.4vw, 58px); max-width: 22ch; }
@media (min-width: 768px) { .h2 { font-size: clamp(40px, 4.6vw, 58px); } }
.lead { margin-top: 20px; max-width: 42rem; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.5; }
.sec--dark .lead { color: rgba(255, 255, 255, 0.8); }
.sec--white .lead, .sec--gray .lead { color: var(--mut); }
.muted-title { color: rgba(8, 16, 20, 0.55); }
.sec--dark .muted-title { color: rgba(255, 255, 255, 0.58); }
.note { font-size: 12px; line-height: 1.5; color: var(--mut); }
.nowrap { white-space: nowrap; }

/* Hervorhebungen */
.glow { color: var(--white); text-shadow: 0 0 18px rgba(255,255,255,.55), 0 0 42px rgba(255,255,255,.28); animation: glowText 2.4s ease-in-out .8s 3 both; }
@keyframes glowText { 0% { text-shadow: 0 0 0 rgba(255,255,255,0); } 50% { text-shadow: 0 0 22px rgba(255,255,255,.8), 0 0 56px rgba(255,255,255,.4); } 100% { text-shadow: 0 0 18px rgba(255,255,255,.55), 0 0 42px rgba(255,255,255,.28); } }
.halo { position: relative; z-index: 0; color: var(--ink); white-space: nowrap; }
.halo::before { content: ""; position: absolute; z-index: -1; left: -.3em; right: -.3em; top: -.25em; bottom: -.3em; border-radius: var(--pill); background: radial-gradient(closest-side, rgba(8,16,20,.13), rgba(8,16,20,.05) 60%, rgba(8,16,20,0) 100%); animation: halo 2.4s ease-in-out .8s 3 both; }
@keyframes halo { 0% { opacity: 0; } 50% { opacity: 1; transform: scale(1.04); } 100% { opacity: .75; transform: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 0 28px; border: none; border-radius: var(--pill); font-size: 16px; font-weight: 500; letter-spacing: -0.01em; text-decoration: none; text-align: center; transition: background-color .2s ease, box-shadow .3s ease; }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-2); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: #dfe1e4; }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--glow { animation: glowBox 2.4s ease-in-out 1s 3 both; }
.btn--glow:hover { box-shadow: 0 0 0 6px rgba(255,255,255,.16), 0 0 48px 10px rgba(255,255,255,.45); }
@keyframes glowBox { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } 50% { box-shadow: 0 0 0 6px rgba(255,255,255,.14), 0 0 44px 8px rgba(255,255,255,.42); } 100% { box-shadow: 0 0 0 4px rgba(255,255,255,.1), 0 0 32px 4px rgba(255,255,255,.3); } }
.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.sec--dark .btn--light:focus-visible { outline-color: var(--white); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 40px; }
.cta-micro { font-size: 14px; color: var(--mut); }
.sec--dark .cta-micro { color: var(--w-mut); }
@media (max-width: 767px) { .cta-row { flex-direction: column; align-items: stretch; } .cta-row .btn { width: 100%; } .cta-micro { text-align: center; } }

/* Header */
.site-header { position: relative; z-index: 5; border-bottom: 1px solid var(--w-line); background: var(--ink); color: var(--white); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
@media (min-width: 768px) { .site-header .wrap { height: 80px; } }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 84px; height: auto; }
@media (min-width: 768px) { .brand img { width: 101px; } }
.brand-sep { width: 1px; height: 20px; background: rgba(255,255,255,.24); }
.brand-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.86); white-space: nowrap; }
@media (max-width: 419px) { .brand-sep, .brand-name { display: none; } }
.nav { display: flex; align-items: center; gap: 28px; font-size: 15px; }
.nav a:not(.btn) { display: none; color: var(--w-mut); text-decoration: none; }
.nav a:not(.btn):hover { color: var(--white); }
@media (min-width: 1024px) { .nav a:not(.btn) { display: inline-flex; align-items: center; min-height: 44px; } }
.nav .btn { white-space: nowrap; }

/* 1 · Problem / Gedankenblasen */
.hero { padding-top: 40px; padding-bottom: 0; }
@media (min-width: 768px) { .hero { padding-top: 64px; } }
.hero .h1 { color: rgba(255,255,255,.58); max-width: 16em; }
.hero .h1 .line1 { white-space: nowrap; }
.hero-sub { margin-top: 18px; color: var(--w-mut); font-size: clamp(16px, 1.6vw, 18px); }
.bubbles { display: grid; grid-template-columns: minmax(0, 1fr); gap: 30px; margin-top: 36px; }
@media (min-width: 768px) { .bubbles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 20px; margin-top: 48px; } }
@media (min-width: 1280px) { .bubbles { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.bubble-wrap { animation: float 9s ease-in-out infinite; }
.bubble-wrap:nth-child(2n) { animation-delay: -3s; }
.bubble-wrap:nth-child(3n) { animation-delay: -6s; }
@media (max-width: 767px) { .bubble-wrap:nth-child(2n) { margin-left: clamp(8px, 8vw, 34px); } .bubble-wrap { max-width: 330px; } }
@media (min-width: 768px) { .bubble-wrap:nth-child(3n+2) { margin-top: 20px; } .bubble-wrap:nth-child(3n) { margin-top: 6px; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.bubble { position: relative; display: flex; gap: 10px; align-items: flex-start; width: 100%; padding: 15px 22px; border-radius: var(--pill); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); color: rgba(255,255,255,.86); text-align: left; font-size: 16px; line-height: 1.42; letter-spacing: -0.01em; transition: background-color .25s ease, color .25s ease, border-color .25s ease; }
@media (min-width: 768px) { .bubble { font-size: 17px; padding: 17px 24px; } }
.bubble:hover { border-color: rgba(255,255,255,.48); }
.bubble:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.bubble .check { display: none; flex-shrink: 0; margin-top: 3px; }
.bubble[aria-pressed="true"] { background: var(--white); color: var(--ink); border-color: var(--white); }
.bubble[aria-pressed="true"] .check { display: block; }
.bubble::before, .bubble::after { content: ""; position: absolute; border-radius: var(--pill); border: 1px solid rgba(255,255,255,.2); background: var(--ink); }
.bubble::before { left: 44px; bottom: -13px; width: 10px; height: 10px; }
.bubble::after { left: 34px; bottom: -25px; width: 6px; height: 6px; }
.bubble[aria-pressed="true"]::before, .bubble[aria-pressed="true"]::after { background: var(--white); border-color: var(--white); }
.pick-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; margin-top: 48px; padding: 22px 0 40px; border-top: 1px solid var(--w-line); }
.pick-bar .count { font-size: 16px; }
.pick-bar .none { color: var(--w-mut); }
.link-btn { min-height: 44px; padding: 0 4px; border: none; background: none; color: var(--w-mut); text-decoration: underline; text-underline-offset: 3px; font-size: 15px; }
.pick-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
@media (max-width: 767px) { .pick-actions { width: 100%; flex-direction: column-reverse; align-items: stretch; } .pick-actions .btn { width: 100%; } .pick-actions .cta-micro { text-align: center; } }

/* Bewertungsleiste */
.reviews { display: flex; align-items: center; height: 72px; background: var(--gray); overflow: hidden; }
.reviews-track-wrap { flex: 1 1 auto; overflow: hidden; height: 100%; display: flex; align-items: center; }
.reviews-track { display: flex; align-items: center; gap: 40px; padding-left: 40px; width: max-content; animation: marquee 60s linear infinite; }
.reviews-track:hover, .reviews.is-paused .reviews-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; color: var(--ink); text-decoration: none; white-space: nowrap; font-size: 15px; }
.review strong { font-weight: 500; }
.review .cnt { color: var(--mut); font-size: 14px; }
.review .name { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }
.review:hover .name { text-decoration: underline; text-underline-offset: 3px; }
.review:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.review-sep { width: 1px; height: 20px; background: rgba(8,16,20,.16); flex-shrink: 0; }
.g-b { color: #4285F4; } .g-r { color: #EA4335; } .g-y { color: #FBBC05; } .g-g { color: #34A853; }
.pe { color: #444444; }
.pause { flex-shrink: 0; width: 44px; height: 44px; margin: 0 16px; border-radius: var(--pill); border: 1px solid rgba(8,16,20,.16); background: var(--gray); display: flex; align-items: center; justify-content: center; }
.pause:focus-visible { outline: 2px solid var(--ink); }

/* 2 · Differenzierung */
.diff-by { display: flex; align-items: center; gap: 12px; margin-top: 32px; font-size: clamp(18px, 2vw, 24px); font-weight: 500; letter-spacing: -0.02em; }
.diff-by img { width: clamp(86px, 9vw, 109px); }
.chain { display: flex; flex-direction: column; margin-top: 24px; }
.chain-step { padding: 18px 20px 20px; border: 1px solid var(--line); border-radius: var(--r); background: var(--gray); display: flex; flex-direction: column; gap: 12px; }
.chain-step .n { font-size: 14px; font-weight: 500; color: var(--mut); }
.chain-step .q { font-size: 18px; line-height: 1.3; font-weight: 500; letter-spacing: -0.02em; }
.chain-arrow { display: flex; justify-content: center; padding: 6px 0; }
.chain-arrow svg { transform: rotate(90deg); }
@media (min-width: 1024px) {
  .chain { flex-direction: row; align-items: stretch; gap: 10px; }
  .chain-step { flex: 1 1 0; min-width: 0; padding: 22px 20px 24px; }
  .chain-step .q { font-size: clamp(16px, 1.45vw, 20px); }
  .chain-arrow { align-items: center; padding: 0; }
  .chain-arrow svg { transform: none; }
}
.down { display: flex; justify-content: center; padding: 16px 0; }
.result { display: flex; flex-direction: column; gap: 20px; padding: 28px 24px; border-radius: var(--r); background: var(--ink); color: var(--white); }
.result-list { display: flex; flex-direction: column; gap: 12px; }
.result-list li { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 500; }
.result-go { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.btn--xl { min-height: 64px; padding: 0 clamp(18px, 7vw, 40px); font-size: clamp(20px, 6.7vw, 34px); letter-spacing: -0.04em; white-space: nowrap; }
@media (min-width: 1024px) {
  .result { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; padding: 40px 48px; }
  .result-list { flex-direction: row; gap: 32px; }
  .result-go { flex-direction: row; align-items: center; gap: 28px; }
  .result-go .arrow-v { display: none; }
}
@media (max-width: 1023px) { .result-go .arrow-h { display: none; } }

/* 3 · Ansprechpartner */
.person { display: grid; gap: 32px; align-items: center; }
@media (min-width: 768px) { .person { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 48px; } }
@media (min-width: 1280px) { .person { grid-template-columns: 560px minmax(0, 1fr); gap: 96px; } }
.portrait { width: 100%; max-width: 560px; aspect-ratio: 1000 / 985; object-fit: cover; -webkit-mask-image: radial-gradient(ellipse 72% 78% at 50% 42%, #000 58%, transparent 100%); mask-image: radial-gradient(ellipse 72% 78% at 50% 42%, #000 58%, transparent 100%); }
.quote { font-size: clamp(26px, 3.2vw, 44px); line-height: 1.14; font-weight: 500; letter-spacing: -0.04em; color: rgba(255,255,255,.58); }
.person-name { margin-top: 32px; font-size: 20px; font-weight: 500; }
.person-role { margin-top: 2px; color: var(--w-mut); }
.facts { margin-top: 24px; border-bottom: 1px solid var(--w-line); }
.facts li { padding: 14px 0; border-top: 1px solid var(--w-line); color: rgba(255,255,255,.86); }
.person .cta-row { margin-top: 36px; flex-direction: column; align-items: flex-start; gap: 12px; }
@media (max-width: 767px) { .person .cta-row { align-items: stretch; } }
.person .btn { font-size: clamp(16px, 1.6vw, 20px); min-height: 64px; padding: 12px 32px; }

/* 4 · Vergleich */
.cmp-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.btn--outline { min-height: 44px; padding: 0 20px; border-radius: var(--pill); border: 1px solid rgba(8,16,20,.2); background: var(--white); font-size: 15px; font-weight: 500; }
.cmp { margin-top: 40px; }
.cmp-cols { display: none; }
.cmp-row { display: block; width: 100%; padding: 18px 0 20px; border: none; border-top: 1px solid var(--line); background: none; text-align: left; }
.cmp-label { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; }
.cmp-label svg { transition: transform .25s ease; }
.cmp-row[aria-expanded="true"] .cmp-label svg { transform: rotate(180deg); }
.cmp-row:hover .cmp-label span { text-decoration: underline; text-underline-offset: 4px; }
.cmp-cells { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 12px; }
.cmp-cell { padding: 14px; border-radius: var(--r); background: var(--gray); }
.cmp-cell--s { background: var(--ink); color: var(--white); }
.cmp-cell .who { display: block; font-size: 12px; color: var(--mut); margin-bottom: 4px; }
.cmp-cell--s .who { color: var(--w-mut); }
.cmp-cell .v { display: block; font-size: 18px; font-weight: 500; letter-spacing: -0.02em; color: var(--mut); }
.cmp-cell--s .v { color: var(--white); }
.cmp-cell .d { display: none; margin-top: 8px; font-size: 14px; line-height: 1.45; color: var(--mut); }
.cmp-cell--s .d { color: rgba(255,255,255,.78); }
.cmp-row[aria-expanded="true"] .d { display: block; animation: fadeUp .3s ease both; }
.cmp-end { border-top: 1px solid var(--line); }
@media (min-width: 1024px) {
  .cmp-cols { display: grid; grid-template-columns: 240px minmax(0, 1fr) minmax(0, 1fr); align-items: end; }
  .cmp-cols .l { padding: 0 32px 20px; font-size: 18px; font-weight: 500; color: var(--mut); }
  .cmp-cols .s { display: flex; align-items: center; gap: 12px; padding: 28px 36px 22px; background: var(--ink); color: var(--white); border-radius: var(--r) var(--r) 0 0; font-size: 18px; font-weight: 500; }
  .cmp-cols .s img { width: 86px; }
  .cmp-row { display: grid; grid-template-columns: 240px minmax(0, 1fr) minmax(0, 1fr); padding: 0; }
  .cmp-label { padding: 28px 24px 28px 0; align-items: flex-start; font-size: 18px; }
  .cmp-label svg { margin-top: 5px; }
  .cmp-cells { display: contents; }
  .cmp-cell { border-radius: 0; background: none; padding: 28px 32px; }
  .cmp-cell--s { background: var(--ink); padding: 28px 36px; border-top: 1px solid var(--w-line); }
  .cmp-cell .who { display: none; }
  .cmp-cell .v { font-size: 24px; letter-spacing: -0.03em; }
  .cmp-cell .d { font-size: 16px; }
  .cmp-row:last-of-type .cmp-cell--s { border-radius: 0 0 var(--r) var(--r); }
  .cmp-row:first-of-type { border-top: none; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* 5 · Leistungen (Reiter / Akkordeon) */
.h2-logo { display: inline-block; height: .78em; width: auto; margin: 0 .16em 0 .12em; vertical-align: -0.08em; }
.lst { display: grid; gap: 8px; margin-top: 32px; }
.lst-tab { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; min-height: 60px; padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); color: var(--ink); text-align: left; font-size: 17px; font-weight: 500; letter-spacing: -0.02em; transition: background-color .2s ease, color .2s ease; }
.lst-tab:hover { border-color: rgba(8,16,20,.4); }
.lst-tab[aria-expanded="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.lst-tab svg { flex-shrink: 0; transition: transform .25s ease; }
.lst-panel { display: none; padding: 20px 18px 24px; border-radius: var(--r); background: var(--white); }
.lst-panel.is-open { display: block; animation: fadeUp .3s ease both; }
.lst-panel h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.03em; }
.lst-panel .why { margin: 8px 0 20px; color: var(--mut); line-height: 1.5; }
@media (max-width: 1023px) { .lst-tab[aria-expanded="true"] svg { transform: rotate(180deg); } .lst-tab svg.chev-r { display: none; } }
@media (min-width: 1024px) {
  .lst { grid-template-columns: 360px minmax(0, 1fr); column-gap: 32px; row-gap: 8px; margin-top: 56px; align-items: start; }
  .lst-tab { grid-column: 1; min-height: 64px; padding: 16px 22px; font-size: 18px; }
  .lst-tab svg.chev-d { display: none; }
  .lst-panel { grid-column: 2; grid-row: 1 / span 8; padding: 44px 48px; min-height: 560px; }
  .lst-panel h3 { font-size: 32px; letter-spacing: -0.04em; }
  .lst-panel .why { font-size: 18px; margin-bottom: 28px; max-width: 620px; }
  .lst-tab:nth-of-type(1) { grid-row: 1; } .lst-tab:nth-of-type(2) { grid-row: 2; } .lst-tab:nth-of-type(3) { grid-row: 3; } .lst-tab:nth-of-type(4) { grid-row: 4; }
}
.qlist li { padding: 10px 0; border-top: 1px solid var(--line); font-weight: 500; letter-spacing: -0.01em; }
.qlist { border-bottom: 1px solid var(--line); }
.walk { margin-top: 22px; padding: 20px; border-radius: var(--r); background: var(--ink); color: var(--white); }
.walk p:first-child { font-size: clamp(22px, 2.2vw, 26px); font-weight: 500; letter-spacing: -0.03em; }
.walk p + p { margin-top: 8px; font-size: 15px; color: rgba(255,255,255,.8); }
.checks { display: grid; gap: 0 28px; }
@media (min-width: 768px) { .checks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.checks li { display: flex; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); }
.checks svg { flex-shrink: 0; margin-top: 3px; }
.after { margin-top: 20px; color: var(--mut); font-size: 15px; line-height: 1.5; }
.after strong { color: var(--ink); font-weight: 600; }
.steps li { position: relative; display: flex; gap: 14px; align-items: flex-start; padding-bottom: 12px; font-weight: 500; }
.steps li::before { content: ""; flex-shrink: 0; width: 11px; height: 11px; margin-top: 6px; border-radius: var(--pill); border: 1.5px solid var(--ink); background: var(--white); position: relative; z-index: 1; }
.steps li:first-child::before, .steps li:last-child::before { background: var(--ink); }
.steps li:not(:last-child)::after { content: ""; position: absolute; left: 5px; top: 18px; bottom: -6px; width: 1px; background: rgba(8,16,20,.24); }
.pills { display: flex; flex-direction: column; gap: 8px; }
.pills li { align-self: flex-start; padding: 10px 16px; border-radius: var(--pill); background: var(--gray); }
.mini { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.mini img { width: 56px; height: 56px; border-radius: var(--pill); object-fit: cover; }
.mini .n { font-weight: 500; }
.mini .r { font-size: 14px; color: var(--mut); }
.strong-line { margin-top: 18px; font-size: 18px; font-weight: 500; letter-spacing: -0.02em; }

/* Segment-Umschalter (Wertanker) */
.seg { display: flex; gap: 4px; padding: 4px; border-radius: var(--pill); background: var(--gray); }
.seg button { flex: 1 1 0; min-width: 0; min-height: 44px; padding: 4px 8px; border: none; border-radius: var(--pill); background: transparent; color: var(--ink); font-size: 14px; line-height: 1.2; font-weight: 500; }
.seg button[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.seg button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.lbl { font-size: 12px; color: var(--mut); margin-bottom: 6px; }

/* 6 · Wertanker */
.wa-card { margin-top: 40px; padding: 20px 18px; border-radius: var(--r); background: var(--white); color: var(--ink); }
@media (min-width: 768px) { .wa-card { padding: 32px; } }
@media (min-width: 1280px) { .wa-card { padding: 40px 44px; } }
.wa-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
@media (min-width: 1280px) { .wa-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; } .wa-right { padding-left: 40px; border-left: 1px solid var(--line); } }
.ff-title { font-size: 13px; font-weight: 500; color: var(--mut); margin-bottom: 12px; }
.ff { position: relative; }
.ff-row { display: flex; flex-direction: column; gap: 4px; width: 100%; min-height: 44px; padding: 4px 0; border: none; background: none; text-align: left; color: var(--ink); }
.ff-top { display: flex; justify-content: space-between; gap: 8px; }
.ff-name { font-size: 13px; }
.ff-row[aria-pressed="true"] .ff-name { font-weight: 600; }
.ff-val { font-size: 12px; color: var(--mut); font-variant-numeric: tabular-nums; }
.ff-track { position: relative; display: block; height: 14px; }
.ff-bar { position: absolute; top: 1px; height: 12px; border-radius: 3px; opacity: .45; transition: opacity .2s ease; }
.ff-row[aria-pressed="true"] .ff-bar, .ff-row:hover .ff-bar { opacity: 1; }
.ff-band { position: absolute; top: -4px; bottom: 26px; pointer-events: none; }
.ff-band span { position: absolute; top: 0; bottom: 0; background: rgba(8,16,20,.06); border-left: 1px dashed var(--ink); border-right: 1px dashed var(--ink); }
.ff-axis { position: relative; height: 26px; margin-top: 6px; font-size: 12px; color: var(--mut); }
.ff-axis span { position: absolute; transform: translateX(-50%); }
.ff-axis .unit { right: 0; top: 13px; transform: none; font-size: 11px; }
.ff-band, .ff-axis { left: 0; right: 0; }
.ff-band { position: absolute; }
@media (min-width: 768px) {
  .ff-row { display: grid; grid-template-columns: 150px minmax(0, 1fr) 76px; align-items: center; gap: 12px; padding: 0; }
  .ff-top { display: contents; }
  .ff-name { order: 1; } .ff-track { order: 2; height: 22px; } .ff-val { order: 3; text-align: right; }
  .ff-bar { top: 3px; height: 16px; }
  .ff-band { left: 162px; right: 88px; }
  .ff-axis { margin-left: 162px; margin-right: 88px; }
}
.anchor { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px 12px; margin-top: 24px; padding: 16px 20px; border-radius: var(--r); background: var(--ink); color: var(--white); }
.anchor .k { font-size: 17px; font-weight: 500; }
.anchor .v { font-size: clamp(22px, 2.6vw, 30px); font-weight: 500; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.wa-note { margin-top: 18px; }
.pane { display: none; }
.pane.is-open { display: flex; flex-direction: column; gap: 18px; animation: fadeUp .3s ease both; }
.wa-right { display: flex; flex-direction: column; gap: 18px; }
.chart { display: flex; align-items: stretch; border-bottom: 1px solid var(--line); }
.chart-col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; }
.chart-col.sep { border-left: 1px dashed rgba(8,16,20,.3); }
.chart-bars { height: 140px; width: 100%; display: flex; align-items: flex-end; justify-content: center; gap: 2px; }
.chart-bars span { width: 38%; border-radius: 2px 2px 0 0; }
.chart-col span.y { margin-top: 6px; font-size: 12px; color: var(--mut); }
.chart-head { display: flex; font-size: 12px; color: var(--mut); margin-bottom: 6px; }
.chart-head span:last-child { padding-left: 24%; }
.legend { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 12px; color: var(--mut); }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.sw { width: 12px; height: 10px; border-radius: 2px; display: inline-block; }
.params { display: grid; gap: 8px; }
@media (min-width: 768px) { .params { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.param { padding: 10px 12px; border-radius: 8px; background: var(--gray); font-size: 12px; color: var(--mut); }
.param b { display: block; margin-top: 2px; font-size: 15px; font-weight: 500; color: var(--ink); }
.ctrl { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .ctrl { flex-direction: row; align-items: flex-end; } .ctrl > div { flex: 1 1 auto; } }
.switch { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 4px; border: none; background: none; font-size: 14px; color: var(--ink); }
.switch .t { position: relative; width: 36px; height: 20px; border-radius: var(--pill); background: rgba(8,16,20,.25); flex-shrink: 0; transition: background-color .2s; }
.switch .t::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: var(--pill); background: var(--white); transition: left .2s; }
.switch[aria-checked="true"] .t { background: var(--ink); }
.switch[aria-checked="true"] .t::after { left: 18px; }
.bigval .lbl { margin: 0; }
.bigval .num { font-size: clamp(28px, 3vw, 34px); font-weight: 500; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.range { position: relative; height: 14px; border-radius: var(--pill); background: var(--gray); margin-top: 26px; }
.range .fill { position: absolute; top: 0; bottom: 0; border-radius: var(--pill); background: rgba(8,16,20,.45); transition: left .35s ease, width .35s ease; }
.range .med { position: absolute; top: -6px; bottom: -6px; width: 3px; margin-left: -1px; background: var(--ink); transition: left .35s ease; }
.range .med i { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-style: normal; font-size: 12px; font-weight: 500; white-space: nowrap; }
.range .anc { position: absolute; top: -6px; bottom: -6px; border-left: 1px dashed var(--ink); }
.range .anc i { position: absolute; top: 20px; left: 0; transform: translateX(-50%); font-style: normal; font-size: 12px; color: var(--mut); white-space: nowrap; }
.axis { position: relative; height: 18px; margin-top: 26px; font-size: 12px; color: var(--mut); }
.axis span { position: absolute; transform: translateX(-50%); }
.boxes { display: grid; gap: 8px; }
@media (min-width: 768px) { .boxes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.box { padding: 10px 12px; border-radius: 8px; background: var(--gray); }
.box span { display: block; font-size: 12px; color: var(--mut); }
.box b { display: block; margin-top: 2px; font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; }
.calc { font-size: 14px; color: var(--mut); line-height: 1.5; font-variant-numeric: tabular-nums; }
.lq-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 12px; align-items: center; }
.lq-row span:first-child { font-size: 13px; color: var(--mut); }
.lq-row b { font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }
.lq-bar { grid-column: 1 / -1; position: relative; height: 14px; border-radius: 3px; background: var(--gray); }
.lq-bar i { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 3px; transition: width .35s ease; }
.wa-after { margin-top: 28px; font-size: clamp(17px, 1.8vw, 20px); color: rgba(255,255,255,.86); }
.wa-after b { color: var(--white); font-weight: 500; }

/* 7 · Angebotsvergleich */
.slider-box { margin-top: 40px; padding: 20px; border-radius: var(--r); background: var(--gray); }
@media (min-width: 768px) { .slider-box { padding: 28px; } }
.slider-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.slider-head label { font-size: clamp(15px, 1.4vw, 17px); font-weight: 500; }
.slider-head output { font-size: clamp(24px, 2.4vw, 28px); font-weight: 500; letter-spacing: -0.03em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.slider { position: relative; margin-top: 14px; }
.slider input { -webkit-appearance: none; appearance: none; width: 100%; height: 28px; background: transparent; margin: 0; cursor: pointer; }
.slider input::-webkit-slider-runnable-track { height: 6px; border-radius: var(--pill); background: var(--white); box-shadow: inset 0 0 0 1px rgba(8,16,20,.18); }
.slider input::-moz-range-track { height: 6px; border-radius: var(--pill); background: var(--white); box-shadow: inset 0 0 0 1px rgba(8,16,20,.18); }
.slider input::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; margin-top: -10px; border-radius: var(--pill); background: var(--ink); border: 3px solid var(--white); box-shadow: 0 0 0 1px rgba(8,16,20,.2); }
.slider input::-moz-range-thumb { width: 20px; height: 20px; border-radius: var(--pill); background: var(--ink); border: 3px solid var(--white); }
.slider input:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; border-radius: var(--pill); }
.be { position: absolute; top: 6px; width: 2px; height: 16px; margin-left: -1px; background: var(--ink); }
.be-l { position: absolute; top: 30px; transform: translateX(-80%); font-size: 12px; color: var(--mut); white-space: nowrap; }
.presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.presets button { min-height: 44px; padding: 0 16px; border-radius: var(--pill); border: 1px solid rgba(8,16,20,.2); background: var(--white); font-size: 13px; }
.offers { display: grid; gap: 12px; margin-top: 16px; }
@media (min-width: 900px) { .offers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 20px; } }
.offer { padding: 20px; border: 1px solid var(--line); border-radius: var(--r); }
@media (min-width: 768px) { .offer { padding: 28px; } }
.offer-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 15px; }
.offer-top b { font-weight: 500; }
.offer-top span { color: var(--mut); }
.offer-top span b { color: var(--ink); }
.offer .lbl { margin: 18px 0 2px; }
.offer .now { font-size: clamp(34px, 3.4vw, 44px); line-height: 1.05; font-weight: 500; letter-spacing: -0.045em; font-variant-numeric: tabular-nums; }
.obar-wrap { position: relative; margin-top: 18px; }
.obar { display: flex; height: 16px; border-radius: 4px; overflow: hidden; background: var(--gray); }
.obar i { display: block; transition: width .3s ease; }
.hatch { background: repeating-linear-gradient(135deg, rgba(8,16,20,.55) 0 2px, rgba(8,16,20,.12) 2px 6px); }
.loss { background: repeating-linear-gradient(135deg, transparent 0 3px, rgba(8,16,20,.18) 3px 4px); box-shadow: inset 0 0 0 1px rgba(8,16,20,.2); }
.obar-anc { position: absolute; top: -5px; bottom: -5px; border-left: 1px dashed var(--ink); border-right: 1px dashed var(--ink); }
.ticks { position: relative; height: 16px; margin-top: 6px; font-size: 12px; color: var(--mut); }
.ticks span { position: absolute; transform: translateX(-50%); }
.olist { margin-top: 12px; }
.olist li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 15px; }
.olist li span { color: var(--mut); }
.olist li b { font-weight: 500; text-align: right; }
.legend--o { margin-top: 16px; }
.take { margin-top: 16px; padding: 16px 20px; border-left: 3px solid var(--ink); background: var(--gray); border-radius: 0 var(--r) var(--r) 0; font-size: clamp(16px, 1.6vw, 18px); font-weight: 500; line-height: 1.45; }
.take span { font-weight: 400; color: var(--mut); }
.deal-end { display: grid; gap: 32px; margin-top: 32px; align-items: end; }
@media (min-width: 1024px) { .deal-end { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 48px; } }
.tl-cap { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; font-size: 15px; font-weight: 500; }
.tl { display: flex; border-bottom: 1px solid var(--line); }
.tl-col { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.tl-bars { height: 100px; width: 100%; display: flex; align-items: flex-end; justify-content: center; gap: 4px; }
.tl-bar { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; width: 34%; height: 100%; }
.tl-bar small { font-size: 12px; color: var(--mut); margin-bottom: 3px; white-space: nowrap; }
.tl-bar i { display: block; width: 100%; border-radius: 2px 2px 0 0; transition: height .3s ease; }
.tl-col > span { font-size: 12px; color: var(--mut); }
.bind { display: grid; grid-template-columns: 90px minmax(0, 1fr); align-items: center; gap: 8px 10px; margin-top: 16px; font-size: 12px; color: var(--mut); }
.bind i { display: block; height: 8px; border-radius: var(--pill); }
.bind .scale { display: flex; justify-content: space-between; }
.deal-close p { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; font-weight: 500; letter-spacing: -0.03em; }
.deal-close .cta-row { margin-top: 22px; flex-direction: column; align-items: flex-start; gap: 10px; }
@media (max-width: 767px) { .deal-close .cta-row { align-items: stretch; } }

/* 8 · Vertrauen */
.tiles { display: grid; gap: 10px; margin-top: 32px; align-items: start; }
@media (min-width: 768px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 48px; } }
@media (min-width: 1024px) { .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
.tile { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; width: 100%; padding: 20px; border-radius: var(--r); border: 1px solid var(--line); background: rgba(255,255,255,.6); text-align: left; color: var(--ink); }
@media (min-width: 1024px) { .tile { min-height: 200px; padding: 26px; } }
.tile:hover { border-color: rgba(8,16,20,.4); }
.tile[aria-expanded="true"] { background: var(--white); }
.tile-top { display: flex; align-items: baseline; gap: 10px; width: 100%; }
.tile .big { font-size: clamp(44px, 4vw, 56px); line-height: 1; font-weight: 500; letter-spacing: -0.05em; font-variant-numeric: tabular-nums; }
.tile .big--t { font-size: clamp(30px, 2.8vw, 38px); }
.tile .unit { font-size: 18px; font-weight: 500; }
.tile .pm { margin-left: auto; font-size: 20px; color: var(--mut); }
.tile .lab { color: var(--mut); line-height: 1.4; }
.tile .det { display: none; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.5; }
.tile[aria-expanded="true"] .det { display: block; animation: fadeUp .3s ease both; }
.qcard { display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 24px; border-radius: var(--r); background: var(--ink); color: var(--white); }
@media (min-width: 1024px) { .qcard { padding: 30px; } }
.qcard blockquote { font-size: clamp(17px, 1.6vw, 19px); line-height: 1.45; }
.qcard figcaption { display: flex; align-items: center; gap: 14px; font-size: 14px; line-height: 1.4; }
.qcard img { width: 52px; height: 52px; border-radius: var(--pill); object-fit: cover; flex-shrink: 0; }
.qcard .who { font-weight: 500; }
.qcard .role { color: var(--w-mut); }

/* 9 · Kontakt */
.contact { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .contact { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; } }
.contact .h2 { color: rgba(255,255,255,.58); }
.contact .lead { color: rgba(255,255,255,.86); }
.contact .trust { margin-top: 18px; font-size: 14px; color: var(--w-mut); }
.ctc { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--w-line); font-size: 15px; line-height: 1.55; }
.ctc img { width: 64px; height: 64px; border-radius: var(--pill); object-fit: cover; }
.ctc a { display: inline-block; padding: 8px 0; margin: -8px 0; text-decoration: none; color: var(--white); }
.ctc a:hover { text-decoration: underline; }
.ctc b { display: block; font-weight: 500; }
.card { padding: 20px; border-radius: var(--r); background: var(--white); color: var(--ink); display: flex; flex-direction: column; gap: 18px; }
@media (min-width: 768px) { .card { padding: 32px; } }
.card h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 500; letter-spacing: -0.03em; }
.opts { display: grid; gap: 8px; }
@media (min-width: 1280px) { .opts { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.opt { display: flex; gap: 12px; align-items: flex-start; width: 100%; min-height: 64px; padding: 14px 16px; border-radius: var(--r); border: 1px solid rgba(8,16,20,.16); background: var(--white); text-align: left; color: var(--ink); }
.opt:hover { border-color: rgba(8,16,20,.45); }
.opt[aria-checked="true"] { border-color: var(--ink); background: var(--gray); }
.opt .dot { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border-radius: var(--pill); border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; }
.opt[aria-checked="true"] .dot::after { content: ""; width: 8px; height: 8px; border-radius: var(--pill); background: var(--ink); }
.opt b { display: block; font-weight: 500; }
.opt small { display: block; margin-top: 2px; font-size: 14px; line-height: 1.45; color: var(--mut); }
.form { display: none; flex-direction: column; gap: 14px; }
.form.is-open { display: flex; animation: fadeUp .3s ease both; }
.field label { display: block; margin-bottom: 6px; font-size: 15px; font-weight: 500; }
.field label .opt-t { font-weight: 400; color: var(--mut); }
.inp { width: 100%; min-height: 48px; padding: 12px 14px; border-radius: var(--r); border: 1px solid rgba(8,16,20,.24); background: var(--white); color: var(--ink); font-size: 16px; }
textarea.inp { min-height: 96px; resize: vertical; }
.inp:focus-visible { outline: 2px solid var(--ink); outline-offset: 1px; }
.inp[aria-invalid="true"] { border-color: #8a1c1c; }
.err { display: none; margin-top: 6px; font-size: 14px; color: #8a1c1c; }
.err.is-on { display: block; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.themes { padding: 14px 16px; border-radius: var(--r); background: var(--gray); font-size: 14px; line-height: 1.5; }
.themes ul { list-style: disc; padding-left: 18px; margin: 4px 0; }
.themes button { min-height: 40px; padding: 0; border: none; background: none; text-decoration: underline; text-underline-offset: 3px; font-size: 14px; }
.status { padding: 20px; border-radius: var(--r); background: var(--gray); }
.status p:first-child { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
.status p + p { margin-top: 6px; color: var(--mut); }
.status--err { background: #fbeaea; }
.alt { font-size: 15px; color: var(--mut); text-align: center; }
.alt a { color: var(--ink); font-weight: 500; display: inline-block; padding: 10px 0; margin: -10px 0; }
.small { font-size: 14px; line-height: 1.5; color: var(--mut); }
.small a { color: var(--ink); display: inline-block; padding: 10px 0; margin: -10px 0; }
.spinner { width: 16px; height: 16px; border-radius: var(--pill); border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* 10 · Footer */
.footer { padding: 56px 0 40px; background: var(--ink); color: var(--white); border-top: 1px solid var(--w-line); }
@media (min-width: 1024px) { .footer { padding: 96px 0 48px; } }
.f-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .f-grid { grid-template-columns: minmax(0, 1fr) auto auto auto; gap: 56px; } }
.f-intro img { width: 125px; }
.f-intro p.t { margin-top: 20px; font-size: 26px; font-weight: 500; letter-spacing: -0.03em; }
.f-intro p.s { margin-top: 12px; color: var(--w-mut); max-width: 380px; }
.f-intro .btn { margin-top: 16px; }
.f-grid address { font-style: normal; line-height: 1.7; color: rgba(255,255,255,.86); }
.f-grid address b { display: block; color: var(--white); font-weight: 500; }
.f-grid address a { color: var(--white); text-decoration: none; display: inline-block; padding: 10px 0; margin: -10px 0; }
.f-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
@media (min-width: 1024px) { .f-cols { display: contents; } }
.f-nav p { margin-bottom: 10px; font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--w-mut); }
.f-nav a { display: inline-flex; align-items: center; min-height: 40px; color: var(--w-mut); text-decoration: none; }
.f-nav a:hover, .f-grid address a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.f-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--w-line); font-size: 13px; color: var(--w-mut); }
.footer :focus-visible { outline-color: var(--white); }

/* Einwilligungsbanner */
.consent { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; max-width: 560px; margin: 0 auto; padding: 20px; border-radius: var(--r); background: var(--white); color: var(--ink); box-shadow: 0 10px 40px rgba(8,16,20,.28), 0 0 0 1px rgba(8,16,20,.08); }
@media (min-width: 768px) { .consent { left: auto; right: 24px; bottom: 24px; } }
.consent p.t { font-size: 17px; font-weight: 500; letter-spacing: -0.02em; }
.consent p.x { margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--mut); }
.consent p.x a { color: var(--ink); }
.consent .row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 16px; }
.consent .btn { min-height: 48px; padding: 0 12px; font-size: 15px; }
.btn--ghost { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(8,16,20,.24); }
.btn--ghost:hover { background: var(--gray); }
.f-consent { min-height: 40px; padding: 0; border: none; background: none; color: var(--w-mut); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.f-consent:hover { color: var(--white); }

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reviews-track { animation: none; }
}
.is-offscreen .bubble-wrap, .is-offscreen .reviews-track { animation-play-state: paused; }
