/* ===========================================================================
   Technik daheim — Design System
   Warmes Blau-Hybrid · Hell/Dunkel/System · barrierefrei (Senioren-tauglich)
   =========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Marke */
  --brand: #2563eb;
  --brand-dark: #1e40af;
  --brand-light: #3b82f6;
  --brand-ultra: #eff6ff;
  --brand-glow: rgba(37, 99, 235, .30);
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #b45309;

  /* Kühle Neutraltöne (Blau) – Farbwelt der Infografiken */
  --bg: #f0f5fa;
  --bg-2: #e4edf8;
  --surface: #ffffff;
  --surface-2: #eff6ff;
  --border: #d7e3f3;
  --border-strong: #b9cfeb;

  --text: #12233f;        /* 14,3:1 auf --bg */
  --text-soft: #42597d;   /*  6,5:1 auf --bg */
  --text-mute: #546c8d;   /*  4,9:1 auf --bg – AA auch für kleine Schrift */
  --on-brand: #ffffff;

  /* Maße */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 26px;
  /* Schatten tragen den Blauton der Fläche statt neutralem Schwarz */
  --shadow-sm: 0 1px 2px rgba(19, 44, 88, .06), 0 2px 6px rgba(19, 44, 88, .05);
  --shadow: 0 8px 24px rgba(19, 44, 88, .10), 0 2px 6px rgba(19, 44, 88, .06);
  --shadow-lg: 0 28px 64px rgba(19, 44, 88, .18);
  --ring: 0 0 0 4px var(--brand-glow);

  --topbar-h: 42px;
  --nav-h: 76px;

  --ease: cubic-bezier(.16, .84, .44, 1);
  --t-fast: .16s var(--ease);
  --t: .26s var(--ease);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #0d1524;
  --bg-2: #131c30;
  --surface: #1a2540;
  --surface-2: #20304f;
  --border: #27344f;
  --border-strong: #3a5da8;

  --brand: #5b8bf5;
  --brand-dark: #8fb2ff;   /* heller als --brand: Links bleiben lesbar (7,2:1) */
  --brand-light: #7aa2f7;
  --brand-ultra: #1b2740;
  --brand-glow: rgba(91, 139, 245, .32);

  --text: #e6edfb;
  --text-soft: #b6c4e0;
  --text-mute: #90a2c4;
  --on-brand: #ffffff;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow: 0 8px 22px rgba(0, 0, 0, .45);
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, .6);
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* Kein horizontaler Überlauf auf Mobil – 'clip' bricht (anders als 'hidden') position:sticky nicht */
html, body { overflow-x: clip; max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---- Barrierefreiheit-Effekte ---- */
html.a11y-fs-1 { font-size: 112%; }
html.a11y-fs-2 { font-size: 125%; }
html.a11y-underline a { text-decoration: underline !important; text-underline-offset: 2px; }
html.a11y-motion *, html.a11y-motion *::before, html.a11y-motion *::after {
  animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
html.a11y-spacing p, html.a11y-spacing li, html.a11y-spacing .lead, html.a11y-spacing .tagline {
  line-height: 1.95 !important; letter-spacing: .02em; word-spacing: .08em; }
html.a11y-contrast { --text: #000; --text-soft: #15161a; --text-mute: #33363d; --border: #8a8a8a; --border-strong: #5a5a5a; }
html.a11y-contrast[data-theme="dark"] { --bg: #000; --bg-2: #050505; --surface: #0b0b0b; --surface-2: #111; --text: #fff; --text-soft: #f0f0f0; --text-mute: #cfcfcf; --border: #6a6a6a; --border-strong: #8a8a8a; }
/* Scrollleiste (rechts) – dünn, in Markenfarbe */
html { scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-light), var(--brand));
  border-radius: 999px; border: 2px solid var(--bg); background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--brand), var(--brand-dark)); border-color: var(--bg); background-clip: padding-box; }

body {
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; color: var(--text); text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-soft); text-wrap: pretty; }
li { text-wrap: pretty; }

/* Hinweis: Druckfeedback und die dunklere Buttonfläche im Dunkelmodus stehen
   jetzt direkt im Button-Block weiter unten. */

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-ultra);
  padding: 7px 14px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
}
/* Ohne feste Groesse skaliert das Icon mit der Pillenhoehe mit – bei zweizeiliger
   Beschriftung wird es dann riesig. */
.eyebrow svg { width: 17px; height: 17px; flex: none; }
.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 62ch; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.muted { color: var(--text-mute); }

