/* ---------- FONTS: lokal gehostet (DSGVO, kein Google-CDN) ---------- */
/* Bricolage Grotesque 600-800 latin */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('fonts/bricolage-grotesque-600-800-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter 400 latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter 500 latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter 600 latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter 700 latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #FEFEFE; --bg-raised: #FFFFFF; --bg-wash: #F7F7FC;
  --ink: #12151A; --ink-soft: #454F58; --ink-faint: #6B7580;
  --navy: #002641; --navy-2: #0B3A5C;
  --sky: #0CAAFF;
  --lavender: #BABAFF; --lavender-deep: #6C6CD9; --lavender-wash: #EEEEFC;
  --whatsapp: #25D366;
  --line: #E4E3EF; --line-strong: #C9C8DC;
  --radius-lg: 24px; --radius-md: 16px; --radius-sm: 10px;
  --shadow-soft: 0 1px 2px rgba(18,21,26,0.04), 0 10px 26px -18px rgba(18,21,26,0.12);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; text-wrap: balance; margin: 0; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: 22px; }
@media (min-width: 640px) { .wrap { padding-inline: 36px; } }
@media (min-width: 1024px) { .wrap { padding-inline: 56px; } }

.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); display: inline-block; }
.grad-text { background: linear-gradient(120deg, var(--navy) 15%, var(--sky) 85%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.16,.8,.24,1), transform .6s cubic-bezier(.16,.8,.24,1); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; } }
/* Sicherheitsnetz: falls die Reveal-Observer-Logik aus irgendeinem Grund (grosse Elemente, langsames JS) nicht rechtzeitig greift,
   wird der Inhalt spaetestens nach 2.5s trotzdem sichtbar, statt dauerhaft unsichtbar zu bleiben. */
@keyframes reveal-fallback { to { opacity: 1; transform: none; } }
.reveal, .reveal-stagger > * { animation: reveal-fallback 0.01s 2.5s forwards; }

/* ---------- glow card ---------- */
.glow { position: relative; background: var(--bg-raised); border-radius: var(--radius-lg); isolation: isolate; transition: transform .3s ease, box-shadow .3s ease; }
.glow::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.4px; z-index: -1;
  background: linear-gradient(128deg, var(--sky) 0%, transparent 32%, transparent 62%, var(--lavender-deep) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .6; transition: opacity .3s ease;
}
.glow::after { content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -2; box-shadow: 0 26px 60px -32px var(--glow-shadow, rgba(12,170,255,0.3)), var(--shadow-soft); transition: box-shadow .3s ease; }
.glow-blue { --glow-shadow: rgba(12,170,255,0.3); }
.glow-lav { --glow-shadow: rgba(108,108,217,0.28); }
.glow-hover:hover { transform: translateY(-4px); }
.glow-hover:hover::before { opacity: 1; }
.glow-hover:hover::after { box-shadow: 0 34px 70px -30px var(--glow-shadow, rgba(12,170,255,0.4)), var(--shadow-soft); }

