        /* === CRITICAL CSS - Inline für maximale Performance === */
        :root {
            --primary: #3c142c;
            --accent: #ff004d;
            --text: #ffffff;
            --text-muted: #bba5b0;
            --text-light: #b0b0b0;
            --text-subtle: #949494;
            --bg: #0c0c0c;
            --bg-secondary: #1a1a1a;
            --bg-glass: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.1);
            --shadow: rgba(255, 0, 77, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) var(--bg);
            overflow-x: hidden;
            max-width: 100%;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            max-width: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .fonts-loaded body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        main {
            position: relative;
            overflow-x: hidden;
            max-width: 100%;
        }

        /* Unterseiten: durchgehender Glow wie auf der Startseite */
        main:has(.hero--compact)::before {
            content: '';
            position: absolute;
            top: -8%;
            left: 50%;
            transform: translateX(-50%);
            width: min(920px, 130vw);
            height: min(1050px, 115vh);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,0,77,0.09) 0%, rgba(255,0,77,0.04) 35%, transparent 72%);
            pointer-events: none;
            z-index: 0;
        }
        main:has(.hero--compact) > section {
            position: relative;
            z-index: 1;
        }
        main:has(.hero--compact) > .hero.hero--compact + section {
            margin-top: 0;
            padding-top: 8rem;
        }
        main:has(.hero--compact) .portal-section .portal-bg {
            top: -48vh;
        }
        main:has(.hero--compact) #ueber-uns {
            overflow: visible;
        }
        /* Webkit browsers (Chrome, Safari, Edge) */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 0, 77, 0.8);
        }

        /* === HEADER === */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 0.6rem 2rem;
            transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
            max-width: 100%;
            overflow: visible;
        }
        header.scrolled {
            background: rgba(10, 10, 10, 0.88);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.35);
            padding: 0.4rem 2rem;
        }

        nav {
            max-width: 1360px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 1.5rem;
            box-sizing: border-box;
        }

        /* === LOGO === */
        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            outline: none;
            -webkit-tap-highlight-color: transparent;
            justify-self: start;
        }
        .logo-mark {
            position: relative;
            display: flex; align-items: center; justify-content: center;
            width: 38px; height: 38px; flex-shrink: 0;
        }
        .logo-img {
            width: 38px; height: 38px;
            object-fit: contain;
            aspect-ratio: 1 / 1;
            transition: transform 0.3s ease, filter 0.3s ease;
            filter: drop-shadow(0 2px 6px rgba(255,0,77,0.18));
        }
        .logo:hover .logo-img { transform: scale(1.06); filter: drop-shadow(0 3px 10px rgba(255,0,77,0.35)); }
        .logo-text { display: flex; flex-direction: column; gap: 0.05rem; }
        .logo-text .company-name {
            font-size: 1.05rem; font-weight: 900;
            letter-spacing: -0.03em; line-height: 1;
            background: linear-gradient(130deg, #fff 30%, rgba(255,255,255,0.6) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            white-space: nowrap;
        }
        .logo-text .ampersand { -webkit-text-fill-color: var(--accent); color: var(--accent); }
        .logo-text .tagline {
            font-size: 0.56rem; font-weight: 700;
            letter-spacing: 0.38em; text-transform: uppercase;
            color: var(--text-subtle); line-height: 1;
        }

        /* === PILL NAV === */
        .nav-pill {
            display: flex; align-items: center;
            background: rgba(255,255,255,0.045);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 999px;
            padding: 0.3rem 0.45rem;
            gap: 0.15rem;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
        }
        .nav-links {
            display: flex; list-style: none;
            align-items: center; gap: 0.15rem;
            margin: 0; padding: 0;
        }
        .nav-links a {
            color: rgba(255,255,255,0.78);
            text-decoration: none;
            font-weight: 600; font-size: 0.8rem;
            padding: 0.32rem 0.7rem;
            border-radius: 999px;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
        .nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
        .nav-links a.active::after {
            content: '';
            position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
            width: 4px; height: 4px; border-radius: 50%;
            background: var(--accent);
        }

        /* === RIGHT SIDE BUTTONS === */
        .nav-actions {
            display: flex; align-items: center; gap: 0.6rem;
            justify-self: end;
        }
        .cta-button {
            display: inline-flex; align-items: center; gap: 0.35rem;
            font-weight: 700; font-size: 0.82rem;
            padding: 0.42rem 1rem;
            border-radius: 999px;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.22s ease;
            border: 1.5px solid transparent;
        }
        .cta-button::after { display: none; }
        .cta-button:not(.portal-btn) {
            background: transparent;
            border-color: rgba(255,255,255,0.18);
            color: rgba(255,255,255,0.75) !important;
        }
        .cta-button:not(.portal-btn):hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.32);
            color: #fff !important;
        }
        .portal-btn {
            background: var(--accent) !important;
            border-color: var(--accent) !important;
            color: #fff !important;
            box-shadow: 0 0 16px rgba(255,0,77,0.28);
        }
        .portal-btn:hover {
            box-shadow: 0 0 28px rgba(255,0,77,0.5);
            transform: translateY(-1px);
        }

        /* === HAMBURGER === */
        .menu-toggle {
            display: none;
            flex-direction: column; justify-content: center;
            gap: 5px; cursor: pointer;
            width: 36px; height: 36px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.05);
            padding: 8px;
            box-sizing: border-box;
            transition: background 0.2s ease, border-color 0.2s ease;
            color: inherit;
            font: inherit;
            line-height: 1;
        }
        .menu-toggle:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
        .menu-toggle span {
            width: 100%; height: 1.5px;
            background: rgba(255,255,255,0.8);
            border-radius: 2px;
            transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
            display: block;
        }
        .menu-toggle.active { background: rgba(255,0,77,0.12); border-color: rgba(255,0,77,0.3); }
        .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(0, 6.5px); background: var(--accent); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(0, -6.5px); background: var(--accent); }

        /* === HERO SECTION === */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 9rem 2rem 5rem;
            position: relative;
            overflow: hidden;
            max-width: 100%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%; left: 40%;
            width: 700px; height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,0,77,0.09) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Unterseiten: kompakter Hero – sofort erkennbar, dass es weitergeht */
        .hero.hero--compact {
            min-height: auto;
            padding: 8rem 2rem 3rem;
            overflow: visible;
            background: transparent;
        }
        .hero.hero--compact::before,
        .hero.hero--compact::after {
            display: none;
        }
        .hero.hero--compact .hero-content {
            z-index: 1;
        }

        /* LumenOS Wordmark (Hero) */
        .lumen-wordmark {
            font-style: normal;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(120deg, #fde68a 0%, #fbbf24 38%, #fff 72%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: none;
            filter: drop-shadow(0 0 28px rgba(251, 191, 36, 0.22));
        }

        /* === LumenOS Pitch === */
        .lumen-pitch {
            position: relative;
            max-width: none;
            width: 100%;
            padding-inline: 2rem;
            padding-bottom: 4.5rem;
            margin-bottom: 0;
        }
        .lumen-pitch-inner {
            max-width: 940px;
            margin: 0 auto;
            padding: 2.25rem 2rem 2.5rem;
            border-radius: 24px;
            border: 1px solid rgba(251, 191, 36, 0.14);
            background:
                radial-gradient(ellipse 70% 55% at 8% 0%, rgba(251, 191, 36, 0.09) 0%, transparent 55%),
                radial-gradient(ellipse 50% 40% at 95% 100%, rgba(255, 0, 77, 0.06) 0%, transparent 60%),
                rgba(255, 255, 255, 0.025);
        }
        .lumen-pitch-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 2.5rem;
            align-items: start;
        }
        .lumen-etym {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #fbbf24;
            margin-bottom: 0.85rem;
        }
        .lumen-etym strong { color: #fde68a; font-weight: 800; }
        .lumen-pitch-main h2 {
            font-size: clamp(1.55rem, 3.5vw, 2.15rem);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .lumen-pitch-main h2 span {
            color: #fbbf24;
        }
        .lumen-lead,
        .lumen-exclusive {
            color: var(--text-light);
            font-size: 0.93rem;
            line-height: 1.7;
            margin-bottom: 0.85rem;
        }
        .lumen-exclusive {
            margin-bottom: 0;
            padding: 0.85rem 1rem 0.85rem 1.1rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-left: 3px solid rgba(251, 191, 36, 0.45);
            background: rgba(255, 255, 255, 0.025);
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.86rem;
        }
        .lumen-privacy {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.84rem;
            line-height: 1.65;
            margin: 0 0 0.85rem;
            padding-left: 0.15rem;
        }
        .lumen-pitch-cards {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .lumen-point {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            padding: 1rem 1.1rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            transition: border-color 0.25s, transform 0.25s;
        }
        .lumen-point:hover {
            border-color: rgba(251, 191, 36, 0.28);
            transform: translateY(-2px);
        }
        .lumen-point-n {
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            color: rgba(251, 191, 36, 0.75);
        }
        .lumen-point strong {
            font-size: 0.92rem;
            color: var(--text);
        }
        .lumen-point span:last-child {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.55;
        }
        @media (max-width: 768px) {
            .lumen-pitch { padding-inline: 1.25rem; padding-bottom: 3rem; }
            .lumen-pitch-inner { padding: 1.5rem 1.25rem; }
            .lumen-pitch-grid {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }
        }

        .hero-content {
            max-width: 820px;
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.28rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255,0,77,0.3);
            background: rgba(255,0,77,0.07);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.09em;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .hero-eyebrow-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: heroBlink 2s ease-in-out infinite;
        }

        @keyframes heroBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        h1 em {
            font-style: normal;
            color: var(--accent);
        }

        h1 span {
            color: var(--accent);
            -webkit-text-fill-color: var(--accent);
        }

        .hero-sub {
            font-size: clamp(0.9rem, 1.6vw, 1.05rem);
            color: var(--text-light);
            line-height: 1.65;
            max-width: 560px;
            margin: 0 auto 2rem;
        }

        .hero-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            justify-content: center;
        }

        .hero-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.32rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.04);
            font-size: 0.74rem;
            font-weight: 600;
            color: rgba(255,255,255,0.78);
            transition: border-color 0.2s ease, color 0.2s ease;
        }

        .hero-chip:hover {
            border-color: var(--accent);
            color: var(--text);
        }

        .hero-chip-dot {
            width: 5px; height: 5px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            justify-content: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.07);
        }

        .hero-stat-val {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--text);
            letter-spacing: -0.04em;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.72rem;
            color: var(--text-light);
            margin-top: 0.3rem;
            line-height: 1.3;
        }

        /* Hero-Stats: Zähler-Animation (Verwaltung wechseln) */
        .hero-stats--animate .hero-stat-item {
            text-align: center;
            opacity: 0;
            transform: translateY(14px);
        }
        .hero-stats--animate.is-live .hero-stat-item {
            animation: heroStatItemIn 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
        }
        @keyframes heroStatItemIn {
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-stat-val--count.is-counting {
            font-variant-numeric: tabular-nums;
        }
        .hero-stat-val--count.is-finished {
            animation: heroStatFinishPop 0.5s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
        }
        @keyframes heroStatFinishPop {
            0% { transform: scale(1.12); filter: blur(2px); }
            100% { transform: scale(1); filter: blur(0); }
        }
        .hero-stat-val--accent.is-finished {
            color: var(--accent);
            text-shadow: 0 0 28px rgba(255, 0, 77, 0.35);
        }
        .hero-stat-val--gold.is-finished {
            color: #fbbf24;
            text-shadow: 0 0 28px rgba(251, 191, 36, 0.45), 0 0 48px rgba(251, 191, 36, 0.15);
        }
        /* Kalender-Stat: Monate → Countdown → 01. */
        .hero-stat-val--cal {
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.05em;
            min-width: 2.6ch;
        }
        .hero-stat-val--cal.is-month-flash {
            font-size: 1.28rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            color: var(--text-muted);
            transform: scale(0.94);
        }
        .hero-stat-val--cal.is-landed {
            letter-spacing: -0.06em;
            color: #fff;
            text-shadow:
                0 0 22px rgba(96, 165, 250, 0.5),
                0 0 44px rgba(96, 165, 250, 0.18);
            animation: heroCalLand 0.7s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
        }
        @keyframes heroCalLand {
            0% { transform: scale(1.2); filter: blur(4px); opacity: 0.75; }
            55% { transform: scale(0.96); filter: blur(0); opacity: 1; }
            100% { transform: scale(1); }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-stats--animate .hero-stat-item,
            .hero-stat-val--count {
                opacity: 1;
                transform: none;
                filter: none;
                animation: none !important;
                transition: none !important;
            }
            .hero-stat-val--accent { color: var(--accent); }
            .hero-stat-val--gold { color: #fbbf24; }
            .hero-stat-val--cal.is-landed {
                text-shadow: 0 0 18px rgba(96, 165, 250, 0.35);
            }
        }

        .hero p {
            font-size: clamp(0.875rem, 1.6vw, 1rem);
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }


        .btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 16px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 2px solid transparent;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--text);
            border-color: var(--accent);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px var(--shadow);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border-color: var(--text);
        }

        .btn-secondary:hover {
            background: var(--text);
            color: var(--bg);
            transform: translateY(-3px);
        }

        /* Kontakt-Links: Glow beim Hover */
        .contact-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, text-shadow 0.25s ease;
        }
        .contact-link:hover {
            color: var(--accent);
            text-shadow: 0 0 12px var(--accent), 0 0 24px rgba(255, 0, 77, 0.5);
        }

        /* === SECTION BASE (kompakte Größen wie Ablauf-Sektion) === */
        section {
            padding: 2.75rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        h2 {
            font-size: clamp(1.45rem, 3.2vw, 2.1rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        h2 span {
            color: var(--accent);
            transition: all 0.3s ease;
            display: inline-block;
        }

        h2 span:hover {
            text-shadow: 0 0 8px var(--accent), 0 0 15px rgba(255, 0, 77, 0.4);
            transform: scale(1.01);
        }
        /* Ablauf: nur "So werden wir" ohne Hover, "beauftragt" behält Hover */
        .ablauf-bold-headline .ablauf-headline-line {
            transition: none;
            display: block;
        }
        .ablauf-bold-headline .ablauf-headline-line:hover {
            text-shadow: none;
            transform: none;
        }
        .ablauf-bold-headline .ablauf-headline-accent {
            display: block;
            transition: all 0.3s ease;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        /* === BEAUFTRAGUNGSABLAUF (Bold-Stil, kompakt) === */
        .ablauf-section-bold {
            position: relative;
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        }
        .ablauf-bold-inner {
            max-width: 860px;
            margin: 0 auto;
        }
        .ablauf-bold-headline {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 0.35rem;
            font-size: clamp(1.5rem, 4vw, 2.15rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        .ablauf-headline-line {
            display: block;
            color: var(--text);
        }
        .ablauf-headline-accent {
            display: block;
            color: var(--accent);
        }
        .ablauf-bold-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }
        .ablauf-bold-subtitle a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        .ablauf-bold-subtitle a:hover { text-decoration: underline; }
        .ablauf-bold-list-wrap {
            position: relative;
            padding-left: 2rem;
        }
        .ablauf-line-track {
            position: absolute;
            left: 0.35rem;
            top: 0.35rem;
            bottom: 0.35rem;
            width: 2px;
            background: linear-gradient(to bottom, var(--border) 0%, rgba(255,255,255,0.08) 100%);
            border-radius: 2px;
            pointer-events: none;
        }
        .ablauf-line-progress {
            position: absolute;
            left: 0.35rem;
            top: 0.35rem;
            width: 2px;
            height: 0;
            background: linear-gradient(to bottom, var(--accent), rgba(255, 0, 77, 0.5));
            border-radius: 2px;
            box-shadow: 0 0 12px var(--accent);
            pointer-events: none;
            transform-origin: top;
            animation: ablaufLineRun 2.8s ease-in-out infinite;
        }
        @keyframes ablaufLineRun {
            0% { height: 0; opacity: 0.9; }
            70% { height: calc(100% - 0.75rem); opacity: 1; }
            100% { height: 0; opacity: 0.9; }
        }
        .ablauf-bold-item {
            transform: translateX(-8px);
        }
        .ablauf-section-bold.ablauf-animated .ablauf-bold-item {
            animation: ablaufItemReveal 0.5s ease forwards;
        }
        .ablauf-section-bold.ablauf-animated .ablauf-bold-item:nth-child(1) { animation-delay: 0.15s; }
        .ablauf-section-bold.ablauf-animated .ablauf-bold-item:nth-child(2) { animation-delay: 0.45s; }
        .ablauf-section-bold.ablauf-animated .ablauf-bold-item:nth-child(3) { animation-delay: 0.75s; }
        .ablauf-section-bold.ablauf-animated .ablauf-bold-item:nth-child(4) { animation-delay: 1.05s; }
        .ablauf-section-bold.ablauf-animated .ablauf-bold-item:nth-child(5) { animation-delay: 1.35s; }
        @keyframes ablaufItemReveal {
            to { opacity: 1; transform: translateX(0); }
        }
        .ablauf-bold-list {
            list-style: none;
            counter-reset: ablauf-bold;
            padding: 0;
            margin: 0;
        }
        .ablauf-bold-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1rem 1.35rem;
            align-items: start;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .ablauf-bold-item:last-of-type {
            border-bottom: none;
        }
        .ablauf-bold-num {
            font-size: clamp(1.55rem, 3.2vw, 2.1rem);
            font-weight: 800;
            line-height: 1;
            color: var(--accent);
            opacity: 0.95;
            letter-spacing: -0.03em;
        }
        .ablauf-bold-content {
            min-width: 0;
        }
        .ablauf-bold-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.3rem;
        }
        .ablauf-bold-text {
            color: var(--text-light);
            font-size: 0.875rem;
            line-height: 1.55;
            margin: 0;
        }
        .ablauf-bold-text a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        .ablauf-bold-text a:hover {
            text-decoration: underline;
        }

        /* === VERWALTUNGSWECHSEL (vw-*) === */
        .vw-section { max-width: 920px; margin-left: auto; margin-right: auto; }
        .vw-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.85rem;
            margin-top: 1.5rem;
        }
        .vw-grid .vw-card[id^="weg-"] {
            scroll-margin-top: calc(var(--header-offset, 72px) + 12px);
        }
        .vw-card {
            position: relative;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 1.15rem 1.2rem 1.2rem;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            transition: border-color 0.25s, transform 0.25s;
        }
        .vw-card:hover {
            border-color: rgba(255,0,77,0.22);
            transform: translateY(-2px);
        }
        .vw-card--featured {
            border-color: rgba(255,0,77,0.28);
            background: rgba(255,0,77,0.04);
        }
        .vw-badge {
            position: absolute;
            top: 0.85rem;
            right: 0.85rem;
            font-size: 0.52rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent);
            background: rgba(255,0,77,0.1);
            border: 1px solid rgba(255,0,77,0.22);
            border-radius: 999px;
            padding: 0.18rem 0.5rem;
        }
        .vw-num {
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: rgba(255,0,77,0.55);
            text-transform: uppercase;
        }
        .vw-title {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--text);
            margin: 0;
            line-height: 1.25;
            padding-right: 4.5rem;
        }
        .vw-card:not(.vw-card--featured) .vw-title { padding-right: 0; }
        .vw-text {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }
        .vw-when {
            margin: 0.35rem 0 0;
            padding-top: 0.55rem;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 0.72rem;
            color: var(--text-subtle);
            line-height: 1.5;
        }
        .vw-when strong {
            color: rgba(255,255,255,0.72);
            font-weight: 700;
        }
        .vw-note {
            margin: 1.15rem 0 0;
            padding: 0.85rem 1rem;
            border-radius: 12px;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.07);
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.6;
            text-align: center;
        }
        .vw-note a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        .vw-note a:hover { text-decoration: underline; }

        /* === WECHSEL-FLOW Infografik (wf-*) === */
        .wf-flow {
            margin: 2rem 0 2.25rem;
            padding: 1.5rem 1.25rem 1.35rem;
            border-radius: 20px;
            background: linear-gradient(165deg, rgba(255,0,77,0.06) 0%, rgba(255,255,255,0.02) 45%, rgba(96,165,250,0.04) 100%);
            border: 1px solid rgba(255,255,255,0.09);
        }
        .wf-head { text-align: center; margin-bottom: 1.5rem; }
        .wf-kicker {
            display: inline-block;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.35rem;
        }
        .wf-title {
            font-size: clamp(1.15rem, 2.5vw, 1.45rem);
            font-weight: 900;
            color: var(--text);
            margin: 0 0 0.4rem;
            letter-spacing: -0.03em;
        }
        .wf-sub {
            margin: 0 auto;
            max-width: 520px;
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        .wf-track {
            display: grid;
            grid-template-columns: 1fr auto 1.15fr auto 1fr auto 1fr auto 1fr;
            align-items: stretch;
            gap: 0;
        }
        .wf-step {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0.85rem 0.5rem 0.75rem;
            border-radius: 14px;
            transition: background 0.25s, transform 0.25s;
        }
        .wf-step:hover {
            background: rgba(255,255,255,0.03);
            transform: translateY(-2px);
        }
        .wf-step-icon {
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(255,0,77,0.1);
            border: 1px solid rgba(255,0,77,0.22);
            color: var(--accent);
            margin-bottom: 0.55rem;
        }
        .wf-step-icon svg { width: 1.15rem; height: 1.15rem; }
        .wf-step--finish .wf-step-icon {
            background: rgba(251,191,36,0.12);
            border-color: rgba(251,191,36,0.28);
            color: #fbbf24;
        }
        .wf-step-badge {
            position: absolute;
            top: 0.55rem;
            right: 0.45rem;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.28);
        }
        .wf-step-ways {
            list-style: none;
            margin: 0 0 0.45rem;
            padding: 0;
            font-size: 0.64rem;
            color: var(--text-light);
            line-height: 1.45;
            flex: 1;
        }
        .wf-step-ways li {
            padding: 0.12rem 0;
        }
        .wf-step-num {
            position: absolute;
            top: 0.55rem;
            right: 0.45rem;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.28);
        }
        .wf-step-title {
            margin: 0 0 0.35rem;
            font-size: 0.82rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.25;
        }
        .wf-step-text {
            margin: 0 0 0.5rem;
            font-size: 0.7rem;
            color: var(--text-light);
            line-height: 1.55;
            flex: 1;
        }
        .wf-step-link {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            margin-top: auto;
        }
        .wf-step-link:hover { text-decoration: underline; }
        .wf-step-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.35rem 0.65rem;
            margin-top: auto;
        }
        .wf-step-links .wf-step-link { margin-top: 0; }
        .wf-connector {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.25rem;
            flex-shrink: 0;
            align-self: center;
            padding-top: 0.5rem;
        }
        .wf-connector span {
            display: block;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, rgba(255,0,77,0.35), rgba(255,0,77,0.12));
            position: relative;
        }
        .wf-connector span::after {
            content: '';
            position: absolute;
            right: -1px;
            top: 50%;
            transform: translateY(-50%);
            border: 4px solid transparent;
            border-left-color: rgba(255,0,77,0.45);
        }
        .wf-bridge {
            margin: 0 0 1.25rem;
            font-size: 0.82rem;
            color: var(--text-light);
            text-align: center;
            line-height: 1.55;
        }
        .wf-bridge strong { color: rgba(255,255,255,0.88); }
        @media (max-width: 860px) {
            .wf-track {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .wf-connector {
                width: auto;
                height: 1.25rem;
                padding: 0;
                margin: 0 auto;
            }
            .wf-connector span {
                width: 2px;
                height: 100%;
                background: linear-gradient(180deg, rgba(255,0,77,0.35), rgba(255,0,77,0.12));
            }
            .wf-connector span::after {
                right: auto;
                left: 50%;
                top: auto;
                bottom: -1px;
                transform: translateX(-50%);
                border: 4px solid transparent;
                border-top-color: rgba(255,0,77,0.45);
                border-left-color: transparent;
            }
            .wf-step { padding: 1rem 0.75rem; }
            .wf-step-num { top: 0.75rem; right: 0.75rem; }
        }

        /* === WEG-FINDER (Entscheidungsbaum) === */
        .wf-finder {
            margin: 0 0 1.5rem;
            padding: 1.35rem 1.4rem 1.5rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px;
        }
        .wf-finder-head { text-align: center; margin-bottom: 1rem; }
        .wf-finder-kicker {
            display: inline-block;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.35rem;
        }
        .wf-finder-title {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 0.45rem;
            line-height: 1.3;
        }
        .wf-finder-intro {
            margin: 0;
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.55;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
        }
        .wf-finder-progress {
            display: flex;
            justify-content: center;
            gap: 0.45rem;
            margin-bottom: 1.1rem;
        }
        .wf-finder-dot {
            width: 0.45rem;
            height: 0.45rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
        }
        .wf-finder-dot.is-active {
            background: var(--accent);
            transform: scale(1.15);
            box-shadow: 0 0 10px rgba(255,0,77,0.45);
        }
        .wf-finder-dot.is-done { background: rgba(255,0,77,0.55); }
        .wf-finder-body { min-height: 7.5rem; }
        .wf-finder-start { text-align: center; }
        .wf-finder-q {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 0.85rem;
            line-height: 1.4;
            text-align: center;
        }
        .wf-finder-options {
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            max-width: 32rem;
            margin: 0 auto;
        }
        .wf-finder-opt {
            display: block;
            width: 100%;
            text-align: left;
            font-family: inherit;
            font-size: 0.78rem;
            line-height: 1.5;
            color: var(--text-light);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 0.75rem 0.95rem;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
        }
        .wf-finder-opt:hover {
            border-color: rgba(255,0,77,0.35);
            background: rgba(255,0,77,0.06);
            color: var(--text);
            transform: translateY(-1px);
        }
        .wf-finder-opt strong {
            display: block;
            color: var(--text);
            font-size: 0.82rem;
            margin-bottom: 0.15rem;
        }
        .wf-finder-result {
            text-align: center;
            animation: wf-finder-in 0.45s ease both;
        }
        @keyframes wf-finder-in {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .wf-finder-result-kicker {
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.35rem;
        }
        .wf-finder-result-title {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text);
            margin: 0 0 0.5rem;
        }
        .wf-finder-result-text {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.6;
            margin: 0 auto 0.85rem;
            max-width: 34rem;
        }
        .wf-finder-disclaimer {
            font-size: 0.68rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
            margin: 0 0 1rem;
            max-width: 34rem;
            margin-left: auto;
            margin-right: auto;
        }
        .wf-finder-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            justify-content: center;
        }
        .wf-finder-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: inherit;
            font-size: 0.74rem;
            font-weight: 700;
            border-radius: 999px;
            padding: 0.55rem 1rem;
            cursor: pointer;
            border: 1px solid transparent;
            transition: background 0.2s, border-color 0.2s, transform 0.15s;
        }
        .wf-finder-btn:hover { transform: translateY(-1px); }
        .wf-finder-btn--primary {
            color: #fff;
            background: var(--accent);
            border-color: var(--accent);
        }
        .wf-finder-btn--primary:hover { background: #e6003d; }
        .wf-finder-btn--ghost {
            color: var(--text-light);
            background: transparent;
            border-color: rgba(255,255,255,0.18);
        }
        .wf-finder-btn--ghost:hover {
            border-color: rgba(255,0,77,0.35);
            color: var(--text);
        }
        .wf-finder-btn--start { margin-top: 0.25rem; }

        .vw-card.vw-card--recommended {
            border-color: rgba(255,0,77,0.55);
            box-shadow: 0 0 0 1px rgba(255,0,77,0.2), 0 0 24px rgba(255,0,77,0.08);
        }

        /* === WECHSEL-LEITFADEN (wl-*) === */
        .wl-section {
            max-width: 860px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        .wl-section--split { max-width: 920px; }
        .wl-intro {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 2rem;
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.7;
        }
        .wl-intro a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        .wl-intro a:hover { text-decoration: underline; }
        .wl-steps {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .wl-step {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem 1.15rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            transition: border-color 0.25s;
        }
        .wl-step:hover { border-color: rgba(255,0,77,0.18); }
        .wl-step-num {
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(255,0,77,0.1);
            border: 1px solid rgba(255,0,77,0.22);
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--accent);
        }
        .wl-step-body h3 {
            margin: 0 0 0.35rem;
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.3;
        }
        .wl-step-body p {
            margin: 0;
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.65;
        }
        .wl-step-body p + p { margin-top: 0.5rem; }
        .wl-step-list {
            margin: 0.45rem 0 0;
            padding-left: 1.1rem;
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        .wl-step-list li + li { margin-top: 0.25rem; }
        .wl-step-list strong { color: rgba(255,255,255,0.88); }
        .wl-step-note {
            margin-top: 0.55rem !important;
            padding-top: 0.55rem;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 0.74rem !important;
            color: var(--text-subtle) !important;
        }
        .wl-step-body a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        .wl-step-body a:hover { text-decoration: underline; }
        .wl-disclaimer {
            margin: 1.25rem 0 0;
            font-size: 0.72rem;
            color: var(--text-subtle);
            text-align: center;
            line-height: 1.55;
        }
        .wl-trust {
            margin-bottom: 1.5rem;
            padding: 1rem 1.2rem;
            border-radius: 14px;
            background: rgba(255,0,77,0.05);
            border: 1px solid rgba(255,0,77,0.18);
            text-align: center;
        }
        .wl-trust p {
            margin: 0;
            font-size: 0.84rem;
            color: var(--text-light);
            line-height: 1.65;
        }
        .wl-trust strong { color: var(--text); }
        .wl-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .wl-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 1.25rem 1.3rem 1.35rem;
        }
        .wl-card--accent {
            border-color: rgba(255,0,77,0.2);
            background: rgba(255,0,77,0.03);
        }
        .wl-card-kicker {
            display: block;
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-subtle);
            margin-bottom: 0.45rem;
        }
        .wl-card-title {
            margin: 0 0 0.75rem;
            font-size: 1rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.25;
        }
        .wl-card-list {
            margin: 0;
            padding-left: 1.1rem;
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.65;
        }
        .wl-card-list li + li { margin-top: 0.45rem; }
        .wl-card-list strong { color: rgba(255,255,255,0.9); }
        .wl-card-foot {
            margin: 0.85rem 0 0;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255,255,255,0.07);
            font-size: 0.74rem;
            color: var(--text-subtle);
            line-height: 1.55;
        }
        @media (max-width: 768px) {
            .wl-section { padding: 3rem 1.25rem; }
            .wl-grid { grid-template-columns: 1fr; }
            .wl-step { flex-direction: column; gap: 0.65rem; }
        }

        /* ══════════════════════════════════════════════════════
           BERATUNGSTERMIN (bt-*)
        ══════════════════════════════════════════════════════ */
        .bt-section {
            padding: 5rem 2rem 4rem;
        }
        .bt-inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .bt-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .bt-eyebrow {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(255,0,77,0.08);
            border: 1px solid rgba(255,0,77,0.18);
            border-radius: 100px;
            padding: 0.3rem 0.9rem;
            margin-bottom: 1rem;
        }

        /* Schritt-Indikator */
        .bt-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 2rem;
        }
        .bt-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
        }
        .bt-step-n {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            background: rgba(255,255,255,0.06);
            border: 1.5px solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.35);
            transition: all 0.3s ease;
        }
        .bt-step-label {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            transition: color 0.3s ease;
        }
        .bt-step--active .bt-step-n {
            background: rgba(255,0,77,0.15);
            border-color: var(--accent);
            color: var(--accent);
        }
        .bt-step--active .bt-step-label { color: rgba(255,255,255,0.7); }
        .bt-step--done .bt-step-n {
            background: rgba(74,222,128,0.12);
            border-color: #4ade80;
            color: #4ade80;
        }
        .bt-step--done .bt-step-label { color: rgba(255,255,255,0.5); }
        .bt-step-line {
            width: 80px;
            height: 1.5px;
            background: rgba(255,255,255,0.08);
            margin: 0 6px;
            margin-bottom: 1.15rem;
            transition: background 0.4s ease;
        }
        .bt-step-line--done { background: rgba(74,222,128,0.4); }

        /* Hauptkarte */
        .bt-card {
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 24px;
            padding: 2.25rem 2rem;
            overflow: hidden;
        }

        /* Panels */
        .bt-panel { animation: btFadeIn 0.3s ease; }
        .bt-panel--hidden { display: none !important; }
        @keyframes btFadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .bt-panel-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: rgba(255,255,255,0.75);
            margin-bottom: 1.5rem;
        }
        .bt-panel-back {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            flex-wrap: wrap;
        }
        .bt-back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            background: none;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 0.35rem 0.8rem;
            color: rgba(255,255,255,0.45);
            font-size: 0.78rem;
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }
        .bt-back-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
        .bt-back-btn:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
        .bt-selected-badge {
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255,255,255,0.65);
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 0.35rem 0.75rem;
        }

        /* Kalender */
        .bt-calendar { max-width: 380px; margin: 0 auto; }
        .bt-cal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .bt-cal-month {
            font-size: 0.95rem;
            font-weight: 700;
            color: rgba(255,255,255,0.85);
        }
        .bt-cal-nav {
            background: none;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            width: 32px; height: 32px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            color: rgba(255,255,255,0.5);
            transition: border-color 0.2s, color 0.2s, opacity 0.2s;
        }
        .bt-cal-nav svg { width: 16px; height: 16px; }
        .bt-cal-nav:hover:not(:disabled) { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
        .bt-cal-nav:disabled { opacity: 0.25; cursor: not-allowed; }
        .bt-cal-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: rgba(255,255,255,0.28);
            margin-bottom: 0.4rem;
        }
        .bt-wd-we { color: rgba(255,255,255,0.15); }
        .bt-cal-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 3px;
        }
        .bt-cal-cell {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 500;
            border-radius: 8px;
            cursor: default;
            border: 1px solid transparent;
            transition: background 0.15s, border-color 0.15s, transform 0.1s;
        }
        .bt-cal-day {
            background: rgba(255,255,255,0.04);
            color: rgba(255,255,255,0.7);
            font-family: inherit;
            padding: 0;
            -webkit-appearance: none;
            appearance: none;
        }
        .bt-cal-empty { background: transparent !important; border-color: transparent !important; }
        .bt-day--disabled {
            background: rgba(255,255,255,0.03);
            border-color: rgba(255,255,255,0.07);
            color: rgba(255,255,255,0.42);
            cursor: not-allowed;
        }
        .bt-day--disabled:hover {
            transform: none;
            background: rgba(255,255,255,0.03);
            border-color: rgba(255,255,255,0.07);
        }
        .bt-day--today {
            border-color: rgba(255,255,255,0.15) !important;
        }
        .bt-day--available {
            color: rgba(255,255,255,0.85);
            background: rgba(74,222,128,0.07);
            border-color: rgba(74,222,128,0.2);
            cursor: pointer;
        }
        .bt-day--available:hover {
            background: rgba(74,222,128,0.16);
            border-color: rgba(74,222,128,0.45);
            transform: scale(1.08);
        }
        .bt-day--selected {
            background: var(--accent) !important;
            border-color: var(--accent) !important;
            color: #fff !important;
            font-weight: 700;
        }
        .bt-cal-legend {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.68rem;
            color: rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
        }
        .bt-legend-dot {
            display: inline-block;
            width: 8px; height: 8px;
            border-radius: 50%;
        }
        .bt-legend-dot--available { background: rgba(74,222,128,0.7); }
        .bt-legend-dot--none { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }

        /* Lade-Indikator */
        .bt-loading {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: rgba(255,255,255,0.35);
            font-size: 0.8rem;
            margin-top: 1rem;
        }
        .bt-spinner {
            display: inline-block;
            width: 16px; height: 16px;
            border: 2px solid rgba(255,255,255,0.1);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: btSpin 0.7s linear infinite;
            flex-shrink: 0;
        }
        @keyframes btSpin { to { transform: rotate(360deg); } }

        /* Slots */
        .bt-slots {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.25rem;
        }
        .bt-slot {
            padding: 0.55rem 1rem;
            border-radius: 10px;
            border: 1.5px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.75);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.18s, background 0.18s, color 0.18s, transform 0.1s;
        }
        .bt-slot:hover {
            border-color: var(--accent);
            background: rgba(255,0,77,0.08);
            color: #fff;
            transform: translateY(-1px);
        }
        .bt-slot--selected {
            border-color: var(--accent);
            background: rgba(255,0,77,0.15);
            color: #fff;
        }
        .bt-no-slots {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.45);
            margin-top: 0.75rem;
        }

        /* Formular */
        .bt-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }
        .bt-field {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            margin-bottom: 0.85rem;
        }
        .bt-field label {
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255,255,255,0.55);
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }
        .bt-optional {
            font-size: 0.68rem;
            font-weight: 400;
            color: rgba(255,255,255,0.28);
        }
        .bt-field input,
        .bt-field textarea {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 0.65rem 0.9rem;
            color: #fff;
            font-size: 0.88rem;
            font-family: inherit;
            transition: border-color 0.2s;
            outline: none;
            width: 100%;
            box-sizing: border-box;
            resize: vertical;
        }
        .bt-field input::placeholder,
        .bt-field textarea::placeholder { color: rgba(255,255,255,0.2); }
        .bt-field input:focus,
        .bt-field textarea:focus {
            border-color: rgba(255,0,77,0.45);
            background: rgba(255,255,255,0.06);
        }
        .bt-privacy {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.3);
            margin-bottom: 1.25rem;
            line-height: 1.5;
        }
        .bt-privacy a { color: rgba(255,255,255,0.45); }
        .bt-submit {
            width: fit-content;
            max-width: 100%;
            display: flex;
            justify-content: center;
            margin: 0 auto 0.75rem;
        }
        .bt-spin-icon {
            width: 18px; height: 18px;
            animation: btSpin 0.8s linear infinite;
        }
        .bt-error {
            background: rgba(255,50,50,0.1);
            border: 1px solid rgba(255,80,80,0.25);
            border-radius: 10px;
            padding: 0.7rem 1rem;
            color: #ff9090;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        /* Erfolg */
        .bt-success {
            text-align: center;
            padding: 1.5rem 0.5rem;
        }
        .bt-success-ring {
            width: 72px; height: 72px;
            margin: 0 auto 1.25rem;
            position: relative;
        }
        .bt-success-ring svg {
            width: 72px; height: 72px;
            stroke: #4ade80;
            filter: drop-shadow(0 0 8px rgba(74,222,128,0.4));
        }
        .bt-success-ring circle {
            stroke: rgba(74,222,128,0.15);
        }
        .bt-check-path {
            stroke-dasharray: 40;
            stroke-dashoffset: 40;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 3;
            animation: btCheckDraw 0.5s ease 0.15s forwards;
        }
        @keyframes btCheckDraw { to { stroke-dashoffset: 0; } }
        .bt-success-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: #4ade80;
            margin-bottom: 0.65rem;
        }
        .bt-success-detail {
            font-size: 1rem;
            font-weight: 700;
            color: rgba(255,255,255,0.85);
            margin-bottom: 0.5rem;
        }
        .bt-success-sub {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.45);
            max-width: 400px;
            margin: 0 auto;
        }

        /* Meta unter der Karte */
        .bt-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.25rem 2rem;
            margin-top: 1.75rem;
        }
        .bt-meta-item {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.76rem;
            color: rgba(255,255,255,0.35);
        }
        .bt-meta-item svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.25); flex-shrink: 0; }

        /* Responsive */
        @media (max-width: 560px) {
            .bt-card { padding: 1.5rem 1.25rem; }
            .bt-form-row { grid-template-columns: 1fr; }
            .bt-step-line { width: 40px; }
            .bt-slots { gap: 0.45rem; }
            .bt-slot { padding: 0.5rem 0.8rem; font-size: 0.8rem; }
        }

        /* === WEG-PROBLEME (wp-*) === */
        .wp-section {
            max-width: 860px;
            margin-left: auto;
            margin-right: auto;
        }
        .wp-intro {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 2rem;
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.7;
        }
        .wp-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-top: 1.5rem;
        }
        .wp-block {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            overflow: hidden;
            transition: border-color 0.25s, transform 0.25s;
        }
        .wp-block:hover {
            border-color: rgba(255,0,77,0.2);
            transform: translateY(-2px);
        }
        .wp-problem {
            padding: 1.15rem 1.25rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .wp-tag {
            display: inline-block;
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-subtle);
            margin-bottom: 0.45rem;
        }
        .wp-problem h3 {
            font-size: 1.05rem;
            font-weight: 800;
            margin: 0 0 0.5rem;
            line-height: 1.25;
            color: var(--text);
        }
        .wp-problem p {
            margin: 0;
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.65;
        }
        .wp-solution {
            padding: 1rem 1.25rem 1.15rem;
            background: rgba(255,0,77,0.03);
        }
        .wp-solution-label {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent);
            margin-bottom: 0.4rem;
        }
        .wp-solution-label::before {
            content: '';
            width: 5px; height: 5px;
            border-radius: 50%;
            background: var(--accent);
        }
        .wp-solution p {
            margin: 0;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.72);
            line-height: 1.65;
        }
        .wp-solution p + p {
            margin-top: 0.65rem;
        }
        .wp-cta-row {
            margin-top: 1.5rem;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }
        .bt-path-hint {
            margin-top: 0.75rem;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.42);
            line-height: 1.55;
        }
        .bt-path-hint a {
            color: rgba(255,255,255,0.65);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .bt-path-hint a:hover { color: var(--accent); }

        /* ══ Kontakt-Wege: Beratung vs. Angebot (kw-*) ══ */
        .kw-section {
            max-width: 920px;
            margin: 0 auto;
            padding: 4rem 2rem 3rem;
        }
        .kw-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }
        .kw-card {
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 1.75rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            transition: border-color 0.22s ease;
        }
        .kw-card:hover { border-color: rgba(255,255,255,0.16); }
        .kw-card--beratung { border-color: rgba(255,0,77,0.15); }
        .kw-card--beratung:hover { border-color: rgba(255,0,77,0.32); }
        .kw-card--anfrage { border-color: rgba(96,165,250,0.15); }
        .kw-card--anfrage:hover { border-color: rgba(96,165,250,0.32); }
        .kw-tag {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.45);
        }
        .kw-card--beratung .kw-tag { color: rgba(255,0,77,0.75); }
        .kw-card--anfrage .kw-tag { color: rgba(96,165,250,0.85); }
        .kw-title {
            font-size: 1.15rem;
            font-weight: 800;
            margin: 0;
            letter-spacing: -0.02em;
        }
        .kw-lead {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.55;
            margin: 0;
        }
        .kw-list {
            list-style: none;
            margin: 0.25rem 0 0.5rem;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            flex: 1;
        }
        .kw-list li {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.52);
            padding-left: 1rem;
            position: relative;
            line-height: 1.45;
        }
        .kw-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5em;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
        }
        .kw-card--beratung .kw-list li::before { background: rgba(255,0,77,0.55); }
        .kw-card--anfrage .kw-list li::before { background: rgba(96,165,250,0.55); }
        .kw-btn { margin-top: auto; align-self: flex-start; }
        .hero-kw-teaser {
            margin-top: -1.75rem;
            margin-bottom: 2.5rem;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.38);
            text-align: center;
        }
        .hero-kw-teaser a {
            color: rgba(255,255,255,0.55);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .hero-kw-teaser a:hover { color: var(--accent); }
        @media (max-width: 700px) {
            .kw-grid { grid-template-columns: 1fr; }
            .kw-btn { align-self: stretch; justify-content: center; width: 100%; }
        }

        /* Teaser auf Startseite */
        .wp-teaser {
            max-width: 780px;
            margin: 0 auto;
            padding: 5rem 1.5rem 4rem;
        }
        .wp-teaser h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .wp-teaser .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        .wp-teaser-list {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }
        .wp-teaser-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.2rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            text-decoration: none;
            color: inherit;
            transition: border-color 0.2s, background 0.2s, transform 0.2s;
        }
        .wp-teaser-item:hover {
            border-color: rgba(255,0,77,0.22);
            background: rgba(255,255,255,0.06);
            transform: translateX(4px);
        }
        .wp-teaser-n {
            flex-shrink: 0;
            width: 28px; height: 28px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 8px;
            background: rgba(255,0,77,0.1);
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--accent);
        }
        .wp-teaser-body { flex: 1; min-width: 0; }
        .wp-teaser-title {
            font-weight: 700;
            font-size: 0.92rem;
            margin-bottom: 0.15rem;
        }
        .wp-teaser-desc {
            font-size: 0.78rem;
            color: var(--text-subtle);
            line-height: 1.45;
        }
        .wp-teaser-arrow {
            flex-shrink: 0;
            color: rgba(255,255,255,0.25);
            font-weight: 700;
        }
        .wp-teaser-more {
            margin-top: 1.25rem;
            text-align: center;
        }

        @media (max-width: 640px) {
            .ablauf-section-bold {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            .ablauf-bold-list-wrap {
                padding-left: 1.35rem;
            }
            .ablauf-line-track,
            .ablauf-line-progress {
                left: 0.2rem;
            }
            .ablauf-bold-item {
                grid-template-columns: 1fr;
                gap: 0.35rem;
                padding: 0.85rem 0;
            }
            .ablauf-bold-num {
                font-size: 1.5rem;
            }
            .ablauf-bold-title {
                font-size: 1rem;
            }
            .ablauf-bold-text {
                font-size: 0.85rem;
            }
            .vw-grid { grid-template-columns: 1fr; }
            .vw-title { font-size: 0.9rem; padding-right: 0; }
            .vw-card--featured .vw-title { padding-right: 4.5rem; }
        }
        .ablauf-tip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: rgba(255, 0, 77, 0.08);
            border: 1px solid rgba(255, 0, 77, 0.25);
            border-radius: 12px;
            max-width: 500px;
            margin: 0 auto;
        }
        .ablauf-tip-icon {
            font-size: 1.25rem;
            flex-shrink: 0;
        }
        .ablauf-tip p {
            margin: 0;
            color: var(--text);
            font-size: 0.95rem;
            font-weight: 500;
        }
        .ablauf-section-bold .ablauf-tip {
            margin-top: 2.5rem;
        }

        /* === FEATURES SECTION === */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .feature-large {
            background: var(--bg-glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.25rem;
            transition: all 0.4s ease;
        }

        .feature-large:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }

        .feature-large h3 {
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .feature-large p {
            color: var(--text-light);
            line-height: 1.55;
            font-size: 0.875rem;
        }

        /* === KUNDENPORTAL BENTO === */
        .portal-section {
            position: relative;
            overflow: visible;
            max-width: none;
            width: 100%;
            margin-bottom: 2.5rem;
        }
        .portal-bg {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            background:
                radial-gradient(ellipse 45% 35% at 12% 38%, rgba(255,0,77,0.08) 0%, rgba(255,0,77,0.025) 38%, transparent 62%),
                radial-gradient(ellipse 35% 30% at 88% 68%, rgba(255,0,77,0.04) 0%, rgba(255,0,77,0.01) 40%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }
        .portal-inner { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; }

        /* header */
        .portal-header { text-align: center; margin-bottom: 2rem; opacity: 1; transform: none; }
        html.reveal-motion .portal-header { opacity: 0; transform: translateY(16px); }
        html.reveal-motion .portal-section.portal-visible .portal-header { animation: portalFadeUp 0.6s ease 0.05s forwards; }
        .portal-header h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.2; margin-bottom: 0.75rem; }
        .portal-header-sub { color: var(--text-light); font-size: 0.93rem; max-width: 520px; margin: 0 auto; line-height: 1.65; }

        /* BENTO GRID */
        .portal-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }

        .pb-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 1.5rem 1.6rem;
            display: flex; flex-direction: column; gap: 0.6rem;
            position: relative; overflow: hidden;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
            opacity: 1;
            transform: none;
        }
        html.reveal-motion .pb-card { opacity: 0; transform: translateY(18px); }
        .pb-card:hover { border-color: rgba(255,0,77,0.22); transform: translateY(-3px); box-shadow: 0 24px 48px rgba(0,0,0,0.22); }
        html.reveal-motion .portal-section.portal-visible .pb-card:nth-child(1) { animation: portalFadeUp 0.5s ease 0.10s forwards; }
        html.reveal-motion .portal-section.portal-visible .pb-card:nth-child(2) { animation: portalFadeUp 0.5s ease 0.18s forwards; }
        html.reveal-motion .portal-section.portal-visible .pb-card:nth-child(3) { animation: portalFadeUp 0.5s ease 0.26s forwards; }
        .portal-section.portal-visible .pb-card:nth-child(4) { animation: portalFadeUp 0.5s ease 0.34s forwards; }

        .pb-card--wide { grid-column: span 2; }
        .pb-card--full { grid-column: span 3; }

        /* hero card: subtle grid-line texture + red gradient */
        .pb-card--hero { background: rgba(255,255,255,0.04); }
        .pb-card--hero::after {
            content: ''; position: absolute; inset: 0;
            background:
                linear-gradient(135deg, rgba(255,0,77,0.08) 0%, rgba(255,0,77,0.02) 42%, transparent 78%),
                repeating-linear-gradient(0deg, transparent, transparent 26px, rgba(255,255,255,0.013) 26px, rgba(255,255,255,0.013) 27px);
            pointer-events: none;
        }
        /* stat card: red tint */
        .pb-card--stat { background: rgba(255,0,77,0.04); border-color: rgba(255,0,77,0.18); }
        .pb-card--stat:hover { border-color: rgba(255,0,77,0.42); }

        /* label pill */
        .pb-label {
            display: inline-flex; align-items: center; width: fit-content;
            padding: 0.22rem 0.6rem; border-radius: 999px;
            font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
            color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
        }
        .pb-label--live { color: #4ade80; background: rgba(40,200,100,0.08); border-color: rgba(40,200,100,0.22); }
        .pb-label--live::before {
            content: ''; display: inline-block; width: 5px; height: 5px;
            border-radius: 50%; background: #4ade80; margin-right: 0.35rem;
            animation: portalPulse 1.8s ease-in-out infinite;
        }

        /* heading + text */
        .pb-h { font-size: 1.3rem; font-weight: 800; line-height: 1.2; color: var(--text); margin: 0; }
        .pb-h--sm { font-size: 1.0rem; }
        .pb-text { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; margin: 0; }

        /* stat number */
        .pb-stat-n { font-size: clamp(3rem, 5.5vw, 4.4rem); font-weight: 900; line-height: 1; letter-spacing: -3px; color: var(--accent); }
        .pb-stat-unit { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-top: -0.15rem; }
        .pb-stat-desc { font-size: 0.77rem; color: var(--text-light); line-height: 1.5; margin-top: auto; }

        /* compare in hero */
        .pb-compare { display: flex; flex-direction: column; gap: 0.45rem; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.07); position: relative; z-index: 1; }
        .pb-cmp-row { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8rem; }
        .pb-cmp-icon { width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 900; margin-top: 1px; }
        .pb-cmp-row--bad  .pb-cmp-icon { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); }
        .pb-cmp-row--bad  .pb-cmp-text { color: rgba(255,255,255,0.38); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.18); }
        .pb-cmp-row--good .pb-cmp-icon { background: rgba(255,0,77,0.18); color: var(--accent); }
        .pb-cmp-row--good .pb-cmp-text { color: var(--text); font-weight: 600; }

        /* belegprüfung */
        .pb-bpprog { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; color: var(--text-light); font-weight: 600; }
        .pb-bpprog #pb-bptxt { flex-shrink: 0; min-width: 2.6rem; text-align: right; font-variant-numeric: tabular-nums; }
        .pb-bpbar-wrap { flex: 1; height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
        .pb-bpbar { height: 100%; background: linear-gradient(90deg,#4ade80,#22c55e); border-radius: 3px; width: 0%; transition: width 0.35s cubic-bezier(0.4,0,0.2,1); }
        .pb-belege { display: flex; flex-direction: column; gap: 0.3rem; }
        .pb-beleg-row {
            display: flex; align-items: center; justify-content: space-between;
            padding: 0.45rem 0.65rem;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
            border-radius: 8px; cursor: pointer; font-size: 0.78rem;
            transition: background 0.15s, border-color 0.15s;
        }
        .pb-beleg-row:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
        .pb-beleg-row.is-checked { background: rgba(40,200,100,0.06); border-color: rgba(40,200,100,0.16); }
        .pb-beleg-name { color: var(--text); font-weight: 500; }
        .pb-badge {
            display: inline-flex; align-items: center; justify-content: center;
            min-width: 4.75rem; box-sizing: border-box;
            padding: 0.14rem 0.48rem; border-radius: 999px;
            font-size: 0.63rem; font-weight: 700; white-space: nowrap;
            transition: background 0.2s, color 0.2s;
        }
        .pb-badge--ok   { background: rgba(40,200,100,0.14); color: #4ade80; }
        .pb-badge--open { background: rgba(255,180,0,0.12); color: #fbbf24; }
        .pb-hint { font-size: 0.65rem; color: rgba(255,255,255,0.2); font-style: italic; margin-top: auto; padding-top: 0.3rem; }

        /* window-style card (Apple-Fenster) */
        .pb-card--window { padding: 0; gap: 0; background: rgba(12,12,18,0.7); border-color: rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05); }
        .pb-card--window:hover { border-color: rgba(255,0,77,0.3); }
        .pb-win-titlebar {
            display: flex; align-items: center; gap: 0.4rem;
            padding: 0.6rem 1rem; flex-shrink: 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.018);
        }
        .pb-win-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
        .pb-win-dot:nth-child(1) { background: #ff5f57; }
        .pb-win-dot:nth-child(2) { background: #febc2e; }
        .pb-win-dot:nth-child(3) { background: #28c840; }
        .pb-win-title { margin-left: 0.45rem; font-size: 0.67rem; color: rgba(255,255,255,0.25); font-weight: 600; letter-spacing: 0.04em; }

        .pb-demo-wrap {
            display: flex;
            align-items: stretch;
            gap: 1rem;
            min-height: 360px;
            transition: gap 0.45s ease;
        }
        .pb-demo-wrap > .pb-card--window { flex: 1; min-width: 0; transition: flex 0.45s ease; }
        .pb-demo-wrap > .pb-card--docs { flex: 2.2; }
        .pb-demo-wrap > .pb-card--beleg { flex: 1; min-width: 240px; max-width: 340px; }
        .pb-beleg-body {
            padding: 1rem 1.1rem 1.15rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
            min-height: 0;
        }
        .pb-card--beleg .pd-beleg {
            height: auto;
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 0.65rem !important;
        }
        .pb-card--beleg .pd-beleg-feats {
            flex-direction: column !important;
            width: 100%;
        }
        .pb-card--beleg .pd-beleg-feat { width: 100%; flex: none !important; }

        .pb-demo-callout {
            flex-shrink: 0;
            width: 158px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.4rem;
            padding: 1rem 0.95rem;
            border-radius: 14px;
            border: 1px solid rgba(255,0,77,0.4);
            background: rgba(255,0,77,0.09);
            font-size: 0.8rem;
            line-height: 1.5;
            color: rgba(255,255,255,0.82);
            position: relative;
            overflow: hidden;
            transition:
                opacity 0.45s ease,
                transform 0.45s ease,
                width 0.45s ease,
                max-height 0.45s ease,
                padding 0.45s ease,
                margin 0.45s ease,
                border-width 0.45s ease;
        }
        .pb-demo-callout::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            width: 12px;
            height: 12px;
            background: rgba(255,0,77,0.09);
            border-left: 1px solid rgba(255,0,77,0.4);
            border-bottom: 1px solid rgba(255,0,77,0.4);
        }
        .pb-demo-callout-label {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.68rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent);
        }
        .pb-demo-callout-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            animation: heroBlink 2s ease-in-out infinite;
            flex-shrink: 0;
        }
        .portal-section:not(.portal-explored) .pb-demo-callout {
            animation: demoCalloutPulse 3s ease-in-out infinite;
        }
        @keyframes demoCalloutPulse {
            0%, 100% { border-color: rgba(255,0,77,0.35); box-shadow: 0 0 0 0 rgba(255,0,77,0); }
            50% { border-color: rgba(255,0,77,0.62); box-shadow: 0 0 0 4px rgba(255,0,77,0.08); }
        }
        .portal-section.portal-explored .pb-demo-wrap { gap: 0; min-height: 360px; }
        .portal-section.portal-explored .pb-demo-callout {
            opacity: 0;
            pointer-events: none;
            transform: translateX(12px);
            width: 0;
            padding: 0;
            margin: 0;
            border-width: 0;
        }
        .portal-section.portal-explored .pb-demo-callout::before { opacity: 0; }
        .pb-win-body { padding: 1rem 1.2rem 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
        .pb-table { width: 100%; border-collapse: collapse; font-size: 0.77rem; table-layout: fixed; }
        .pb-table thead th { text-align: left; padding: 0.28rem 0.5rem; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.28); border-bottom: 1px solid rgba(255,255,255,0.07); }
        .pb-table thead th:nth-child(1) { width: 28%; }
        .pb-table thead th:nth-child(2) { width: 12%; }
        .pb-table thead th:nth-child(3) { width: 18%; }
        .pb-table thead th:nth-child(4) { width: 20%; }
        .pb-table thead th:nth-child(5) { width: 22%; }
        .pb-table thead th:last-child,
        .pb-bp-row td:last-child { text-align: left; }
        .pb-bp-row { border-bottom: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: background 0.15s, border-color 0.15s; border-left: 2px solid transparent; }
        .pb-bp-row:hover { background: rgba(255,255,255,0.04); border-left-color: rgba(255,0,77,0.45); }
        .portal-section:not(.portal-explored) .pb-bp-row:hover .pb-badge--open::after {
            content: ' · tippen';
            font-weight: 500;
            opacity: 0.65;
            font-size: 0.58rem;
        }
        .pb-bp-row.is-checked { background: rgba(40,200,100,0.06); }
        .pb-bp-row td { padding: 0.45rem 0.5rem; color: rgba(255,255,255,0.75); vertical-align: middle; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .pb-bp-row td:last-child { white-space: nowrap; overflow: visible; }

        /* editierbares Sachkonto */
        .pb-skt {
            cursor: pointer; white-space: nowrap;
            border-bottom: 1px dashed rgba(255,255,255,0.18);
            transition: color 0.15s, border-color 0.15s;
        }
        .pb-skt:hover { color: var(--accent) !important; border-bottom-color: var(--accent); }
        .pb-skt.skt-changed { color: #4ade80 !important; }
        .pb-vs { font-size: 0.74rem; color: rgba(255,255,255,0.58); line-height: 1.3; }
        /* Sachkonto floating Dropdown */
        .pb-skt-drop {
            position: fixed; z-index: 9999;
            background: rgba(10,10,22,0.97);
            border: 1px solid rgba(255,0,77,0.35);
            border-radius: 9px;
            padding: 0.45rem;
            min-width: 230px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.55);
            animation: sktDropIn 0.12s ease;
        }
        @keyframes sktDropIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }
        .pb-skt-search {
            width: 100%; box-sizing: border-box;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 5px; color: #fff; font-size: 0.75rem;
            padding: 0.35rem 0.55rem; font-family: inherit; outline: none;
            margin-bottom: 0.35rem;
        }
        .pb-skt-search::placeholder { color: rgba(255,255,255,0.28); }
        .pb-skt-search:focus { border-color: rgba(255,0,77,0.4); }
        .pb-skt-list { max-height: 175px; overflow-y: auto; display: flex; flex-direction: column; gap: 1px; scrollbar-width: thin; scrollbar-color: rgba(255,0,77,0.3) transparent; }
        .pb-skt-opt {
            display: flex; align-items: center; gap: 0.55rem;
            padding: 0.38rem 0.55rem; border-radius: 5px; cursor: pointer;
            transition: background 0.1s;
        }
        .pb-skt-opt:hover { background: rgba(255,0,77,0.1); }
        .pb-skt-opt.is-current { background: rgba(255,0,77,0.08); }
        .pb-skt-opt-nr { font-size: 0.75rem; font-weight: 700; color: var(--text); min-width: 36px; }
        .pb-skt-opt-desc { font-size: 0.73rem; color: rgba(255,255,255,0.55); }

        /* ETV vertikale Timeline (1-col Karte) */
        .pb-etv-vert { display: flex; flex-direction: column; gap: 0; flex: 1; }
        .pb-etvv-step {
            display: flex; align-items: flex-start; gap: 0.7rem;
            padding: 0.5rem 0.4rem; border-radius: 9px; cursor: pointer;
            transition: background 0.18s; position: relative;
        }
        .pb-etvv-step:hover { background: rgba(255,255,255,0.035); }
        .pb-etvv-step:not(:last-child)::after {
            content: ''; position: absolute;
            left: calc(0.4rem + 13px); top: calc(100% - 4px);
            width: 1px; height: 10px; background: rgba(255,255,255,0.1); z-index: 0;
        }
        .pb-etvv-dot {
            width: 27px; height: 27px; border-radius: 50%; border: 2px solid;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.68rem; font-weight: 800; flex-shrink: 0; position: relative; z-index: 1;
            transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
        }
        .pb-etvv-step--done   .pb-etvv-dot { background: rgba(40,200,100,0.14); border-color: #4ade80; color: #4ade80; }
        .pb-etvv-step--active .pb-etvv-dot { background: rgba(255,0,77,0.14); border-color: var(--accent); color: var(--accent); box-shadow: 0 0 12px rgba(255,0,77,0.28); }
        .pb-etvv-step--todo   .pb-etvv-dot { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.2); }
        .pb-etvv-body { flex: 1; padding-top: 2px; }
        .pb-etvv-name { font-size: 0.8rem; font-weight: 700; color: var(--text); line-height: 1.2; }
        .pb-etvv-sub  { font-size: 0.65rem; color: var(--text-light); margin-top: 0.1rem; }
        .pb-etvv-step--todo .pb-etvv-name, .pb-etvv-step--todo .pb-etvv-sub { color: rgba(255,255,255,0.28); }

        /* ETV horizontal timeline */
        .pb-etv-flow { display: flex; align-items: flex-start; margin-top: 0.5rem; flex: 1; }
        .pb-etv-node { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.32rem; cursor: pointer; min-width: 0; transition: opacity 0.2s; }
        .pb-etv-node:hover { opacity: 0.8; }
        .pb-etv-circle {
            width: 32px; height: 32px; border-radius: 50%; border: 2px solid;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
            transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
        }
        .pb-etv-node--done   .pb-etv-circle { background: rgba(40,200,100,0.14); border-color: #4ade80; color: #4ade80; }
        .pb-etv-node--active .pb-etv-circle { background: rgba(255,0,77,0.14); border-color: var(--accent); color: var(--accent); box-shadow: 0 0 14px rgba(255,0,77,0.28); }
        .pb-etv-node--todo   .pb-etv-circle { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.2); }
        .pb-etv-nname { font-size: 0.72rem; font-weight: 700; color: var(--text); text-align: center; line-height: 1.2; }
        .pb-etv-nsub  { font-size: 0.61rem; color: var(--text-light); text-align: center; line-height: 1.2; }
        .pb-etv-node--todo .pb-etv-nname, .pb-etv-node--todo .pb-etv-nsub { color: rgba(255,255,255,0.25); }
        .pb-etv-conn { flex-shrink: 0; align-self: flex-start; margin-top: 15px; height: 2px; width: 1.5rem; border-radius: 1px; transition: background 0.25s; }
        .pb-etv-conn--done   { background: #4ade80; }
        .pb-etv-conn--active { background: linear-gradient(90deg, #4ade80, var(--accent)); }
        .pb-etv-conn--todo   { background: rgba(255,255,255,0.1); }


        /* cta + keyframes */
        @keyframes portalFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes portalPulse  { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.6); } }

        /* ===== INTERACTIVE SPLIT PANEL ===== */
        .pb-interactive {
            display: flex;
            flex: 1;
            min-height: 340px;
            overflow: hidden;
        }

        .pb-inav {
            width: 190px;
            flex-shrink: 0;
            border-right: 1px solid rgba(255,255,255,0.06);
            display: flex;
            flex-direction: column;
            padding: 0.65rem 0;
        }

        .pb-inav-section {
            font-size: 0.57rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.18);
            padding: 0 0.75rem 0.4rem;
        }

        .pb-inav-item {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.48rem 0.75rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            transition: background 0.18s ease, transform 0.18s ease;
            position: relative;
            width: 100%;
            font-family: inherit;
        }
        .pb-inav-item:hover { background: rgba(255,255,255,0.05); }
        .pb-inav-item:not(.is-selected):hover { transform: translateX(2px); }
        .pb-inav-item:not(.is-selected)::after {
            content: '›';
            margin-left: auto;
            padding-right: 0.15rem;
            font-size: 0.85rem;
            line-height: 1;
            color: rgba(255,255,255,0.2);
            opacity: 0;
            transform: translateX(-3px);
            transition: opacity 0.18s ease, transform 0.18s ease;
        }
        .pb-inav-item:not(.is-selected):hover::after {
            opacity: 1;
            transform: translateX(0);
            color: var(--accent);
        }
        .pb-inav-item:has(.pb-inav-pdf)::after { display: none; }
        .portal-section.portal-explored .pb-inav-item::after { display: none; }
        .pb-inav-item.is-selected { background: rgba(255,255,255,0.06); }
        .pb-inav-item::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0; width: 2px;
            background: rgba(255,255,255,0.06);
            border-radius: 0 2px 2px 0;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .pb-inav-item.is-selected::before { opacity: 1; }

        .pb-inav-pgbar {
            position: absolute;
            left: 0; top: 0;
            width: 2px; height: 0%;
            background: var(--accent);
            border-radius: 0 2px 2px 0;
            pointer-events: none;
            transition: box-shadow 0.3s ease;
        }
        .portal-section:not(.portal-explored) .pb-inav-item.is-selected .pb-inav-pgbar {
            width: 3px;
            box-shadow: 0 0 10px rgba(255,0,77,0.45);
        }
        .portal-section:not(.portal-explored) .pb-inav-item--active .pb-inav-dot {
            animation: portalPulse 2.5s ease-in-out infinite;
        }

        .pb-inav-dot {
            width: 25px; height: 25px; border-radius: 50%; border: 1.5px solid;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.6rem; font-weight: 800; flex-shrink: 0;
            transition: all 0.25s ease;
        }
        .pb-inav-item--done   .pb-inav-dot { background: rgba(40,200,100,0.12); border-color: #4ade80; color: #4ade80; }
        .pb-inav-item--active .pb-inav-dot { background: rgba(255,0,77,0.14); border-color: var(--accent); color: var(--accent); box-shadow: 0 0 10px rgba(255,0,77,0.25); }
        .pb-inav-item--todo   .pb-inav-dot { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.2); }
        .pb-inav-item--special .pb-inav-dot { background: rgba(255,0,77,0.08); border-color: rgba(255,0,77,0.38); color: var(--accent); font-size: 0.65rem; }

        .pb-inav-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
        .pb-inav-name { font-size: 0.76rem; font-weight: 700; color: var(--text); line-height: 1.2; }
        .pb-inav-sub  { font-size: 0.6rem; color: var(--text-light); margin-top: 0.07rem; }
        .pb-inav-pdf {
            margin-left: auto;
            padding: 0.1rem 0.38rem;
            border-radius: 999px;
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.45);
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            flex-shrink: 0;
        }
        .pb-inav-item.is-selected .pb-inav-pdf,
        .pb-inav-item:hover .pb-inav-pdf {
            color: var(--accent);
            border-color: rgba(255,0,77,0.28);
            background: rgba(255,0,77,0.08);
        }
        .pb-inav-item--todo .pb-inav-pdf { opacity: 0.55; }
        .pb-inav-item--todo .pb-inav-name, .pb-inav-item--todo .pb-inav-sub { color: rgba(255,255,255,0.28); }

        .pb-inav-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 0.4rem 0.75rem; }

        .pb-mob-nav { display: none; }
        .pb-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
        .pb-panes { flex: 1; position: relative; overflow: hidden; min-width: 0; }

        .pb-pane {
            position: absolute; inset: 0;
            padding: 1.05rem 1.3rem;
            overflow-y: auto;
            opacity: 0; pointer-events: none;
            transform: translateX(8px);
            transition: opacity 0.22s ease, transform 0.22s ease;
            scrollbar-width: thin; scrollbar-color: rgba(255,0,77,0.2) transparent;
        }
        .pb-pane.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }

        .pb-pane-head {
            display: flex; align-items: center; gap: 0.6rem;
            margin-bottom: 0.8rem; flex-wrap: wrap;
        }
        .pb-pane-h { font-size: 0.88rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }

        .pb-pane-badge {
            display: inline-flex; align-items: center;
            padding: 0.17rem 0.52rem; border-radius: 999px;
            font-size: 0.59rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.07em;
        }
        .pb-pane-badge--ok      { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.26); color: #4ade80; }
        .pb-pane-badge--active  { background: rgba(255,0,77,0.1); border: 1px solid rgba(255,0,77,0.28); color: var(--accent); }
        .pb-pane-badge--pending { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.38); }

        .pb-info-row { display: flex; gap: 0.7rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.76rem; }
        .pb-info-label { color: rgba(255,255,255,0.33); flex-shrink: 0; width: 74px; }
        .pb-info-val   { color: var(--text); font-weight: 600; }

        /* ===== JAHRESABRECHNUNG SPLIT ===== */
        #pane-jahresabrechnung { overflow: hidden; padding: 0.85rem 1rem; }

        .ja-split { display: flex; align-items: stretch; gap: 0.9rem; height: 100%; min-height: 0; }

        .ja-split-left {
            flex: 1; min-width: 0;
            display: flex; flex-direction: column; gap: 0.5rem; overflow: hidden;
        }

        .ja-split-right {
            flex-shrink: 0; width: 120px;
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.45rem;
        }

        .ja-doc-header {
            display: flex; align-items: flex-start; justify-content: space-between;
            gap: 0.5rem; padding-bottom: 0.4rem; border-bottom: 1px solid rgba(255,255,255,0.07);
        }
        .ja-doc-title { font-size: 0.82rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1.2; }
        .ja-doc-sub   { font-size: 0.6rem; color: rgba(255,255,255,0.38); margin-top: 0.1rem; }
        .ja-doc-stamp-tag {
            display: inline-flex; align-items: center;
            padding: 0.17rem 0.48rem; border-radius: 999px;
            background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.24);
            font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
            color: #4ade80; white-space: nowrap;
        }

        .ja-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.3rem; }
        .ja-kpi {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
            border-radius: 7px; padding: 0.35rem 0.45rem;
        }
        .ja-kpi-label { font-size: 0.52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.28); }
        .ja-kpi-val   { font-size: 0.76rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; margin-top: 0.08rem; }
        .ja-kpi-val--green  { color: #4ade80; }
        .ja-kpi-val--accent { color: var(--accent); }

        /* Donut + Legende */
        .ja-body { display: flex; align-items: center; gap: 0.7rem; flex: 1; min-height: 0; }
        .ja-donut-wrap { flex-shrink: 0; width: 88px; height: 88px; }
        .ja-donut-wrap svg { width: 100%; height: 100%; }

        .ja-legend { flex: 1; display: flex; flex-direction: column; gap: 0.22rem; min-width: 0; }
        .ja-legend-item {
            display: flex; align-items: center; gap: 0.4rem;
            padding: 0.22rem 0.35rem; border-radius: 5px;
            transition: background 0.15s;
        }
        .ja-legend-item:hover { background: rgba(255,255,255,0.03); }
        .ja-legend-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
        .ja-legend-name { flex: 1; font-size: 0.68rem; color: rgba(255,255,255,0.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .ja-legend-amt  { font-size: 0.67rem; font-weight: 700; color: var(--text); flex-shrink: 0; }

        /* PDF-Vorschau */
        .ja-pdf-link { display: block; width: 100%; text-decoration: none; }
        .ja-pdf-page {
            position: relative; width: 100%; aspect-ratio: 210 / 297;
            background: #f4f4f6; border: 1px solid rgba(255,255,255,0.14);
            border-radius: 5px; box-shadow: 0 10px 28px rgba(0,0,0,0.4);
            overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .ja-pdf-link:hover .ja-pdf-page {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(0,0,0,0.48), 0 0 0 1px rgba(255,0,77,0.15);
        }
        .ja-pdf-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
        .ja-pdf-tap {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 0.55rem;
            background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
            color: #fff;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            opacity: 0;
            transition: opacity 0.22s ease;
            pointer-events: none;
        }
        .ja-pdf-link:hover .ja-pdf-tap,
        .portal-section:not(.portal-explored) .pb-pane.is-active .ja-pdf-tap {
            opacity: 1;
        }
        .ja-pdf-open {
            display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
            padding: 0.42rem 0.65rem; border-radius: 999px;
            border: 1px solid rgba(255,0,77,0.35); background: rgba(255,0,77,0.1);
            color: rgba(255,255,255,0.88); font-size: 0.62rem; font-weight: 700;
            text-decoration: none; white-space: nowrap; width: 100%;
            transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }
        .ja-pdf-open:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,0,77,0.16); transform: translateY(-1px); }
        .ja-pdf-open svg { width: 11px; height: 11px; fill: currentColor; flex-shrink: 0; }
        .ja-pdf-mock {
            position: absolute; inset: 0; padding: 9% 8%;
            display: flex; flex-direction: column; gap: 5%; background: #fff;
        }
        .ja-pdf-mock-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; }
        .ja-pdf-mock-logo { width: 28%; height: 6px; border-radius: 2px; background: rgba(0,0,0,0.12); }
        .ja-pdf-badge {
            font-size: 0.42rem; font-weight: 800; letter-spacing: 0.06em;
            text-transform: uppercase; color: #fff; background: #e11d48;
            padding: 2px 4px; border-radius: 2px; line-height: 1.2;
        }
        .ja-pdf-mock-title { font-size: 0.46rem; font-weight: 800; color: #111; letter-spacing: -0.02em; line-height: 1.2; }
        .ja-pdf-mock-sub   { font-size: 0.34rem; color: rgba(0,0,0,0.42); margin-top: 2px; }
        .ja-pdf-mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
        .ja-pdf-stat { background: #f8f8fa; border: 1px solid rgba(0,0,0,0.07); border-radius: 3px; padding: 4px 5px; }
        .ja-pdf-stat-label { font-size: 0.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(0,0,0,0.38); }
        .ja-pdf-stat-val   { font-size: 0.42rem; font-weight: 800; color: #111; margin-top: 1px; line-height: 1.1; }
        .ja-pdf-lines { display: flex; flex-direction: column; gap: 3px; flex: 1; min-height: 0; }
        .ja-pdf-line { height: 2px; border-radius: 2px; background: rgba(0,0,0,0.07); }
        .ja-pdf-line:nth-child(1) { width: 100%; } .ja-pdf-line:nth-child(2) { width: 88%; }
        .ja-pdf-line:nth-child(3) { width: 94%; }  .ja-pdf-line:nth-child(4) { width: 72%; }

        /* Belegprüfung – Feature-Pane (ohne Tabelle) */
        .pb-bp-feature { display: flex; flex-direction: column; gap: 0.85rem; height: 100%; justify-content: center; }
        .pb-bp-feature-head { display: flex; flex-direction: column; gap: 0.35rem; }
        .pb-bp-feature-text { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; margin: 0; max-width: 36rem; }
        .pb-bp-stat {
            display: inline-flex; align-items: baseline; gap: 0.35rem;
            font-size: 2.4rem; font-weight: 900; letter-spacing: -2px;
            color: var(--accent); line-height: 1;
        }
        .pb-bp-stat-unit { font-size: 0.95rem; font-weight: 700; color: var(--text); letter-spacing: 0; }
        .pb-bp-features { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.2rem; }
        .pb-bp-feat {
            display: flex; align-items: center; gap: 0.5rem;
            font-size: 0.76rem; color: rgba(255,255,255,0.78);
            padding: 0.42rem 0.65rem;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
        }
        .pb-bp-feat span { color: #4ade80; font-weight: 800; flex-shrink: 0; }

        @media (max-width: 640px) {
            .ja-split { flex-direction: column; }
            .ja-split-right { width: 100%; flex-direction: row; align-items: flex-end; }
            .ja-pdf-link { max-width: 80px; }
        }

        .pb-pane-recipients { display: flex; flex-wrap: wrap; gap: 0.28rem; margin-top: 0.6rem; }
        .pb-recipient-pill {
            padding: 0.17rem 0.48rem;
            background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.15);
            border-radius: 999px; font-size: 0.59rem; color: rgba(255,255,255,0.55);
        }

        .pb-agenda-list { display: flex; flex-direction: column; gap: 0.3rem; }
        .pb-agenda-item {
            display: flex; align-items: center; gap: 0.55rem;
            padding: 0.42rem 0.6rem;
            background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05);
            border-radius: 7px; font-size: 0.75rem;
        }
        .pb-agenda-num {
            width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0;
            background: rgba(255,0,77,0.1); border: 1px solid rgba(255,0,77,0.2);
            color: var(--accent); font-size: 0.58rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
        }
        .pb-agenda-text { color: rgba(255,255,255,0.8); font-weight: 500; }

        .pb-proto-prog { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
        .pb-proto-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
        .pb-proto-bar { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.6s ease; }
        .pb-proto-txt { font-size: 0.6rem; color: rgba(255,255,255,0.38); white-space: nowrap; }

        .pb-proto-lines { display: flex; flex-direction: column; gap: 0.3rem; }
        .pb-proto-line {
            display: flex; align-items: center; gap: 0.48rem;
            padding: 0.38rem 0.58rem; border-radius: 7px; font-size: 0.74rem;
        }
        .pb-proto-line--done    { background: rgba(74,222,128,0.05); border: 1px solid rgba(74,222,128,0.11); color: rgba(255,255,255,0.72); }
        .pb-proto-line--wip     { background: rgba(255,0,77,0.05); border: 1px solid rgba(255,0,77,0.13); color: rgba(255,255,255,0.72); }
        .pb-proto-line--pending { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.22); padding-left: 0.85rem; }
        .pb-proto-ok  { color: #4ade80; font-weight: 700; flex-shrink: 0; }
        .pb-proto-dot { color: var(--accent); font-weight: 700; flex-shrink: 0; }

        /* ── Redesign: pd-* Pane Layout ── */
        .pd-wrap { display: flex; gap: 1rem; flex: 1; min-height: 0; }
        .pd-info { flex: 1; display: flex; flex-direction: column; gap: 0.48rem; min-width: 0; overflow: hidden; }
        .pd-chip { display: inline-flex; align-items: center; gap: 0.28rem; padding: 0.16rem 0.48rem; border-radius: 999px; font-size: 0.57rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; width: fit-content; }
        .pd-chip--ok  { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.22); color: #4ade80; }
        .pd-chip--wip { background: rgba(255,0,77,0.08); border: 1px solid rgba(255,0,77,0.2); color: var(--accent); }
        .pd-title { font-size: 0.88rem; font-weight: 800; color: var(--text); line-height: 1.25; letter-spacing: -0.02em; margin: 0; }
        .pd-sub { font-size: 0.63rem; color: rgba(255,255,255,0.3); margin-top: -0.22rem; }
        .pd-divider { height: 1px; background: rgba(255,255,255,0.06); flex-shrink: 0; }
        .pd-rows { display: flex; flex-direction: column; }
        .pd-row { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; padding: 0.28rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.69rem; }
        .pd-row:last-child { border-bottom: none; }
        .pd-key { color: rgba(255,255,255,0.32); }
        .pd-val { color: rgba(255,255,255,0.82); font-weight: 600; text-align: right; }
        .pd-list { display: flex; flex-direction: column; gap: 0.2rem; }
        .pd-list-item { display: flex; align-items: center; gap: 0.42rem; padding: 0.3rem 0.5rem; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: 6px; font-size: 0.7rem; color: rgba(255,255,255,0.75); }
        .pd-list-num { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,0,77,0.1); border: 1px solid rgba(255,0,77,0.18); color: var(--accent); font-size: 0.54rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .pd-open { display: flex; align-items: center; justify-content: center; gap: 0.38rem; padding: 0.44rem 0.8rem; border-radius: 999px; background: rgba(255,0,77,0.1); border: 1px solid rgba(255,0,77,0.28); color: rgba(255,255,255,0.88); font-size: 0.62rem; font-weight: 700; text-decoration: none; margin-top: auto; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
        .pd-open:hover { background: rgba(255,0,77,0.2); border-color: var(--accent); transform: translateY(-1px); }
        .pd-open svg { width: 10px; height: 10px; fill: currentColor; }
        .pd-preview-col { flex-shrink: 0; width: 24%; max-width: 110px; min-width: 68px; display: flex; flex-direction: column; gap: 0.32rem; }
        .pd-preview-link { display: block; text-decoration: none; }
        .pd-preview-page { width: 100%; aspect-ratio: 210 / 297; border-radius: 5px; overflow: hidden; box-shadow: 0 6px 22px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.07); transition: transform 0.22s ease, box-shadow 0.22s ease; }
        .pd-preview-link:hover .pd-preview-page { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.52), 0 0 0 1px rgba(255,0,77,0.18); }
        .pd-preview-page img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
        .pd-preview-btn { display: flex; align-items: center; justify-content: center; gap: 0.28rem; padding: 0.3rem 0; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.42); font-size: 0.55rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; transition: border-color 0.2s, color 0.2s; }
        .pd-preview-btn:hover { border-color: var(--accent); color: var(--accent); }
        .pd-preview-btn svg { width: 9px; height: 9px; fill: currentColor; }
        .pd-prog { display: flex; align-items: center; gap: 0.5rem; font-size: 0.63rem; color: rgba(255,255,255,0.32); font-weight: 600; }
        .pd-prog-track { flex: 1; height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
        .pd-prog-fill { height: 100%; background: linear-gradient(90deg, var(--accent), rgba(255,80,80,0.55)); border-radius: 2px; }
        .pd-proto { display: flex; flex-direction: column; gap: 0.18rem; }
        .pd-proto-line { display: flex; align-items: center; gap: 0.38rem; font-size: 0.68rem; padding: 0.27rem 0.48rem; border-radius: 5px; }
        .pd-proto-line--ok { color: rgba(74,222,128,0.72); background: rgba(74,222,128,0.04); }
        .pd-proto-line--wip { color: rgba(255,100,100,0.75); background: rgba(255,0,77,0.04); }
        .pd-proto-line--pending { color: rgba(255,255,255,0.22); }
        .pd-proto-icon { flex-shrink: 0; font-size: 0.6rem; }
        .pd-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.38rem; }
        .pd-kpi { display: flex; flex-direction: column; gap: 0.12rem; padding: 0.48rem 0.55rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; }
        .pd-kpi-label { font-size: 0.52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.28); }
        .pd-kpi-val { font-size: 0.85rem; font-weight: 800; color: var(--text); line-height: 1.1; }
        .pd-kpi-val--green { color: #4ade80; }
        .pd-kpi-val--accent { color: var(--accent); }
        .pd-kpi-cost-label { color: rgba(255,255,255,0.28); }
        .pd-beleg { display: flex; flex-direction: column; gap: 0.72rem; height: 100%; justify-content: center; }
        .pd-beleg-stat { font-size: 2.8rem; font-weight: 900; letter-spacing: -2px; color: var(--accent); line-height: 1; }
        .pd-beleg-stat-unit { font-size: 0.95rem; font-weight: 700; color: var(--text); letter-spacing: 0; }
        .pd-beleg-text { font-size: 0.77rem; color: var(--text-light); line-height: 1.6; margin: 0; }
        .pd-beleg-feats { display: flex; flex-direction: column; gap: 0.3rem; }
        .pd-beleg-feat { display: flex; align-items: center; gap: 0.42rem; font-size: 0.72rem; color: rgba(255,255,255,0.75); padding: 0.36rem 0.58rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 7px; }
        .pd-beleg-feat-icon { color: #4ade80; font-weight: 800; flex-shrink: 0; }

        /* ══════════════════════════════════════════════════
           BLOCK 1 – Feature-Cards  (pf-*)
           ══════════════════════════════════════════════════ */
        .pf-features {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }
        .pf-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 1.5rem 1.6rem;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            opacity: 1;
            transform: none;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }
        html.reveal-motion .pf-card { opacity: 0; transform: translateY(18px); }
        html.reveal-motion .portal-section.portal-visible .pf-card:nth-child(1) { animation: portalFadeUp 0.5s ease 0.10s forwards; }
        html.reveal-motion .portal-section.portal-visible .pf-card:nth-child(2) { animation: portalFadeUp 0.5s ease 0.18s forwards; }
        .pf-beleg-section {
            margin-bottom: 2.5rem;
            opacity: 1;
            transform: none;
        }
        html.reveal-motion .pf-beleg-section { opacity: 0; transform: translateY(18px); }
        html.reveal-motion .portal-section.portal-visible .pf-beleg-section {
            animation: portalFadeUp 0.5s ease 0.26s forwards;
        }
        .pf-card:hover { border-color: rgba(255,0,77,0.25); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); }
        .pf-card--stat {
            background: rgba(255,0,77,0.04);
            border-color: rgba(255,0,77,0.18);
        }
        .pf-card--stat:hover { border-color: rgba(255,0,77,0.42); }
        .pf-card--stat .pb-stat-desc { margin-top: auto; }
        .pf-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            width: fit-content;
            max-width: 100%;
            padding: 0.24rem 0.72rem;
            border-radius: 999px;
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            line-height: 1.2;
            color: var(--accent);
            background: rgba(255, 0, 77, 0.07);
            border: 1px solid rgba(255, 0, 77, 0.18);
        }
        .pf-tag::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: currentColor;
            opacity: 0.85;
            flex-shrink: 0;
        }
        .pf-h {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.25;
            margin: 0;
        }
        .pf-p {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }
        .pf-compare {
            display: flex;
            flex-direction: column;
            gap: 0.38rem;
            margin-top: auto;
        }
        .pf-cmp {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.71rem;
            line-height: 1.4;
            padding: 0.4rem 0.65rem;
            border-radius: 9px;
        }
        .pf-cmp span { font-weight: 700; flex-shrink: 0; }
        .pf-cmp--bad  { background: rgba(255,255,255,0.025); color: rgba(255,255,255,0.38); }
        .pf-cmp--bad span { color: rgba(255,80,80,0.5); }
        .pf-cmp--good { background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.12); color: rgba(255,255,255,0.78); }
        .pf-cmp--good span { color: #4ade80; }
        .pf-feats {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            margin-top: auto;
        }
        .pf-feats li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.72);
            padding: 0.3rem 0.55rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 7px;
        }
        .pf-feats li span { color: #4ade80; font-weight: 700; flex-shrink: 0; }
        .pf-feats--inline {
            flex-direction: row;
            flex-wrap: wrap;
            margin-top: 0.75rem;
        }
        .pf-feats--inline li { flex: 1 1 auto; }

        /* Belegprüfung Browser */
        .pf-beleg-inner { padding: 1.1rem 1.25rem 1.25rem; }
        .pf-beleg-flow {
            margin-top: 1.15rem;
            padding-top: 1.15rem;
            border-top: 1px solid rgba(255,255,255,0.07);
        }
        .pf-beleg-flow-label {
            margin: 0 0 0.85rem;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.45);
        }
        .pf-beleg-steps {
            display: flex;
            align-items: stretch;
            gap: 0.45rem;
        }
        .pf-beleg-step {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            background: linear-gradient(160deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 14px;
            padding: 1rem 1rem 1.05rem;
            transition: border-color 0.22s, background 0.22s;
        }
        .pf-beleg-step:hover {
            border-color: rgba(255,0,77,0.22);
            background: linear-gradient(160deg, rgba(255,0,77,0.05) 0%, rgba(255,255,255,0.02) 100%);
        }
        .pf-beleg-arrow {
            flex-shrink: 0;
            align-self: center;
            font-size: 0.9rem;
            color: rgba(255,0,77,0.45);
            font-weight: 700;
            line-height: 1;
            padding: 0 0.1rem;
        }
        .pf-beleg-step-n {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255,0,77,0.14);
            border: 1px solid rgba(255,0,77,0.32);
            color: var(--accent);
            font-size: 0.78rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255,0,77,0.12);
        }
        .pf-beleg-step div { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
        .pf-beleg-step strong {
            font-size: 0.84rem;
            font-weight: 700;
            color: rgba(255,255,255,0.94);
            line-height: 1.3;
        }
        .pf-beleg-step span {
            font-size: 0.76rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.55;
        }
        .pf-beleg-outcome {
            margin: 0.9rem 0 0;
            padding: 0.85rem 1.05rem;
            border-radius: 12px;
            background: rgba(74,222,128,0.06);
            border: 1px solid rgba(74,222,128,0.16);
            font-size: 0.78rem;
            color: rgba(255,255,255,0.78);
            line-height: 1.6;
        }
        .pf-beleg-outcome strong {
            color: #4ade80;
            font-weight: 700;
        }
        .pf-beleg-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .pf-beleg-table {
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        .pf-beleg-row {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 0.75rem;
            align-items: center;
            padding: 0.45rem 0.85rem;
            font-size: 0.72rem;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .pf-beleg-row:last-child { border-bottom: none; }
        .pf-beleg-row--head {
            background: rgba(255,255,255,0.03);
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.28);
        }
        .pf-beleg-row span:first-child { color: rgba(255,255,255,0.78); }
        .pf-beleg-row span:nth-child(2) { color: rgba(255,255,255,0.55); font-weight: 600; }
        .pf-beleg-ok  { color: #4ade80; font-weight: 700; font-size: 0.65rem; }
        .pf-beleg-wip { color: var(--accent); font-weight: 700; font-size: 0.65rem; }

        /* ══════════════════════════════════════════════════
           Unterlagen-Vorschau  (vl-*)
           ══════════════════════════════════════════════════ */
        .vl-section { max-width: 960px; margin: 0 auto 2.5rem; }
        .vl-studio {
            border-radius: 22px;
            border: 1px solid rgba(255,255,255,0.09);
            background: rgba(255,255,255,0.025);
            overflow: hidden;
            box-shadow: 0 28px 56px rgba(0,0,0,0.22);
        }
        .vl-tabs {
            display: flex;
            gap: 0.35rem;
            padding: 0.55rem;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            background: rgba(0,0,0,0.12);
        }
        .vl-tab {
            flex: 1;
            min-width: 0;
            padding: 0.72rem 0.85rem;
            border: 1px solid transparent;
            border-radius: 12px;
            background: transparent;
            color: rgba(255,255,255,0.48);
            font-family: inherit;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            cursor: pointer;
            transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.22s;
        }
        .vl-tab:hover {
            color: rgba(255,255,255,0.78);
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.08);
        }
        .vl-tab.is-selected {
            color: #fff;
            background: rgba(255,0,77,0.12);
            border-color: rgba(255,0,77,0.32);
            box-shadow: 0 4px 16px rgba(255,0,77,0.14);
            transform: translateY(-1px);
        }
        .vl-viewer {
            position: relative;
            background:
                radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,0,77,0.06) 0%, transparent 55%),
                linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
        }
        .vl-viewer-label {
            margin: 0;
            padding: 1.15rem 1.5rem 0;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.32);
            transition: opacity 0.25s ease;
        }
        .vl-viewer-label.is-changing { opacity: 0.35; }
        .vl-panes {
            position: relative;
            min-height: 400px;
        }
        .vl-pane {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.35rem;
            padding: 1.25rem 1.5rem 2rem;
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px) scale(0.985);
            transition: opacity 0.38s ease, transform 0.38s ease;
        }
        .vl-pane.is-active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }
        .vl-sheet {
            display: block;
            width: min(248px, 78%);
            border-radius: 6px;
            overflow: hidden;
            text-decoration: none;
            box-shadow:
                0 1px 2px rgba(0,0,0,0.12),
                0 16px 48px rgba(0,0,0,0.38),
                0 0 0 1px rgba(255,255,255,0.07);
            transition: transform 0.32s ease, box-shadow 0.32s ease;
        }
        .vl-sheet:hover {
            transform: translateY(-8px) scale(1.015);
            box-shadow:
                0 4px 8px rgba(0,0,0,0.16),
                0 24px 56px rgba(0,0,0,0.42),
                0 0 0 1px rgba(255,0,77,0.18);
        }
        .vl-sheet img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 210 / 297;
            object-fit: cover;
            object-position: top;
        }
        .vl-open {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.62rem 1.35rem;
            border-radius: 999px;
            background: rgba(255,0,77,0.12);
            border: 1px solid rgba(255,0,77,0.32);
            color: rgba(255,255,255,0.92);
            font-size: 0.74rem;
            font-weight: 700;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
        }
        .vl-open:hover {
            background: rgba(255,0,77,0.2);
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255,0,77,0.18);
        }
        .vl-open svg { width: 14px; height: 14px; fill: currentColor; }

        /* Qualitäts-Beispiele – Startseite (Karten-Grid) */
        .qb-section {
            max-width: 1080px;
            margin: 0 auto;
            padding: 2rem 2rem 2.5rem;
        }

        .qb-grid {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
            margin: 1.75rem 0 0;
            padding: 0;
        }

        .qb-card {
            display: flex;
            flex-direction: column;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.025);
            overflow: hidden;
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .qb-card:hover {
            border-color: rgba(255, 0, 77, 0.28);
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
        }

        .qb-preview {
            display: block;
            position: relative;
            aspect-ratio: 3 / 4.2;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
            text-decoration: none;
        }

        .qb-preview::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(12, 12, 12, 0.55) 100%);
            pointer-events: none;
        }

        .qb-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            transition: transform 0.35s ease;
        }

        .qb-card:hover .qb-preview img {
            transform: scale(1.03);
        }

        .qb-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 0.75rem 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .qb-label {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
        }

        .qb-pdf {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--accent);
            text-decoration: none;
            flex-shrink: 0;
            transition: gap 0.2s ease;
        }

        .qb-pdf svg {
            width: 14px;
            height: 14px;
        }

        .qb-pdf:hover {
            gap: 0.4rem;
        }

        .qb-note {
            text-align: center;
            font-size: 0.82rem;
            color: var(--text-light);
            margin-top: 1.35rem;
            line-height: 1.55;
        }

        .qb-note a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        .qb-note a:hover {
            text-decoration: underline;
        }

        @media (max-width: 960px) {
            .qb-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 520px) {
            .qb-section {
                padding: 1.5rem 1.15rem 2rem;
            }

            .qb-grid {
                grid-template-columns: 1fr;
                gap: 0.85rem;
            }

            .qb-preview {
                aspect-ratio: 16 / 11;
            }
        }

        /* === REFERENZEN / BETREUTE WEGs === */
        .ref-section {
            max-width: 1200px;
        }

        .ref-grid {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.15rem;
            margin: 1.75rem 0 0;
            padding: 0;
        }

        .ref-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .ref-card:hover {
            border-color: rgba(255, 0, 77, 0.28);
            transform: translateY(-3px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
        }

        .ref-card-image {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
        }

        .ref-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        .ref-card:hover .ref-card-image img {
            transform: scale(1.04);
        }

        .ref-tag {
            position: absolute;
            top: 0.65rem;
            left: 0.65rem;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #fff;
            background: rgba(12, 12, 12, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(6px);
            border-radius: 999px;
            padding: 0.22rem 0.55rem;
        }

        .ref-card-body {
            padding: 0.85rem 1rem 1rem;
        }

        .ref-street,
        .ref-label {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.35;
            margin: 0 0 0.25rem;
        }

        .ref-meta {
            font-size: 0.72rem;
            color: var(--text-light);
            margin: 0;
        }

        .ref-meta-sep {
            margin: 0 0.25rem;
            opacity: 0.5;
        }

        .ref-footnote {
            text-align: center;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.38);
            margin-top: 1.35rem;
            line-height: 1.5;
        }

        @media (max-width: 960px) {
            .ref-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 560px) {
            .ref-grid {
                grid-template-columns: 1fr;
                gap: 0.85rem;
            }
        }

        /* Pane Inhalt (shared) */
        .pd-browser {
            background: rgba(10,10,16,0.85);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 32px 64px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.05);
        }
        .pd-browser-chrome {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.62rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.02);
        }
        .pd-win-d { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
        .pd-win-d:nth-child(1) { background: #ff5f57; }
        .pd-win-d:nth-child(2) { background: #febc2e; }
        .pd-win-d:nth-child(3) { background: #28c840; }
        .pd-browser-url {
            flex: 1;
            text-align: center;
            font-size: 0.61rem;
            color: rgba(255,255,255,0.22);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 6px;
            padding: 0.22rem 0.75rem;
            font-family: ui-monospace, monospace;
            letter-spacing: 0.02em;
            max-width: 420px;
            margin: 0 auto;
        }

        /* Pane Inhalt (shared pd-*) */
        .pd-wrap { display: flex; gap: 1.25rem; flex: 1; min-height: 0; overflow: hidden; }
        .pd-info { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; overflow: hidden; }
        .pd-preview-col {
            flex-shrink: 0;
            width: 22%;
            max-width: 100px;
            min-width: 72px;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .pd-preview-link { display: block; text-decoration: none; }
        .pd-preview-page {
            width: 100%;
            aspect-ratio: 210 / 297;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 6px 22px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.07);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .pd-preview-link:hover .pd-preview-page { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.52), 0 0 0 1px rgba(255,0,77,0.2); }
        .pd-preview-page img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
        .pd-preview-btn {
            display: flex; align-items: center; justify-content: center; gap: 0.28rem;
            padding: 0.3rem 0; border-radius: 999px;
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.4); font-size: 0.55rem; font-weight: 700;
            text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
            transition: border-color 0.2s, color 0.2s;
        }
        .pd-preview-btn:hover { border-color: var(--accent); color: var(--accent); }
        .pd-preview-btn svg { width: 9px; height: 9px; fill: currentColor; }

        /* ── Responsive ── */
        @media (max-width: 860px) {
            .pf-features { grid-template-columns: 1fr; }
            .pf-beleg-top { flex-direction: column; }
        }
        @media (max-width: 640px) {
            .pf-feats--inline { flex-direction: column; }
            .pf-beleg-steps { flex-direction: column; gap: 0.55rem; }
            .pf-beleg-arrow { display: none; }
            .pf-beleg-step strong { font-size: 0.82rem; }
            .pf-beleg-step span { font-size: 0.74rem; }
            .pf-beleg-outcome { font-size: 0.76rem; }
            .pf-beleg-row { grid-template-columns: 1fr auto; font-size: 0.68rem; }
            .pf-beleg-row span:nth-child(3) { grid-column: 2; grid-row: 1; }
            .pd-browser-url { display: none; }

            /* Unterlagen: alle Tabs auf einmal sichtbar (nicht Startseiten-Layout) */
            .vl-tabs:not(.vl-home-nav) {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.35rem;
                overflow: visible;
            }
            .vl-tabs:not(.vl-home-nav) .vl-tab {
                flex: unset;
                min-width: 0;
                padding: 0.58rem 0.45rem;
                font-size: 0.68rem;
                line-height: 1.25;
                text-align: center;
                white-space: normal;
            }
            .vl-tabs:not(.vl-home-nav) .vl-tab.is-selected { transform: none; }
            .vl-panes { min-height: 340px; }
            .vl-pane { padding: 1rem 1rem 1.75rem; gap: 1.1rem; }
            .vl-section--home .vl-pane { padding: 1.15rem 1rem 1.35rem; gap: 1rem; }
            .vl-sheet { width: min(200px, 82%); }
            .vl-section--home .vl-sheet { width: min(200px, 78%); }
            .vl-viewer-label { padding: 1rem 1rem 0; }

            .portal-inner { max-width: 100%; }
            section { padding-left: 0.85rem; padding-right: 0.85rem; }
        }

        /* === ABOUT SECTION === */
        .about-content {
            background: var(--bg-glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            margin-top: 2rem;
        }

        .about-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-light);
            text-align: center;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        .about-text strong {
            color: var(--text);
            font-weight: 700;
        }

        .certification {
            text-align: center;
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            padding: 0.5rem 0.9rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
        }

        .quote {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* === TIMELINE SECTION === */
        #ueber-uns {
            position: relative;
            overflow: hidden;
        }

        #ueber-uns::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: radial-gradient(ellipse at center, 
                rgba(255, 0, 77, 0.3) 0%, 
                transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 2rem auto 0;
            padding: 1.5rem 0;
            z-index: 1;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-50%);
            z-index: 1;
            border-radius: 2px;
        }

        .timeline-progress {
            position: absolute;
            left: 50%;
            top: 0;
            width: 3px;
            height: 0%;
            background: linear-gradient(180deg, 
                var(--accent) 0%, 
                rgba(255, 0, 77, 0.8) 50%,
                var(--accent) 100%);
            transform: translateX(-50%);
            z-index: 2;
            transition: none;
            box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(255, 0, 77, 0.5);
            border-radius: 2px;
            will-change: height;
        }

        .timeline-line-start {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: var(--accent);
            border-radius: 50%;
            z-index: 3;
            box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(255, 0, 77, 0.5);
            animation: pulseStart 2s ease-in-out infinite;
        }

        .timeline-line-end {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            z-index: 3;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .timeline-line-end.active {
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(255, 0, 77, 0.5);
            animation: pulseEnd 2s ease-in-out infinite;
        }

        @keyframes pulseStart {
            0%, 100% {
                transform: translateX(-50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translateX(-50%) scale(1.2);
                opacity: 0.8;
            }
        }

        @keyframes pulseEnd {
            0%, 100% {
                transform: translateX(-50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translateX(-50%) scale(1.2);
                opacity: 0.8;
            }
        }

        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            opacity: 1;
            transform: none;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html.reveal-motion .timeline-item {
            opacity: 0;
            transform: translateY(30px) scale(0.98);
        }

        html.reveal-motion .timeline-item.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 2rem);
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 2rem);
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 1rem;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: var(--accent);
            border: none;
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(255, 0, 77, 0.4);
            transition: all 0.4s ease;
        }

        .timeline-item.visible .timeline-dot {
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% {
                box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(255, 0, 77, 0.4);
            }
            50% {
                box-shadow: 0 0 25px var(--accent), 0 0 50px rgba(255, 0, 77, 0.6);
            }
        }

        .timeline-content {
            background: var(--bg-glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1rem 1.2rem;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-content:hover {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.05);
        }

        .timeline-content::before {
            display: none;
        }

        .timeline-year {
            color: var(--accent);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 0.3rem;
            opacity: 0.9;
        }

        .timeline-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.4rem;
            line-height: 1.3;
        }

        .timeline-description {
            color: var(--text-light);
            font-size: 0.875rem;
            line-height: 1.55;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
            margin-right: 0;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: auto;
            margin-left: 0;
        }

        .timeline-quote {
            text-align: center;
            margin-top: 2rem;
            padding: 1.5rem 1.5rem 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .timeline-quote-text {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-style: italic;
            line-height: 1.55;
            margin-bottom: 0.5rem;
        }

        .timeline-quote-author {
            color: var(--text-light);
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        /* === TEAM SHOWCASE (Über uns) === */
        .team-showcase {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 920px;
            margin: 2.25rem auto 2.75rem;
            padding: 0 1.25rem;
            position: relative;
        }
        .team-showcase::before {
            content: '';
            position: absolute;
            inset: -20px;
            background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 0, 77, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .team-showcase-inner {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 1.75rem 2rem;
            backdrop-filter: blur(16px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .team-showcase-inner:hover {
            border-color: rgba(255, 0, 77, 0.25);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 0, 77, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .team-photo-wrap {
            flex-shrink: 0;
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        .team-photo-wrap::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 19px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255, 0, 77, 0.35) 0%, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        .team-photo-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }
        .team-showcase .team-photo {
            display: block;
            width: 320px;
            height: auto;
            object-fit: cover;
            object-position: center top;
            transition: transform 0.3s ease;
        }
        .team-photo-wrap:hover .team-photo {
            transform: scale(1.02);
        }
        .team-photo-hint {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0.6rem 0.85rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            font-size: 0.8rem;
            font-weight: 600;
            display: grid;
            pointer-events: none;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            align-items: center;
        }
        .team-photo-hint span {
            background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .team-photo-hint span:first-child {
            text-align: left;
            background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .team-photo-hint span:last-child {
            text-align: right;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .team-intro {
            flex: 1;
            min-width: 260px;
        }
        .team-intro .team-heading {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--accent);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        .team-intro .team-heading::before {
            content: '';
            width: 24px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 1px;
        }
        .team-intro .team-names {
            color: var(--text);
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1.25;
            letter-spacing: -0.02em;
        }
        .team-intro .team-tagline {
            color: var(--text-muted);
            font-size: 0.925rem;
            line-height: 1.6;
        }
        @media (max-width: 640px) {
            .team-showcase-inner {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 1.25rem;
            }
            .team-intro .team-heading::before {
                display: none;
            }
            .team-showcase .team-photo {
                width: 100%;
                max-width: 340px;
            }
        }

        /* === GOOGLE BEWERTUNGEN SECTION === */
        .reviews-section {
            position: relative;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 1.75rem;
        }

        .reviews-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .reviews-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .reviews-rating-number {
            font-size: 2.35rem;
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
        }

        .reviews-rating-stars {
            font-size: 1.2rem;
            color: #ffc107;
            letter-spacing: 2px;
        }

        .reviews-count {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .reviews-slider-container {
            position: relative;
            margin-top: 1.25rem;
            padding: 0.75rem 0;
        }

        .reviews-slider-wrapper {
            overflow: hidden;
            position: relative;
            touch-action: pan-y;
            -webkit-user-select: none;
            user-select: none;
            container-type: inline-size;
            container-name: reviews-slider;
        }

        .reviews-slider-track {
            display: flex;
            gap: 1.5rem;
            transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .reviews-slider-track.dragging {
            transition: none;
        }

        .review-card {
            flex: 0 0 calc((100cqw - 3rem) / 3);
            width: calc((100cqw - 3rem) / 3);
            min-width: 0;
            background: var(--bg-glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.25rem;
            transition: border-color 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 260px;
            max-height: 260px;
        }

        .review-card.expanded {
            max-height: none;
        }

        .review-card:hover {
            border-color: var(--accent);
        }

        .reviews-slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.25rem;
            flex-wrap: wrap;
        }

        .reviews-slider-controls {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .reviews-slider-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--bg-glass);
            color: var(--text);
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
            padding: 0;
            flex-shrink: 0;
        }

        .reviews-slider-btn:hover:not(:disabled),
        .reviews-slider-btn:focus-visible:not(:disabled) {
            border-color: var(--accent);
            color: var(--accent);
        }

        .reviews-slider-btn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .reviews-slider-counter {
            min-width: 4.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .slider-dot.active {
            background: rgba(255, 255, 255, 0.3);
            width: 30px;
            border-radius: 5px;
        }

        .slider-dot.active::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--accent);
            border-radius: 5px;
            box-shadow: 0 0 10px var(--accent);
            will-change: width;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .slider-dot.active.animating::before {
            animation: slideProgress 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .slider-dot.active.paused::before {
            animation-play-state: paused;
        }

        @keyframes slideProgress {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

        .slider-dot:hover {
            background: rgba(255, 0, 77, 0.6);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }

        .review-stars {
            color: #ffc107;
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .review-date {
            color: var(--text-light);
            font-size: 0.75rem;
        }

        .review-text {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.875rem;
            margin-bottom: 0.6rem;
            font-style: italic;
            flex: 1;
            overflow: hidden;
            position: relative;
            -webkit-user-select: text;
            user-select: text;
        }

        .review-text.collapsed {
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            max-height: calc(1.7em * 5);
        }

        .review-text.expanded {
            display: block;
            max-height: none;
        }

        .review-toggle {
            color: var(--accent);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.25rem 0;
            margin-top: 0.25rem;
            text-align: left;
            transition: color 0.3s ease;
            font-style: normal;
            align-self: flex-start;
            -webkit-user-select: text;
            user-select: text;
        }

        .review-toggle:hover {
            color: var(--text);
            text-decoration: underline;
        }

        /* === PARTNER SECTION === */
        /* ===== PARTNER-SEKTION ===== */
        .partners-section {
            text-align: center;
            position: relative;
        }

        .partners-sub {
            color: var(--text-light);
            font-size: 0.92rem;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }

        .partners-category-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-light);
            text-align: center;
            margin: 2rem 0 0.6rem;
        }

        .partners-category-label:first-of-type {
            margin-top: 1.5rem;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.85rem;
            margin-top: 0.5rem;
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
        }

        .pcard {
            background: var(--bg-glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1rem 1rem 1.15rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
            backdrop-filter: blur(10px);
        }

        .pcard::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 16px 16px 0 0;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .pcard:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0,0,0,0.28);
        }

        .pcard:hover::before {
            opacity: 1;
        }

        .pcard-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.2rem 0.55rem;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.04);
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-light);
            margin-bottom: 0.85rem;
            align-self: flex-start;
            transition: border-color 0.3s ease, color 0.3s ease;
        }

        .pcard:hover .pcard-tag {
            border-color: var(--accent);
            color: var(--accent);
        }

        .pcard-tag-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }

        .pcard-logo-wrap {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            flex-shrink: 0;
        }

        .pcard-logo-wrap.pcard-logo-lg {
            width: 140px;
            height: 80px;
            margin-bottom: 1rem;
        }

        .pcard-logo-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0.88);
            transition: filter 0.35s ease, transform 0.35s ease;
        }

        .pcard:hover .pcard-logo-wrap img {
            filter: brightness(1.05);
            transform: scale(1.07);
        }

        .pcard-name {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
            margin-bottom: 0.3rem;
        }

        .pcard-desc {
            font-size: 0.75rem;
            color: var(--text-light);
            line-height: 1.45;
            flex: 1;
        }

        /* Schallwellen-Animation */
        .pcard-wave {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 2px;
            height: 16px;
            margin-top: 0.65rem;
        }

        .pcard-wave-bar {
            width: 3px;
            border-radius: 2px;
            background: var(--accent);
            height: 4px;
            opacity: 0.4;
            transition: opacity 0.3s ease;
        }

        .pcard-wave.is-playing .pcard-wave-bar { opacity: 1; }
        .pcard-wave.is-playing .pcard-wave-bar:nth-child(1) { animation: pcardWaveAnim 0.8s ease-in-out 0.00s infinite; }
        .pcard-wave.is-playing .pcard-wave-bar:nth-child(2) { animation: pcardWaveAnim 0.8s ease-in-out 0.18s infinite; }
        .pcard-wave.is-playing .pcard-wave-bar:nth-child(3) { animation: pcardWaveAnim 0.8s ease-in-out 0.08s infinite; }
        .pcard-wave.is-playing .pcard-wave-bar:nth-child(4) { animation: pcardWaveAnim 0.8s ease-in-out 0.24s infinite; }
        .pcard-wave.is-playing .pcard-wave-bar:nth-child(5) { animation: pcardWaveAnim 0.8s ease-in-out 0.12s infinite; }

        @keyframes pcardWaveAnim {
            0%, 100% { height: 3px; }
            50% { height: 14px; }
        }

        /* Play-Button Antenne Bayern */
        .pcard-play-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.38rem 0.85rem;
            border-radius: 999px;
            border: 1px solid var(--accent);
            background: transparent;
            color: var(--accent);
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
            margin-top: 0.55rem;
            font-family: inherit;
        }

        .pcard-play-btn:hover {
            background: var(--accent);
            color: #000;
        }

        .pcard-play-btn svg {
            width: 11px;
            height: 11px;
            fill: currentColor;
            flex-shrink: 0;
        }

        .pcard-play-btn.is-playing .icon-play { display: none; }
        .pcard-play-btn .icon-pause { display: none; }
        .pcard-play-btn.is-playing .icon-pause { display: block; }

        .partners-section audio {
            position: absolute;
            width: 0;
            height: 0;
            opacity: 0;
            pointer-events: none;
        }

        /* Branchenbuch */
        .partners-bb-row {
            margin-top: 0.85rem;
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
        }

        .pcard-bb {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.55rem;
            padding: 0.85rem 1.25rem;
            background: var(--bg-glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .pcard-bb::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 16px 16px 0 0;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .pcard-bb:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(0,0,0,0.25);
        }

        .pcard-bb:hover::before { opacity: 1; }

        .pcard-bb img {
            max-width: 320px;
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: brightness(0.9);
            transition: filter 0.35s ease, transform 0.35s ease;
        }

        .pcard-bb:hover img {
            filter: brightness(1.05);
            transform: scale(1.02);
        }

        .pcard-bb-label {
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-light);
        }

        @media (max-width: 900px) {
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                max-width: 600px;
            }
            .partners-bb-row {
                max-width: 340px;
            }
        }

        @media (max-width: 560px) {
            .partners-grid {
                grid-template-columns: 1fr;
                max-width: 340px;
            }
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .review-author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), rgba(255, 0, 77, 0.6));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-weight: 700;
            font-size: 1rem;
        }

        .review-author-info {
            flex: 1;
        }

        .review-author-name {
            color: var(--text);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .review-author-location {
            color: var(--text-light);
            font-size: 0.75rem;
        }

        .google-badge {
            text-align: center;
            margin-top: 1.5rem;
        }

        .google-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        .google-link:hover {
            border-color: var(--accent);
            opacity: 1;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 0, 77, 0.15);
        }

        .google-icon {
            width: 20px;
            height: 20px;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .google-link:hover .google-icon {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .timeline-line {
                left: 2rem;
            }

            .timeline-progress {
                left: 2rem;
            }

            .timeline-line-start {
                left: 2rem;
            }

            .timeline-line-end {
                left: 2rem;
            }

            .timeline-item {
                padding-left: 4rem !important;
                padding-right: 0 !important;
                text-align: left !important;
            }

            .timeline-dot {
                left: 1rem;
            }

            .timeline-content {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .timeline-container {
                padding: 2rem 0 2rem 1rem;
            }
        }

        /* === FAQ SECTION === */
        .faq-container {
            max-width: 900px;
            margin: 1.5rem auto 0;
        }

        details {
            background: var(--bg-glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 0.45rem 0.85rem;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        details:hover {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.05);
        }

        details[open] {
            border-color: var(--accent);
        }

        summary {
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
            margin: 0;
            padding: 0;
            line-height: 1.2;
        }

        summary::after {
            content: '+';
            font-size: 1.2rem;
            color: var(--accent);
            transition: transform 0.3s ease;
            transform-origin: center;
        }

        details[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            margin-top: 0.6rem;
            padding-top: 0.6rem;
            border-top: 1px solid var(--border);
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.875rem;
            font-weight: normal;
        }

        .faq-answer p {
            font-size: 0.875rem;
            font-weight: normal;
            color: var(--text-light);
        }

        /* === KONTAKT SECTION === */
        #kontakt {
            background: var(--bg-glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            margin: 0 auto 2.5rem;
            max-width: 1336px;
        }

        .contact-info {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1.25rem;
        }

        .contact-item {
            min-width: 250px;
        }

        .contact-item h3 {
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .contact-item p {
            color: var(--text-light);
            font-size: 0.875rem;
            line-height: 1.55;
        }
        .contact-hours-note {
            margin-top: 0.45rem;
            color: rgba(251, 191, 36, 0.92);
            font-size: 0.82rem;
        }

        .contact-buttons {
            margin-top: 1.25rem;
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        #kontakt .kw-grid {
            max-width: 920px;
            margin-left: auto;
            margin-right: auto;
        }

        /* === LUMEN BEAM (globaler Schnellfinder) === */
        .lumen-beam-trigger {
            position: fixed;
            right: 1.25rem;
            bottom: 1.25rem;
            z-index: 9998;
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.62rem 0.85rem 0.62rem 0.68rem;
            border: 1px solid rgba(251, 191, 36, 0.28);
            border-radius: 14px;
            background: rgba(10, 10, 12, 0.96);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            color: var(--text);
            font-family: inherit;
            cursor: pointer;
            box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5), 0 0 24px rgba(251, 191, 36, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
            transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
            max-width: min(17rem, calc(100vw - 1.5rem));
        }
        .lumen-beam-trigger:hover {
            border-color: rgba(251, 191, 36, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55), 0 0 32px rgba(251, 191, 36, 0.16);
        }
        .lumen-beam-trigger-icon {
            width: 1.2rem;
            height: 1.2rem;
            flex-shrink: 0;
            color: #fbbf24;
            filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.45));
        }
        .lumen-beam-trigger-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.05rem;
            min-width: 0;
            text-align: left;
        }
        .lumen-beam-trigger-label {
            font-size: 0.76rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text);
        }
        .lumen-beam-trigger-sub {
            font-size: 0.62rem;
            font-weight: 600;
            line-height: 1.2;
            color: rgba(251, 191, 36, 0.85);
        }
        .lumen-beam-trigger-kbd {
            display: inline-flex;
            gap: 0.18rem;
        }
        .lumen-beam-trigger-kbd kbd,
        .lumen-beam-esc,
        .lumen-beam-foot kbd {
            font-family: inherit;
            font-size: 0.56rem;
            font-weight: 600;
            line-height: 1;
            padding: 0.18rem 0.34rem;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.5);
        }
        body.lumen-beam-open { overflow: hidden; }

        /* Such-Modal – schlicht wie zuvor */
        .lumen-beam {
            position: fixed;
            inset: 0;
            z-index: 10050;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: min(12vh, 6rem) 1rem 2rem;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .lumen-beam.is-open {
            pointer-events: auto;
            opacity: 1;
        }
        .lumen-beam-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.62);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        .lumen-beam-panel {
            position: relative;
            width: min(100%, 34rem);
            background: rgba(14, 14, 16, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 40px rgba(251, 191, 36, 0.05);
            overflow: hidden;
            transform: translateY(-8px) scale(0.98);
            transition: transform 0.22s ease;
        }
        .lumen-beam.is-open .lumen-beam-panel {
            transform: translateY(0) scale(1);
        }
        .lumen-beam-lead {
            margin: 0;
            padding: 0.85rem 1rem 0.65rem;
            font-size: 0.76rem;
            line-height: 1.55;
            color: var(--text-light);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lumen-beam-lead strong { color: rgba(251, 191, 36, 0.9); font-weight: 700; }
        .lumen-beam-sr {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .lumen-beam-search {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.75rem 1rem 0.55rem;
        }
        .lumen-beam-search-icon {
            width: 1.1rem;
            height: 1.1rem;
            flex-shrink: 0;
            color: rgba(251, 191, 36, 0.75);
        }
        .lumen-beam-input {
            flex: 1;
            min-width: 0;
            border: none;
            background: transparent;
            color: var(--text);
            font-family: inherit;
            font-size: 0.92rem;
            outline: none;
        }
        .lumen-beam-input::placeholder { color: rgba(255, 255, 255, 0.35); }
        .lumen-beam-esc { flex-shrink: 0; }
        .lumen-beam-examples {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.35rem;
            padding: 0 1rem 0.65rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .lumen-beam-examples[hidden] { display: none; }
        .lumen-beam-examples-label {
            font-size: 0.62rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.4);
            margin-right: 0.15rem;
        }
        .lumen-beam-example {
            font-family: inherit;
            font-size: 0.64rem;
            font-weight: 600;
            padding: 0.28rem 0.55rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-light);
            cursor: pointer;
            transition: border-color 0.15s, background 0.15s, color 0.15s;
        }
        .lumen-beam-example:hover {
            border-color: rgba(251, 191, 36, 0.35);
            background: rgba(251, 191, 36, 0.08);
            color: var(--text);
        }
        .lumen-beam-results {
            max-height: min(50vh, 22rem);
            overflow-y: auto;
            padding: 0.45rem;
        }
        .lumen-beam-group {
            margin: 0.55rem 0.45rem 0.25rem;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
        }
        .lumen-beam-group:first-child { margin-top: 0.15rem; }
        .lumen-beam-result {
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-rows: auto auto;
            gap: 0.1rem 0.65rem;
            width: 100%;
            text-align: left;
            padding: 0.65rem 0.75rem;
            border: 1px solid transparent;
            border-radius: 12px;
            background: transparent;
            color: inherit;
            font-family: inherit;
            cursor: pointer;
            transition: background 0.15s, border-color 0.15s;
        }
        .lumen-beam-result:hover,
        .lumen-beam-result.is-active {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
        }
        .lumen-beam-result.is-active {
            border-color: rgba(251, 191, 36, 0.35);
            background: rgba(251, 191, 36, 0.06);
        }
        .lumen-beam-result-type {
            grid-row: 1 / 3;
            align-self: center;
            font-size: 0.52rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(251, 191, 36, 0.75);
            padding: 0.25rem 0.42rem;
            border-radius: 6px;
            background: rgba(251, 191, 36, 0.08);
            border: 1px solid rgba(251, 191, 36, 0.16);
        }
        .lumen-beam-result-title {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
        }
        .lumen-beam-result-desc {
            grid-column: 2;
            font-size: 0.72rem;
            color: var(--text-light);
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .lumen-beam-empty {
            margin: 1.25rem 0.75rem;
            font-size: 0.78rem;
            color: var(--text-light);
            text-align: center;
            line-height: 1.55;
        }
        .lumen-beam-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 0.55rem 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.62rem;
            color: rgba(255, 255, 255, 0.38);
        }
        .lumen-beam-brand {
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(251, 191, 36, 0.65);
        }
        .lumen-beam-hints {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        /* Spotlight – echtes „Loch“ im Dunkeln + Rahmen */
        .lumen-beam-spot {
            position: fixed;
            inset: 0;
            z-index: 10040;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .lumen-beam-spot.is-active { opacity: 1; }
        .lumen-beam-spot.is-leaving { opacity: 0; }
        .lumen-beam-spot-svg {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        .lumen-beam-spot-frame {
            position: fixed;
            pointer-events: none;
            border-radius: 14px;
            animation: lumen-beam-frame-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
        }
        @keyframes lumen-beam-frame-in {
            from { opacity: 0; transform: scale(0.96); }
            to { opacity: 1; transform: scale(1); }
        }
        .lumen-beam-spot-corner {
            position: absolute;
            width: 14px;
            height: 14px;
            border-color: #fbbf24;
            border-style: solid;
            opacity: 0.95;
            filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.55));
        }
        .lumen-beam-spot-corner--tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 6px 0 0 0; }
        .lumen-beam-spot-corner--tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; border-radius: 0 6px 0 0; }
        .lumen-beam-spot-corner--bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; border-radius: 0 0 0 6px; }
        .lumen-beam-spot-corner--br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 6px 0; }
        .lumen-beam-spot-pill {
            position: fixed;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.85rem;
            border-radius: 999px;
            background: rgba(10, 10, 12, 0.96);
            border: 1px solid rgba(251, 191, 36, 0.38);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 28px rgba(251, 191, 36, 0.14);
            animation: lumen-beam-pill-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
        }
        @keyframes lumen-beam-pill-in {
            from { opacity: 0; transform: translateY(8px) scale(0.96); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .lumen-beam-spot-pill-icon {
            width: 1rem;
            height: 1rem;
            flex-shrink: 0;
            color: #fbbf24;
        }
        .lumen-beam-spot-pill-text {
            font-size: 0.76rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .lumen-beam-lit {
            position: relative;
            z-index: 10041 !important;
        }
        .faq-container details[id^="faq-"] {
            scroll-margin-top: calc(var(--header-offset, 72px) + 12px);
        }
        @media (max-width: 640px) {
            .lumen-beam-trigger {
                right: 0.85rem;
                bottom: 0.85rem;
                padding: 0.62rem;
                border-radius: 999px;
            }
            .lumen-beam-trigger-text,
            .lumen-beam-trigger-kbd { display: none; }
            .lumen-beam-foot .lumen-beam-hints { display: none; }
            .lumen-beam { padding-top: 4.5rem; }
            .lumen-beam-spot-pill { max-width: calc(100vw - 24px) !important; }
            .lumen-beam-lead { font-size: 0.72rem; }
        }
        @media (prefers-reduced-motion: reduce) {
            .lumen-beam-spot-frame,
            .lumen-beam-spot-pill { animation: none; }
        }

        /* === SCROLL PROGRESS BAR === */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 0, 77, 0.6) 100%);
            z-index: 10000;
            transition: none;
            will-change: width;
            box-shadow: 0 0 10px var(--accent);
        }

        /* === SCROLL ANIMATIONS – deaktiviert: Inhalte sofort sichtbar & scrollbar === */
        section {
            opacity: 1;
            transform: none;
        }
        section.hero,
        section.trust-bar {
            opacity: 1;
        }

        /* Sektion-spezifische Einflug-Richtungen – nur bei expliziter Animation */
        html.reveal-motion #weg-digital { transform: translateY(18px); }
        html.reveal-motion #weg-digital.visible { transform: translateY(0); }

        html.reveal-motion #ueber-uns { transform: translateY(28px); }
        html.reveal-motion #ueber-uns.visible { transform: translateY(0); }

        html.reveal-motion #bewertungen { transform: translateX(45px); }
        html.reveal-motion #bewertungen.visible { transform: translateX(0); }

        html.reveal-motion #partner { transform: scale(0.96); }
        html.reveal-motion #partner.visible { transform: scale(1); }

        /* === LEISTUNG BENTO (#vorteile auf Verwaltung wechseln) === */
        #vorteile.ld-section {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
            padding-inline: 2rem;
            padding-bottom: 4rem;
        }

        .ld-head {
            text-align: center;
            margin-bottom: 2rem;
        }
        .ld-head h2 {
            margin-bottom: 0.55rem;
        }
        .ld-sub {
            max-width: 34rem;
            margin: 0 auto;
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.65;
        }

        .ld-bento {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.85rem;
        }

        .ld-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            padding: 1.25rem 1.3rem 1.35rem;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.025);
            transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
            overflow: hidden;
        }
        .ld-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(255, 0, 77, 0.07) 0%, transparent 58%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.28s ease;
        }
        .ld-card:hover {
            border-color: rgba(255, 0, 77, 0.28);
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
        }
        .ld-card:hover::before { opacity: 1; }

        .ld-card--hero {
            grid-column: 1 / -1;
            flex-direction: row;
            align-items: center;
            gap: 1.25rem;
            padding: 1.45rem 1.55rem;
            border-color: rgba(255, 0, 77, 0.22);
            background:
                linear-gradient(135deg, rgba(255, 0, 77, 0.07) 0%, rgba(255, 255, 255, 0.02) 52%, rgba(255, 255, 255, 0.025) 100%);
        }
        .ld-card--hero::before { opacity: 1; }

        .ld-card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
        }

        .ld-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 13px;
            background: rgba(255, 0, 77, 0.1);
            border: 1px solid rgba(255, 0, 77, 0.2);
        }
        .ld-icon--hero {
            width: 56px;
            height: 56px;
            border-radius: 16px;
        }
        .ld-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--accent);
        }
        .ld-icon--hero svg {
            width: 26px;
            height: 26px;
        }

        .ld-index {
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            color: rgba(255, 0, 77, 0.45);
        }

        .ld-kicker {
            display: inline-block;
            margin-bottom: 0.35rem;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .ld-body { min-width: 0; }

        .ld-title {
            margin: 0;
            font-size: 1rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.25;
            letter-spacing: -0.02em;
        }
        .ld-card--hero .ld-title {
            font-size: 1.12rem;
        }

        .ld-desc {
            margin: 0.35rem 0 0;
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        html.reveal-motion #vorteile.ld-section .ld-card {
            opacity: 0;
            transform: translateY(14px);
        }
        html.reveal-motion #vorteile.ld-section.visible .ld-card {
            animation: portalFadeUp 0.5s ease forwards;
        }
        html.reveal-motion #vorteile.ld-section.visible .ld-card:nth-child(1) { animation-delay: 0.05s; }
        html.reveal-motion #vorteile.ld-section.visible .ld-card:nth-child(2) { animation-delay: 0.12s; }
        html.reveal-motion #vorteile.ld-section.visible .ld-card:nth-child(3) { animation-delay: 0.19s; }
        html.reveal-motion #vorteile.ld-section.visible .ld-card:nth-child(4) { animation-delay: 0.26s; }
        html.reveal-motion #vorteile.ld-section.visible .ld-card:nth-child(5) { animation-delay: 0.33s; }
        html.reveal-motion #vorteile.ld-section.visible .ld-card:nth-child(6) { animation-delay: 0.40s; }
        html.reveal-motion #vorteile.ld-section.visible .ld-card:nth-child(7) { animation-delay: 0.47s; }

        @media (max-width: 720px) {
            main:has(.hero--compact) > .hero.hero--compact + section {
                padding-top: 5rem;
            }
            #vorteile.ld-section { padding-inline: 1.25rem; padding-bottom: 3rem; }
            .ld-bento { grid-template-columns: 1fr; }
            .ld-card--hero {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* === LEISTUNGSKATALOG (#leistungen – Bento) === */
        .lk-section {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 2rem 4.5rem;
        }
        .lk-head {
            text-align: center;
            margin-bottom: 1.85rem;
        }
        .lk-head h2 { margin-bottom: 0.55rem; }
        .lk-intro {
            max-width: 36rem;
            margin: 0 auto;
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.65;
        }

        .lk-switch-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.85rem;
        }
        .lk-switch {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            padding: 0.28rem;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            background: rgba(255, 255, 255, 0.04);
            max-width: 100%;
            width: min(440px, 100%);
        }
        .lk-switch-glow {
            position: absolute;
            top: 0.28rem;
            bottom: 0.28rem;
            left: 0.28rem;
            width: calc(50% - 0.28rem);
            border-radius: 100px;
            background: linear-gradient(135deg, rgba(255, 0, 77, 0.95) 0%, rgba(255, 0, 77, 0.72) 100%);
            box-shadow: 0 6px 22px rgba(255, 0, 77, 0.28);
            transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 0;
        }
        .lk-switch.is-sev .lk-switch-glow {
            transform: translateX(100%);
        }
        .lk-switch-btn {
            position: relative;
            z-index: 2;
            appearance: none;
            border: 0;
            background: transparent;
            color: var(--text-muted);
            font: inherit;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 0.62rem 0.85rem;
            border-radius: 100px;
            cursor: pointer;
            transition: color 0.22s ease;
            white-space: nowrap;
            pointer-events: auto;
        }
        .lk-switch-btn:hover { color: #fff; }
        .lk-switch-btn.is-active { color: #fff; }

        .lk-view { display: none; }
        .lk-view.is-active {
            display: block;
            animation: lkFadeIn 0.35s ease;
        }
        @keyframes lkFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: none; }
        }

        .lk-bento {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.85rem;
        }

        .lk-tile {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            padding: 1.2rem 1.25rem 1.15rem;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.025);
            overflow: hidden;
            transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
        }
        .lk-tile::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.28s ease;
            pointer-events: none;
        }
        .lk-tile--finanzen::before {
            background: radial-gradient(ellipse 90% 80% at 100% 0%, rgba(245, 158, 11, 0.12) 0%, transparent 58%);
        }
        .lk-tile--etv::before {
            background: radial-gradient(ellipse 90% 80% at 100% 0%, rgba(96, 165, 250, 0.12) 0%, transparent 58%);
        }
        .lk-tile--technik::before {
            background: radial-gradient(ellipse 90% 80% at 100% 0%, rgba(74, 222, 128, 0.1) 0%, transparent 58%);
        }
        .lk-tile--service::before {
            background: radial-gradient(ellipse 90% 80% at 100% 0%, rgba(255, 0, 77, 0.1) 0%, transparent 58%);
        }
        .lk-tile:hover {
            border-color: rgba(255, 0, 77, 0.24);
            transform: translateY(-3px);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
        }
        .lk-tile:hover::before { opacity: 1; }

        .lk-tile-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
        }
        .lk-tile-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 11px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
        }
        .lk-tile--finanzen .lk-tile-icon { color: #fbbf24; border-color: rgba(251, 191, 36, 0.22); background: rgba(251, 191, 36, 0.08); }
        .lk-tile--etv .lk-tile-icon { color: #60a5fa; border-color: rgba(96, 165, 250, 0.22); background: rgba(96, 165, 250, 0.08); }
        .lk-tile--technik .lk-tile-icon { color: #4ade80; border-color: rgba(74, 222, 128, 0.22); background: rgba(74, 222, 128, 0.08); }
        .lk-tile--service .lk-tile-icon { color: var(--accent); border-color: rgba(255, 0, 77, 0.22); background: rgba(255, 0, 77, 0.08); }
        .lk-tile-icon svg { width: 18px; height: 18px; }

        .lk-tile-num {
            font-size: 1.65rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.04em;
            color: rgba(255, 255, 255, 0.06);
            user-select: none;
        }

        .lk-tile-title {
            font-size: 0.98rem;
            font-weight: 800;
            line-height: 1.25;
            margin: 0;
        }

        .lk-tile-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 0.42rem;
        }
        .lk-tile-list li {
            position: relative;
            padding-left: 0.85rem;
            font-size: 0.78rem;
            line-height: 1.5;
            color: var(--text-light);
        }
        .lk-tile-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.58em;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.75;
        }

        .lk-foot {
            margin-top: 1.25rem;
            text-align: center;
            font-size: 0.82rem;
            color: var(--text-subtle);
            line-height: 1.55;
        }
        .lk-foot a {
            color: rgba(255, 255, 255, 0.72);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .lk-foot a:hover { color: #fff; }

        .lk-sev {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: 1.5rem 2rem;
            align-items: start;
            padding: 1.45rem 1.55rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 0, 77, 0.18);
            background:
                linear-gradient(135deg, rgba(255, 0, 77, 0.08) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.025) 100%);
        }
        .lk-sev-kicker {
            display: inline-block;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.45rem;
        }
        .lk-sev-title {
            font-size: 1.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 0.55rem;
        }
        .lk-sev-lead {
            margin: 0;
            font-size: 0.86rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        .lk-sev-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 0.5rem;
        }
        .lk-sev-list li {
            position: relative;
            padding: 0.55rem 0.65rem 0.55rem 1.85rem;
            font-size: 0.82rem;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.88);
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .lk-sev-list li::before {
            content: '';
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }

        html.reveal-motion .lk-section .lk-tile,
        html.reveal-motion .lk-section .lk-sev {
            opacity: 0;
            transform: translateY(14px);
        }
        html.reveal-motion .lk-section.visible .lk-tile,
        html.reveal-motion .lk-section.visible .lk-sev {
            animation: portalFadeUp 0.5s ease forwards;
        }
        html.reveal-motion .lk-section.visible .lk-tile:nth-child(1) { animation-delay: 0.05s; }
        html.reveal-motion .lk-section.visible .lk-tile:nth-child(2) { animation-delay: 0.11s; }
        html.reveal-motion .lk-section.visible .lk-tile:nth-child(3) { animation-delay: 0.17s; }
        html.reveal-motion .lk-section.visible .lk-tile:nth-child(4) { animation-delay: 0.23s; }

        @media (max-width: 760px) {
            .lk-section { padding: 0 1.15rem 3.5rem; }
            .lk-bento { grid-template-columns: 1fr; }
            .lk-switch-btn {
                font-size: 0.72rem;
                padding: 0.58rem 0.55rem;
            }
            .lk-sev {
                grid-template-columns: 1fr;
                padding: 1.15rem 1.1rem;
            }
            .wp-cta-row {
                flex-direction: column;
                align-items: stretch;
            }
        }

        /* === VORTEILE FEATURE-ROWS (Startseite #uebersicht) === */
        #vorteile .vt-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.8rem; }
        .vt-row {
            display: flex; align-items: center; gap: 1.4rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 18px;
            padding: 1.1rem 1.4rem;
            transition: border-color 0.3s, background 0.3s, transform 0.3s;
            cursor: default;
        }
        .vt-row:hover {
            border-color: rgba(255,0,77,0.3);
            background: rgba(255,255,255,0.05);
            transform: translateX(4px);
        }
        .vt-icon-wrap {
            flex-shrink: 0;
            width: 52px; height: 52px;
            border-radius: 14px;
            background: rgba(255,0,77,0.1);
            border: 1px solid rgba(255,0,77,0.2);
            display: flex; align-items: center; justify-content: center;
            transition: background 0.3s, box-shadow 0.3s;
        }
        .vt-row:hover .vt-icon-wrap {
            background: rgba(255,0,77,0.18);
            box-shadow: 0 0 20px rgba(255,0,77,0.22);
        }
        .vt-icon-wrap svg { width: 22px; height: 22px; fill: var(--accent); }
        .vt-body { flex: 1; min-width: 0; }
        .vt-title { font-size: 1rem; font-weight: 800; color: var(--text); margin: 0 0 0.22rem; }
        .vt-desc  { font-size: 0.84rem; color: var(--text-light); line-height: 1.55; margin: 0; }
        .vt-num   { flex-shrink: 0; font-size: 2rem; font-weight: 900; color: rgba(255,0,77,0.12); letter-spacing: -2px; line-height: 1; user-select: none; }

        #beauftragungsablauf,
        #verwaltungswechsel,
        #faq,
        #kontakt,
        #weg-probleme,
        #portal-vorteile,
        #portal-impact {
            transform: none;
        }

        /* Inhalt: gestaffelte Animationen nur mit html.reveal-motion */
        html.reveal-motion #uebersicht .vt-row { opacity: 0; transform: translateX(-30px); }
        html.reveal-motion #uebersicht.visible .vt-row {
            animation: animSlideFromLeft 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        html.reveal-motion #uebersicht.visible .vt-row:nth-child(1) { animation-delay: 0.05s; }
        html.reveal-motion #uebersicht.visible .vt-row:nth-child(2) { animation-delay: 0.15s; }
        html.reveal-motion #uebersicht.visible .vt-row:nth-child(3) { animation-delay: 0.25s; }
        html.reveal-motion #uebersicht.visible .vt-row:nth-child(4) { animation-delay: 0.35s; }
        html.reveal-motion #uebersicht.visible .vt-row:nth-child(5) { animation-delay: 0.45s; }
        html.reveal-motion #uebersicht.visible .vt-row:nth-child(6) { animation-delay: 0.55s; }

        html.reveal-motion #verwaltungswechsel .vw-card { opacity: 0; transform: translateY(14px); }
        html.reveal-motion #verwaltungswechsel.visible .vw-card {
            animation: portalFadeUp 0.5s ease forwards;
        }
        html.reveal-motion #verwaltungswechsel.visible .vw-card:nth-child(1) { animation-delay: 0.08s; }
        html.reveal-motion #verwaltungswechsel.visible .vw-card:nth-child(2) { animation-delay: 0.16s; }
        html.reveal-motion #verwaltungswechsel.visible .vw-card:nth-child(3) { animation-delay: 0.24s; }
        html.reveal-motion #verwaltungswechsel.visible .vw-card:nth-child(4) { animation-delay: 0.32s; }

        html.reveal-motion #weg-probleme .wp-block {
            opacity: 0;
            transform: translateY(14px);
        }
        html.reveal-motion #weg-probleme.visible .wp-block {
            animation: portalFadeUp 0.55s ease forwards;
        }
        html.reveal-motion #weg-probleme.visible .wp-block:nth-child(1) { animation-delay: 0.06s; }
        html.reveal-motion #weg-probleme.visible .wp-block:nth-child(2) { animation-delay: 0.14s; }
        html.reveal-motion #weg-probleme.visible .wp-block:nth-child(3) { animation-delay: 0.22s; }

        @keyframes animSlideFromLeft {
            to { opacity: 1; transform: translateX(0); }
        }

        html.reveal-motion #faq details {
            opacity: 0;
            transform: translateY(12px);
            content-visibility: visible;
        }
        html.reveal-motion #faq details.faq-visible {
            animation: animFadeUp 0.45s ease forwards;
        }
        @keyframes animFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        html.reveal-motion #partner .pcard,
        html.reveal-motion #partner .pcard-bb { opacity: 0; transform: scale(0.92) translateY(10px); }
        html.reveal-motion #partner.visible .pcard,
        html.reveal-motion #partner.visible .pcard-bb {
            animation: animScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        html.reveal-motion #partner.visible .partners-grid .pcard:nth-child(1) { animation-delay: 0.08s; }
        html.reveal-motion #partner.visible .partners-grid .pcard:nth-child(2) { animation-delay: 0.2s; }
        html.reveal-motion #partner.visible .partners-grid .pcard:nth-child(3) { animation-delay: 0.32s; }
        html.reveal-motion #partner.visible .pcard-bb { animation-delay: 0.44s; }
        @keyframes animScaleIn {
            to { opacity: 1; transform: scale(1); }
        }

        html.reveal-motion #portal-vorteile { transform: translateY(20px); }
        html.reveal-motion #portal-vorteile.visible { transform: translateY(0); }
        html.reveal-motion #portal-impact { transform: translateY(22px); }
        html.reveal-motion #portal-impact.visible { transform: translateY(0); }

        html.reveal-motion #bewertungen .reviews-header { opacity: 0; transform: translateX(30px); }
        html.reveal-motion #bewertungen.visible .reviews-header {
            animation: animSlideFromRight 0.5s ease forwards;
        }
        html.reveal-motion #bewertungen .reviews-slider-container { opacity: 0; transform: translateX(25px); }
        html.reveal-motion #bewertungen.visible .reviews-slider-container {
            animation: animSlideFromRight 0.55s ease 0.15s forwards;
        }
        @keyframes animSlideFromRight {
            to { opacity: 1; transform: translateX(0); }
        }

        html.reveal-motion #kontakt .contact-item { opacity: 0; }
        html.reveal-motion #kontakt .contact-item:nth-child(1) { transform: translateX(-25px); }
        html.reveal-motion #kontakt .contact-item:nth-child(2) { transform: translateX(25px); }
        html.reveal-motion #kontakt .contact-item:nth-child(3) { transform: translateX(-25px); }
        html.reveal-motion #kontakt.visible .contact-item {
            animation: animContactReveal 0.5s ease forwards;
        }
        html.reveal-motion #kontakt.visible .contact-item:nth-child(1) { animation-delay: 0.1s; }
        html.reveal-motion #kontakt.visible .contact-item:nth-child(2) { animation-delay: 0.22s; }
        html.reveal-motion #kontakt.visible .contact-item:nth-child(3) { animation-delay: 0.34s; }
        @keyframes animContactReveal {
            to { opacity: 1; transform: translateX(0); }
        }

        /* === TRUST BAR === */
        .trust-bar {
            max-width: none;
            width: 100%;
            margin: 0;
            padding: 1.75rem 2rem;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .trust-bar-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

        .trust-bar-kicker {
            text-align: center;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 1.1rem;
        }

        .trust-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 1rem 1.25rem;
            margin: 0;
            padding: 0;
        }

        .trust-item {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            min-width: 0;
        }

        .trust-icon {
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(255, 0, 77, 0.08);
            border: 1px solid rgba(255, 0, 77, 0.18);
            color: var(--accent);
        }

        .trust-icon svg {
            width: 1rem;
            height: 1rem;
        }

        .trust-text {
            display: flex;
            flex-direction: column;
            gap: 0.12rem;
            min-width: 0;
        }

        .trust-label {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.25;
        }

        .trust-desc {
            font-size: 0.68rem;
            color: var(--text-light);
            line-height: 1.35;
        }

        .trust-bar--footer {
            padding: 1.25rem 2rem 0;
            background: transparent;
            border-top: none;
            border-bottom: 1px solid var(--border);
        }

        .trust-bar--footer .trust-list {
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 0.75rem 1rem;
        }

        .trust-bar--footer .trust-icon {
            width: 1.65rem;
            height: 1.65rem;
            border-radius: 8px;
        }

        .trust-bar--footer .trust-icon svg {
            width: 0.85rem;
            height: 0.85rem;
        }

        .trust-bar--footer .trust-label {
            font-size: 0.75rem;
        }

        .trust-bar--footer .trust-desc {
            font-size: 0.62rem;
        }

        @media (max-width: 1100px) {
            .trust-list,
            .trust-bar--footer .trust-list {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .trust-bar {
                padding: 1.35rem 1.25rem;
            }

            .trust-list,
            .trust-bar--footer .trust-list {
                grid-template-columns: 1fr;
                gap: 0.85rem;
            }

            .trust-bar--footer {
                padding: 1rem 1.25rem 0;
            }
        }

        /* === FOOTER === */
        .site-footer {
            position: relative;
            background:
                radial-gradient(ellipse 70% 55% at 12% 0%, rgba(255, 0, 77, 0.07) 0%, transparent 58%),
                var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 3.25rem 2rem 1.5rem;
        }

        .footer-inner {
            max-width: 1180px;
            margin: 0 auto;
        }

        .footer-head {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
            gap: 2.5rem 3rem;
            align-items: start;
            margin-bottom: 2.75rem;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            text-decoration: none;
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .footer-logo-text {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .footer-logo-text strong {
            font-size: 1.12rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .footer-logo-text small {
            font-size: 0.78rem;
            color: var(--text-light);
            letter-spacing: 0.04em;
        }

        .footer-lead {
            max-width: 34rem;
            margin: 0 0 1.25rem;
            color: var(--text-light);
            font-size: 0.92rem;
            line-height: 1.65;
        }

        .footer-contact-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .footer-contact-item {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            color: rgba(255, 255, 255, 0.62);
            text-decoration: none;
            font-size: 0.84rem;
            transition: color 0.22s ease;
        }
        .footer-contact-item--static {
            cursor: default;
        }

        .footer-contact-item svg {
            width: 0.95rem;
            height: 0.95rem;
            flex-shrink: 0;
            color: rgba(255, 0, 77, 0.75);
        }

        .footer-contact-item:hover {
            color: var(--text);
        }

        .footer-cta-card {
            padding: 1.35rem 1.4rem 1.45rem;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .footer-cta-kicker {
            margin: 0 0 0.35rem;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
        }

        .footer-cta-title {
            margin: 0 0 0.45rem;
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
        }

        .footer-cta-desc {
            margin: 0 0 1.1rem;
            font-size: 0.82rem;
            line-height: 1.55;
            color: var(--text-light);
        }

        .footer-cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2rem 2.5rem;
            padding: 2rem 0 1.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .footer-col-title {
            margin: 0 0 0.85rem;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.42);
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.68);
            text-decoration: none;
            font-size: 0.88rem;
            line-height: 1.45;
            transition: color 0.22s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem 2rem;
            flex-wrap: wrap;
            padding-top: 1.15rem;
        }

        .copyright,
        .footer-meta {
            margin: 0;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.38);
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .site-footer {
                padding: 2.5rem 1.25rem 1.25rem;
            }

            .footer-head {
                grid-template-columns: 1fr;
                gap: 1.75rem;
                margin-bottom: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.75rem 1.5rem;
            }

            .footer-bar {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 560px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.35rem;
            }

            .footer-cta-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .footer-cta-actions .cta-button {
                justify-content: center;
            }
        }

        /* === RESPONSIVE === */
        @media (max-width: 768px) {
            header { padding: 0.5rem 1rem; }

            nav {
                display: flex;
                justify-content: flex-end;
                align-items: center;
                position: relative;
                padding: 1rem 1rem;
                min-height: 52px;
            }

            .logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }

            .nav-pill { display: none; }

            .nav-actions {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                position: relative;
                z-index: 1;
            }
            .nav-anfrage,
            .nav-kundenportal { display: none; }
            .nav-actions .portal-btn { display: none; }
            .menu-toggle { display: flex; }

            /* Mobile Drawer - outside of media query scope, always rendered */
        }

        /* === MOBILE DRAWER (always present) === */
        .mob-overlay {
            display: none;
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.55);
            backdrop-filter: blur(4px);
            z-index: 1100;
            opacity: 0;
            transition: opacity 0.28s ease;
        }
        .mob-overlay.is-open { display: block; opacity: 1; }

        .mob-drawer {
            position: fixed;
            top: 0; right: 0; bottom: 0;
            width: min(320px, 88vw);
            z-index: 1200;
            transform: translateX(110%);
            transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(14,14,16,0.97);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            border-left: 1px solid rgba(255,255,255,0.08);
            display: flex; flex-direction: column;
            overflow-y: auto;
            overscroll-behavior: contain;
        }
        .mob-drawer.is-open { transform: translateX(0); }

        .mob-drawer-inner {
            display: flex; flex-direction: column;
            padding: 2rem 1.6rem;
            gap: 2rem; flex: 1;
        }
        .mob-drawer-head {
            display: flex; flex-direction: column; gap: 0.2rem;
            padding-bottom: 1.4rem;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }
        .mob-drawer-logo {
            font-size: 1.15rem; font-weight: 900;
            letter-spacing: -0.03em; color: #fff;
        }
        .mob-drawer-tagline {
            font-size: 0.6rem; font-weight: 700;
            letter-spacing: 0.38em; text-transform: uppercase;
            color: var(--text-subtle);
        }
        .mob-drawer-nav {
            display: flex; flex-direction: column; gap: 0.2rem;
        }
        .mob-nav-link {
            display: flex; align-items: center;
            padding: 0.72rem 0.75rem;
            border-radius: 10px;
            color: rgba(255,255,255,0.82);
            text-decoration: none;
            font-size: 0.95rem; font-weight: 600;
            transition: background 0.15s ease, color 0.15s ease;
            position: relative;
        }
        .mob-nav-link:hover, .mob-nav-link.active {
            background: rgba(255,255,255,0.07);
            color: #fff;
        }
        .mob-nav-link.active::before {
            content: '';
            position: absolute;
            left: 0.75rem;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: var(--accent);
        }
        .mob-nav-link.active {
            padding-left: 1.35rem;
        }
        .mob-drawer-btns {
            display: flex; flex-direction: column; gap: 0.7rem;
            margin-top: auto;
            padding-top: 1.4rem;
            border-top: 1px solid rgba(255,255,255,0.07);
        }
        .mob-btn-anfrage {
            display: flex; align-items: center; justify-content: center;
            padding: 0.8rem 1rem; border-radius: 12px;
            border: 1.5px solid rgba(255,255,255,0.18);
            background: transparent;
            color: rgba(255,255,255,0.78); font-weight: 700; font-size: 0.9rem;
            text-decoration: none; text-align: center;
            transition: background 0.18s, border-color 0.18s;
        }
        .mob-btn-anfrage:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }
        .mob-btn-portal {
            display: flex; align-items: center; justify-content: center; gap: 0.45rem;
            padding: 0.8rem 1rem; border-radius: 12px;
            background: var(--accent);
            color: #fff; font-weight: 700; font-size: 0.9rem;
            text-decoration: none; text-align: center;
            box-shadow: 0 0 22px rgba(255,0,77,0.3);
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .mob-btn-portal:hover { box-shadow: 0 0 32px rgba(255,0,77,0.5); transform: translateY(-1px); }

        @media (max-width: 1024px) {
            .review-card {
                flex: 0 0 calc((100cqw - 1.5rem) / 2);
                width: calc((100cqw - 1.5rem) / 2);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .reviews-slider-wrapper {
                margin: 0;
                padding: 0;
            }

            .review-card {
                flex: 0 0 100cqw;
                width: 100cqw;
                min-width: 0;
                max-width: none;
            }

            .reviews-slider-nav {
                display: none;
            }

            .reviews-slider-controls {
                display: flex;
            }

            .reviews-slider-container {
                padding-bottom: 0.25rem;
            }

            .reviews-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .reviews-rating-number {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats { gap: 1.5rem; }
            .hero-stat-val { font-size: 1.3rem; }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            section {
                padding: 2.5rem 1.5rem;
            }

            #kontakt {
                max-width: 526px;
                margin-left: auto;
                margin-right: auto;
            }

            .about-content {
                padding: 2rem;
            }
        }

        /* === PERFORMANCE OPTIMIZATIONS === */
        img {
            content-visibility: auto;
        }

        .feature-large, details {
            content-visibility: auto;
            contain-intrinsic-size: 300px;
        }
        #faq details {
            content-visibility: visible;
            contain-intrinsic-size: auto;
        }

        /* ── Startseite Übersicht-Karten (vt-*) ── */
        #uebersicht { max-width: 780px; margin: 0 auto; padding: 5rem 1.5rem 4rem; }
        #uebersicht h2 { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 900; text-align: center; margin-bottom: 0.5rem; }
        #uebersicht .section-subtitle { text-align:center; color: var(--text-light); margin-bottom: 2.5rem; }
        .vt-list { display: flex; flex-direction: column; gap: 0.8rem; }
        .vt-row {
            display: flex; align-items: center; gap: 1.2rem;
            padding: 1.25rem 1.5rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            cursor: pointer;
            transition: background 0.18s, border-color 0.18s, transform 0.18s;
            color: inherit;
        }
        .vt-row:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(255,255,255,0.15);
            transform: translateX(4px);
        }
        .vt-icon-wrap {
            flex-shrink: 0;
            width: 44px; height: 44px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(255,0,77,0.1);
            border-radius: 12px;
        }
        .vt-icon-wrap svg { width: 22px; height: 22px; fill: var(--accent,#ff004d); }
        .vt-body { flex: 1; min-width: 0; }
        .vt-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
        .vt-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.45; }
        .vt-num { flex-shrink: 0; font-size: 1.2rem; color: rgba(255,255,255,0.25); font-weight: 700; }

        /* ══════════════════════════════════════════════════════
           PORTAL-IMPACT – Konkrete Alltagsvorteile
        ══════════════════════════════════════════════════════ */
        #portal-impact {
            padding: 4rem 2rem 3rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        .pi-inner  { max-width: 1120px; margin: 0 auto; }
        .pi-header { text-align: center; margin-bottom: 2.75rem; }

        /* Grid: 2×2 – unten Vollmacht & Unterlagen gleiche Höhe */
        .pi-cards {
            display: grid;
            grid-template-columns: 1.12fr 1fr;
            gap: 1.25rem;
            align-items: stretch;
        }
        .pi-card--featured  { grid-column: 1; grid-row: 1; }
        .pi-card--tickets   { grid-column: 2; grid-row: 1; }
        .pi-card--vollmacht { grid-column: 1; grid-row: 2; }
        .pi-card--docs      { grid-column: 2; grid-row: 2; }
        .pi-card--vollmacht,
        .pi-card--docs {
            min-height: 100%;
        }
        .pi-card {
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: border-color 0.2s ease;
        }
        .pi-card:hover { border-color: rgba(255,255,255,0.14); }
        .pi-card--featured {
            background: rgba(255,0,77,0.03);
            border-color: rgba(255,0,77,0.12);
        }
        .pi-card--featured:hover { border-color: rgba(255,0,77,0.25); }
        .pi-card--vollmacht {
            background: rgba(251,191,36,0.03);
            border-color: rgba(251,191,36,0.12);
        }

        /* Eyebrow */
        .pi-card-eyebrow {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
        }
        .pi-card-eyebrow svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

        /* Große Zahl */
        .pi-card-headline {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            line-height: 1;
        }
        .pi-card-num {
            font-size: clamp(2.8rem, 5vw, 4rem);
            font-weight: 900;
            color: var(--accent);
            font-variant-numeric: tabular-nums;
        }
        .pi-card--featured .pi-card-num { color: var(--accent); }
        .pi-card--tickets .pi-card-num { color: #60a5fa; }
        .pi-card--docs .pi-card-num { color: #4ade80; }
        .pi-card--vollmacht .pi-card-num { color: #fbbf24; }
        .pi-card-num--static { font-size: clamp(2.4rem, 4vw, 3.2rem); }
        .pi-card-unit {
            font-size: 1rem;
            font-weight: 700;
            color: rgba(255,255,255,0.5);
        }
        .pi-card-desc {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.6;
        }
        .pi-card-desc strong { color: #fff; }

        /* ── Monats-Visualisierung ── */
        .pi-months { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.25rem; }
        .pi-months-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .pi-months-label {
            font-size: 0.65rem;
            font-weight: 700;
            color: rgba(255,255,255,0.3);
            width: 38px;
            flex-shrink: 0;
            text-align: right;
        }
        .pi-months-bar {
            flex: 1;
            display: flex;
            gap: 2px;
        }
        .pi-month {
            flex: 1;
            height: 40px;
            border-radius: 4px;
            background: rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: background 0.2s;
        }
        .pi-month-name {
            font-size: 0.55rem;
            font-weight: 600;
            color: rgba(255,255,255,0.3);
            line-height: 1;
        }
        .pi-month--stress { background: rgba(255,80,80,0.22); }
        .pi-month--stress .pi-month-name { color: #fca5a5; }
        .pi-month--active { background: rgba(74,222,128,0.12); }
        .pi-month--active .pi-month-name { color: #a7f3c0; }
        .pi-month--ev-other {
            background: rgba(255,80,80,0.45);
            border: 1px solid rgba(255,80,80,0.5);
        }
        .pi-month--ev-sn {
            background: rgba(74,222,128,0.3);
            border: 1px solid rgba(74,222,128,0.5);
        }
        .pi-month-badge {
            font-size: 0.5rem;
            font-weight: 800;
            color: #fff;
            background: rgba(255,255,255,0.15);
            border-radius: 3px;
            padding: 0.05rem 0.25rem;
            margin-top: 2px;
        }
        .pi-months-legend {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            padding-left: 46px;
        }
        .pi-ml {
            font-size: 0.62rem;
            color: rgba(255,255,255,0.35);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }
        .pi-ml::before {
            content: '';
            width: 8px; height: 8px;
            border-radius: 2px;
            flex-shrink: 0;
        }
        .pi-ml--stress::before { background: rgba(255,80,80,0.5); }
        .pi-ml--active::before { background: rgba(74,222,128,0.4); }
        .pi-ml--ev::before     { background: rgba(74,222,128,0.8); border: 1px solid rgba(74,222,128,0.7); }

        /* ── Reaktionszeit-Vergleich (Anfragen-Karte) ── */
        .pi-react {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-top: 0.25rem;
        }
        .pi-react-title {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin: 0;
        }
        .pi-react-row {
            display: grid;
            grid-template-columns: 52px 1fr auto;
            align-items: center;
            gap: 0.65rem;
        }
        .pi-react-label {
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255,255,255,0.45);
        }
        .pi-react-track {
            height: 10px;
            background: rgba(255,255,255,0.06);
            border-radius: 5px;
            overflow: hidden;
        }
        .pi-react-fill {
            height: 100%;
            border-radius: 5px;
            width: 0;
            transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
        }
        .pi-react-fill--bad  { background: rgba(255,80,80,0.55); }
        .pi-react-fill--good { background: linear-gradient(90deg, #4ade80, #22d3ee); }
        #portal-impact.pi-animated .pi-react-fill { width: var(--w); }
        .pi-react-val {
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
            min-width: 4.5rem;
            text-align: right;
        }
        .pi-react-row:first-of-type .pi-react-val { color: rgba(255,150,150,0.85); }
        .pi-react-row:last-of-type .pi-react-val  { color: #4ade80; }

        /* ── Dokument-Grid ── */
        .pi-access-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem;
            margin-top: auto;
        }
        .pi-access-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.6);
            padding: 0.35rem 0.5rem;
            border-radius: 8px;
            background: rgba(74,222,128,0.06);
            border: 1px solid rgba(74,222,128,0.1);
        }
        .pi-access--yes svg { width: 10px; height: 10px; fill: #4ade80; flex-shrink: 0; }

        /* ── Vollmacht-Schritte ── */
        .pi-steps-mini {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: auto;
        }
        .pi-step-mini {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.6);
        }
        .pi-step-mini-n {
            width: 22px; height: 22px;
            border-radius: 50%;
            background: rgba(251,191,36,0.15);
            border: 1px solid rgba(251,191,36,0.3);
            color: #fbbf24;
            font-size: 0.65rem;
            font-weight: 800;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .pi-step-mini-n--done {
            background: rgba(74,222,128,0.15);
            border-color: rgba(74,222,128,0.4);
            color: #4ade80;
        }
        .pi-step-mini-arrow { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

        /* Counter-Animation */
        #portal-impact.pi-animated .pi-card-num[data-count] { /* handled by JS */ }

        /* Responsive */
        @media (max-width: 900px) {
            .pi-cards { grid-template-columns: 1fr; }
            .pi-card--featured,
            .pi-card--tickets,
            .pi-card--vollmacht,
            .pi-card--docs {
                grid-column: auto;
                grid-row: auto;
            }
        }
        @media (max-width: 500px) {
            .pi-months-bar { gap: 1px; }
            .pi-month { height: 34px; }
            .pi-months-legend { padding-left: 0; }
            .pi-access-grid { grid-template-columns: 1fr; }
        }

        /* ══════════════════════════════════════════════════════
           PORTAL-VORTEILE – interaktiver Vergleich
        ══════════════════════════════════════════════════════ */
        #portal-vorteile {
            padding: 4rem 2rem 3.5rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        .pv-inner { max-width: 1100px; margin: 0 auto; }
        .pv-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .pv-eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(255,0,77,0.08);
            border: 1px solid rgba(255,0,77,0.2);
            border-radius: 100px;
            padding: 0.3rem 0.9rem;
            margin-bottom: 0.9rem;
        }

        /* Tab-Navigation */
        .pv-compare-tabs {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1.75rem;
        }
        .pv-tab {
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            border: 1px solid rgba(255,255,255,0.12);
            background: transparent;
            color: rgba(255,255,255,0.55);
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .pv-tab:hover {
            border-color: rgba(255,0,77,0.4);
            color: #fff;
        }
        .pv-tab.is-active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

        /* Panels */
        .pv-compare-panels { position: relative; }
        .pv-panel {
            display: none;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.07);
        }
        .pv-panel.is-active { display: grid; }

        .pv-col {
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .pv-col--bad  { background: rgba(255,255,255,0.02); }
        .pv-col--good { background: rgba(0,200,100,0.04);   }

        .pv-col-head {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 700;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.65);
        }
        .pv-col--good .pv-col-head { color: #fff; }

        .pv-col-icon {
            width: 26px; height: 26px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem;
            font-weight: 900;
            flex-shrink: 0;
        }
        .pv-col-icon--bad  { background: rgba(255,60,60,0.15);  color: #ff5f5f; }
        .pv-col-icon--good { background: rgba(0,200,100,0.15); color: #4ade80; }

        .pv-list {
            list-style: none;
            margin: 0; padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .pv-list li {
            font-size: 0.875rem;
            line-height: 1.5;
            padding-left: 1.1rem;
            position: relative;
        }
        .pv-col--bad  .pv-list li { color: rgba(255,255,255,0.45); }
        .pv-col--good .pv-list li { color: rgba(255,255,255,0.85); }
        .pv-col--bad  .pv-list li::before { content: '–'; position: absolute; left: 0; color: rgba(255,80,80,0.5); }
        .pv-col--good .pv-list li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-size: 0.75rem; top: 0.05em; }

        .pv-result {
            margin-top: auto;
            padding: 0.85rem 1rem;
            background: rgba(0,200,100,0.07);
            border: 1px solid rgba(0,200,100,0.2);
            border-radius: 10px;
            font-size: 0.85rem;
            color: #a7f3c0;
            display: flex;
            gap: 0.6rem;
            align-items: flex-start;
        }
        .pv-result-icon { flex-shrink: 0; color: #4ade80; font-weight: 700; }

        /* Divider */
        .pv-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            flex-shrink: 0;
            background: rgba(255,255,255,0.04);
            border-left: 1px solid rgba(255,255,255,0.06);
            border-right: 1px solid rgba(255,255,255,0.06);
        }
        .pv-divider span {
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(255,255,255,0.2);
            writing-mode: vertical-rl;
            letter-spacing: 0.08em;
        }

        /* Fakten-Leiste */
        .pv-facts {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-top: 2.5rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            flex-wrap: wrap;
        }
        .pv-fact {
            flex: 1;
            min-width: 120px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            padding: 0.5rem 1rem;
        }
        .pv-fact-val {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
        }
        .pv-fact-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.4;
        }
        .pv-fact-divider {
            width: 1px;
            height: 2.5rem;
            background: rgba(255,255,255,0.1);
            flex-shrink: 0;
        }

        /* CTA */
        .pv-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 840px) {
            .pv-panel.is-active {
                grid-template-columns: 1fr;
            }
            .pv-divider {
                writing-mode: initial;
                width: 100%;
                height: 36px;
                flex-direction: row;
                border-left: none;
                border-right: none;
                border-top: 1px solid rgba(255,255,255,0.06);
                border-bottom: 1px solid rgba(255,255,255,0.06);
            }
            .pv-divider span { writing-mode: initial; }
            .pv-fact-divider { display: none; }
            .pv-fact { min-width: 45%; }
            .pv-facts { gap: 0.5rem; }
        }
        @media (max-width: 500px) {
            .pv-tab { font-size: 0.8rem; padding: 0.45rem 0.9rem; }
            .pv-col { padding: 1.25rem; }
        }

        /* === LumenOS-Seite: Gold-Akzente für Hauptbegriffe (statt Rosa) === */
        .page-lumenos {
            --lumen: #fbbf24;
            --lumen-soft: #fde68a;
            --lumen-glow: rgba(251, 191, 36, 0.28);
            --lumen-bg: rgba(251, 191, 36, 0.08);
            --lumen-border: rgba(251, 191, 36, 0.22);
        }
        .page-lumenos h2 span {
            color: var(--lumen);
            -webkit-text-fill-color: var(--lumen);
        }
        .page-lumenos h2 span:hover {
            text-shadow: 0 0 8px var(--lumen-glow), 0 0 15px rgba(251, 191, 36, 0.35);
        }
        .page-lumenos .lumen-exclusive {
            border-color: rgba(255, 255, 255, 0.08);
            border-left-color: rgba(251, 191, 36, 0.5);
            background: rgba(255, 255, 255, 0.025);
        }
        .page-lumenos .pv-eyebrow,
        .page-lumenos #portal-impact .pv-eyebrow {
            color: var(--lumen);
            background: var(--lumen-bg);
            border-color: var(--lumen-border);
        }
        .page-lumenos .pv-tab:hover {
            border-color: rgba(251, 191, 36, 0.45);
        }
        .page-lumenos .pv-tab.is-active {
            background: var(--lumen);
            border-color: var(--lumen);
            color: #0c0c0c;
        }
        .page-lumenos .pv-fact-val,
        .page-lumenos .pb-stat-n {
            color: var(--lumen);
        }
        .page-lumenos .pf-tag {
            color: rgba(253, 230, 138, 0.92);
            background: rgba(251, 191, 36, 0.06);
            border: 1px solid rgba(251, 191, 36, 0.16);
            box-shadow: none;
        }
        .page-lumenos .lumen-chip {
            color: var(--lumen);
            background: var(--lumen-bg);
            border: 1px solid var(--lumen-border);
        }
        .page-lumenos .portal-section .portal-bg {
            background:
                radial-gradient(ellipse 45% 35% at 12% 38%, rgba(251, 191, 36, 0.09) 0%, rgba(251, 191, 36, 0.025) 38%, transparent 62%),
                radial-gradient(ellipse 35% 30% at 88% 68%, rgba(251, 191, 36, 0.05) 0%, rgba(251, 191, 36, 0.015) 40%, transparent 65%);
        }
        .page-lumenos .pf-card:hover {
            border-color: rgba(251, 191, 36, 0.28);
        }
        .page-lumenos .pf-card--stat {
            background: rgba(251, 191, 36, 0.05);
            border-color: rgba(251, 191, 36, 0.2);
        }
        .page-lumenos .pf-card--stat:hover {
            border-color: rgba(251, 191, 36, 0.42);
        }
        .page-lumenos .pf-beleg-step:hover {
            border-color: rgba(251, 191, 36, 0.25);
            background: linear-gradient(160deg, rgba(251, 191, 36, 0.06) 0%, rgba(255,255,255, 0.02) 100%);
        }
        .page-lumenos .pf-beleg-step-n {
            background: rgba(251, 191, 36, 0.14);
            border-color: rgba(251, 191, 36, 0.35);
            color: var(--lumen);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.12);
        }
        .page-lumenos .pi-card--featured .pi-card-num {
            color: var(--lumen);
        }
        .page-lumenos .pi-card--featured {
            background: rgba(251, 191, 36, 0.04);
            border-color: rgba(251, 191, 36, 0.14);
        }
        .page-lumenos .pi-card--featured:hover {
            border-color: rgba(251, 191, 36, 0.28);
        }

        /* LumenOS-Seite: sofort sichtbar & scrollbar – keine verzögerten Fade-ins */
        .page-lumenos .hero.hero--compact {
            min-height: auto;
            padding: 8rem 2rem 3rem;
        }
        .page-lumenos section,
        .page-lumenos #weg-digital,
        .page-lumenos #portal-vorteile,
        .page-lumenos #portal-impact,
        .page-lumenos #lumenos {
            opacity: 1;
            transform: none;
        }
        .page-lumenos .portal-header,
        .page-lumenos .pf-card,
        .page-lumenos .pf-beleg-section {
            opacity: 1;
            transform: none;
            animation: none;
        }

        /* ═══════════════════════════════════════════════════════
           VERWALTUNG WECHSELN – Lumen-Trenner
           ═══════════════════════════════════════════════════════ */

        .vw-lumen-divider {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            max-width: 520px;
            margin: 2.5rem auto;
            padding: 0 1.5rem;
        }
        .vw-lumen-divider--inner {
            margin: 3rem auto;
        }
        .vw-lumen-divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.35), transparent);
        }
        .vw-lumen-divider-dot {
            flex-shrink: 0;
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: #fbbf24;
            box-shadow: 0 0 14px rgba(251, 191, 36, 0.65), 0 0 28px rgba(251, 191, 36, 0.25);
        }
        .vw-lumen-divider-label {
            flex-shrink: 0;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(251, 191, 36, 0.75);
            padding: 0.22rem 0.55rem;
            border-radius: 999px;
            border: 1px solid rgba(251, 191, 36, 0.2);
            background: rgba(251, 191, 36, 0.06);
        }

        @media (max-width: 720px) {
            .vw-lumen-divider--inner {
                margin: 2rem auto;
            }
        }

        /* === LOGO START-INTRO (Startseite) === */
        .logo-intro {
            position: fixed;
            inset: 0;
            z-index: 10002;
            background: var(--bg);
            pointer-events: none;
            transition: opacity 0.28s ease;
        }
        .logo-intro__fly {
            position: fixed;
            object-fit: contain;
            background: transparent;
            opacity: 0;
            will-change: left, top, width, height, opacity;
        }
        .logo-intro__fly.is-ready {
            opacity: 1;
            filter: drop-shadow(0 2px 6px rgba(255, 0, 77, 0.18));
        }
        html.logo-intro-pending .logo-mark .logo-img {
            visibility: hidden;
        }
        html.logo-intro-active .logo-mark .logo-img {
            visibility: hidden;
        }
        html.logo-intro-pending .logo-text,
        html.logo-intro-pending .nav-pill,
        html.logo-intro-pending .nav-actions,
        html.logo-intro-pending .scroll-progress,
        html.logo-intro-pending main {
            opacity: 0;
        }
        html.logo-intro-pending body {
            overflow: hidden;
        }
        html.logo-intro-pending .logo-text,
        html.logo-intro-pending .nav-pill,
        html.logo-intro-pending .nav-actions,
        html.logo-intro-pending main {
            transition: opacity 0.35s ease 0.05s;
        }
        html.logo-intro-reveal .logo-text,
        html.logo-intro-reveal .nav-pill,
        html.logo-intro-reveal .nav-actions,
        html.logo-intro-reveal main {
            opacity: 1;
        }
        html.logo-intro-reveal .logo-mark .logo-img {
            visibility: visible;
        }
        .logo-intro.is-fading {
            opacity: 0;
        }
        @media (prefers-reduced-motion: reduce) {
            .logo-intro {
                display: none !important;
            }
            html.logo-intro-pending .logo-mark .logo-img,
            html.logo-intro-pending .logo-text,
            html.logo-intro-pending .nav-pill,
            html.logo-intro-pending .nav-actions,
            html.logo-intro-pending .scroll-progress,
            html.logo-intro-pending main {
                visibility: visible;
                opacity: 1;
            }
        }