/* skip link */
.skip {
  position: fixed; left: 12px; top: -60px; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top var(--t);
}
.skip:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
/* Ruhige Flaechen statt Pillen mit Leuchtschatten: kein Hover-Sprung, nur eine
   gefuellte Primaerfarbe, Rest zurueckhaltend. Trefferflaechen bleiben gross. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1.02rem; line-height: 1; letter-spacing: -.005em;
  padding: 16px 26px; border-radius: 12px;
  transition: background var(--t-fast), border-color var(--t-fast),
              color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  white-space: nowrap; border: 1px solid transparent;
}
.btn svg { width: 20px; height: 20px; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff;
  box-shadow: 0 1px 2px rgba(19, 44, 88, .18); }
.btn-primary:hover { background: #16327f; border-color: #16327f; color: #fff;
  box-shadow: 0 2px 6px rgba(19, 44, 88, .24); }
html[data-theme="dark"] .btn-primary { background: #3b6fe0; border-color: #3b6fe0; }
html[data-theme="dark"] .btn-primary:hover { background: #2f5fd0; border-color: #2f5fd0; }

.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--brand); color: var(--text); }

/* WhatsApp: erkennbar am Zeichen, nicht an einer Neonflaeche */
.btn-wa { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-wa svg { color: #128c4a; }
html[data-theme="dark"] .btn-wa svg { color: #34d17b; }
.btn-wa:hover { background: var(--surface-2); border-color: #128c4a; color: var(--text); }

.btn-accent { background: var(--accent); color: #3a2400;
  border-color: color-mix(in srgb, var(--accent) 70%, #000); box-shadow: none; }
.btn-accent:hover { background: var(--accent-light); }

.btn-lg { padding: 18px 30px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ===========================================================================
   HEADER
   =========================================================================== */
.topbar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-soft);
}
.topbar .container { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; min-height: var(--topbar-h); padding-block: 7px; }
.topbar-usps { flex: 1; min-width: 0; }
.usp { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-weight: 500; }

/* USP rotator: alles in einer Zeile – wenn zu breit, automatisch durchwechseln */
.usp-rotator { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: nowrap; min-width: 0; overflow: hidden; text-align: center; }
.usp-rotator.is-rotating { display: block; position: relative; height: 1.5em; }
.usp-rotator.is-rotating .usp { position: absolute; inset: 0; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .45s var(--ease), transform .45s var(--ease); pointer-events: none; }
.usp-rotator.is-rotating .usp.active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .usp-rotator.is-rotating .usp { transition: opacity .15s; transform: none; } }
.usp svg { width: 16px; height: 16px; color: var(--accent-dark); flex: none; }
html[data-theme="dark"] .usp svg { color: var(--accent-light); }
.topbar-tools { display: flex; align-items: center; gap: 10px; }

/* lang + theme controls */
.seg { display: inline-flex; flex: none; background: var(--surface-2); border: 1.5px solid var(--border-strong); border-radius: 999px; padding: 3px; gap: 2px; }
.seg button { flex: none; }
.seg button {
  padding: 6px 11px; border-radius: 999px; font-size: .82rem; font-weight: 700; color: var(--text-soft);
  display: inline-flex; align-items: center; justify-content: center; transition: var(--t-fast);
}
.seg button svg { width: 19px; height: 19px; stroke-width: 2.1; }
.seg button[aria-pressed="true"] { background: var(--brand); color: #fff; box-shadow: 0 2px 8px -2px var(--brand-glow); }
.seg button:hover:not([aria-pressed="true"]) { color: var(--brand-dark); background: var(--brand-ultra); }
/* Theme-Icons deutlich sichtbar machen */
.seg button[data-set-theme] { color: var(--text); }
.seg button[data-set-theme]:not([aria-pressed="true"]) svg { opacity: .92; }
html[data-theme="dark"] .seg { background: #16203a; border-color: var(--border-strong); }
html[data-theme="dark"] .seg button[data-set-theme] { color: var(--text); }

.nav {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav .container { display: flex; align-items: center; gap: 14px; min-height: var(--nav-h); max-width: 1460px; }
.menu { gap: 1px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  box-shadow: 0 6px 16px -6px var(--brand-glow);
}
.brand-mark svg { width: 23px; height: 23px; }
.brand b { color: var(--brand-dark); font-weight: 800; }

.menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.menu > li { position: relative; }
.menu > li > a, .menu > li > button {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 10px 11px; border-radius: 11px; font-weight: 600; font-size: .98rem; color: var(--text-soft);
  transition: var(--t-fast);
}
.menu > li > a:hover, .menu > li > button:hover,
.menu > li.open > button { color: var(--brand-dark); background: var(--brand-ultra); }
.menu .caret { width: 16px; height: 16px; transition: transform var(--t); }
.menu > li.open .caret { transform: rotate(180deg); }
.nav-cta { margin-left: 6px; }
.nav-tools { display: flex; align-items: center; gap: 8px; margin-left: 8px; flex: none; }
/* Gutschein-Highlight in der Navi */
.menu > li > a.nav-gift { gap: 7px; padding: 9px 15px; font-weight: 700; color: #3a2400; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent)); box-shadow: 0 6px 16px -8px rgba(245, 158, 11, .6);
  transition: transform var(--t-fast), box-shadow var(--t), filter var(--t-fast); }
.menu > li > a.nav-gift:hover { color: #3a2400; background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px); box-shadow: 0 11px 22px -8px rgba(245, 158, 11, .7); filter: brightness(1.04); }
.menu > li > a.nav-gift svg { width: 17px; height: 17px; }
.brand { flex: none; }
.brand-name { white-space: nowrap; }
.ctrl-btn { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-mute); display: grid; place-items: center; transition: var(--t-fast); flex: none; }
.ctrl-btn svg { width: 19px; height: 19px; }
.ctrl-btn:hover { color: var(--brand-dark); border-color: var(--brand); }
.ctrl-btn[aria-pressed="true"], .ctrl-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---- Barrierefreiheit-Panel ---- */
.a11y { position: fixed; inset: 0; z-index: 140; }
.a11y[hidden] { display: none; }
.a11y__scrim { position: absolute; inset: 0; background: rgba(15, 12, 8, .35); animation: a11yFade .2s var(--ease); }
.a11y__panel { position: absolute; top: 72px; right: 20px; width: min(348px, 94vw); max-height: calc(100dvh - 92px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg);
  animation: a11yPop .22s var(--ease); }
@keyframes a11yFade { from { opacity: 0; } }
@keyframes a11yPop { from { opacity: 0; transform: translateY(-8px); } }
.a11y__head { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
.a11y__head svg { width: 21px; height: 21px; color: var(--brand); }
.a11y__head b { font-weight: 800; }
.a11y__x { margin-left: auto; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; color: var(--text-mute); transition: var(--t-fast); }
.a11y__x:hover { background: var(--surface-2); color: var(--text); }
.a11y__x svg { width: 18px; height: 18px; }
.a11y__sect { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.a11y__lbl { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-mute); font-weight: 700; }
.a11y__sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 11px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 4px; }
.a11y__sizes button { padding: 10px 6px; border-radius: 9px; font-weight: 800; color: var(--text-soft); transition: var(--t-fast); }
.a11y__sizes button:nth-child(2) { font-size: 1.1rem; } .a11y__sizes button:nth-child(3) { font-size: 1.3rem; }
.a11y__sizes button[aria-pressed="true"] { background: var(--brand); color: #fff; }
.a11y__sizes button:hover:not([aria-pressed="true"]) { color: var(--text); }
.a11y__opts { padding: 6px 18px; }
.a11y__opts li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent); }
.a11y__opts li:last-child { border-bottom: 0; }
.a11y__opts li > span { display: flex; align-items: center; gap: 11px; flex: 1; font-weight: 600; }
.a11y__opts li > span svg { width: 19px; height: 19px; color: var(--text-mute); flex: none; }
.a11y-switch { width: 46px; height: 27px; border-radius: 999px; background: var(--border-strong); position: relative; flex: none; transition: background var(--t-fast); cursor: pointer; }
.a11y-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.35); transition: transform var(--t-fast); }
.a11y-switch[aria-checked="true"] { background: var(--brand); }
.a11y-switch[aria-checked="true"]::after { transform: translateX(19px); }
.a11y__foot { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-top: 1px solid var(--border); }
.a11y__foot button { font-weight: 700; color: var(--text-soft); transition: var(--t-fast); }
.a11y__foot button:hover { color: var(--text); }
.a11y__explain { font-weight: 700; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 5px; }
html[data-theme="dark"] .a11y__explain { color: var(--accent-light); }
.a11y__explain svg { width: 16px; height: 16px; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(880px, 92vw);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 30px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--t), transform var(--t);
  z-index: 95;
}
/* unsichtbare Brücke über den Abstand, damit das Menü beim Hinunterfahren offen bleibt */
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 20px; }
.mega.wide { width: min(960px, 94vw); grid-template-columns: repeat(4, 1fr); }
.menu > li.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-col__h { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px; padding-left: 10px; }
.mega-col + .mega-col { }
.mega a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 10px; color: var(--text-soft); font-weight: 500; font-size: .97rem;
  transition: var(--t-fast);
}
.mega a:hover { background: var(--brand-ultra); color: var(--brand-dark); }
.mega a .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); flex: none; opacity: .55; }
.mega a:hover .dot { opacity: 1; }
.mega-foot { grid-column: 1 / -1; margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.mega-foot span { color: var(--text-mute); font-size: .92rem; }

/* burger */
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border-strong); background: var(--surface); margin-left: auto; }
.burger svg { width: 24px; height: 24px; margin-inline: auto; }