/* ---------- image placeholder ---------- */
.img-slot { border: 2px dashed var(--line-strong); border-radius: var(--radius-lg); background: var(--bg-wash); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 28px; color: var(--ink-faint); text-align: center; }
.img-slot svg { color: var(--line-strong); }
.img-slot span { font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.photo { border-radius: var(--radius-lg); object-fit: cover; width: 100%; height: auto; box-shadow: var(--shadow-soft); }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 15px; gap: 16px; position: relative; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-logo { display: block; height: 54px; width: auto; }
.footer-brand .brand-logo { height: 50px; }
@media (max-width: 420px) { .brand-logo { height: 46px; } }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; background: var(--navy); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; position: relative; overflow: hidden; }
.brand-mark svg { width: 20px; height: 20px; }
.brand-mark::after { content: ""; position: absolute; right: -6px; bottom: -6px; width: 20px; height: 20px; border-radius: 50%; background: var(--sky); opacity: .9; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.brand-name span { font-size: 10.5px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-faint); }
@media (max-width: 420px) { .brand-name { display: none; } }
.nav-links { display: none; align-items: center; gap: 26px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
@media (min-width: 1077px) { .nav-links { display: flex; } }
.nav-links a { position: relative; transition: color .15s ease; padding-block: 4px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px; background: var(--sky); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
/* desktop CTA in navbar (only when full nav is shown; a.nav-cta beats .btn specificity) */
a.nav-cta { display: none; }
@media (min-width: 1077px) { a.nav-cta { display: inline-flex; } }

/* burger toggle (mobile + iPad, up to ~1076px) */
.nav-burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 11px; border: 1px solid var(--line); background: none; color: var(--ink); flex-shrink: 0; cursor: pointer; }
@media (max-width: 1076px) { .nav-burger { display: flex; } }

/* fullscreen mobile/iPad overlay menu */
.nav-overlay { position: fixed; inset: 0; z-index: 60; background: var(--bg); display: flex; flex-direction: column; padding: 15px 22px calc(30px + env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .34s cubic-bezier(.16,.8,.24,1), transform .34s cubic-bezier(.16,.8,.24,1), visibility .34s; }
.nav-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 1077px) { .nav-overlay { display: none; } }
.nav-overlay-top { display: flex; justify-content: flex-end; }
.nav-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--line); background: none; color: var(--ink); cursor: pointer; transition: background .15s ease, border-color .15s ease; }
.nav-close:hover { background: var(--bg-wash); border-color: var(--line-strong); }
.nav-overlay-inner { flex: 1; width: 100%; max-width: 440px; margin: 0 auto; display: flex; flex-direction: column; padding: 20px 0 6px; }
.nav-overlay-links { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.nav-overlay-links a { text-align: center; font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(22px, 5.4vw, 27px); font-weight: 700; color: var(--ink); padding: 18px 4px; border-bottom: 1px solid var(--line); transition: color .15s ease; }
.nav-overlay-links a:last-child { border-bottom: none; }
.nav-overlay-links a:hover, .nav-overlay-links a:active { color: var(--sky); }
.nav-overlay-cta { width: 100%; white-space: nowrap; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 15px 24px; border-radius: 999px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, opacity .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 16px 34px -16px rgba(0,38,65,0.4); }
.btn-navy:hover { background: var(--navy-2); }
.btn-green { background: var(--whatsapp); color: #fff; box-shadow: 0 16px 34px -16px rgba(37,211,102,0.5); }
.btn-green:hover { filter: brightness(1.04); }
.btn-sky { background: var(--sky); color: #fff; box-shadow: 0 16px 34px -16px rgba(12,170,255,0.55); }
.btn-sky:hover { filter: brightness(1.05); }
.btn-onnavy { background: #fff; color: var(--navy); box-shadow: 0 18px 38px -14px rgba(0,0,0,0.35); }
.btn-onnavy:hover { box-shadow: 0 22px 46px -12px rgba(0,0,0,0.45); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
@media (max-width: 640px) {
  .btn { font-size: 13.5px; padding: 14px 18px; gap: 7px; }
  .btn-sm { font-size: 12.5px; padding: 10px 16px; }
}

/* ---------- HERO ---------- */
.hero { padding-block: 56px 64px; position: relative; }
@media (min-width: 640px) { .hero { padding-block: 84px 88px; } }
@media (min-width: 1024px) { .hero { padding-block: 104px 104px; } }
/* mobile + iPad: centered, image after the description; desktop: text left / image right */
.hero-grid { display: grid; gap: 30px; text-align: center; justify-items: center; grid-template-areas: "top" "image" "bottom"; }
.hero-top { grid-area: top; }
.hero-visual-wrap { grid-area: image; }
.hero-bottom { grid-area: bottom; width: 100%; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; grid-template-areas: "top image" "bottom image"; column-gap: 64px; row-gap: 24px; text-align: left; justify-items: stretch; align-items: center; }
  .hero-visual-wrap { align-self: center; }
}
@media (max-width: 1023px) {
  .hero-sub { margin-inline: auto; }
  .hero-checks { align-items: center; }
  .hero-ctas { display: flex; justify-content: center; }
  .hero-wa-line, .hero-meta { justify-content: center; }
  .hero-meta { width: 100%; }
}
.hero-eyebrow { font-size: 12px; letter-spacing: 0.14em; white-space: nowrap; }
@media (max-width: 700px) { .hero-eyebrow { font-size: 10px; letter-spacing: 0.06em; } }
.hero h1 { margin-top: 14px; font-size: clamp(2rem, 1.5rem + 2.3vw, 3.3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--ink); }
.hero h1 .hl svg { position: absolute; left: -2%; right: -4%; bottom: -0.16em; width: 106%; height: 0.3em; z-index: -1; }
.hero-sub { margin-top: 22px; font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.15rem); color: var(--ink-soft); max-width: 46ch; line-height: 1.6; }
.hero-checks { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.hero-checks li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
@media (max-width: 400px) { .hero-checks li { font-size: 13.5px; } }
.hero-checks .ck { flex-shrink: 0; width: 21px; height: 21px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.hero-checks .ck svg { width: 10px; height: 10px; }
.hero-ctas { margin-top: 30px; }
.hero-wa-line { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.hero-wa-line svg { color: var(--whatsapp); }
.hero-wa-line:hover { color: var(--whatsapp); }
/* Sekundärer, bewusst zurückhaltender CTA neben dem Haupt-CTA (z.B. Ueber-mich: GF primaer, Rechtsschutz-Anfrage sekundaer) */
.hero-secondary-cta { margin-top: 14px; font-size: 13.5px; color: var(--ink-faint); }
.hero-secondary-cta a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.hero-secondary-cta a:hover { color: var(--sky); }
.hero-microcopy { margin-top: 14px; font-size: 13px; color: var(--ink-faint); }
.hero-meta { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-faint); flex-wrap: wrap; }
.hero-meta a { text-decoration: underline; text-underline-offset: 2px; }
.hero-meta .stars { color: #C8862A; letter-spacing: 1px; font-size: 13px; }
.hero-visual-wrap { position: relative; max-width: 430px; margin-inline: auto; }
.hero-visual-wrap .photo { aspect-ratio: 4/5; }

/* ---------- USP ROW ---------- */
.usp-row { padding-block: 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usp-list { display: grid; gap: 28px; }
@media (min-width: 760px) { .usp-list { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.usp-item { padding-inline: 0; }
@media (min-width: 760px) { .usp-item { padding-inline: 30px; border-left: 1px solid var(--line); } .usp-item:first-child { border-left: none; padding-left: 0; } }
.usp-item h3 { font-size: 15.5px; font-weight: 700; }
.usp-item p { margin-top: 8px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- EXPERTISE ---------- */
.expertise { padding-block: 80px; }
@media (min-width: 1024px) { .expertise { padding-block: 112px; } }
.expertise-head { max-width: 560px; margin-bottom: 44px; }
.expertise-head h2 { margin-top: 14px; font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }
.expertise-head p { margin-top: 20px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; max-width: 46ch; }
.expertise-cols { display: grid; gap: 44px; }
@media (min-width: 900px) { .expertise-cols { grid-template-columns: repeat(3, 1fr); gap: 44px; } }
.expertise-block { display: flex; flex-direction: column; gap: 14px; padding-top: 22px; border-top: 2px solid var(--navy); }
.expertise-block h3 { font-size: 19px; font-weight: 700; line-height: 1.32; }
.expertise-block p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; }
.expertise-link { margin-top: 6px; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--navy); border-bottom: 1.5px solid var(--navy); padding-bottom: 2px; width: fit-content; transition: opacity .18s ease; }
.expertise-link:hover { opacity: .65; }

/* ---------- SECTION SHELL ---------- */
.section { padding-block: 78px; }
@media (min-width: 1024px) { .section { padding-block: 108px; } }
.section-wash { background: var(--bg-wash); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }

/* ---------- LEISTUNGEN — glow tiles ---------- */
.leistungen-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
.leistung-tile { padding: 28px; display: flex; flex-direction: column; gap: 40px; cursor: pointer; }
.leistung-tile-top { display: flex; align-items: flex-start; justify-content: space-between; }
.leistung-tile-idx { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 14px; color: var(--ink-faint); }
.leistung-connector { display: flex; justify-content: center; margin: -6px 0; color: var(--line-strong); }
.leistung-tile-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease; }
.leistung-tile:hover .leistung-tile-arrow { background: var(--navy); border-color: var(--navy); color: #fff; transform: rotate(45deg); }
.leistung-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--lavender-wash); display: flex; align-items: center; justify-content: center; color: var(--navy); }
.leistung-ic svg { width: 22px; height: 22px; }
.leistung-tile h3 { font-size: 21px; font-weight: 700; }
.leistung-tile p { margin-top: 8px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.leistung-tile.is-featured { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); }
.leistung-tile.is-featured h3, .leistung-tile.is-featured p { color: #fff; }
.leistung-tile.is-featured p { color: color-mix(in srgb, #fff 78%, transparent); }
.leistung-tile.is-featured .leistung-tile-idx { color: color-mix(in srgb, #fff 60%, transparent); }
.leistung-tile.is-featured .leistung-tile-arrow { border-color: color-mix(in srgb, #fff 40%, transparent); color: #fff; }
.leistung-tile.is-featured:hover .leistung-tile-arrow { background: #fff; color: var(--navy); border-color: #fff; }
.leistung-tile.is-featured .leistung-ic { background: color-mix(in srgb, #fff 16%, transparent); color: #fff; }
.badge-empf { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: color-mix(in srgb, #fff 15%, transparent); padding: 5px 11px; border-radius: 999px; }
.badge-empf::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }

/* ---------- ABOUT / TEASER (image + text, mirrored) — mobile: text first, image last ---------- */
.about-teaser { display: grid; gap: 26px; grid-template-areas: "top" "image" "bottom"; text-align: center; justify-items: center; }
.about-visual { grid-area: image; width: 100%; }
.about-top { grid-area: top; }
.about-bottom { grid-area: bottom; }
.about-teaser .img-slot, .about-teaser .photo { aspect-ratio: 4/5; }
@media (min-width: 900px) {
  .about-teaser { grid-template-columns: 0.85fr 1.15fr; grid-template-areas: "image top" "image bottom"; column-gap: 64px; row-gap: 22px; align-items: center; text-align: left; justify-items: stretch; }
  .about-teaser--reverse { grid-template-columns: 1.15fr 0.85fr; grid-template-areas: "top image" "bottom image"; }
}
@media (max-width: 899px) {
  .about-top p { margin-inline: auto; }
  .about-quote { border-left: none; padding-left: 0; padding-top: 14px; border-top: 3px solid var(--sky); display: inline-block; }
  .about-cta { margin-inline: auto; }
}
.about-teaser h2 { font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }
.about-top p { margin-top: 18px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; max-width: 52ch; }
.about-quote { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.45; color: var(--ink); border-left: 3px solid var(--sky); padding-left: 18px; }
.about-cta { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 14.5px; border-bottom: 1.5px solid var(--navy); padding-bottom: 2px; width: fit-content; }
.about-cta:hover { opacity: .65; }

/* ---------- EINWAND ---------- */
.einwand { display: grid; gap: 44px; align-items: center; }
@media (min-width: 1024px) { .einwand { grid-template-columns: 0.85fr 1.15fr; gap: 72px; } }
.einwand-quote { padding: 38px 34px; }
.einwand-quote .mark { font-family: 'Bricolage Grotesque', serif; font-size: 50px; line-height: .5; color: var(--sky); display: block; margin-bottom: 14px; }
.einwand-quote p { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; line-height: 1.45; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.einwand-quote footer { margin-top: 20px; font-size: 12.5px; font-weight: 600; color: var(--ink-faint); }
.einwand-body h2 { font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }
.einwand-body p { margin-top: 16px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; }
.einwand-body p + p { margin-top: 12px; }
.einwand-body strong { color: var(--ink); }

/* ---------- HEALTH BANNER ---------- */
.health-banner { position: relative; overflow: hidden; padding: 44px 32px; color: #fff; display: flex; flex-direction: column; gap: 24px; background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%); border-radius: var(--radius-lg); border: 1px solid rgba(12,170,255,0.35); box-shadow: 0 40px 90px -40px rgba(12,170,255,0.55); }
@media (min-width: 800px) { .health-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 54px 50px; } }
.health-banner::after { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; top: -240px; right: -140px; background: radial-gradient(circle, rgba(12,170,255,0.6) 0%, rgba(12,170,255,0) 66%); pointer-events: none; }
.health-banner-orb { position: absolute; width: 420px; height: 420px; border-radius: 50%; bottom: -260px; left: -120px; background: radial-gradient(circle, rgba(186,186,255,0.42) 0%, rgba(186,186,255,0) 68%); pointer-events: none; }
.health-banner-text { position: relative; z-index: 2; max-width: 540px; }
.health-banner h2 { color: #fff; font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }
.health-banner .kicker { color: var(--sky); }
.health-banner p { margin-top: 14px; color: color-mix(in srgb, #fff 82%, transparent); font-size: 14.5px; line-height: 1.65; }
.health-banner .btn { position: relative; z-index: 2; flex-shrink: 0; }

/* ---------- SAVINGS CALCULATOR ---------- */
.savings-calc { position: relative; overflow: hidden; padding: 40px 32px; background: var(--bg-raised); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: 0 34px 78px -34px rgba(12,170,255,0.42); max-width: 620px; margin-inline: auto; text-align: center; }
.savings-calc::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sky), var(--lavender-deep)); }
.savings-calc-head p { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); max-width: 42ch; margin-inline: auto; }
.savings-calc-body { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
@media (min-width: 560px) { .savings-calc-body { flex-direction: row; } }
.savings-calc-field { flex: 1; text-align: left; }
.savings-calc-field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.savings-calc-input { display: flex; align-items: center; gap: 6px; border-bottom: 1.5px solid var(--line); padding: 8px 2px; }
.savings-calc-input input { flex: 1; border: none; background: transparent; font-size: 17px; font-family: inherit; color: var(--ink); min-width: 0; }
.savings-calc-input input:focus-visible { outline: none; }
.savings-calc-input input::-webkit-outer-spin-button, .savings-calc-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.savings-calc-input span { font-size: 14px; color: var(--ink-faint); font-weight: 700; }
.savings-calc-result { margin-top: 26px; padding: 18px 22px; background: var(--lavender-wash); border-radius: var(--radius-md); }
.savings-calc-result-label { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }
.savings-calc-result-value { display: block; margin-top: 6px; font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.8rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.savings-calc-disclaimer { margin-top: 14px; font-size: 12px; color: var(--ink-faint); }
.savings-calc .btn { margin-top: 22px; }

/* ---------- TESTIMONIALS / carousel ---------- */
.tcar { position: relative; }
.tcar-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 6px; -ms-overflow-style: none; scrollbar-width: none; }
.tcar-track::-webkit-scrollbar { display: none; }
.testimonial-card { scroll-snap-align: start; flex: 0 0 100%; padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 1px 2px rgba(18,21,26,0.03), 0 14px 30px -24px rgba(18,21,26,0.12); }
@media (min-width: 640px) { .testimonial-card { flex-basis: calc((100% - 22px) / 2); } }
@media (min-width: 980px) { .testimonial-card { flex-basis: calc((100% - 44px) / 3); } }
.testimonial-card .stars { color: #C8862A; font-size: 15px; letter-spacing: 1px; }
.testimonial-card p { font-size: 14.5px; color: var(--ink); line-height: 1.65; }
.testimonial-card footer { display: flex; align-items: center; gap: 9px; margin-top: auto; }
.testimonial-card footer .g { width: 18px; height: 18px; flex-shrink: 0; }
.testimonial-card footer strong { font-size: 13.5px; font-weight: 700; color: var(--ink); display: block; }
.testimonial-card footer span { font-size: 12px; color: var(--ink-faint); }
.tcar-foot { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.tcar-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: var(--bg-raised); display: flex; align-items: center; justify-content: center; color: var(--ink); cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.tcar-btn:hover { border-color: var(--navy); background: var(--bg-wash); }
.tcar-rating { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--ink); }
.tcar-rating .stars { color: #C8862A; letter-spacing: 1px; }

/* ---------- BLOG ---------- */
.blog-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: flex; flex-direction: column; overflow: hidden; }
.blog-card .img-slot { border-radius: 0; border-width: 0 0 1.5px; aspect-ratio: 16/10; }
.blog-card-img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; border-bottom: 1.5px solid var(--line); }
.blog-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--sky); }
.blog-card h3 { font-size: 17px; font-weight: 700; line-height: 1.35; }
.blog-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.blog-card-link { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--navy); width: fit-content; }
.blog-popular-badge { display: inline-flex; align-items: center; margin-left: 8px; padding: 3px 9px; border-radius: 999px; background: var(--lavender-wash); color: var(--lavender-deep); font-size: 10px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-faint); }
.blog-card.is-hidden { display: none; }

/* ---------- Blog: Suche, Themen-Filter (dynamisch), Sortierung ---------- */
.blog-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.blog-search { position: relative; flex: 1 1 240px; min-width: 200px; }
.blog-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); pointer-events: none; }
.blog-search input { width: 100%; padding: 12px 16px 12px 40px; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-raised); font-family: inherit; font-size: 14px; color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
.blog-search input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(12,170,255,.15); }
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-filter-pill { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-raised); font-family: inherit; font-size: 13px; font-weight: 700; color: var(--ink-soft); cursor: pointer; white-space: nowrap; transition: border-color .15s ease, color .15s ease, background .15s ease; }
.blog-filter-pill:hover { border-color: var(--line-strong); color: var(--ink); }
.blog-filter-pill.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.blog-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-left: auto; }
.blog-sort select { -webkit-appearance: none; appearance: none; padding: 9px 38px 9px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-raised) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23454F58' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center; font-family: inherit; font-size: 13px; color: var(--ink); cursor: pointer; }
.blog-empty-state { text-align: center; color: var(--ink-faint); font-size: 14px; padding: 50px 0; }
@media (max-width: 700px) {
  .blog-toolbar { flex-direction: column; align-items: stretch; }
  .blog-search { flex-basis: auto; }
  .blog-sort { margin-left: 0; justify-content: space-between; }
}

/* ---------- KONTAKT ---------- */
.contact-grid { display: grid; gap: 44px; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 60px; } }
.contact-info h2 { font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }
.contact-info > p { margin-top: 16px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; max-width: 40ch; }
.contact-channels { margin-top: 24px; display: flex; flex-direction: column; }
.contact-channel { display: flex; align-items: center; gap: 12px; padding-block: 14px; border-top: 1px solid var(--line); font-size: 14.5px; font-weight: 600; color: var(--ink); }
.contact-channel:last-child { border-bottom: 1px solid var(--line); }
/* standort: eine eigene, on-brand gezeichnete abstrakte Karte statt Google-Embed */
.map-card { margin-top: 44px; display: grid; overflow: hidden; padding: 0; }
@media (min-width: 760px) { .map-card { grid-template-columns: 1.1fr 1fr; align-items: stretch; } }
.map-visual { aspect-ratio: 16/9; background: var(--bg-wash); }
@media (min-width: 760px) { .map-visual { aspect-ratio: auto; } }
.map-visual svg, .map-visual iframe { width: 100%; height: 100%; display: block; border: 0; }
.map-info { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 40px 32px; }
.map-info h3 { margin-top: 8px; font-size: 18px; font-weight: 700; }
.map-info p { margin-top: 10px; margin-inline: auto; font-size: 14px; color: var(--ink-soft); line-height: 1.65; max-width: 34ch; }
.map-cta { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 14px; border-bottom: 1.5px solid var(--navy); padding-bottom: 2px; }
.map-cta:hover { opacity: .65; }

.form-card { position: relative; overflow: hidden; padding: 34px 32px; background: var(--bg-raised); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: 0 34px 78px -34px rgba(12,170,255,0.42); }
.form-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sky), var(--lavender-deep)); }
.form-card::after { content: ""; position: absolute; z-index: 0; width: 320px; height: 320px; top: -180px; right: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(12,170,255,0.16) 0%, rgba(12,170,255,0) 70%); pointer-events: none; }
.form-card > * { position: relative; z-index: 1; }
.form-head { margin-bottom: 22px; }
.form-head span { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--sky); }
.form-head h3 { margin-top: 8px; font-size: 20px; font-weight: 700; }
.form-head p { margin-top: 6px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 520px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.form-row.two:first-of-type .field { margin-top: 0; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }
.field input { border: none; border-bottom: 1.5px solid var(--line); border-radius: 0; padding: 11px 2px; font-size: 15.5px; font-family: inherit; color: var(--ink); background: transparent; transition: border-color .15s ease; }
.field input:focus-visible { outline: none; border-color: var(--navy); }
.consent { margin-top: 20px; display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--navy); flex-shrink: 0; }
.form-submit { margin-top: 24px; }
.form-note { font-size: 12px; color: var(--ink-faint); margin-top: 14px; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: 8px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg-raised); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.is-open { border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--navy); transition: transform .3s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--navy); color: #fff; border-color: var(--navy); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s cubic-bezier(.16,.8,.24,1); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 22px 22px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 66ch; }

/* ---------- FINAL CTA ---------- */
.final-cta { padding-block: 78px; }
@media (min-width: 1024px) { .final-cta { padding-block: 108px; } }
.final-card { position: relative; overflow: hidden; text-align: center; padding: 56px 32px; color: #fff; border-radius: var(--radius-lg);
  background: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1.4px), linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%);
  background-size: 22px 22px, auto;
  border: 1px solid rgba(12,170,255,0.35); box-shadow: 0 44px 96px -42px rgba(12,170,255,0.55); }
