/* ============================================================
   SOFTCON CMS — Produkt-Marketing-Website
   Markensystem im SOFTCON-Haus-Stil: Navy/Petrol/Mint/Koralle,
   Manrope + Bitter. Signature: das Modul-Baukasten-Motiv.
   Diese Website läuft selbst auf SOFTCON CMS.
   ============================================================ */

/* ── Fonts (selbst gehostet, kein Google-CDN) ─────────────── */
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-var.woff2') format('woff2');
    font-weight: 200 800;
    font-display: swap;
}
@font-face {
    font-family: 'Bitter';
    src: url('/assets/fonts/bitter-var.woff2') format('woff2');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bitter';
    src: url('/assets/fonts/bitter-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ── Marken-Tokens ────────────────────────────────────────── */
:root {
    /* SOFTCON-Palette (aus dem Corporate-CI) */
    --navy:        #22386f;   /* Primär / Marke */
    --navy-700:    #1b2e5c;
    --navy-800:    #16264a;
    --navy-900:    #0e1a36;   /* tiefster Navy, Hero-Grund */
    --petrol:      #15779b;   /* Sekundär */
    --petrol-tief: #11607d;
    --mint:        #68ceb8;   /* frischer Akzent (aktiv / Häkchen) */
    --mint-tief:   #3fae95;
    --koralle:     #f16365;   /* warmer Akzent / Energie */
    --koralle-tief:#e0484b;

    /* Neutrals */
    --weiss:     #ffffff;
    --papier:    #f5f7fb;     /* kühles Off-White, Seiten-Canvas */
    --papier-2:  #eef2f9;     /* alternierende Sektion */
    --tinte:     #14213d;     /* Fließtext auf hell (Navy-Schwarz) */
    --grau:      #5b6678;     /* gedämpfter Text */
    --grau-hell: #8a93a6;
    --linie:     #e2e8f3;     /* Haarlinien */

    /* Layout */
    --max:   1240px;
    --rand:  clamp(20px, 5vw, 56px);
    --radius:    16px;
    --radius-lg: 26px;
    --radius-sm: 10px;

    /* Schatten (weich, navy-getönt) */
    --schatten:    0 18px 50px -22px rgba(20,33,61,.30);
    --schatten-lg: 0 40px 90px -34px rgba(14,26,54,.45);
    --schatten-sm: 0 6px 22px -10px rgba(20,33,61,.22);

    /* Typo */
    --sans:  'Manrope', 'Segoe UI', system-ui, sans-serif;
    --serif: 'Bitter', Georgia, 'Times New Roman', serif;

    --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; overflow-x: clip; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
    margin: 0;
    background: var(--papier);
    color: var(--tinte);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.68;
    font-weight: 420;
    letter-spacing: -0.003em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

/* ── Typografie ───────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--sans);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 .5em;
    text-wrap: balance;
    color: var(--navy-900);
}
h1 { font-size: clamp(2.7rem, 6.4vw, 5.2rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.85rem); letter-spacing: -0.025em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.42rem); line-height: 1.55; color: #38445e; font-weight: 440; }
strong, b { font-weight: 680; }

a { color: var(--petrol); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--petrol-tief); }
img, svg { max-width: 100%; display: block; }

::selection { background: var(--koralle); color: #fff; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .55em;
    font-family: var(--sans);
    font-size: .78rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--petrol);
    margin: 0 0 18px;
}
.eyebrow::before {
    content: ""; width: 26px; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--mint), var(--petrol));
}
.eyebrow.auf-navy { color: var(--mint); }
.eyebrow.auf-navy::before { background: linear-gradient(90deg, var(--koralle), var(--mint)); }
.eyebrow.zentriert { justify-content: center; }

.serif-akz { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ── Layout ───────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--rand); }

section { position: relative; }
.sektion { padding-block: clamp(64px, 9vw, 132px); }
.sektion-eng { padding-block: clamp(48px, 6vw, 88px); }

.sektion-kopf { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.sektion-kopf.zentriert { margin-inline: auto; text-align: center; }
.sektion-kopf p.lead { margin-bottom: 0; }

.bg-papier-2 { background: var(--papier-2); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .55em;
    font-family: var(--sans); font-weight: 680; font-size: 1rem;
    letter-spacing: -0.01em;
    padding: 15px 26px; border-radius: 100px; border: 0;
    cursor: pointer; text-decoration: none; line-height: 1;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
    white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primaer { background: var(--koralle); color: #fff; box-shadow: 0 14px 30px -12px rgba(241,99,101,.7); }
.btn-primaer:hover { background: var(--koralle-tief); color: #fff; transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(241,99,101,.75); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy-900); box-shadow: inset 0 0 0 1.5px var(--linie); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy); color: var(--navy-900); transform: translateY(-2px); }
.btn-hell { background: rgba(255,255,255,.10); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.btn-hell:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.btn-klein { padding: 10px 18px; font-size: .92rem; }
/* „Coming soon"-Hinweis (Demo noch nicht öffentlich) */
.demo-soon { display: inline-flex; align-items: center; gap: .5em; padding: 10px 18px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 640; color: var(--grau); background: var(--papier-2); border: 1px dashed var(--grau-hell); }
.demo-soon svg { width: 16px; height: 16px; }
.btn-block { display: flex; justify-content: center; width: 100%; }

.btn-text { display: inline-flex; align-items: center; gap: .4em; font-weight: 680; color: var(--petrol); }
.btn-text .pfeil { transition: transform .25s var(--ease); }
.btn-text:hover .pfeil { transform: translateX(4px); }

.btn-reihe { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
    border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.site-header.auf-hero { background: transparent; }
.site-header.auf-hero .haupt-nav > a { color: rgba(255,255,255,.88); }
.site-header.auf-hero .site-logo { color: #fff; }
.site-header.auf-hero .site-logo .logo-cms { color: var(--mint); }
.site-header.gescrollt {
    background: rgba(245,247,251,.82);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom-color: var(--linie);
    box-shadow: 0 8px 30px -22px rgba(20,33,61,.5);
}
.site-header.gescrollt .wrap { height: 66px; }

.site-logo { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; font-family: var(--sans); font-weight: 800; font-size: 1.32rem; line-height: 1.02; letter-spacing: -0.03em; color: var(--navy); }
.logo-wort { display: inline-flex; align-items: baseline; }
.logo-sub { font-size: .63rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--grau-hell); }
.logo-sub b { color: var(--mint-tief); font-weight: 800; }
.site-header.auf-hero .logo-sub { color: rgba(255,255,255,.72); }
.site-header.auf-hero .logo-sub b { color: var(--mint); }
@media (max-width: 420px) { .logo-sub { display: none; } }
.site-logo .logo-cms { color: #2f9e84; font-weight: 800; } /* gescrollt: tieferes, lesbares Mint auf Hell */
.site-logo .logo-punkt { color: var(--koralle); }

.haupt-nav { display: flex; align-items: center; gap: 4px; }
.haupt-nav > a { padding: 9px 14px; border-radius: 100px; font-weight: 560; font-size: .98rem; color: var(--navy); transition: background .2s, color .2s; }
.haupt-nav > a:hover { background: rgba(34,56,111,.08); color: var(--navy); }
.site-header.auf-hero .haupt-nav > a:hover { background: rgba(255,255,255,.14); color: #fff; }
.haupt-nav > a.active { color: var(--petrol); }
.site-header.auf-hero .haupt-nav > a.active { color: var(--mint); }
.nav-cta { margin-left: 10px; }
.nav-schliessen { display: none; }

.nav-knopf {
    display: none; width: 46px; height: 46px; border: 0; background: transparent;
    border-radius: 12px; cursor: pointer; position: relative;
}
.nav-knopf span { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: var(--navy-900); transition: transform .3s var(--ease), opacity .2s; }
.site-header.auf-hero .nav-knopf span { background: #fff; }
.nav-knopf span:nth-child(1) { top: 17px; }
.nav-knopf span:nth-child(2) { bottom: 17px; }
.nav-knopf[aria-expanded="true"] span { background: #fff; }
.nav-knopf[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-knopf[aria-expanded="true"] span:nth-child(2) { bottom: 22px; transform: rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative; isolation: isolate; overflow: hidden;
    background:
        radial-gradient(120% 120% at 85% -10%, rgba(21,119,155,.45), transparent 55%),
        radial-gradient(90% 90% at 0% 100%, rgba(104,206,184,.18), transparent 50%),
        linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
    color: #e9eefb;
    padding-top: clamp(128px, 16vh, 188px);
    padding-bottom: clamp(72px, 10vw, 128px);
}
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: radial-gradient(120% 90% at 60% 10%, #000 35%, transparent 78%);
            mask-image: radial-gradient(120% 90% at 60% 10%, #000 35%, transparent 78%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-grid > * { min-width: 0; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.hero-pill {
    display: inline-flex; align-items: center; gap: .6em;
    padding: 8px 16px; border-radius: 100px;
    background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
    font-size: .85rem; font-weight: 560; color: #dbe6f7; margin-bottom: 26px;
}
.hero-pill .punkt { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(104,206,184,.22); }
.hero-pill b { color: #fff; font-weight: 720; }

.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .akz { color: var(--mint); }
.hero .lead { color: #c4d1ea; max-width: 36ch; margin-bottom: 30px; }
.hero .btn-reihe { margin-bottom: 30px; }

.hero-belege { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .92rem; color: #aebbd6; }
.hero-belege span { display: inline-flex; align-items: center; gap: .5em; }
.hero-belege svg { width: 16px; height: 16px; color: var(--mint); }

/* Hero-Signature: Modul-Mosaik */
.mosaik { position: relative; }
.mosaik-karte {
    position: relative; border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), var(--schatten-lg);
    padding: 22px;
    backdrop-filter: blur(6px);
}
.mosaik-leiste { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.mosaik-leiste i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.2); }
.mosaik-leiste i:nth-child(1) { background: var(--koralle); }
.mosaik-leiste i:nth-child(2) { background: #f5b945; }
.mosaik-leiste i:nth-child(3) { background: var(--mint); }
.mosaik-leiste span { margin-left: auto; font-size: .74rem; color: rgba(255,255,255,.55); letter-spacing: .02em; }
.mosaik-gitter { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.mosaik-zelle {
    aspect-ratio: 1 / .82; border-radius: 14px; padding: 12px;
    display: flex; flex-direction: column; justify-content: space-between;
    background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
    transition: transform .4s var(--ease), background .3s, box-shadow .3s;
    opacity: 0; transform: translateY(14px) scale(.96);
    min-width: 0;
}
.mosaik-zelle b { overflow-wrap: anywhere; }
.mosaik.sichtbar .mosaik-zelle { opacity: 1; transform: none; }
.mosaik-zelle:hover { background: rgba(104,206,184,.16); box-shadow: inset 0 0 0 1px rgba(104,206,184,.5); transform: translateY(-3px); }
.mosaik-zelle svg { width: 22px; height: 22px; color: var(--mint); }
.mosaik-zelle b { font-size: .82rem; font-weight: 640; color: #eaf1ff; letter-spacing: -0.01em; line-height: 1.15; }
.mosaik-fuss { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.6); }
.mosaik-fuss .live { display: inline-flex; align-items: center; gap: .5em; color: var(--mint); font-weight: 640; }
.mosaik-fuss .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(104,206,184,.6); } 50% { box-shadow: 0 0 0 6px rgba(104,206,184,0); } }
.mosaik-chip {
    position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: .5em;
    padding: 9px 14px; border-radius: 100px; font-size: .82rem; font-weight: 640; color: var(--navy-900);
    background: #fff; box-shadow: var(--schatten);
}
.mosaik-chip svg { width: 15px; height: 15px; }
.mosaik-chip.chip-1 { top: -16px; right: 26px; color: var(--koralle-tief); }
.mosaik-chip.chip-2 { bottom: 30px; left: -22px; color: var(--petrol-tief); }
@media (max-width: 540px) { .mosaik-chip { display: none; } }

/* ── Statistik-Streifen ───────────────────────────────────── */
.stat-streifen { background: var(--navy-900); color: #fff; }
.stat-gitter { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px,3vw,40px); padding-block: clamp(40px,5vw,64px); }
@media (max-width: 760px) { .stat-gitter { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; } }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 780; letter-spacing: -0.04em; line-height: 1; color: #fff; }
.stat b .einheit { color: var(--mint); }
.stat span { display: block; margin-top: 10px; font-size: .92rem; color: #a9b7d6; letter-spacing: .01em; }

/* ── Problem → Lösung ─────────────────────────────────────── */
.gegenpol { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 34px); align-items: stretch; }
@media (max-width: 820px) { .gegenpol { grid-template-columns: 1fr; } }
.pol { border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 46px); border: 1px solid var(--linie); background: var(--weiss); }
.pol.problem { background: var(--papier-2); border-color: transparent; }
.pol h3 { margin-bottom: 22px; }
.pol .pol-tag { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.pol.problem .pol-tag { color: var(--grau-hell); }
.pol.loesung { background: linear-gradient(170deg, var(--navy) 0%, var(--navy-900) 130%); color: #e7eefb; border: 0; box-shadow: var(--schatten); }
.pol.loesung h3, .pol.loesung .pol-tag { color: #fff; }
.pol.loesung .pol-tag { color: var(--mint); }
.pol-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.pol-liste li { display: flex; gap: 13px; align-items: flex-start; line-height: 1.45; }
.pol-liste li svg { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; }
.pol.problem .pol-liste li { color: #4a5878; }
.pol.problem .pol-liste svg { color: var(--grau-hell); }
.pol.loesung .pol-liste li { color: #d7e2f6; }
.pol.loesung .pol-liste svg { color: var(--mint); }

/* ── Modul-Showcase ───────────────────────────────────────── */
.modul-gruppe { margin-top: clamp(40px, 5vw, 64px); }
.modul-gruppe-kopf { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.modul-gruppe-kopf .num { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--petrol); }
.modul-gruppe-kopf h3 { margin: 0; font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.modul-gruppe-kopf .linie { flex: 1; height: 1px; background: var(--linie); }
.modul-gitter { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(248px, 100%), 1fr)); gap: 16px; }
.modul-karte {
    position: relative; background: var(--weiss); border: 1px solid var(--linie);
    border-radius: var(--radius); padding: 22px 22px 20px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.modul-karte:hover { transform: translateY(-4px); box-shadow: var(--schatten); border-color: transparent; }
.modul-karte .ikon {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    background: rgba(34,56,111,.07); color: var(--navy); margin-bottom: 16px;
    transition: background .3s, color .3s;
}
.modul-karte .ikon svg { width: 23px; height: 23px; }
.modul-karte:hover .ikon { background: var(--navy); color: #fff; }
.modul-karte h4 { margin: 0 0 6px; font-size: 1.06rem; color: var(--navy-900); }
.modul-karte p { margin: 0; font-size: .93rem; line-height: 1.45; color: var(--grau); }

/* ── Demo-Welten ──────────────────────────────────────────── */
.demo-gitter { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(20px,2.6vw,30px); }
.demo-karte {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background: var(--weiss); border: 1px solid var(--linie);
    display: flex; flex-direction: column;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.demo-karte:hover { transform: translateY(-6px); box-shadow: var(--schatten-lg); }
.demo-bild { display: block; aspect-ratio: 16 / 10; position: relative; overflow: hidden; background: var(--navy-800); color: inherit; text-decoration: none; }
a.demo-bild { cursor: pointer; }
.demo-bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.demo-karte:hover .demo-bild img { transform: scale(1.05); }
.demo-bild.platzhalter { background:
    radial-gradient(120% 120% at 20% 0%, var(--petrol), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-900) 100%); }
.demo-bild .branche { position: absolute; top: 16px; left: 16px; z-index: 2;
    padding: 7px 13px; border-radius: 100px; font-size: .76rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; background: rgba(255,255,255,.92); color: var(--navy-900); backdrop-filter: blur(4px); }
.demo-bild .designs { position: absolute; bottom: 16px; right: 16px; z-index: 2;
    display: inline-flex; align-items: center; gap: .5em; padding: 7px 13px; border-radius: 100px;
    font-size: .8rem; font-weight: 640; color: #fff; background: rgba(14,26,54,.55); backdrop-filter: blur(4px); }
.demo-text { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.demo-text h3 { margin: 0 0 8px; font-size: 1.4rem; }
.demo-text p { margin: 0 0 18px; color: var(--grau); font-size: .96rem; }
.demo-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.demo-meta .tag { font-size: .76rem; font-weight: 600; color: var(--petrol-tief); background: rgba(21,119,155,.09); padding: 5px 11px; border-radius: 100px; }
.demo-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px; }

/* ── USP / Vorteils-Reihen ────────────────────────────────── */
.usp-gitter { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.6vw,32px); }
@media (max-width: 900px) { .usp-gitter { grid-template-columns: 1fr; } }
.usp { padding: 30px; border-radius: var(--radius); background: var(--weiss); border: 1px solid var(--linie); }
.usp .ikon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
    background: linear-gradient(150deg, var(--mint), var(--petrol)); color: #fff; }
.usp .ikon svg { width: 26px; height: 26px; }
.usp h3 { font-size: 1.22rem; margin-bottom: 10px; }
.usp p { margin: 0; color: var(--grau); font-size: .97rem; }
.usp.koralle .ikon { background: linear-gradient(150deg, var(--koralle), var(--koralle-tief)); }
.usp.navy .ikon { background: linear-gradient(150deg, var(--navy), var(--petrol-tief)); }

/* ── Großes CTA-Band ──────────────────────────────────────── */
.cta-band {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background:
        radial-gradient(100% 140% at 100% 0%, rgba(21,119,155,.5), transparent 55%),
        radial-gradient(90% 120% at 0% 100%, rgba(241,99,101,.32), transparent 55%),
        linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
    color: #fff; padding: clamp(44px, 6vw, 80px); text-align: center;
}
.cta-band::before {
    content: ""; position: absolute; inset: 0; opacity: .4;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(80% 120% at 50% 0%, #000, transparent 75%);
            mask-image: radial-gradient(80% 120% at 50% 0%, #000, transparent 75%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #cdd9f0; max-width: 52ch; margin-inline: auto; margin-bottom: 30px; font-size: 1.1rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--navy-900); color: #b9c6e0; padding-top: clamp(56px, 7vw, 88px); }
.footer-haupt { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,3vw,48px); padding-bottom: 52px; }
@media (max-width: 820px) { .footer-haupt { grid-template-columns: 1fr 1fr; gap: 34px 24px; } }
@media (max-width: 480px) { .footer-haupt { grid-template-columns: 1fr; } }
.footer-marke .site-logo { color: #fff; font-size: 1.5rem; margin-bottom: 16px; }
.footer-marke .site-logo .logo-cms { color: var(--mint); }
.footer-marke p { color: #97a6c6; max-width: 34ch; font-size: .96rem; }
.footer-claim { margin-top: 20px; font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #8092b4; }
.footer-claim b { color: var(--mint); font-weight: 800; }
.footer-haupt h4 { color: #fff; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-haupt a { display: block; color: #b9c6e0; padding: 5px 0; font-size: .96rem; }
.footer-haupt a:hover { color: var(--mint); }
.footer-base { border-top: 1px solid rgba(255,255,255,.10); padding-block: 26px;
    display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
    font-size: .88rem; color: #8092b4; }
.footer-base .powered { display: inline-flex; align-items: center; gap: .5em; }
.footer-base .powered b { color: #cdd9f0; font-weight: 700; }

/* ── Hinweis-Banner (Modul-Hook) ──────────────────────────── */
.hinweis-banner { background: var(--koralle); color: #fff; text-align: center; padding: 11px 18px; font-size: .94rem; font-weight: 560; }
.hinweis-banner a { color: #fff; text-decoration: underline; }

/* ── Reveal-Animationen ───────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].sichtbar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* Hero-Entrance-Choreografie */
.hero-anim { opacity: 0; transform: translateY(20px); animation: heroAuf .9s var(--ease) forwards; }
.hero-anim.d1 { animation-delay: .05s; } .hero-anim.d2 { animation-delay: .18s; }
.hero-anim.d3 { animation-delay: .31s; } .hero-anim.d4 { animation-delay: .44s; }
.hero-anim.d5 { animation-delay: .57s; }
@keyframes heroAuf { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-anim { opacity: 1; transform: none; animation: none; } }

/* ── Mobile-Navigation ────────────────────────────────────── */
@media (max-width: 920px) {
    .nav-knopf { display: block; }
    .haupt-nav {
        position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
        flex-direction: column; align-items: stretch; gap: 6px;
        background: var(--navy-900); padding: 92px 22px 32px; z-index: 99;
        transform: translateX(100%); transition: transform .4s var(--ease);
        box-shadow: var(--schatten-lg);
    }
    .haupt-nav.offen { transform: none; }
    .nav-schliessen { display: grid; place-items: center; position: absolute; top: 16px; right: 16px;
        width: 42px; height: 42px; border: 0; border-radius: 12px; cursor: pointer;
        background: rgba(255,255,255,.08); color: #dbe6f7; transition: background .2s, color .2s; }
    .nav-schliessen svg { width: 22px; height: 22px; }
    .nav-schliessen:hover { background: rgba(255,255,255,.16); color: #fff; }
    .haupt-nav > a, .site-header.auf-hero .haupt-nav > a { color: #dbe6f7; font-size: 1.1rem; padding: 12px 16px; }
    .haupt-nav > a:hover { background: rgba(255,255,255,.08); color: #fff; }
    .nav-cta { margin: 14px 0 0; }
    body.nav-offen { overflow: hidden; }
}

/* ── Diverses ─────────────────────────────────────────────── */
.text-zentriert { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ============================================================
   Unterseiten — Seitenkopf, Prozess, Zielgruppen, Kontakt, Formular
   ============================================================ */

/* ── Seitenkopf (Navy-Band oben auf Unterseiten) ──────────── */
.seitenkopf {
    position: relative; isolation: isolate; overflow: hidden;
    background:
        radial-gradient(120% 130% at 88% -20%, rgba(21,119,155,.42), transparent 55%),
        radial-gradient(90% 90% at 0% 120%, rgba(104,206,184,.16), transparent 55%),
        linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
    color: #e9eefb;
    padding-top: clamp(128px, 17vh, 176px);
    padding-bottom: clamp(48px, 7vw, 92px);
}
.seitenkopf::before {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(120% 100% at 70% 0%, #000 35%, transparent 80%);
            mask-image: radial-gradient(120% 100% at 70% 0%, #000 35%, transparent 80%);
}
.seitenkopf h1 { color: #fff; margin-bottom: .3em; max-width: 18ch; }
.seitenkopf h1 .akz { color: var(--mint); }
.seitenkopf .lead { color: #c4d1ea; max-width: 58ch; margin-bottom: 0; }
.seitenkopf-breit h1 { max-width: 22ch; }

/* ── Prozess-Schritte ─────────────────────────────────────── */
.prozess { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.6vw,32px); }
@media (max-width: 820px) { .prozess { grid-template-columns: 1fr; } }
.schritt { position: relative; padding: 32px 28px; background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); }
.schritt .nr {
    display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
    background: var(--navy); color: #fff; font-family: var(--sans); font-weight: 780; font-size: 1.2rem;
    margin-bottom: 18px;
}
.schritt:nth-child(2) .nr { background: var(--petrol); }
.schritt:nth-child(3) .nr { background: var(--koralle); }
.schritt h3 { font-size: 1.2rem; margin-bottom: 8px; }
.schritt p { margin: 0; color: var(--grau); font-size: .97rem; }

/* ── Zielgruppen ──────────────────────────────────────────── */
.zielgruppen { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.zielgruppe { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-radius: var(--radius); background: var(--weiss); border: 1px solid var(--linie); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.zielgruppe:hover { transform: translateY(-3px); box-shadow: var(--schatten-sm); }
.zielgruppe .ikon { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 11px; display: grid; place-items: center; background: rgba(34,56,111,.07); color: var(--navy); }
.zielgruppe .ikon svg { width: 22px; height: 22px; }
.zielgruppe b { font-weight: 640; color: var(--navy-900); }
.zielgruppe span { display: block; font-size: .88rem; color: var(--grau); }

/* ── Kontakt-Layout ───────────────────────────────────────── */
.kontakt-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px,4vw,64px); align-items: start; }
@media (max-width: 860px) { .kontakt-layout { grid-template-columns: 1fr; gap: 36px; } }
.kontakt-info .info-zeile { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--linie); }
.kontakt-info .info-zeile:last-child { border-bottom: 0; }
.kontakt-info .ikon { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 11px; display: grid; place-items: center; background: rgba(21,119,155,.09); color: var(--petrol-tief); }
.kontakt-info .ikon svg { width: 21px; height: 21px; }
.kontakt-info .k { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grau-hell); margin-bottom: 3px; }
.kontakt-info .v { font-size: 1.08rem; font-weight: 560; color: var(--navy-900); }
.kontakt-info .v a { color: var(--navy-900); }
.kontakt-info .v a:hover { color: var(--petrol); }

.kontakt-karte { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-lg); padding: clamp(26px,3.2vw,40px); box-shadow: var(--schatten); }

/* ── Formular ─────────────────────────────────────────────── */
.feld-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .feld-reihe { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field > label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
    width: 100%; font: inherit; color: var(--tinte); background: var(--papier);
    border: 1.5px solid var(--linie); border-radius: 12px; padding: 13px 15px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--petrol); background: #fff;
    box-shadow: 0 0 0 4px rgba(21,119,155,.12);
}
.field.check { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; }
.field.check input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--petrol); }
.field.check label { font-weight: 420; font-size: .92rem; color: var(--grau); margin: 0; }
.field.check a { color: var(--petrol); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
form [data-form-error] { background: rgba(241,99,101,.1); color: var(--koralle-tief); border: 1px solid rgba(241,99,101,.3);
    border-radius: 12px; padding: 13px 16px; margin-bottom: 18px; font-size: .95rem; font-weight: 560; }
.form-success { background: linear-gradient(160deg, var(--navy), var(--navy-900)); color: #fff;
    border-radius: var(--radius-lg); padding: clamp(30px,4vw,46px); text-align: center; box-shadow: var(--schatten); }
.form-success h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.form-success h3::before { content: "\2713"; display: block; width: 54px; height: 54px; margin: 0 auto 16px;
    border-radius: 50%; background: var(--mint); color: var(--navy-900); font-size: 1.7rem; line-height: 54px; font-weight: 800; }
.form-success p { color: #cdd9f0; margin: 0; }

/* ── FAQ / Akkordeon ──────────────────────────────────────── */
.faq-liste details { border-bottom: 1px solid var(--linie); padding: 6px 0; }
.faq-liste summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative;
    font-weight: 640; font-size: 1.1rem; color: var(--navy-900); }
.faq-liste summary::-webkit-details-marker { display: none; }
.faq-liste summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
    border-right: 2px solid var(--petrol); border-bottom: 2px solid var(--petrol); transform: translateY(-65%) rotate(45deg);
    transition: transform .3s var(--ease); }
.faq-liste details[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-liste details > div, .faq-liste details > p { padding: 0 40px 20px 0; color: var(--grau); margin: 0; }

/* ── Inhalts-Sektion mit Fließtext (Impressum etc.) ───────── */
.inhalt-text { max-width: 760px; }
.inhalt-text h2 { margin-top: 1.6em; font-size: 1.6rem; }
.inhalt-text h2:first-child { margin-top: 0; }
.inhalt-text a { color: var(--petrol); text-decoration: underline; }

/* ── Vergleichs-Hervorhebung (zwei Designs, ein CMS) ──────── */
.zwei-designs { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(16px,3vw,36px); }
@media (max-width: 700px) { .zwei-designs { grid-template-columns: 1fr; } }
.zwei-designs .gleich { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--petrol); white-space: nowrap; text-align: center; }

/* ── Consent-Banner (Tracking / Consent Mode v2) ──────────── */
.consent-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
    background: #fff; border-top: 1px solid var(--linie); box-shadow: 0 -10px 40px -12px rgba(14,26,54,.35); }
.consent-banner[hidden] { display: none; }
.consent-inner { max-width: var(--max, 1200px); margin: 0 auto; padding: 18px var(--rand, 24px);
    display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between; }
.consent-text { flex: 1 1 320px; font-size: .92rem; line-height: 1.55; color: var(--tinte, #14213d); }
.consent-text strong { display: block; margin-bottom: 3px; color: var(--navy, #22386f); }
.consent-text p { margin: 0; color: var(--grau, #5b6678); }
.consent-btns { display: flex; gap: 10px; flex: 0 0 auto; }
.consent-btn { cursor: pointer; border: 0; border-radius: var(--radius-sm, 8px); padding: 12px 22px; font: inherit; font-weight: 700; }
.consent-btn-sekundaer { background: var(--papier-2, #eef2f9); color: var(--navy, #22386f); }
.consent-btn-primaer { background: var(--mint, #68ceb8); color: var(--navy-900, #0e1a36); }
.consent-btn-primaer:hover { filter: brightness(1.05); }
@media (max-width: 560px) { .consent-btns { width: 100%; } .consent-btn { flex: 1; } }

/* ── Fokus-Band „Gefunden werden & messen" (Navy-Akzent) ──── */
.bg-navy { background: linear-gradient(165deg, var(--navy-900), var(--navy-800)); color: #e7eefb; }
.bg-navy .sektion-kopf h2 { color: #fff; }
.bg-navy .sektion-kopf .lead { color: #c4d1ea; }
.fokus-paar { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
@media (max-width: 760px) { .fokus-paar { grid-template-columns: 1fr; } }
.fokus-karte { position: relative; background: rgba(255,255,255,.05); border: 1px solid rgba(104,206,184,.25);
    border-radius: var(--radius); padding: clamp(26px, 3vw, 38px);
    transition: transform .3s var(--ease), border-color .3s var(--ease); }
.fokus-karte:hover { transform: translateY(-4px); border-color: rgba(104,206,184,.55); }
.fokus-karte .ikon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: grid; place-items: center;
    background: rgba(104,206,184,.14); color: var(--mint); margin-bottom: 18px; }
.fokus-karte .ikon svg { width: 26px; height: 26px; }
.fokus-karte h3 { color: #fff; margin-bottom: 10px; }
.fokus-karte p { color: #c4d1ea; margin: 0; }
.fokus-tag { display: inline-block; margin-top: 16px; font-size: .76rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; color: var(--mint); }
/* Fokus-Karten auf hellem Grund (Bänder ohne .bg-navy) – Mint-Icon/Tag bleiben */
.fokus-karte.auf-hell { background: var(--weiss); border-color: var(--linie); }
.fokus-karte.auf-hell:hover { border-color: transparent; box-shadow: var(--schatten); }
.fokus-karte.auf-hell h3 { color: var(--navy-900); }
.fokus-karte.auf-hell p { color: var(--grau); }

/* ════════════ Preisseite (/preise) ════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Preis-Umschalter ── */
.preis-umschalter { display: inline-flex; gap: 4px; padding: 5px; margin: 0 auto clamp(28px,4vw,40px);
    background: var(--papier-2); border: 1px solid var(--linie); border-radius: 100px; }
.preise-zentriert, .preis-umschalter { display: flex; }
.preis-umschalter { width: fit-content; }
.um-btn { appearance: none; border: 0; cursor: pointer; font-family: var(--sans); font-weight: 680;
    font-size: .95rem; padding: 10px 22px; border-radius: 100px; background: transparent; color: var(--grau);
    transition: background .2s var(--ease), color .2s var(--ease); }
.um-btn:hover { color: var(--navy); }
.um-btn.aktiv { background: var(--navy); color: #fff; box-shadow: 0 8px 20px -10px rgba(20,33,61,.5); }
.um-btn:focus-visible { outline: 3px solid var(--petrol); outline-offset: 2px; }

/* ── Paketkarten ── */
.preis-karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,26px); align-items: start; }
.preis-karte { position: relative; display: flex; flex-direction: column; gap: 14px;
    background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-lg);
    padding: clamp(26px,3vw,34px); box-shadow: var(--schatten-sm); }
.preis-karte.beliebt { border-color: var(--navy); box-shadow: var(--schatten); }
.preis-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
    background: var(--koralle); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
    padding: 6px 16px; border-radius: 100px; margin: 0; white-space: nowrap; }
.preis-kopf { display: flex; align-items: center; gap: 14px; }
.preis-kopf h3 { margin: 0; font-size: 1.5rem; }
.preis-untertitel { color: var(--grau); margin: 0; min-height: 3em; }
.preis-betrag { margin-top: 6px; line-height: 1.1; }
.preis-betrag b { font-family: var(--serif); font-weight: 600; font-size: 2.6rem; color: var(--navy-900); letter-spacing: -.01em; }
.preis-betrag .je { font-size: 1rem; font-weight: 600; color: var(--grau); }
.preis-betrag .plus { display: block; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-top: 4px; }
.preis-zusatz { margin: 0; font-size: .85rem; color: var(--grau-hell); }
.preis-wartung { display: flex; align-items: center; gap: 8px; margin: 4px 0 6px; font-weight: 680;
    color: var(--petrol-tief); font-size: .95rem; }
.preis-wartung svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--mint-tief); }
.preis-leistungen { list-style: none; margin: 0 0 8px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.preis-leistungen li { display: flex; align-items: flex-start; gap: 10px; color: var(--tinte); }
.preis-leistungen svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 1px; color: var(--mint-tief); }
.preis-karte .btn-block { margin-top: auto; }
.preis-fussnote { margin-top: clamp(22px,3vw,30px); color: var(--grau); font-size: .9rem; }

/* Umschalt-Sichtbarkeit (ohne JS: Standard/All-in sichtbar) */
.preis-karten .v-allin, .preis-karten .v-setup { display: none; }
.preis-karten.modus-allin .preis-betrag .v-allin,
.preis-karten.modus-setup .preis-betrag .v-setup { display: block; }
.preis-karten.modus-allin .preis-zusatz .v-allin,
.preis-karten.modus-setup .preis-zusatz .v-setup { display: inline; }

@media (max-width: 860px) {
    .preis-karten { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
    .preis-untertitel { min-height: 0; }
}

/* ── „In allen Paketen enthalten" – Icon-Karten ── */
.enthalten-gitter { list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.enthalten-karte { display: flex; align-items: center; gap: 16px; padding: 20px 22px;
    background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius);
    box-shadow: var(--schatten-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.enthalten-karte:hover { transform: translateY(-3px); box-shadow: var(--schatten); border-color: transparent; }
.enthalten-karte .ikon { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px;
    display: grid; place-items: center; color: #fff;
    background: linear-gradient(150deg, var(--mint), var(--petrol)); }
.enthalten-karte .ikon svg { width: 25px; height: 25px; }
.enthalten-karte.navy .ikon { background: linear-gradient(150deg, var(--navy), var(--petrol-tief)); }
.enthalten-karte.koralle .ikon { background: linear-gradient(150deg, var(--koralle), var(--koralle-tief)); }
.enthalten-body { display: flex; flex-direction: column; gap: 3px; }
.enthalten-titel { font-family: var(--sans); font-weight: 720; color: var(--navy-900); font-size: 1.04rem; line-height: 1.25; }
.enthalten-text { color: var(--grau); font-size: .92rem; line-height: 1.4; }
@media (min-width: 821px) and (max-width: 1080px) { .enthalten-gitter { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .enthalten-gitter { grid-template-columns: 1fr; } }

/* ── „Optional zubuchbar" – Liste ── */
.optional-liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.optional-liste li { display: flex; align-items: flex-start; gap: 11px; color: var(--tinte); }
.optional-liste svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; color: var(--petrol); }

/* ── Varianten-Tabelle (responsiv, kein H-Scroll) ── */
.preis-tabelle-huelle { margin-top: clamp(26px,3.5vw,40px); }
.preis-tabelle { width: 100%; border-collapse: collapse; background: var(--weiss);
    border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; }
.preis-tabelle th, .preis-tabelle td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--linie); }
.preis-tabelle thead th { background: var(--navy-900); color: #fff; font-size: .9rem; letter-spacing: .02em; }
.preis-tabelle tbody th { font-weight: 700; color: var(--navy); }
.preis-tabelle tbody tr:last-child th, .preis-tabelle tbody tr:last-child td { border-bottom: 0; }
.preis-tabelle td { color: var(--tinte); }
@media (max-width: 720px) {
    .preis-tabelle, .preis-tabelle tbody, .preis-tabelle tr, .preis-tabelle td, .preis-tabelle th { display: block; }
    .preis-tabelle thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .preis-tabelle tr { border-bottom: 1px solid var(--linie); padding: 6px 0; }
    .preis-tabelle tbody tr:last-child { border-bottom: 0; }
    .preis-tabelle tbody th { background: transparent; padding-bottom: 4px; font-size: 1.05rem; }
    .preis-tabelle td { border: 0; padding: 4px 18px; }
    .preis-tabelle td::before { content: attr(data-label) ": "; font-weight: 700; color: var(--grau); }
}

/* ── FAQ-Akkordeon ── */
.faq-liste { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 680; color: var(--navy-900);
    display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex: 0 0 auto; width: 11px; height: 11px;
    border-right: 2px solid var(--petrol); border-bottom: 2px solid var(--petrol);
    transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--petrol); outline-offset: -3px; }
.faq-text { padding: 0 22px 20px; color: var(--grau); }
.faq-text p { margin: 0; }