/* ---------- Mobile nav ---------- */
.mnav { position: fixed; inset: 0; z-index: 120; visibility: hidden; }
.mnav__scrim { position: absolute; inset: 0; background: rgba(15, 12, 8, .5); opacity: 0; transition: var(--t); }
.mnav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 90vw);
  background: var(--surface); box-shadow: var(--shadow-lg); padding: 20px;
  transform: translateX(100%); transition: transform var(--t); overflow-y: auto;
}
.mnav.open { visibility: visible; }
.mnav.open .mnav__scrim { opacity: 1; }
.mnav.open .mnav__panel { transform: none; }
.mnav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mnav__close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-strong); }
.mnav__close svg { width: 22px; height: 22px; margin-inline: auto; }
.macc > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 12px; border-radius: 12px; font-weight: 700; font-size: 1.05rem;
}
.macc > summary::-webkit-details-marker { display: none; }
.macc > summary .caret { width: 18px; height: 18px; transition: transform var(--t); }
.macc[open] > summary .caret { transform: rotate(180deg); }
.macc[open] > summary { background: var(--brand-ultra); color: var(--brand-dark); }
.macc .sub { padding: 4px 6px 10px; }
.macc .sub a { display: block; padding: 9px 14px; border-radius: 9px; color: var(--text-soft); font-weight: 500; }
.macc .sub a:hover { background: var(--surface-2); color: var(--brand-dark); }
.mnav__link { display: block; padding: 14px 12px; border-radius: 12px; font-weight: 700; font-size: 1.05rem; color: var(--text); }
.mnav__tools { display: flex; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

/* ===========================================================================
   HERO + sections
   =========================================================================== */
.hero { position: relative; padding-block: clamp(48px, 7vw, 92px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 78% 8%, var(--brand-glow), transparent 60%),
    radial-gradient(50% 50% at 6% 96%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 60%);
  opacity: .8;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { color: var(--brand-dark); }
.hero .lead { margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 18px 26px; flex-wrap: wrap; margin-top: 26px; color: var(--text-mute); font-size: .95rem; }
.hero-trust .ti { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--brand); }

.hero-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px;
}
.hero-card h3 { margin-bottom: 4px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 6px; }
.price-row .amt { font-size: 2.6rem; font-weight: 800; color: var(--brand-dark); letter-spacing: -.03em; }
.price-row .per { color: var(--text-mute); font-weight: 600; }
.checklist { display: grid; gap: 12px; margin: 18px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); }
.checklist svg { width: 22px; height: 22px; color: #16a34a; flex: none; margin-top: 1px; }
html[data-theme="dark"] .checklist svg { color: #4ade80; }

/* Über-mich-Foto */
.aboutphoto { position: relative; margin: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); max-width: 420px; justify-self: end; }
.aboutphoto img { width: 100%; height: auto; display: block; }
.aboutphoto figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 16px; display: flex; flex-direction: column; gap: 2px;
  background: linear-gradient(to top, rgba(10,8,5,.88), rgba(10,8,5,.35) 60%, transparent); color: #fff; }
.aboutphoto figcaption b { font-size: 1.1rem; font-weight: 800; }
.aboutphoto figcaption span { font-size: .85rem; opacity: .9; }
@media (max-width: 1080px) { .aboutphoto { justify-self: start; max-width: 360px; } }

/* cards / grids */
.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column; gap: 10px; height: 100%;
}
a.card:hover, .card.hov:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); color: var(--text); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-ultra); color: var(--brand-dark); margin-bottom: 4px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; }
.card p { font-size: 1rem; }
.card .more { margin-top: auto; padding-top: 8px; color: var(--brand-dark); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.card .more svg { width: 17px; height: 17px; transition: transform var(--t); }
a.card:hover .more svg { transform: translateX(4px); }

.section-head { max-width: 64ch; margin-bottom: 40px; }
.section.alt { background: var(--bg-2); }

/* steps */
.steps { counter-reset: s; display: grid; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .num { counter-increment: s; flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 1.15rem; box-shadow: 0 8px 18px -8px var(--brand-glow); }
.step .num::before { content: counter(s); }

/* feature list */
.flist { display: grid; gap: 14px; }
.flist li { display: flex; gap: 13px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; }
.flist svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 2px; }
.flist b { color: var(--text); }

/* pricing */
.ptable { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.plan.feat { border-color: var(--brand); box-shadow: 0 18px 44px -22px var(--brand-glow); position: relative; }
.plan.feat::after { content: attr(data-badge); position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #3a2400; font-weight: 800; font-size: .78rem; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; }
.plan h3 { font-size: 1.3rem; }
.plan .amt { font-size: 2.5rem; font-weight: 800; color: var(--brand-dark); letter-spacing: -.03em; margin-top: 8px; }
.plan .amt small { font-size: .95rem; color: var(--text-mute); font-weight: 600; }
.plan ul { display: grid; gap: 11px; margin: 18px 0 24px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-soft); font-size: 1rem; }
.plan li svg { width: 20px; height: 20px; color: #16a34a; flex: none; margin-top: 2px; }
.plan .btn { margin-top: auto; }

/* modern price card (Preise-Seite) */
.pricecard { display: grid; grid-template-columns: .95fr 1.05fr; max-width: 880px; margin-inline: auto;
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.pricecard__left { position: relative; padding: 44px 38px; color: #fff; overflow: hidden;
  background: linear-gradient(155deg, var(--brand-light), var(--brand-dark)); display: flex; flex-direction: column; justify-content: center; }
.pricecard__left::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  top: -120px; right: -90px; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 70%); }
.pricecard__left::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  bottom: -110px; left: -70px; background: radial-gradient(circle, rgba(0,0,0,.18), transparent 70%); }
.pricecard__left > * { position: relative; z-index: 1; }
.pricecard__eye { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; color: rgba(255,255,255,.9); }
.pricecard__amt { font-size: clamp(3.4rem, 8vw, 4.8rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; margin-top: 16px; }
.pricecard__amt .per { display: block; font-size: 1.05rem; font-weight: 600; opacity: .9; margin-top: 8px; letter-spacing: 0; }
.pricecard__sub { margin-top: 18px; font-weight: 700; font-size: .95rem; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28); display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px; align-self: flex-start; }
.pricecard__sub svg { width: 18px; height: 18px; }
.pricecard__badge { position: absolute; top: 22px; right: 22px; z-index: 2; background: var(--accent); color: #3a2400;
  font-weight: 800; font-size: .76rem; letter-spacing: .03em; padding: 8px 14px; border-radius: 999px; box-shadow: 0 8px 18px -8px rgba(245,158,11,.6); }
.pricecard__right { padding: 38px; background: var(--surface); display: flex; flex-direction: column; }
.pricecard__rl { display: grid; gap: 14px; margin-bottom: 26px; }
.pricecard__rl li { display: flex; gap: 13px; align-items: flex-start; color: var(--text); font-weight: 500; }
.pricecard__rl svg { width: 23px; height: 23px; color: #16a34a; flex: none; margin-top: 1px; }
html[data-theme="dark"] .pricecard__rl svg { color: #4ade80; }
.pricecard__right .btn + .btn { margin-top: 12px; }
@media (max-width: 720px) {
  .pricecard { grid-template-columns: 1fr; max-width: 480px; }
  .pricecard__left { padding: 34px 28px; }
  .pricecard__right { padding: 28px; }
}
/* kompakte, einspaltige Variante (z. B. Hero) */
.pricecard--compact { grid-template-columns: 1fr; max-width: none; }
.pricecard--compact .pricecard__left { padding: 30px 30px 26px; }
.pricecard--compact .pricecard__amt { font-size: clamp(3rem, 6vw, 3.8rem); }
.pricecard--compact .pricecard__right { padding: 26px 30px 30px; }

/* redaktionelle "Warum lohnt sich das"-Section */
.valuesec { background:
  radial-gradient(70% 90% at 92% 0%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 60%),
  linear-gradient(180deg, var(--surface-2), var(--bg)); }
html[data-theme="dark"] .valuesec { background:
  radial-gradient(70% 90% at 92% 0%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 60%),
  linear-gradient(180deg, var(--bg-2), var(--bg)); }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 30px; }
.benefit { display: flex; gap: 13px; align-items: flex-start; }
.benefit svg { width: 24px; height: 24px; flex: none; margin-top: 2px;
  color: var(--accent-dark); background: color-mix(in srgb, var(--accent) 22%, transparent); border-radius: 8px; padding: 3px; }
html[data-theme="dark"] .benefit svg { color: var(--accent-light); }
.benefit b { display: block; color: var(--text); font-size: 1.06rem; margin-bottom: 2px; }
.benefit .d { color: var(--text-soft); }
@media (max-width: 920px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.qa { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 1.08rem; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { width: 24px; height: 24px; flex: none; transition: transform var(--t); color: var(--brand); }
.qa[open] summary .pm { transform: rotate(45deg); }
.qa .ans { padding: 0 22px 20px; color: var(--text-soft); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 80% at 90% 10%, rgba(255,255,255,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin: 12px auto 26px; max-width: 56ch; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; }

/* breadcrumb + page hero */
.crumb { display: flex; gap: 8px; align-items: center; font-size: .92rem; color: var(--text-mute); flex-wrap: wrap; padding-top: 22px; }
.crumb a { color: var(--text-mute); } .crumb a:hover { color: var(--brand-dark); }
.crumb svg { width: 14px; height: 14px; }
.phero { padding-block: clamp(34px, 5vw, 60px) clamp(28px, 4vw, 44px); }
.phero .lead { margin-top: 14px; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.tag { background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; font-size: .9rem; font-weight: 600; color: var(--text-soft); }

/* prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 40px; margin-bottom: 14px; }
.prose h3 { margin-top: 28px; margin-bottom: 10px; }
.prose p { margin-bottom: 14px; }
.prose ul.bul { display: grid; gap: 10px; margin: 8px 0 18px; }
.prose ul.bul li { display: flex; gap: 11px; align-items: flex-start; }
.prose ul.bul svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 3px; }

/* contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.info-cards { display: grid; gap: 14px; }
.info-card { display: flex; gap: 16px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); transition: var(--t); }
a.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text); border-color: var(--border-strong); }
.info-card .ico { width: 50px; height: 50px; border-radius: 13px; background: var(--brand-ultra); color: var(--brand-dark); display: grid; place-items: center; flex: none; }
.info-card .ico svg { width: 24px; height: 24px; }
.info-card .lbl { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); font-weight: 700; }
.info-card .val { font-weight: 700; font-size: 1.1rem; color: var(--text); }

/* form */
.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; font-size: .98rem; }
.field .req { color: #dc2626; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font: inherit; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border-strong); border-radius: 12px; transition: var(--t-fast);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: var(--ring); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--text-soft); }
.check input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--brand); }
.form-note { font-size: .9rem; color: var(--text-mute); margin-top: 12px; text-align: center; }
.form-ok { display: none; background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 16px 18px; border-radius: 12px; font-weight: 600; margin-bottom: 16px; }
html[data-theme="dark"] .form-ok { background: #0c2a1c; border-color: #14532d; color: #6ee7b7; }
.form-ok.show { display: block; }

/* region chips */
.regions-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.regions-cloud a { background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 10px 18px; font-weight: 600; color: var(--text-soft); transition: var(--t-fast); }
.regions-cloud a:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; }
.stat .n { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--brand-dark); letter-spacing: -.03em; }
.stat .l { color: var(--text-mute); font-weight: 600; }

/* blog */
.post { display: flex; flex-direction: column; }
.post .pmeta { font-size: .85rem; color: var(--text-mute); font-weight: 600; }

/* ===========================================================================
   „FÜR SIE“-SEITEN (Senioren / Familien / Unternehmer)
   Zweispaltiger Hero, randlose Punkteliste, Preis-Panel, Fallbeispiele,
   Zeitstrahl. Farben laufen komplett über die Tokens oben.
   =========================================================================== */
.snx-hero { padding-block: clamp(30px, 4vw, 56px) clamp(24px, 3vw, 40px); }
.snx-hero__grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.snx-hero h1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); margin-top: 14px; }
.snx-hero .hero-cta { margin-top: 28px; }
.snx-hero .blogfig { margin: 0; max-width: none; }
.snx-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; color: var(--text-mute); font-size: .98rem; }
.snx-trust span { display: inline-flex; align-items: center; gap: 8px; }
.snx-trust svg { width: 18px; height: 18px; color: var(--brand); flex: none; }