@media (min-width: 1024px) { .final-card { padding: 80px 48px; } }
.final-card::after { content: ""; position: absolute; z-index: 0; width: 560px; height: 560px; top: -280px; right: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(12,170,255,0.55) 0%, rgba(12,170,255,0) 66%); pointer-events: none; }
.final-card-orb { position: absolute; z-index: 0; width: 500px; height: 500px; bottom: -280px; left: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(186,186,255,0.4) 0%, rgba(186,186,255,0) 68%); pointer-events: none; }
.final-inner { position: relative; z-index: 2; }
.final-card h2 { color: #fff; font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; max-width: 620px; margin-inline: auto; }
.final-card p { margin-top: 16px; color: color-mix(in srgb, #fff 82%, transparent); font-size: 15.5px; max-width: 48ch; margin-inline: auto; line-height: 1.65; }
.final-cta-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.final-cta-wa { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; }
.final-cta-wa svg { color: var(--whatsapp); }

/* Blog: Zwischen-CTA als Split-Layout statt zentrierter Standard-Card */
.final-card-split { text-align: left; }
.final-card-split .final-inner { display: grid; grid-template-columns: 1.35fr 0.85fr; gap: 44px; align-items: center; }
.final-card-split h2, .final-card-split p { margin-inline: 0; max-width: none; }
.final-card-split .final-cta-ctas { justify-content: flex-start; }
.final-split-visual { display: flex; flex-direction: column; gap: 12px; }
.fvm-chip { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); font-size: 13px; font-weight: 700; color: #fff; backdrop-filter: blur(6px); width: fit-content; }
.fvm-chip svg { flex-shrink: 0; color: var(--sky); }
.fvm-chip-1 { margin-left: 34px; }
.fvm-chip-2 { margin-left: 6px; }
.fvm-chip-3 { margin-left: 18px; }
@media (max-width: 900px) {
  .final-card-split .final-inner { grid-template-columns: 1fr; }
  .final-card-split { text-align: center; }
  .final-card-split .final-cta-ctas { justify-content: center; }
  .final-split-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
  .fvm-chip-1, .fvm-chip-2, .fvm-chip-3 { margin-left: 0; }
}

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-wash); border-top: 1px solid var(--line); color: var(--ink); padding-block: 56px 28px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.3fr .8fr .8fr .8fr; gap: 24px; } }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-desc { margin-top: 15px; font-size: 13.5px; color: var(--ink-soft); max-width: 34ch; line-height: 1.65; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 15px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--navy); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--ink-faint); }
.footer-wsm-credit a { color: var(--ink-faint); text-decoration: underline; text-underline-offset: 2px; }
.footer-wsm-credit a:hover { color: var(--ink-soft); }

/* ---------- WhatsApp FAB + sticky CTA ---------- */
.wa-fab { position: fixed; right: 20px; bottom: 24px; z-index: 54; width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -10px rgba(37,211,102,0.55); opacity: 0; pointer-events: none; transform: translateY(14px); transition: transform .32s cubic-bezier(.16,.8,.24,1), opacity .32s ease, box-shadow .2s ease; }
.wa-fab.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.wa-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 38px -8px rgba(37,211,102,0.65); }
.wa-fab svg { width: 26px; height: 26px; }
.sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 52; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(12px); border-top: 1px solid var(--line); transform: translateY(115%); transition: transform .32s cubic-bezier(.16,.8,.24,1); align-items: center; gap: 10px; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1 1 auto; min-width: 0; white-space: nowrap; }
.sticky-wa { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px -10px rgba(37,211,102,0.55); }
.sticky-wa svg { width: 21px; height: 21px; }
@media (max-width: 899px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
  .wa-fab { display: none; }
}
@media (min-width: 900px) { .sticky-wa { display: none; } }

/* ==================== SUBPAGES ==================== */
/* breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .cur { color: var(--ink-soft); font-weight: 600; }

/* compact page header */
.page-hero { position: relative; overflow: hidden; background: var(--bg-wash); border-bottom: 1px solid var(--line); padding-block: 40px 56px; }
@media (min-width: 900px) { .page-hero { padding-block: 52px 72px; } }
.page-hero::after { content: ""; position: absolute; z-index: 0; width: 460px; height: 460px; top: -260px; right: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(12,170,255,0.14) 0%, rgba(12,170,255,0) 68%); pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero-inner { max-width: 720px; margin-top: 22px; }
/* Typografie-Nordstern: identisch zur Startseiten-Hero (.hero h1 / .hero-sub), damit alle Seiten gleich wirken. */
.page-hero h1 { margin-top: 14px; font-size: clamp(2rem, 1.5rem + 2.3vw, 3.3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.page-hero p { margin-top: 22px; font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.15rem); color: var(--ink-soft); line-height: 1.6; max-width: 56ch; }
.page-hero .hero-microcopy { margin-top: 14px; font-size: 13px; color: var(--ink-faint); max-width: none; }
.page-hero .hero-secondary-cta { margin-top: 14px; font-size: 13.5px; color: var(--ink-faint); max-width: none; }
@media (min-width: 1024px) { .page-hero .hero-secondary-cta { white-space: nowrap; } }
.page-hero-ctas { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px 14px; align-items: center; }

/* ---------- page-hero visual (Unterseiten-Heros: Grafik/Bild statt leerer Fläche) ---------- */
/* Reihenfolge-Regel (docs/03-layout-und-regeln.md, Hero-Regeln): Mobil/iPad (<1024px)
   Eyebrow+H1+Text -> Bild/Grafik -> CTA/Rest. Ueber grid-template-areas gesteuert, nicht Markup-Duplikat. */
.page-hero-art::after { display: none; }
.page-hero-split {
  display: grid; gap: 30px; margin-top: 22px;
  grid-template-areas: "top" "image" "bottom";
  text-align: center; justify-items: center;
}
.page-hero-top, .page-hero-bottom { width: 100%; max-width: 640px; }
.page-hero-top { grid-area: top; }
.page-hero-bottom { grid-area: bottom; }
.page-hero-split .page-hero-top p { margin-inline: auto; }
.page-hero-split .page-hero-ctas { justify-content: center; }
.page-hero-split .hero-meta { justify-content: center; }
.page-hero-image { grid-area: image; width: 100%; max-width: 460px; margin-inline: auto; }
@media (min-width: 1024px) {
  .page-hero-split {
    grid-template-columns: 1.08fr .92fr; grid-template-areas: "top image" "bottom image";
    column-gap: 56px; row-gap: 20px; align-items: center;
    text-align: left; justify-items: stretch;
  }
  .page-hero-top, .page-hero-bottom { max-width: none; }
  .page-hero-split .page-hero-top p { margin-inline: 0; }
  .page-hero-split .page-hero-ctas { justify-content: flex-start; }
  .page-hero-split .hero-meta { justify-content: flex-start; }
  .page-hero-image { align-self: center; max-width: none; margin-inline: 0; }
}

.hero-visual, .hero-visual-compare, .hero-visual-flow { position: relative; min-height: 300px; }
@media (min-width: 1024px) { .hero-visual, .hero-visual-compare, .hero-visual-flow { min-height: 440px; } }

/* Bild-Platzhalter im Hero (z.B. Ueber-mich-Foto): wiederverwendet .hero-visual-wrap + .img-slot.
   Selektoren an .page-hero-image gekoppelt, damit die Homepage-Hero (echtes Foto, eigene max-width) unberuehrt bleibt. */
.page-hero-image.hero-visual-wrap .img-slot { width: 100%; aspect-ratio: 4/5; }
@media (min-width: 1024px) { .page-hero-image.hero-visual-wrap { max-width: 380px; } }

.hv-orb { position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; }
.hv-orb-sky { width: 280px; height: 280px; top: -40px; right: -30px; background: radial-gradient(circle, rgba(12,170,255,.22) 0%, rgba(12,170,255,0) 70%); }
.hv-orb-lav { width: 240px; height: 240px; bottom: -30px; left: -20px; background: radial-gradient(circle, rgba(108,108,217,.20) 0%, rgba(108,108,217,0) 70%); }
.hv-dotgrid { position: absolute; z-index: 0; inset: 12% 8%; border-radius: 24px; pointer-events: none; opacity: .55; background-image: radial-gradient(var(--line-strong) 1.4px, transparent 1.4px); background-size: 18px 18px; }

.hv-card { position: absolute; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }

.hv-card-back {
  --r: -7deg; z-index: 1; width: 190px; padding: 20px; left: 0; top: 6%;
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(12,170,255,.35);
  box-shadow: 0 30px 60px -32px rgba(12,170,255,.45), var(--shadow-soft);
  display: flex; flex-direction: column; gap: 12px;
  transform: rotate(var(--r));
  animation: hv-float 6.5s ease-in-out infinite;
}
.hv-back-ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; }
.hv-back-txt { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.35; }