/* Einstiegssatz hervorheben */
.snx-pull { border-left: 4px solid var(--brand); padding: 4px 0 4px 22px; margin-bottom: 22px;
  font-size: 1.3rem; line-height: 1.55; font-weight: 600; color: var(--text); }

/* Punkteliste ohne Kastenlook */
.snx-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 34px; }
.snx-points li { display: flex; gap: 14px; align-items: flex-start; }
.snx-points svg { width: 24px; height: 24px; color: var(--brand); flex: none; margin-top: 2px; }
.snx-points b { font-weight: 650; font-size: 1.04rem; line-height: 1.45; }

/* Preis-Panel über die volle Breite */
.snx-price { display: grid; grid-template-columns: .85fr 1.15fr; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.snx-price__left { position: relative; overflow: hidden; color: #fff; padding: 46px 42px;
  background: linear-gradient(150deg, #2563eb 0%, #1e40af 62%, #17307d 100%);
  display: flex; flex-direction: column; justify-content: center; }
.snx-price__left::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255, 255, 255, .10); top: -140px; right: -110px; }
.snx-price__left > * { position: relative; z-index: 1; }
/* globale p-Farbregel überschreiben, sonst dunkler Text auf blauem Panel */
.snx-price__left h3, .snx-price__left p, .snx-price__left span { color: #fff; }
.snx-price__eye { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; opacity: .92; }
.snx-price h3 { font-size: 1.5rem; margin-top: 10px; }
.snx-price__amt { font-size: clamp(3.4rem, 7vw, 4.6rem); font-weight: 800; line-height: 1; letter-spacing: -.035em; margin-top: 18px; }
.snx-price__per { display: block; font-size: 1.05rem; font-weight: 600; opacity: .92; margin-top: 10px; letter-spacing: 0; }
.snx-price__p { margin-top: 18px; font-size: 1.02rem; opacity: .95; max-width: 34ch; }
.snx-price__right { background: var(--surface); padding: 42px; display: flex; flex-direction: column; }
.snx-price__right ul { display: grid; gap: 14px; margin-bottom: 26px; }
.snx-price__right li { display: flex; gap: 13px; align-items: flex-start; color: var(--text); font-size: 1.02rem; }
.snx-price__right li svg { width: 23px; height: 23px; color: #16a34a; flex: none; margin-top: 1px; }
html[data-theme="dark"] .snx-price__right li svg { color: #4ade80; }
.snx-price__note { color: var(--text-mute); font-size: .96rem; margin-bottom: 20px; }
.snx-price__btns { display: grid; gap: 12px; margin-top: auto; }
.snx-price__call { text-align: center; color: var(--text-mute); font-size: .96rem; margin-top: 16px; }

/* Fallbeispiele: zwei Spalten, randlos, mit Ziffer */
.snx-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.snx-case { background: var(--surface); border: 0; border-radius: var(--radius-lg); padding: 34px 36px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--t), box-shadow var(--t); }
.snx-case:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.snx-case__top { display: flex; align-items: center; gap: 14px; }
.snx-case__num { font-variant-numeric: tabular-nums; font-weight: 800; font-size: 1.5rem;
  color: var(--brand); opacity: .38; letter-spacing: -.03em; flex: none; }
.snx-case__ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-ultra); color: var(--brand-dark); flex: none;
  box-shadow: inset 0 0 0 1px var(--border-strong); }
html[data-theme="dark"] .snx-case__ico { background: rgba(91, 139, 245, .15); }
.snx-case__ico svg { width: 23px; height: 23px; }
.snx-case h3 { font-size: 1.24rem; }
.snx-case__meta { color: var(--text-mute); font-size: .93rem; font-weight: 600; margin-top: -6px; }
.snx-case p { font-size: 1.02rem; line-height: 1.62; }
.snx-case__now { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); color: var(--text); }

/* Ablauf als Zeitstrahl */
.snx-flow { position: relative; max-width: 760px; margin-inline: auto; display: grid; gap: 34px; }
.snx-flow::before { content: ""; position: absolute; left: 23px; top: 26px; bottom: 26px; width: 2px;
  background: linear-gradient(var(--brand), var(--brand-ultra)); }
html[data-theme="dark"] .snx-flow::before { background: linear-gradient(var(--brand), var(--surface-2)); }
.snx-flow__step { display: flex; gap: 22px; align-items: flex-start; position: relative; }
.snx-flow__num { flex: none; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 0 0 6px var(--bg); z-index: 1; font-variant-numeric: tabular-nums; }
html[data-theme="dark"] .snx-flow__num { background: #3b6fe0; }
.section.alt .snx-flow__num { box-shadow: 0 0 0 6px var(--bg-2); }
.snx-flow__step h3 { font-size: 1.2rem; margin-top: 10px; }
.snx-flow__step p { margin-top: 8px; font-size: 1.04rem; line-height: 1.65; color: var(--text-soft); }

/* Versprechen-Liste + Anruf-Panel */
.snx-promise { display: grid; gap: 18px; }
.snx-promise li { display: flex; gap: 14px; align-items: flex-start; }
.snx-promise svg { width: 23px; height: 23px; color: var(--brand); flex: none; margin-top: 3px; }
.snx-promise b { font-weight: 650; font-size: 1.04rem; line-height: 1.5; }
.snx-call { margin-top: 30px; background: var(--brand-ultra); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px; }
.snx-call p { color: var(--text-soft); font-size: 1.02rem; }

@media (max-width: 1080px) {
  .snx-hero__grid { grid-template-columns: 1fr; }
  .snx-points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .snx-price { grid-template-columns: 1fr; }
  .snx-cases { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .snx-points { grid-template-columns: 1fr; }
  .snx-price__left, .snx-price__right { padding: 30px 26px; }
  .snx-case { padding: 26px 24px; }
  .snx-pull { font-size: 1.14rem; padding-left: 16px; }
  .snx-flow__num { width: 42px; height: 42px; font-size: 1.05rem; }
  .snx-flow::before { left: 20px; }
}

/* Überblicksleiste der Startseite */
.ovc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 34px; }
.ovc li { display: flex; gap: 15px; align-items: flex-start; }
.ovc__ico { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface); color: var(--brand-dark); box-shadow: inset 0 0 0 1px var(--border-strong); }
.ovc__ico svg { width: 21px; height: 21px; }
.ovc b { display: block; font-size: 1.04rem; font-weight: 700; margin-bottom: 3px; }
.ovc span[data-i18n] { display: block; color: var(--text-soft); font-size: .99rem; line-height: 1.55; }
@media (max-width: 1080px) { .ovc { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ovc { grid-template-columns: 1fr; } }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.footer { position: relative; overflow: hidden; margin-top: 56px;
  background: linear-gradient(180deg, var(--bg-2), color-mix(in srgb, var(--bg-2) 55%, var(--surface)));
  border-top: 1px solid var(--border-strong); padding-top: clamp(56px, 7vw, 88px); }
.footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-light) 22%, var(--brand) 50%, var(--brand-light) 78%, transparent);
  opacity: .8; }