.hv-card-main {
  --r: 3deg; z-index: 2; width: min(320px, 80%); padding: 24px; right: 0; bottom: 4%;
  background: var(--bg-raised); border: 1px solid var(--line);
  transform: rotate(var(--r));
  animation: hv-float 7.5s ease-in-out infinite; animation-delay: .4s;
}
.hv-card-top { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.hv-seal { width: 30px; height: 30px; border-radius: 9px; background: var(--lavender-wash); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hv-stat { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.hv-stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 44px; line-height: 1; background: linear-gradient(120deg, var(--navy) 15%, var(--sky) 85%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hv-stat-num small { font-size: 22px; font-weight: 700; }
.hv-stat-label { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.hv-bars { margin-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.hv-bar { display: block; height: 6px; border-radius: 99px; background: var(--line); position: relative; overflow: hidden; }
.hv-bar::after { content: ""; position: absolute; inset: 0; width: var(--w); border-radius: inherit; background: linear-gradient(90deg, var(--sky), var(--lavender-deep)); transform-origin: left; transform: scaleX(0); animation: hv-bar-fill .9s cubic-bezier(.16,.8,.24,1) forwards; animation-delay: calc(.4s + var(--d)); }

.hv-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px; background: var(--bg-raised); border: 1px solid var(--line); box-shadow: var(--shadow-soft); font-size: 12.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.hv-chip svg { color: var(--sky); flex-shrink: 0; }
.hv-chip-1 { top: 0; right: 4%; animation: hv-float 5.5s ease-in-out infinite; animation-delay: .2s; }
.hv-chip-2 { bottom: 0; left: 2%; animation: hv-float 6s ease-in-out infinite; animation-delay: .9s; }

/* ---------- hero visual: Vergleichs-Balken + Stempel-Badge (Rechtsschutz & Kfz) ---------- */
.hvc-card { position: relative; z-index: 2; width: min(360px, 94%); margin-inline: auto; background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 26px 26px 22px; }
.hvc-head { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 24px; }
.hvc-compare { display: flex; align-items: flex-end; justify-content: center; gap: 30px; height: 138px; }
.hvc-col { display: flex; flex-direction: column-reverse; align-items: center; gap: 10px; width: 78px; }
.hvc-bar { width: 100%; border-radius: 12px 12px 6px 6px; transform: scaleY(0); transform-origin: bottom; animation: hvc-grow .9s cubic-bezier(.16,.8,.24,1) forwards; animation-delay: .3s; }
.hvc-bar-before { height: 112px; background: linear-gradient(180deg, var(--line-strong), var(--line)); }
.hvc-bar-after { height: 82px; background: linear-gradient(180deg, var(--sky), var(--lavender-deep)); animation-delay: .5s; }
.hvc-col-label { font-size: 12px; font-weight: 600; color: var(--ink-soft); text-align: center; line-height: 1.3; }
.hvc-col-label-accent { color: var(--navy); font-weight: 700; }
.hvc-foot { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.hvc-foot svg { color: var(--sky); flex-shrink: 0; }
.hvc-badge {
  position: absolute; z-index: 3; top: -7%; right: 6%; width: 92px; height: 92px; border-radius: 50%;
  background: linear-gradient(150deg, var(--navy), var(--navy-2)); border: 2px solid rgba(12,170,255,.4);
  box-shadow: 0 24px 50px -22px rgba(12,170,255,.5), var(--shadow-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff;
  --r: -9deg; transform: rotate(var(--r)); animation: hv-float 6s ease-in-out infinite;
}
.hvc-badge b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 23px; font-weight: 800; line-height: 1; }
.hvc-badge span { display: block; font-size: 9px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; margin-top: 3px; opacity: .85; }

/* ---------- hero visual: Schritt-Tracker + Zeit-Badge (Gesundheitsfragebogen) ---------- */
.hvf-card { position: relative; z-index: 2; width: min(340px, 94%); margin-inline: auto; background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 26px; }
.hvf-head { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 22px; }
.hvf-steps { display: flex; flex-direction: column; }
.hvf-step { display: flex; gap: 14px; position: relative; padding-bottom: 22px; }
.hvf-step:last-child { padding-bottom: 0; }
.hvf-step::before { content: ""; position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px; background: var(--line); }
.hvf-step:last-child::before { display: none; }
.hvf-dot { width: 31px; height: 31px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 800; font-family: 'Bricolage Grotesque', sans-serif; z-index: 1; background: var(--lavender-wash); color: var(--navy); }
.hvf-step.is-done .hvf-dot { background: linear-gradient(135deg, var(--sky), var(--lavender-deep)); color: #fff; }
.hvf-step-body { padding-top: 3px; }
.hvf-step-body b { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.hvf-step-body span { font-size: 12px; color: var(--ink-faint); line-height: 1.4; }
.hvf-badge {
  position: absolute; z-index: 3; top: -8%; left: 4%; display: flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 9px; border-radius: 999px; background: linear-gradient(150deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(12,170,255,.4); box-shadow: 0 24px 50px -22px rgba(12,170,255,.5), var(--shadow-soft);
  color: #fff; animation: hv-float 6s ease-in-out infinite;
}
.hvf-badge-ic { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hvf-badge b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; line-height: 1; }
.hvf-badge span { display: block; font-size: 9px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; opacity: .85; }

@keyframes hv-float { 0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-10px) rotate(var(--r, 0deg)); } }
@keyframes hv-bar-fill { to { transform: scaleX(1); } }
@keyframes hvc-grow { to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) {
  .hv-card, .hv-chip, .hvc-badge, .hvf-badge { animation: none !important; }
  .hv-bar::after { animation: none !important; transform: scaleX(1); }
  .hvc-bar { animation: none !important; transform: scaleY(1); }
}

/* Mobil/Tablet-Variante der Hero-Grafiken (<1024px): eigenes kompaktes Flow-Layout statt der
   Desktop-Collage. Alle Elemente bleiben sichtbar (beide Karten, Chips, Badges), nichts
   ueberlappt sich mehr und nichts wird abgeschnitten. */
@media (max-width: 1023px) {
  .hero-visual { min-height: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; padding-block: 8px; }
  .hero-visual .hv-card { position: static; }
  .hv-card-back { --r: 0deg; transform: none; animation: none; width: min(320px, 100%); flex-direction: row; align-items: center; gap: 12px; padding: 14px 18px; }
  .hv-card-main { --r: 0deg; transform: none; animation: none; width: min(320px, 100%); }
  .hv-chip { position: static; animation: none; white-space: normal; text-align: left; }
  .hv-orb, .hv-dotgrid { display: none; }

  .hero-visual-compare, .hero-visual-flow { min-height: 0; }
  .hero-visual-compare { padding-top: 42px; }
  .hvc-card { width: min(360px, 100%); margin-inline: auto; }
  .hvc-badge { top: -34px; right: 8px; width: 84px; height: 84px; animation: none; }
  .hvc-badge b { font-size: 20px; }

  .hero-visual-flow { padding-top: 34px; }
  .hvf-card { width: min(340px, 100%); margin-inline: auto; }
  .hvf-badge { top: -30px; left: 8px; animation: none; }
}

/* generic content section spacing helper */
.lead { font-size: 16.5px; color: var(--ink-soft); line-height: 1.75; max-width: 62ch; }

/* feature list (check bullets) */
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.feature-list li { display: flex; gap: 13px; font-size: 15px; color: var(--ink); line-height: 1.55; }
.feature-list .ck { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.feature-list .ck svg { width: 11px; height: 11px; }
.feature-list b { font-weight: 700; }

/* two-column content (text + card) */
.split { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; gap: 60px; } .split.narrow { grid-template-columns: 1.2fr 0.8fr; } }
.split h2 { font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }
.split > div > p { margin-top: 16px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; }
.split > div > p + p { margin-top: 12px; }

/* info card (soft) */
.info-card { background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 1px 2px rgba(18,21,26,.03), 0 18px 40px -30px rgba(18,21,26,.14); }
.info-card h3 { font-size: 18px; font-weight: 700; }
.info-card p { margin-top: 8px; font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.info-card-badged { display: flex; gap: 16px; align-items: flex-start; padding: 22px; }
.info-card-badged h3 { font-size: 16px; }
.info-card-badge { flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: -0.02em; background: var(--lavender-wash); color: var(--navy); }
.info-card-badge.badge-navy { background: linear-gradient(150deg, var(--navy), var(--navy-2)); color: #fff; }

/* beihilfe split bars */
.bh-bars { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.bh-row { }
.bh-row-top { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.bh-bar { display: flex; height: 40px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.bh-bar .bh-a { background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; }
.bh-bar .bh-b { background: var(--lavender-wash); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; }
.bh-legend { display: flex; gap: 18px; margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); }
.bh-legend span { display: inline-flex; align-items: center; gap: 7px; }
.bh-legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }

/* comparison table */
.compare-wrap { overflow-x: auto; margin-top: 8px; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 560px; font-size: 14px; }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13.5px; color: var(--ink); background: var(--bg-wash); border-bottom: 1.5px solid var(--line-strong); }
.compare thead th.hl { color: #fff; background: var(--navy); }
.compare tbody th { font-weight: 600; color: var(--ink); }
.compare td { color: var(--ink-soft); }
.compare td.hl { background: color-mix(in srgb, var(--sky) 7%, transparent); color: var(--ink); font-weight: 600; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }
.compare .yes { color: #1a8a4a; font-weight: 700; }
.compare-note { margin-top: 12px; font-size: 12px; color: var(--ink-faint); }

/* timeline (Genau-Für-Sie) */
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.tl-step { position: relative; padding: 0 0 26px 34px; border-left: 2px solid var(--line-strong); }
.tl-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.tl-step::before { content: ""; position: absolute; left: -8px; top: 2px; width: 15px; height: 15px; border-radius: 50%; background: var(--sky); border: 3px solid var(--bg); }
.tl-step .tl-age { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--sky); }
.tl-step h4 { margin-top: 4px; font-size: 15.5px; font-weight: 700; }
.tl-step p { margin-top: 4px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* prose (article / legal) */
.prose { max-width: 740px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2rem); font-weight: 800; letter-spacing: -0.02em; margin-top: 42px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 700; margin-top: 28px; }
.prose p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.prose ul { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.prose ul li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--sky); }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; font-size: 13px; color: var(--ink-faint); margin-top: 18px; }
.article-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--sky); }

/* nav active link */
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); }

/* CTA strip reuse: contained card already via .final-cta/.final-card */

/* ---------- Cookie-Banner (JS-injiziert, siehe app.js Consent-Block) ---------- */
.cookie-banner { position: fixed; z-index: 58; left: 16px; right: 16px; bottom: 16px; max-width: 480px; margin-inline: auto;
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 24px 60px -24px rgba(18,21,26,.28), var(--shadow-soft);
  padding: 18px 20px; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .32s ease, transform .32s cubic-bezier(.16,.8,.24,1); }
.cookie-banner.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.cookie-text a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cookie-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13.5px; color: var(--ink); }
.cookie-actions { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.btn-cookie-ghost { background: none; border: 1px solid var(--line-strong); border-radius: 999px; padding: 10px 18px; font: 700 13.5px 'Inter', sans-serif; color: var(--ink-soft); cursor: pointer; }
@media (min-width: 900px) { .cookie-banner { left: 24px; right: 24px; bottom: 24px; max-width: calc(var(--maxw) - 112px); } }
@media (max-width: 899px) {
  .cookie-banner { bottom: calc(74px + env(safe-area-inset-bottom) + 8px); padding: 12px 14px; max-height: 40vh; overflow-y: auto; }
  .cookie-text { font-size: 12px; line-height: 1.45; }
  .cookie-row { margin-top: 8px; font-size: 12px; }
  .cookie-actions { margin-top: 10px; gap: 8px; }
  .cookie-actions .btn, .cookie-actions .btn-cookie-ghost { padding: 8px 14px; font-size: 12.5px; }
}

/* Lead-Magnet-Popup (native <dialog>, JS-injiziert) */
.leadmagnet-dialog { border: none; padding: 0; background: transparent; max-width: 460px; width: 92vw; margin: auto; overflow: visible; }
.leadmagnet-dialog::backdrop { background: rgba(10,15,20,.62); backdrop-filter: blur(3px); }
.leadmagnet-dialog .form-card { margin: 0; max-height: 88vh; overflow-y: auto; overflow-x: hidden; }
.leadmagnet-dialog .form-head h3 { font-size: clamp(22px, 5.2vw, 27px); line-height: 1.12; letter-spacing: -0.01em; }
.leadmagnet-dialog .form-head h3 .grad-text { font-size: inherit; font-weight: inherit; text-transform: none; letter-spacing: inherit; color: transparent; }
.leadmagnet-dialog .form-note { text-align: center; }
.leadmagnet-dialog .form-submit button:disabled { opacity: .45; cursor: not-allowed; }
.leadmagnet-close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--ink-soft); }
.leadmagnet-close:hover { background: var(--bg-wash); }
@media (max-width: 480px) {
  .leadmagnet-dialog { width: 94vw; max-height: 92vh; }
  .leadmagnet-dialog .form-card { padding: 26px 20px; max-height: 92vh; }
  .leadmagnet-dialog .form-head h3 { font-size: clamp(20px, 6vw, 24px); }
}

/* Formular-Feedback (Lead-Formulare) */
.form-success { text-align: center; padding: 34px 10px; }
.form-success-ic { width: 54px; height: 54px; border-radius: 50%; margin-inline: auto; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--sky), var(--lavender-deep)); box-shadow: 0 18px 40px -18px rgba(12,170,255,.6); }
.form-success h3 { margin-top: 18px; font-size: 21px; font-weight: 800; }
.form-success p { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.form-error { margin-top: 12px; font-size: 13.5px; color: #B4231F; }
.consent a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.consent span { display: inline; }

/* ---------- Rechtsseiten: schlanker Hero + linksbuendiger Text ---------- */
.page-hero--slim { padding-block: 26px 30px; }
@media (min-width: 900px) { .page-hero--slim { padding-block: 30px 34px; } }
.page-hero--slim::after { display: none; }
.page-hero--slim .page-hero-inner { margin-top: 12px; }
.section--slim { padding-block: 44px 78px; }
@media (min-width: 1024px) { .section--slim { padding-block: 52px 108px; } }
.wrap.prose--left { max-width: var(--maxw); }
.prose--left > * { max-width: 740px; }

/* ---------- Cursor-Glow (CI-Navy, alle Seiten, nur Desktop mit feinem Zeiger) ---------- */
.cursor-glow { position: fixed; z-index: 80; width: 380px; height: 380px; border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); filter: blur(26px); opacity: 0; transition: opacity .4s ease;
  background: radial-gradient(circle, rgba(11,58,92,0.14) 0%, rgba(11,58,92,0) 70%); }

/* ================= Blog-Artikel: zweispaltiges Layout mit stickem Inhaltsverzeichnis ================= */
.article-hero { position: relative; overflow: hidden; background: var(--bg-wash); border-bottom: 1px solid var(--line); padding-block: 16px 16px; }
@media (min-width: 900px) { .article-hero { padding-block: 16px 18px; } }
.article-hero::after { content: ""; position: absolute; z-index: 0; width: 460px; height: 460px; top: -280px; right: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(12,170,255,0.13) 0%, rgba(12,170,255,0) 68%); pointer-events: none; }
.article-hero .wrap { position: relative; z-index: 1; }
.article-back { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--ink-faint); transition: color .15s ease; }
.article-back:hover { color: var(--navy); }
.article-hero-inner { margin-top: 10px; max-width: 800px; }
.article-hero h1 { margin-top: 6px; font-size: clamp(1.7rem, 1.35rem + 1.5vw, 2.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.article-hero .article-meta { margin-top: 10px; }

/* Layout: Artikel + Sidebar */
.article-layout { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 1000px) { .article-layout { grid-template-columns: minmax(0,1fr) 288px; gap: 56px; align-items: start; } }
.article-body { max-width: 720px; }
.article-body .article-figure { margin: 0 0 30px; }
.article-body .article-figure img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-soft); aspect-ratio: 5/2; object-fit: cover; display: block; }
@media (max-width: 640px) { .article-body .article-figure img { aspect-ratio: 4/5; object-fit: contain; background: var(--bg-wash); } }
.article-body .article-figure .img-slot { aspect-ratio: 5/2; }
.article-body h2 { scroll-margin-top: 90px; font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; margin-top: 44px; }
.article-body h2:first-of-type { margin-top: 8px; }
.article-body h3 { font-size: 18px; font-weight: 700; margin-top: 26px; }
.article-body p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; line-height: 1.78; }
.article-body ul, .article-body ol { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li, .article-body ol li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
.article-body ul li::before { content: ""; position: absolute; left: 3px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--sky); }
.article-body ol { counter-reset: li; }
.article-body ol li::before { counter-increment: li; content: counter(li); position: absolute; left: 0; top: 1px; font-size: 12px; font-weight: 800; color: var(--sky); }
.article-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.article-body a.btn { text-decoration: none; font-weight: 700; }
.article-body strong { color: var(--ink); }
.article-body .lead { font-size: 17px; color: var(--ink-soft); line-height: 1.75; max-width: none; }

/* Fakten-Tabelle im Artikel */
.article-table-wrap { margin-top: 20px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }
.article-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 460px; }
.article-table th, .article-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.article-table thead th { background: var(--bg-wash); font-weight: 700; color: var(--ink); font-size: 12.5px; letter-spacing: .02em; text-transform: uppercase; }
.article-table tbody tr:last-child td { border-bottom: none; }
.article-table td strong { color: var(--navy); }
.article-note { margin-top: 12px; font-size: 13px; color: var(--ink-faint); line-height: 1.6; }

/* Info-/Merke-Box */
.article-callout { margin-top: 24px; padding: 20px 22px; border-radius: var(--radius-md); background: var(--lavender-wash); border: 1px solid color-mix(in srgb, var(--lavender-deep) 30%, transparent); }
.article-callout p { margin-top: 6px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.article-callout p:first-child { margin-top: 0; }
.article-callout strong { color: var(--navy); }

/* Mid-Article-CTA (schlankes Band) */
.cta-inline { margin: 40px 0; position: relative; overflow: hidden; padding: 30px 28px; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.cta-inline h3 { font-size: 20px; font-weight: 800; line-height: 1.25; color: #fff; }
.cta-inline p { margin-top: 8px; font-size: 14.5px; color: rgba(255,255,255,.82); line-height: 1.6; }
.cta-inline .btn { margin-top: 18px; }
.cta-inline-orb { position: absolute; width: 220px; height: 220px; right: -70px; top: -70px; border-radius: 50%; background: radial-gradient(circle, rgba(12,170,255,.4) 0%, rgba(12,170,255,0) 70%); pointer-events: none; }

/* Sidebar / Inhaltsverzeichnis */
.article-aside { display: flex; flex-direction: column; gap: 18px; }
@media (min-width: 1000px) { .article-aside { position: sticky; top: 88px; } }
/* Mobil/Tablet: Inhaltsverzeichnis nach oben (vor den Artikeltext), Sidebar-CTA ausblenden (Mid-/End-CTA reichen) */
@media (max-width: 999px) { .article-aside { order: -1; } .toc-aside-cta { display: none; } }
.toc-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-raised); box-shadow: var(--shadow-soft); overflow: hidden; }
.toc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 18px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); background: none; border: none; cursor: pointer; font-family: inherit; }
.toc-head .toc-chev { transition: transform .25s ease; }
.toc-card.is-collapsed .toc-chev { transform: rotate(-90deg); }
.toc-list { list-style: none; padding: 4px 10px 14px; display: flex; flex-direction: column; gap: 2px; }
.toc-card.is-collapsed .toc-list { display: none; }
@media (min-width: 1000px) { .toc-card.is-collapsed .toc-list { display: flex; } .toc-card.is-collapsed .toc-chev { transform: none; } }
.toc-list a { display: flex; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm); font-size: 13.5px; line-height: 1.4; color: var(--ink-soft); text-decoration: none; transition: background .15s ease, color .15s ease; }
.toc-list a .toc-num { font-weight: 800; font-size: 11px; color: var(--line-strong); flex-shrink: 0; padding-top: 1px; transition: color .15s ease; }
.toc-list a:hover { background: var(--bg-wash); color: var(--ink); }
.toc-list a.active { background: var(--bg-wash); color: var(--navy); font-weight: 700; }
.toc-list a.active .toc-num { color: var(--sky); }
.toc-aside-cta { border: 1px solid rgba(12,170,255,0.3); border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 22px 20px; }
.toc-aside-cta .kicker { color: var(--sky); }
.toc-aside-cta h4 { margin-top: 10px; font-size: 17px; font-weight: 800; line-height: 1.3; color: #fff; }
.toc-aside-cta p { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; }
.toc-aside-cta .btn { margin-top: 16px; width: 100%; font-size: 12.5px; padding-inline: 14px; white-space: nowrap; }

/* Autor-Box */
.author-box { margin-top: 44px; display: flex; gap: 18px; align-items: center; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-raised); box-shadow: var(--shadow-soft); }
.author-box .author-img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-soft); }
.author-box .author-img.img-slot { padding: 0; border-width: 1.5px; }
.author-box .author-img.img-slot svg { width: 22px; height: 22px; }
.author-name { font-size: 15px; font-weight: 800; color: var(--ink); }
.author-role { margin-top: 3px; font-size: 13px; color: var(--ink-faint); line-height: 1.55; }

/* Related-Grid (verwandte Artikel) */
.related-head { margin-bottom: 24px; }
.related-head h2 { font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2rem); font-weight: 800; letter-spacing: -0.02em; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* FAQ im Artikel nutzt bestehende .faq-list/.faq-item */