.footer::after { content: ""; position: absolute; top: -160px; right: -100px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow), transparent 70%); opacity: .35; pointer-events: none; }
html[data-theme="dark"] .footer { background: linear-gradient(180deg, #101a2c, #080e1a); }
.footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 44px 40px; }
.footer .brand { margin-bottom: 18px; }
.footer .tagline { color: var(--text-soft); max-width: 42ch; margin-bottom: 16px; line-height: 1.65; }
.fusp { color: var(--text); font-weight: 600; font-size: .9rem; line-height: 1.55; max-width: 40ch; margin-bottom: 22px;
  padding: 10px 14px; border-left: 3px solid var(--brand); background: var(--brand-ultra); border-radius: 0 10px 10px 0; }
/* schlanke Inline-Kontaktzeilen */
.fcontact-list { display: grid; gap: 13px; margin-bottom: 22px; }
.fcontact-list a { display: flex; align-items: center; gap: 12px; color: var(--text-soft); font-weight: 600; transition: color var(--t-fast); }
.fcontact-list a:hover { color: var(--brand-dark); }
html[data-theme="dark"] .fcontact-list a:hover { color: var(--brand-light); }
.fcontact-list svg { width: 20px; height: 20px; color: var(--brand); flex: none; }
/* Social / Kanäle */
.fsocial { display: flex; gap: 10px; margin-bottom: 22px; }
.fsocial a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--border); transition: var(--t-fast); }
.fsocial a:hover { color: #fff; background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.fsocial svg { width: 19px; height: 19px; }
/* Badge */
.fbadge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px; font-weight: 700; font-size: .85rem;
  color: var(--brand-dark); background: var(--brand-ultra); border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent); }
html[data-theme="dark"] .fbadge { color: var(--brand-light); }
.fbadge svg { width: 17px; height: 17px; color: var(--accent-dark); }
html[data-theme="dark"] .fbadge svg { color: var(--accent-light); }
/* Spaltentitel mit Unterstrich-Akzent */
.fcol__h { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text); font-weight: 700;
  position: relative; padding-bottom: 12px; margin-bottom: 16px; }
.fcol__h::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; border-radius: 2px;
  background: var(--brand); }
.fcol ul { display: grid; gap: 2px; }
.fcol a { color: var(--text-soft); font-weight: 500; padding: 6px 0; display: inline-block; width: fit-content;
  transition: color var(--t-fast), transform var(--t-fast); }
.fcol a:hover { color: var(--brand-dark); transform: translateX(4px); }
html[data-theme="dark"] .fcol a:hover { color: var(--brand-light); }
/* Schnellkontakt-Formular */
.fquick { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-sm); }
.fquick__eye { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); font-weight: 700; margin-bottom: 6px; }
.fquick__h { font-size: 1.16rem; margin-bottom: 16px; }
.fquick__form { display: grid; gap: 10px; }
.fquick input, .fquick textarea { width: 100%; padding: 12px 14px; font: inherit; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border-strong); border-radius: 11px; transition: var(--t-fast); }
.fquick textarea { min-height: 86px; resize: vertical; }
.fquick input:focus, .fquick textarea:focus { border-color: var(--brand); box-shadow: var(--ring); outline: none; }
.fquick .form-ok { padding: 12px 14px; font-size: .9rem; }
.footer-regions { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-regions .rl { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); font-weight: 700; margin-right: 6px; }
.footer-regions .sep { display: none; }
.footer-regions a { color: var(--text-soft); font-size: .9rem; font-weight: 500; padding: 6px 13px; border-radius: 999px; border: 1px solid var(--border);
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast), transform var(--t-fast); }
.footer-regions a:hover { color: var(--brand-dark); background: var(--brand-ultra); border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); transform: translateY(-1px); }
html[data-theme="dark"] .footer-regions a:hover { color: var(--brand-light); }

.subbar { border-top: 1px solid var(--border); margin-top: 40px; }
.subbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: 18px; }
.subbar-usps { flex: 1; min-width: 0; gap: 18px; }
.subbar .legal { display: flex; gap: 8px 16px; flex-wrap: wrap; align-items: center; font-size: .9rem; color: var(--text-mute); }
.subbar .legal a { color: var(--text-mute); transition: color var(--t-fast); } .subbar .legal a:hover { color: var(--brand-dark); }
.subbar .made a { color: var(--brand-dark); font-weight: 700; }
.subbar .legal .sep { color: var(--border-strong); }

/* ---- Cookie-Consent ---- */
.cc { position: fixed; inset: 0; z-index: 150; pointer-events: none; }
.cc[hidden] { display: none; }
.cc__scrim { position: absolute; inset: 0; background: rgba(15,12,8,.45); opacity: 0; transition: opacity var(--t); pointer-events: none; }
.cc.is-settings .cc__scrim { opacity: 1; pointer-events: auto; }
.cc__box { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg); pointer-events: auto; }
.cc__box[hidden] { display: none; }
.cc__banner { position: absolute; left: 22px; bottom: 22px; width: min(420px, calc(100vw - 44px)); padding: 22px; animation: a11yPop .25s var(--ease); }
.cc__settings { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(640px, 94vw); max-height: 88dvh; display: flex; flex-direction: column; animation: a11yPop .25s var(--ease); }
.cc__head { display: flex; align-items: center; gap: 10px; font-size: 1.08rem; }
.cc__banner .cc__head { margin-bottom: 10px; }
.cc__settings .cc__head { padding: 18px 22px; border-bottom: 1px solid var(--border); }
.cc__head svg { width: 22px; height: 22px; color: var(--brand); }
.cc__head b { font-weight: 800; }
.cc__intro { color: var(--text-soft); font-size: .94rem; line-height: 1.6; }
.cc__banner .cc__intro { margin-bottom: 16px; }
.cc__settings .cc__intro { padding: 18px 22px 4px; margin: 0; }
.cc__cats { padding: 8px 22px; display: grid; gap: 12px; overflow-y: auto; }
.cc__btns { display: grid; gap: 10px; }
.cc__btns--row { grid-template-columns: 1fr 1fr; }
.cc-cat { border: 1px solid var(--border); border-radius: 14px; padding: 16px; background: color-mix(in srgb, var(--surface-2) 55%, transparent); }
.cc-cat__h { display: flex; align-items: center; gap: 12px; }
.cc-cat__i { width: 38px; height: 38px; border-radius: 10px; flex: none; display: grid; place-items: center; background: var(--brand-ultra); color: var(--brand-dark); }
html[data-theme="dark"] .cc-cat__i { background: color-mix(in srgb, var(--brand) 22%, transparent); color: var(--brand-light); }
.cc-cat__i svg { width: 19px; height: 19px; }
.cc-cat__t { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cc-cat__t b { font-weight: 700; }
.cc-cat__t span { font-size: .85rem; color: var(--text-mute); }
.cc-cat > p { margin-top: 11px; font-size: .9rem; color: var(--text-soft); line-height: 1.55; }
.cc-badge { font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-dark); background: var(--brand-ultra); padding: 5px 9px; border-radius: 999px; margin-right: 8px; white-space: nowrap; flex: none; }
html[data-theme="dark"] .cc-badge { color: var(--brand-light); background: color-mix(in srgb, var(--brand) 22%, transparent); }
.a11y-switch[aria-disabled="true"] { opacity: .55; cursor: default; }
.cc__foot { padding: 16px 22px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.cc-links { display: flex; gap: 16px; flex-wrap: wrap; }
.cc-links a { font-size: .86rem; color: var(--text-mute); text-decoration: underline; }
.cc-links a:hover { color: var(--brand-dark); }
.cc__banner .cc-links { margin-top: 14px; }
.cc-open { color: var(--text-mute); cursor: pointer; font: inherit; transition: color var(--t-fast); }
.cc-open:hover { color: var(--brand-dark); }
@media (max-width: 520px) {
  .cc__btns--row { grid-template-columns: 1fr; }
  .cc__banner { left: 12px; right: 12px; bottom: 12px; width: auto; }
}

/* floating whatsapp */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,.7); transition: transform var(--t); }
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 32px; height: 32px; }

/* utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
[hidden] { display: none !important; }

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
/* Navi früh genug einklappen, damit Menü + Steuerung nie quetschen/überlaufen */
/* 9 Hauptpunkte brauchen mehr Platz: Burger-Menue frueher einblenden */
@media (max-width: 1500px) {
  .menu, .nav-cta, .nav-tools { display: none; }
  .burger { display: grid; place-items: center; }
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 1.0625rem; }
  .cols-2, .cols-3, .cols-4, .ptable, .stats, .contact-grid, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-tools { display: none; } /* Sprache/Theme stecken auf Mobil im Menü */
  .subbar .container { flex-direction: column; align-items: flex-start; }
  .subbar-usps { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ===== Blog ===== */
.postmeta { color: var(--text-soft); font-size: .95rem; margin-top: 12px; font-weight: 600; }
.blogwrap { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 48px; align-items: start; }
.toc { position: sticky; top: 92px; }
.toc__in { border: 1px solid var(--border); border-radius: 16px; padding: 18px 18px 20px; background: var(--surface); }
.toc__in b { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-soft); margin-bottom: 10px; }
.toc__in ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.toc__in li { counter-increment: toc; }
.toc__in a { color: var(--text); text-decoration: none; font-size: .96rem; line-height: 1.4; display: flex; gap: 8px; }
.toc__in a::before { content: counter(toc); color: var(--primary); font-weight: 700; font-variant-numeric: tabular-nums; }
.toc__in a:hover { color: var(--primary); }
.blogprose { max-width: 760px; min-width: 0; }
.blogprose h2 { scroll-margin-top: 96px; margin-top: 38px; }
.blogprose h2:first-child { margin-top: 0; }
.tipbox { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; padding: 16px 18px;
  border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 12px; background: var(--accent-soft, rgba(245,158,11,.08)); }
.tipbox svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px; }
.tipbox b { color: var(--text); }
.card.post .pmeta { display: inline-block; font-size: .82rem; font-weight: 700; color: var(--primary); margin-top: 4px; }
@media (max-width: 880px) {
  .blogwrap { grid-template-columns: minmax(0,1fr); gap: 8px; }
  .toc { position: static; margin-bottom: 8px; }
}

/* ===== Blog: Tags, Badges, Notiz, Tabelle, In-Article-CTA ===== */
.blogtags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.blogtag { font-size: .82rem; font-weight: 600; padding: 5px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); }
.catbadge { display: inline-block; align-self: flex-start; font-size: .76rem; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  background: var(--primary-soft, rgba(37,99,235,.12)); color: var(--primary); margin-top: 4px; }
.notebox { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; padding: 16px 18px;
  border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 12px;
  background: var(--primary-soft, rgba(37,99,235,.07)); }
.notebox svg { width: 22px; height: 22px; flex: none; color: var(--primary); margin-top: 2px; }
.notebox b { color: var(--text); }
.tablewrap { overflow-x: auto; max-width: 100%; margin: 22px 0; -webkit-overflow-scrolling: touch; }
.ctable { width: 100%; border-collapse: collapse; font-size: .98rem; }
.ctable th, .ctable td { white-space: normal; word-break: break-word; }
.ctable th, .ctable td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.ctable thead th { background: var(--surface); font-weight: 700; color: var(--text);
  border-bottom: 2px solid var(--border-strong); }
.ctable tbody tr:last-child td { border-bottom: none; }
.ctable td:first-child { font-weight: 600; }
.inlinecta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  margin: 30px 0; padding: 22px 24px; border-radius: 18px; border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--primary-soft, rgba(37,99,235,.10)), var(--accent-soft, rgba(245,158,11,.08))); }
.inlinecta__txt h3 { font-size: 1.18rem; margin: 0 0 4px; }
.inlinecta__txt p { margin: 0; color: var(--text-soft); }
.inlinecta__btns { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 620px) { .inlinecta { flex-direction: column; align-items: flex-start; } }

/* ===== Blog v2: Hero-Illustration, Komponenten ===== */
.bloghero .container { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 40px; align-items: center; }
.bloghero__txt { min-width: 0; }
.bloghero__art { width: 100%; min-width: 0; }
.blogart { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 40px rgba(0,0,0,.18)); }
.il-bg{fill:var(--surface)} .il-line{stroke:var(--border-strong);fill:none;stroke-width:2}
.il-p{fill:var(--primary)} .il-ps{fill:var(--primary-soft,rgba(37,99,235,.16))}
.il-a{fill:var(--accent)} .il-as{fill:var(--accent-soft,rgba(245,158,11,.20))}
.il-pl{stroke:var(--primary);fill:none;stroke-width:2.4;stroke-linecap:round}
.il-w{fill:var(--surface-2,#fff)} .il-soft{fill:var(--border)}
@media (max-width: 900px){ .bloghero .container{ grid-template-columns:minmax(0,1fr); } .bloghero__art{ max-width:420px; margin:6px auto 0; } }

/* „Auf einen Blick“-Box */
.takeaways { margin: 6px 0 30px; padding: 22px 24px; border-radius: 18px; border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--primary-soft,rgba(37,99,235,.10)), transparent 70%); }
.takeaways h2 { font-size: 1.12rem; margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.takeaways h2 svg { width: 22px; height: 22px; color: var(--primary); }
.takeaways ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.takeaways li { display: flex; gap: 10px; align-items: flex-start; }
.takeaways li svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }

/* Schritt-Karten */
.steps2 { display: grid; gap: 14px; margin: 22px 0; }
.step2 { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border: 1px solid var(--border);
  border-radius: 14px; background: var(--surface); }
.step2__n { flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: var(--primary); }
.step2__b b { display: block; margin-bottom: 3px; }
.step2__b p { margin: 0; color: var(--text-soft); }

/* Stat-Highlights */
.statrow { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 24px 0; }
.statcard { text-align: center; padding: 18px 14px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.statcard b { display: block; font-size: 1.7rem; color: var(--primary); line-height: 1; }
.statcard span { font-size: .92rem; color: var(--text-soft); }
@media (max-width: 620px){ .statrow{ grid-template-columns:1fr; } }
.il-card{fill:var(--surface);stroke:var(--border-strong);stroke-width:2}

/* ===== Blog-Illustrationen: zusätzliche Stil-Klassen ===== */
.il-acc { stroke: var(--accent); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.il-dash { stroke: var(--border-strong); fill: none; stroke-width: 2; stroke-dasharray: 3 6; stroke-linecap: round; }
.il-good { fill: #16a34a; } html[data-theme="dark"] .il-good { fill: #4ade80; }
.il-bad { fill: #ef4444; }
.il-muted { fill: var(--text-soft); opacity: .55; }
.blogart .glow { opacity: .14; }

/* ===== Blog: In-Artikel-Infografiken (panels / flow / bars / grid / banner) ===== */
.panels { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.ipanel { border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; background: var(--surface); min-width: 0; }
.ipanel h4 { text-align: center; font-size: 1.02rem; margin-bottom: 18px; }
/* Fluss (Router -> Gerät) */
.flow { display: flex; align-items: flex-start; justify-content: center; gap: 12px; }
.flownode { text-align: center; min-width: 0; }
.flownode__box { display: inline-block; background: var(--accent); color: #3a2400; font-weight: 800; padding: 11px 20px; border-radius: 10px; }
.flownode__sub { font-weight: 700; font-size: .92rem; margin-top: 10px; }
.tone-good { color: #16a34a; } html[data-theme="dark"] .tone-good { color: #4ade80; }
.tone-bad { color: #dc2626; } html[data-theme="dark"] .tone-bad { color: #f87171; }
.flowarrow { align-self: center; color: var(--text-mute); flex: none; }
.flowarrow svg { width: 30px; height: 30px; }
/* Signalbalken je Raum */
.bars { display: grid; gap: 14px; }
.bar { display: grid; grid-template-columns: minmax(96px,38%) 1fr; align-items: center; gap: 12px; }
.bar__lbl { font-size: .96rem; font-weight: 600; color: var(--text); }
.bar__lbl.is-bad { color: #dc2626; } html[data-theme="dark"] .bar__lbl.is-bad { color: #f87171; }
.bar__track { height: 12px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.bar__fill { display: block; height: 100%; border-radius: 999px; }
.bar__fill.lvl-good { background: #16a34a; }
.bar__fill.lvl-mid  { background: var(--accent); }
.bar__fill.lvl-bad  { background: #dc2626; }
/* Prüf-Raster (mini-cards) */
.infocard { border: 1px solid var(--border); border-radius: 18px; padding: 24px; background: var(--surface); margin: 26px 0; }
.infocard h4 { text-align: center; font-size: 1.1rem; margin-bottom: 20px; }
.igrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.icard { border: 1px solid var(--border); border-top: 3px solid var(--accent); border-radius: 12px; padding: 14px 16px; background: var(--surface-2); text-align: center; }
.icard b { display: block; color: var(--text); margin-bottom: 4px; }
.icard span { font-size: .9rem; color: var(--text-soft); }
/* Emphasis-Banner */
.banner { text-align: center; font-weight: 800; color: #fff; padding: 16px 20px; border-radius: 14px;
  background: linear-gradient(100deg, var(--accent-dark), #8a3a12); margin: 26px 0; }
@media (max-width: 720px) {
  .panels { grid-template-columns: 1fr; }
  .igrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) { .igrid { grid-template-columns: 1fr; } }

/* ===== Blog: Voll-Hero-Infografik + Pull-Quote ===== */
.heroinfo { margin-top: 26px; border: 1px solid var(--border); border-radius: 20px; padding: 14px; background: #fff; box-shadow: var(--shadow); max-width: 1000px; }
.heroinfo svg { width: 100%; height: auto; display: block; border-radius: 12px; }
.pullquote { margin: 28px 0; padding: 20px 26px; border-left: 4px solid var(--primary);
  background: var(--primary-soft, rgba(37,99,235,.07)); border-radius: 0 14px 14px 0;
  font-size: 1.22rem; font-weight: 600; font-style: italic; color: var(--text); }
.pullquote cite { display: block; margin-top: 10px; font-size: .92rem; font-weight: 600; color: var(--text-soft); font-style: normal; }

/* ===== Blog: In-Body-SVG-Infografik (figure) ===== */
.blogfig { margin: 28px 0; border: 1px solid var(--border); border-radius: 18px; padding: 14px; background: #fff; box-shadow: var(--shadow); max-width: 720px; }
.blogfig svg { width: 100%; height: auto; display: block; border-radius: 10px; }
.blogfig figcaption { margin-top: 10px; text-align: center; font-size: .9rem; color: var(--text-soft); }

/* ===== Infografik-Farben: Dark-Mode-Overrides (Hell-Defaults stehen im SVG selbst) ===== */
html[data-theme="dark"] .heroinfo, html[data-theme="dark"] .blogfig { background: #131c30; border-color: #26324f; }
html[data-theme="dark"] .ig-bg    { fill:   #131c30; }
html[data-theme="dark"] .ig-card  { fill:   #1f2c49; }
html[data-theme="dark"] .ig-cardln{ stroke: #3a5da8; }
html[data-theme="dark"] .ig-brand { fill:   #5b8bf5; }
html[data-theme="dark"] .ig-brands{ stroke: #5b8bf5; }
html[data-theme="dark"] .ig-hd    { fill:   #e2ebfd; }
html[data-theme="dark"] .ig-tx    { fill:   #b2c0de; }
html[data-theme="dark"] .ig-soft  { fill:   #20304f; }
html[data-theme="dark"] .ig-ring  { stroke: #30436b; }
html[data-theme="dark"] .ig-arrow { fill:   #7aa2f7; }
html[data-theme="dark"] .ig-arrows{ stroke: #7aa2f7; }
