        :root {
            --bg-body:       #F6F5F2;
            --bg-card:       #FFFFFF;
            --bg-header:     rgba(246,245,242,0.85);
            --bg-hero:       #0D1117;
            --bg-dark:       #111318;
            --bg-footer:     #0D1117;

            --text-dark:     #1A1A1C;
            --text-mid:      #4A4A52;
            --text-light:    #7A7A84;
            --text-on-dark:  #E8E8EC;
            --text-on-dark-2:#9A9AA4;

            --border-light:  rgba(0,0,0,0.07);
            --border-dark:   rgba(255,255,255,0.08);

            --accent:        #3B82F6;
            --accent-2:      #8B5CF6;
            --accent-3:      #06B6D4;
            --gradient:      linear-gradient(135deg, #3B82F6, #8B5CF6, #06B6D4);
            --gradient-warm: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);

            --shadow-sm:     0 1px 3px rgba(0,0,0,0.06);
            --shadow-card:   0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
            --shadow-card-hover: 0 12px 40px rgba(59,130,246,0.12), 0 4px 12px rgba(0,0,0,0.06);
            --shadow-glow:   0 0 60px rgba(59,130,246,0.15);

            --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: var(--bg-body);
            color: var(--text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* ══════════════════════════════════
           NAVIGATION
        ══════════════════════════════════ */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--bg-header);
            backdrop-filter: blur(24px) saturate(1.4);
            -webkit-backdrop-filter: blur(24px) saturate(1.4);
            border-bottom: 1px solid var(--border-light);
            padding: 0 20px;
        }
        .nav-inner {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 28px;
            height: 68px;
        }
        .nav-brand {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.03em;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .nav-brand .nav-logo {
            height: 52px;
            width: auto;
            display: block;
            flex-shrink: 0;
        }
        .nav-brand .nav-brand-text,
        .nav-brand .nav-brand-text > span {
            color: inherit;
            -webkit-text-fill-color: currentColor;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            flex: 1;
        }
        .nav-links a {
            color: var(--text-mid);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 10px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: var(--text-dark);
            background: rgba(59,130,246,0.06);
        }
        /* Nicht-anklickbares Label "Leistungen" — andere Schriftnote */
        .nav-label {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-style: italic;
            font-size: 0.92rem;
            font-weight: 400;
            color: var(--text-light);
            padding: 8px 6px 8px 0;
            cursor: default;
            user-select: none;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        /* Vertikaler Trenner zwischen Leistungen und Rest-Nav */
        .nav-sep {
            width: 1px;
            height: 20px;
            background: var(--border-light);
            margin: 0 10px;
            display: inline-block;
        }
        /* Rechte Nav-Gruppe — wird mit margin-left:auto an den rechten Rand gedrückt */
        .nav-links .nav-right { margin-left: auto; }
        .nav-cta-link {
            background: var(--text-dark) !important;
            color: #fff !important;
            font-weight: 600 !important;
            padding: 8px 20px !important;
        }
        .nav-cta-link:hover {
            background: #333 !important;
            color: #fff !important;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px;
        }

        /* ══════════════════════════════════
           HERO — Dark mit Glow
        ══════════════════════════════════ */
        .hero {
            background: var(--bg-hero);
            position: relative;
            overflow: hidden;
            padding: 120px 32px 130px;
            text-align: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, rgba(139,92,246,0.1) 40%, transparent 70%);
            pointer-events: none;
            animation: heroGlow 8s ease-in-out infinite alternate;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, rgba(236,72,153,0.06) 50%, transparent 70%);
            pointer-events: none;
            animation: heroGlow 10s ease-in-out infinite alternate-reverse;
        }
        @keyframes heroGlow {
            0%   { transform: translateX(-50%) scale(1); opacity: 0.7; }
            100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
        }
        .hero-inner {
            max-width: 740px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59,130,246,0.1);
            border: 1px solid rgba(59,130,246,0.2);
            color: #7CB3F9;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.88rem;
            font-weight: 600;
            margin-bottom: 36px;
            backdrop-filter: blur(8px);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 22px;
            color: #fff;
            max-width: 880px;
        }
        .hero h1 .highlight {
            color: inherit;
            -webkit-text-fill-color: currentColor;
        }
        .hero-sub {
            font-size: 1.22rem;
            color: var(--text-on-dark-2);
            max-width: 520px;
            margin: 0 auto 44px;
            line-height: 1.7;
        }
        .hero-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 34px;
            border-radius: 14px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
        }
        .hero-cta-primary {
            background: #fff;
            color: var(--bg-hero);
        }
        .hero-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255,255,255,0.15);
        }
        .hero-cta-secondary {
            background: rgba(255,255,255,0.08);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .hero-cta-secondary:hover {
            background: rgba(255,255,255,0.14);
            transform: translateY(-2px);
        }

        /* ── Floating Orbs (dekorativ) ── */
        .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(1px);
            opacity: 0.4;
            animation: float 6s ease-in-out infinite;
        }
        .orb-1 { width: 6px; height: 6px; background: #3B82F6; top: 20%; left: 12%; animation-delay: 0s; animation-duration: 7s; }
        .orb-2 { width: 4px; height: 4px; background: #8B5CF6; top: 35%; right: 15%; animation-delay: 1s; animation-duration: 5s; }
        .orb-3 { width: 5px; height: 5px; background: #06B6D4; bottom: 25%; left: 20%; animation-delay: 2s; animation-duration: 8s; }
        .orb-4 { width: 3px; height: 3px; background: #EC4899; top: 60%; right: 22%; animation-delay: 3s; animation-duration: 6s; }
        .orb-5 { width: 5px; height: 5px; background: #3B82F6; bottom: 35%; right: 10%; animation-delay: 1.5s; animation-duration: 9s; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-18px); }
        }

        /* ══════════════════════════════════
           SECTION — Hell
        ══════════════════════════════════ */
        section { padding: 100px 32px; }
        .section-inner { max-width: 1120px; margin: 0 auto; }
        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-heading h2 {
            font-size: 2.3rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 14px;
            color: var(--text-dark);
        }
        .section-heading p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 520px;
            margin: 0 auto;
        }

        /* ══════════════════════════════════
           LEISTUNGEN
        ══════════════════════════════════ */
        #leistungen { background: var(--bg-body); }
        .cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 22px;
            padding: 40px 30px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--gradient);
            opacity: 0;
            transition: opacity var(--transition);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-card-hover);
            border-color: transparent;
        }
        .card:hover::before { opacity: 1; }

        .card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
        }
        .card-icon svg { width: 26px; height: 26px; }
        .card-icon-1 { background: rgba(59,130,246,0.08); color: #3B82F6; }
        .card-icon-2 { background: rgba(139,92,246,0.08); color: #8B5CF6; }
        .card-icon-3 { background: rgba(6,182,212,0.08); color: #06B6D4; }
        .card-icon-4 { background: rgba(236,72,153,0.08); color: #EC4899; }

        .card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        .card p {
            color: var(--text-mid);
            font-size: 0.98rem;
            line-height: 1.7;
        }

        /* Card als Anker (Verknüpfung KI-Dokumentensuche → KI-Haus Core) */
        a.card { text-decoration: none; color: inherit; display: block; }
        .card-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            background: rgba(59,130,246,0.08);
            padding: 4px 10px;
            border-radius: 999px;
            margin-bottom: 12px;
        }
        .card-link-hint {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 14px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent);
            transition: gap var(--transition);
        }
        a.card:hover .card-link-hint { gap: 8px; }
        .card-link-hint svg { width: 14px; height: 14px; }

        /* ══════════════════════════════════
           KLAMA CORE — ROI-Rechner + Demo
        ══════════════════════════════════ */
        #klama-core {
            background: var(--bg-card);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            position: relative;
        }
        #klama-core::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 64px;
            height: 3px;
            background: var(--accent);
            border-radius: 0 0 4px 4px;
        }
        .kc-section-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 auto 20px;
        }
        .kc-intro {
            max-width: 820px;
            margin: 0 auto 72px;
            padding: 0 24px;
            font-size: 21px;
            line-height: 1.55;
            font-weight: 500;
            color: var(--text-dark);
            text-align: center;
            letter-spacing: -0.2px;
        }
        .kc-intro p { margin: 0; }
        .kc-intro-claim {
            margin-top: 16px !important;
            font-size: 26px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.3px;
        }
        .kc-subheading {
            text-align: center;
            margin: 0 auto 36px;
        }
        .kc-subheading h2 {
            font-size: 1.85rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            color: var(--text-dark);
            margin: 0;
        }
        @media (max-width: 640px) {
            .kc-section-title { font-size: 2.1rem; }
            .kc-intro { font-size: 18px; margin-bottom: 48px; padding: 0 16px; }
            .kc-intro-claim { font-size: 21px; }
            .kc-subheading h2 { font-size: 1.5rem; }
        }
        .kc-card {
            max-width: 980px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 22px;
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }
        .kc-sliders {
            padding: 36px 36px 32px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px 36px;
            border-bottom: 1px solid var(--border-light);
        }
        .kc-slider-row {
            display: flex;
            flex-direction: column;
            gap: 10px;
            --p: 0;
        }
        .kc-slider-head {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 10px;
            min-height: 36px;
        }
        .kc-slider-label {
            font-size: 0.84rem;
            font-weight: 500;
            color: var(--text-mid);
            line-height: 1.35;
            flex: 1;
        }
        .kc-slider-value {
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.025em;
            font-variant-numeric: tabular-nums;
            line-height: 1;
            white-space: nowrap;
        }
        .kc-slider-value .unit {
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-light);
            margin-left: 3px;
        }
        input.kc-range {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--text-dark) 0%, var(--text-dark) calc(var(--p) * 1%), rgba(0,0,0,0.10) calc(var(--p) * 1%), rgba(0,0,0,0.10) 100%);
            border-radius: 999px;
            outline: none;
            cursor: pointer;
            margin: 0;
        }
        input.kc-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px; height: 18px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--text-dark);
            box-shadow: 0 1px 4px rgba(0,0,0,0.15);
            cursor: pointer;
            transition: transform 0.15s ease;
        }
        input.kc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
        input.kc-range::-moz-range-thumb {
            width: 18px; height: 18px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--text-dark);
            box-shadow: 0 1px 4px rgba(0,0,0,0.15);
            cursor: pointer;
        }
        .kc-range-edges {
            display: flex;
            justify-content: space-between;
            font-size: 0.74rem;
            color: var(--text-light);
            margin-top: 2px;
            letter-spacing: 0.02em;
        }

        /* ── Ergebnis-Stripe ── */
        .kc-result {
            display: grid;
            grid-template-columns: 1fr 1fr 1.5fr;
            background: #FAF8F3;
            border-top: 1px solid var(--border-light);
            position: relative;
        }
        .kc-result::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(800px 200px at 100% 50%, rgba(59,130,246,0.06), transparent 60%);
            pointer-events: none;
        }
        .kc-result-tile {
            padding: 28px 26px;
            border-right: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
            z-index: 1;
        }
        .kc-result-tile:last-of-type { border-right: none; }
        .kc-result-tile.primary {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(2px);
        }
        .kc-result-mini-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-light);
        }
        .kc-result-mini-value {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            font-variant-numeric: tabular-nums;
            line-height: 1.1;
        }
        .kc-result-bar {
            margin-top: 4px;
            height: 3px;
            background: rgba(0,0,0,0.06);
            border-radius: 999px;
            overflow: hidden;
        }
        .kc-result-bar > span {
            display: block;
            height: 100%;
            background: var(--text-mid);
            border-radius: inherit;
            transition: width 0.18s ease;
            width: 0%;
        }
        .kc-result-tile.primary .kc-result-bar > span {
            background: var(--accent);
        }
        .kc-result-tile.primary .kc-result-mini-label { color: var(--accent); }
        .kc-result-tile.primary .kc-result-mini-value {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.05;
        }
        .kc-result-hint {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.45;
            margin-top: 2px;
        }

        .kc-result-cta-row {
            grid-column: 1 / -1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 26px;
            background: var(--bg-card);
            border-top: 1px solid var(--border-light);
            gap: 16px;
            flex-wrap: wrap;
        }
        .kc-result-cta-note {
            font-size: 0.86rem;
            color: var(--text-mid);
            flex: 1;
            min-width: 200px;
        }
        .kc-result-cta-note strong {
            color: var(--text-dark);
            font-weight: 700;
        }
        .kc-result-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--text-dark);
            color: #fff;
            padding: 12px 22px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: background var(--transition), transform var(--transition);
        }
        .kc-result-cta:hover {
            background: #000;
            transform: translateY(-1px);
        }
        .kc-result-cta svg { width: 16px; height: 16px; }

        .kc-footnote {
            max-width: 720px;
            margin: 18px auto 0;
            font-size: 0.85rem;
            color: var(--text-light);
            text-align: center;
            line-height: 1.6;
            font-style: italic;
        }

        .kc-demo {
            max-width: 980px;
            margin: 56px auto 0;
        }
        .kc-demo-heading {
            text-align: center;
            margin-bottom: 22px;
        }
        .kc-demo-heading h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }
        .kc-demo-heading p {
            color: var(--text-mid);
            font-size: 0.98rem;
        }
        .kc-demo-frame {
            position: relative;
            aspect-ratio: 16 / 9;
            background: linear-gradient(135deg, #F8FAFF 0%, #FAF8FF 50%, #F8FCFF 100%);
            border: 2px dashed rgba(59,130,246,0.25);
            border-radius: 22px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            color: var(--text-mid);
        }
        .kc-demo-icon {
            width: 76px; height: 76px;
            border-radius: 50%;
            background: rgba(59,130,246,0.08);
            border: 1px solid rgba(59,130,246,0.18);
            display: flex; align-items: center; justify-content: center;
            color: var(--accent);
        }
        .kc-demo-icon svg { width: 30px; height: 30px; margin-left: 4px; }
        .kc-demo-text {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .kc-demo-sub {
            font-size: 0.88rem;
            color: var(--text-light);
        }

        /* ════════════════════════════════════════════════
           INTERAKTIVE DEMO — Chat-Fenster
        ════════════════════════════════════════════════ */
        .demo-chat {
            background: var(--bg-card);
            border: 1px solid rgba(0,0,0,0.10);
            border-radius: 14px;
            box-shadow:
                0 1px 2px rgba(0,0,0,0.04),
                0 8px 22px rgba(0,0,0,0.08),
                0 28px 60px rgba(0,0,0,0.12);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 640px;
            max-height: 80vh;
        }
        /* macOS-Style Titlebar */
        .demo-chat-head {
            position: relative;
            display: flex;
            align-items: center;
            padding: 10px 14px;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            background: linear-gradient(180deg, #F1F1F1 0%, #E6E6E6 100%);
            flex-shrink: 0;
            min-height: 36px;
        }
        .demo-traffic-lights {
            display: inline-flex;
            gap: 8px;
            align-items: center;
        }
        .demo-traffic-lights .tl {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
            box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.12);
        }
        .demo-traffic-lights .tl-red    { background: #FF5F57; }
        .demo-traffic-lights .tl-yellow { background: #FEBC2E; }
        .demo-traffic-lights .tl-green  { background: #28C840; }
        .demo-chat-title {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.84rem;
            font-weight: 600;
            color: var(--text-mid);
            letter-spacing: -0.01em;
            white-space: nowrap;
            pointer-events: none;
        }
        .demo-chat-body {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            padding: 22px 22px 16px;
            scroll-behavior: smooth;
            background: var(--bg-body);
        }
        .demo-chat-inner {
            max-width: 720px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .demo-welcome {
            padding: 18px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            color: var(--text-mid);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .demo-welcome strong { color: var(--text-dark); font-weight: 600; }
        .demo-chips {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 14px;
        }
        .demo-chip {
            text-align: left;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 12px 14px;
            font-size: 0.92rem;
            font-family: inherit;
            color: var(--text-dark);
            cursor: pointer;
            line-height: 1.45;
            transition: border-color var(--transition), transform var(--transition), background var(--transition);
            position: relative;
            padding-right: 36px;
        }
        .demo-chip:hover:not(:disabled) {
            border-color: var(--accent);
            background: rgba(59,130,246,0.04);
            transform: translateY(-1px);
        }
        .demo-chip:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .demo-chip.gestellt {
            opacity: 0.35;
            text-decoration: line-through;
            text-decoration-color: var(--text-light);
        }
        .demo-chip::after {
            content: "→";
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-weight: 700;
            font-size: 0.95rem;
            opacity: 0.6;
        }

        .demo-msg {
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }
        .demo-msg.user { justify-content: flex-end; }
        .demo-avatar {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: var(--text-dark);
            color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-size: 10px; font-weight: 700;
            flex-shrink: 0;
            position: relative;
            margin-bottom: 4px;
        }
        .demo-bubble {
            max-width: 78%;
            padding: 12px 16px;
            font-size: 0.95rem;
            line-height: 1.65;
            border-radius: 14px;
            color: var(--text-dark);
        }
        .demo-msg.user .demo-bubble {
            background: var(--text-dark);
            color: #fff;
        }
        .demo-msg.assistant .demo-bubble {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
        }
        .demo-bubble p { margin: 0; }
        .demo-bubble p + p { margin-top: 10px; }
        .demo-bubble strong { color: var(--text-dark); font-weight: 700; }
        .demo-bubble ul {
            margin: 6px 0 0 18px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .demo-bubble ul li { padding: 0; }

        .demo-status-dot {
            position: absolute;
            top: -1px; right: -1px;
            width: 9px; height: 9px;
            border-radius: 50%;
            border: 2px solid var(--bg-body);
            box-sizing: content-box;
            cursor: help;
        }
        .demo-status-dot.HIGH   { background: #22c55e; }
        .demo-status-dot.MEDIUM { background: #eab308; }
        .demo-status-dot.LOW    { background: #ef4444; }
        .demo-status-dot[title] { /* native title als Tooltip — reicht für Demo */ }

        .demo-typing {
            display: inline-flex;
            gap: 4px;
            padding: 6px 0;
        }
        .demo-typing span {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--text-light);
            animation: demoTypingBounce 1.2s infinite ease-in-out;
        }
        .demo-typing span:nth-child(2) { animation-delay: 0.15s; }
        .demo-typing span:nth-child(3) { animation-delay: 0.3s; }
        @keyframes demoTypingBounce {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
            30%           { transform: translateY(-4px); opacity: 1; }
        }

        .demo-quellen {
            margin-top: 12px;
            padding-top: 10px;
            border-top: 1px solid var(--border-light);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .demo-quellen-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-light);
            margin-right: 4px;
        }
        .demo-quelle {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 9px;
            background: rgba(0,0,0,0.03);
            border: 1px solid var(--border-light);
            border-radius: 999px;
            font-size: 0.78rem;
            color: var(--text-mid);
            cursor: pointer;
            font-family: inherit;
            transition: background var(--transition), border-color var(--transition), color var(--transition);
        }
        .demo-quelle:hover {
            background: rgba(59,130,246,0.06);
            border-color: rgba(59,130,246,0.25);
            color: var(--text-dark);
        }
        .demo-quelle-icon {
            width: 12px; height: 12px;
            border-radius: 2px;
            display: inline-block;
            font-size: 8px;
            font-weight: 700;
            color: #fff;
            line-height: 12px;
            text-align: center;
            flex-shrink: 0;
        }
        .demo-quelle-icon.docx { background: #2b579a; }
        .demo-quelle-icon.pdf  { background: #d93a3a; }

        .demo-chat-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 18px;
            border-top: 1px solid var(--border-light);
            background: var(--bg-card);
            flex-shrink: 0;
            font-size: 0.82rem;
            color: var(--text-light);
        }
        .demo-reset {
            background: transparent;
            border: 1px solid var(--border-light);
            color: var(--text-mid);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.82rem;
            font-family: inherit;
            cursor: pointer;
            transition: all var(--transition);
        }
        .demo-reset:hover:not(:disabled) {
            border-color: var(--accent);
            color: var(--text-dark);
            background: rgba(59,130,246,0.04);
        }
        .demo-reset:disabled { opacity: 0.4; cursor: not-allowed; }

        /* Quellen-Klick-Modal (kompakt) */
        #demoQuelleModal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(15,15,15,0.45);
            align-items: center;
            justify-content: center;
        }
        #demoQuelleModal.aktiv { display: flex; }
        .demo-modal-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            box-shadow: 0 18px 60px rgba(0,0,0,0.18);
            width: min(420px, calc(100vw - 32px));
            padding: 22px 24px 20px;
            position: relative;
            animation: demoModalIn 0.18s ease-out;
        }
        @keyframes demoModalIn {
            from { opacity: 0; transform: translateY(8px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .demo-modal-close {
            position: absolute;
            top: 10px; right: 12px;
            width: 28px; height: 28px;
            border: none;
            background: transparent;
            color: var(--text-light);
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .demo-modal-close:hover { background: rgba(0,0,0,0.05); color: var(--text-dark); }
        .demo-modal-head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .demo-modal-titel {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
            word-break: break-all;
        }
        .demo-modal-hint {
            font-size: 0.88rem;
            color: var(--text-mid);
            line-height: 1.55;
            padding: 12px 14px;
            background: rgba(59,130,246,0.06);
            border-radius: 10px;
            border: 1px solid rgba(59,130,246,0.15);
        }

        @media (max-width: 820px) {
            .kc-sliders {
                grid-template-columns: 1fr;
                padding: 28px 22px;
                gap: 22px;
            }
            .kc-result {
                grid-template-columns: 1fr 1fr;
            }
            .kc-result-tile {
                padding: 22px 20px;
            }
            .kc-result-tile.primary {
                grid-column: 1 / -1;
                border-right: none;
                border-top: 1px solid var(--border-light);
            }
            .kc-result-tile:nth-child(1) { border-right: 1px solid var(--border-light); }
            .kc-result-tile:nth-child(2) { border-right: none; }
            .kc-result-tile.primary .kc-result-mini-value { font-size: 2rem; }
            .kc-demo { margin-top: 40px; }
            .kc-slider-value { font-size: 1.35rem; }
            .demo-chips { grid-template-columns: 1fr; }
            .demo-chat { height: 560px; }
            .demo-bubble { max-width: 88%; font-size: 0.9rem; }
            .demo-chat-title { font-size: 0.78rem; }
        }
        @media (max-width: 480px) {
            .demo-chat-title { display: none; }
        }

        /* ══════════════════════════════════
           PRODUKT-ABSCHNITTE
        ══════════════════════════════════ */
        .produkt {
            background: var(--bg-body);
            border-top: 1px solid var(--border-light);
            position: relative;
        }
        .produkt.alt {
            background: var(--bg-card);
        }
        /* Klarer Akzent-Strip oben — markiert jeden Produkt-Abschnitt als eigenständig */
        .produkt::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 64px;
            height: 3px;
            background: var(--accent);
            border-radius: 0 0 4px 4px;
        }
        .produkt-grid {
            max-width: 980px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }
        .produkt-text { display: flex; flex-direction: column; gap: 16px; }
        .produkt-text h2 {
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            color: var(--text-dark);
            line-height: 1.15;
        }
        .produkt-text p {
            font-size: 1.05rem;
            color: var(--text-mid);
            line-height: 1.65;
        }
        .produkt-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 0;
        }
        .produkt-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.55;
            padding: 14px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }
        .produkt.alt .produkt-features li { background: var(--bg-body); }
        .produkt-features li::before {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            margin-top: 8px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }
        .produkt-icon-row {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 4px;
        }
        .produkt-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .produkt-icon svg { width: 18px; height: 18px; stroke-width: 2; }
        .produkt-icon.transkription { background: rgba(139,92,246,0.08); color: #8B5CF6; }
        .produkt-icon.compliance    { background: rgba(6,182,212,0.08);  color: #06B6D4; }
        .produkt-icon.individuell   { background: rgba(236,72,153,0.08); color: #EC4899; }

        /* ── Anpassungs-Hinweis (zwischen Features und Demo) ── */
        .tr-anpass-hinweis {
            max-width: 880px;
            margin: 36px auto 0;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 20px;
            background: rgba(0,0,0,0.025);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            font-size: 0.92rem;
            line-height: 1.6;
            color: var(--text-mid);
        }
        .tr-anpass-hinweis .ic {
            flex-shrink: 0;
            width: 22px; height: 22px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            font-weight: 700;
            margin-top: 1px;
        }
        .tr-anpass-hinweis strong { color: var(--text-dark); font-weight: 600; }
        @media (max-width: 640px) {
            .tr-anpass-hinweis { font-size: 0.88rem; padding: 14px 16px; }
        }

        /* ── Transkriptions-Demo (Audio + Video nebeneinander) ── */
        .tr-demo-wrap {
            max-width: 1080px;
            margin: 56px auto 0;
        }
        .tr-demo-head {
            text-align: center;
            margin-bottom: 24px;
        }
        .tr-demo-head h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }
        .tr-demo-head p {
            color: var(--text-mid);
            font-size: 0.98rem;
        }
        .tr-demo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: stretch;
        }
        .tr-demo-card {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .tr-demo-num {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.01em;
        }
        .tr-demo-num .num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px; height: 22px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            margin-right: 8px;
            vertical-align: -2px;
        }
        /* Audio-Box */
        .tr-audio-frame {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            box-shadow: var(--shadow-card);
            padding: 22px 22px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
            min-height: 220px;
        }
        .tr-audio-icon {
            width: 56px; height: 56px;
            flex-shrink: 0;
            border-radius: 14px;
            background: rgba(139,92,246,0.10);
            color: #8B5CF6;
            display: flex; align-items: center; justify-content: center;
        }
        .tr-audio-icon svg { width: 26px; height: 26px; }
        .tr-audio-body { flex: 1; min-width: 0; }
        .tr-audio-label {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        .tr-audio-body audio {
            width: 100%;
            height: 40px;
        }
        /* macOS-Fenster für das Video */
        .tr-video-frame {
            background: var(--bg-card);
            border: 1px solid rgba(0,0,0,0.10);
            border-radius: 14px;
            box-shadow:
                0 1px 2px rgba(0,0,0,0.04),
                0 8px 22px rgba(0,0,0,0.08),
                0 28px 60px rgba(0,0,0,0.12);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .tr-video-titlebar {
            position: relative;
            display: flex;
            align-items: center;
            padding: 10px 14px;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            background: linear-gradient(180deg, #F1F1F1 0%, #E6E6E6 100%);
            flex-shrink: 0;
            min-height: 36px;
        }
        .tr-video-lights { display: inline-flex; gap: 8px; }
        .tr-video-lights .tl {
            width: 12px; height: 12px;
            border-radius: 50%;
            box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.12);
            display: inline-block;
        }
        .tr-video-lights .tl-red    { background: #FF5F57; }
        .tr-video-lights .tl-yellow { background: #FEBC2E; }
        .tr-video-lights .tl-green  { background: #28C840; }
        .tr-video-title {
            position: absolute;
            left: 50%; top: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-mid);
            letter-spacing: -0.01em;
            white-space: nowrap;
            pointer-events: none;
        }
        .tr-video-frame video {
            display: block;
            width: 100%;
            height: auto;
            background: #000;
        }
        .tr-demo-foot {
            text-align: center;
            font-size: 0.82rem;
            color: var(--text-light);
            margin-top: 22px;
            line-height: 1.5;
        }

        @media (max-width: 820px) {
            .produkt-grid { grid-template-columns: 1fr; gap: 28px; }
            .produkt-text h2 { font-size: 1.7rem; }
            .tr-demo-grid { grid-template-columns: 1fr; gap: 22px; }
            .tr-demo-wrap { margin-top: 40px; }
            .tr-audio-frame { min-height: 0; }
            .tr-video-title { font-size: 0.74rem; }
        }
        @media (max-width: 480px) {
            .tr-video-title { display: none; }
        }

        /* ══════════════════════════════════
           UEBER UNS — Dark
        ══════════════════════════════════ */
        #ueber-uns {
            background: var(--bg-dark);
            color: var(--text-on-dark);
            position: relative;
            overflow: hidden;
        }
        #ueber-uns::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -10%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .ueber-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .ueber-text .section-label { margin-bottom: 14px; }
        .ueber-text h2 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
            color: #fff;
        }
        .ueber-text p {
            color: var(--text-on-dark-2);
            font-size: 1.02rem;
            margin-bottom: 18px;
            line-height: 1.8;
        }
        .merkmale {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 28px;
        }
        .merkmale li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.96rem;
            color: var(--text-on-dark);
        }
        .merkmal-check {
            width: 22px; height: 22px;
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .merkmal-check-1 { background: rgba(59,130,246,0.15); color: #60A5FA; }
        .merkmal-check-2 { background: rgba(139,92,246,0.15); color: #A78BFA; }
        .merkmal-check-3 { background: rgba(6,182,212,0.15); color: #22D3EE; }
        .merkmal-check-4 { background: rgba(236,72,153,0.12); color: #F472B6; }

        .werte {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .wert {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 18px;
            padding: 28px 20px;
            text-align: center;
            transition: all var(--transition);
        }
        .wert:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(255,255,255,0.12);
            transform: translateY(-2px);
        }
        .wert-zahl {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 4px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .wert-label {
            font-size: 0.88rem;
            color: var(--text-on-dark-2);
        }

        /* ══════════════════════════════════
           KONTAKT
        ══════════════════════════════════ */
        #kontakt { background: var(--bg-body); }
        .kontakt-box {
            max-width: 580px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 52px 44px;
            text-align: center;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .kontakt-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--gradient);
        }
        .kontakt-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .kontakt-box p {
            color: var(--text-mid);
            font-size: 1.02rem;
            margin-bottom: 32px;
            line-height: 1.7;
        }
        .kontakt-mail {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--text-dark);
            color: #fff;
            padding: 15px 32px;
            border-radius: 14px;
            font-size: 1.08rem;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition);
        }
        .kontakt-mail:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .kontakt-detail {
            margin-top: 24px;
            color: var(--text-light);
            font-size: 0.92rem;
        }

        /* ══════════════════════════════════
           FOOTER
        ══════════════════════════════════ */
        footer {
            background: var(--bg-footer);
            border-top: 1px solid var(--border-dark);
            padding: 36px 32px;
        }
        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
        }
        footer p { color: rgba(255,255,255,0.35); font-size: 0.88rem; }
        .footer-austria {
            color: rgba(255,255,255,0.3);
            font-size: 0.84rem;
            letter-spacing: 0.02em;
            text-align: center;
        }
        .footer-inner a { text-align: right; }
        footer a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color var(--transition);
        }
        footer a:hover { color: rgba(255,255,255,0.7); }

        /* ══════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════ */
        @media (max-width: 1100px) {
            .cards { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 820px) {
            .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
            .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
            .werte { order: -1; }
            .hero { padding: 80px 20px 90px; }
            .hero h1 { font-size: 2rem; }
            .hero-sub { font-size: 1.08rem; }
            section { padding: 72px 20px; }
        }

        /* ══════════════════════════════════
           PREISE
        ══════════════════════════════════ */
        #preise { background: var(--bg-body); }
        .preise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            max-width: 1120px;
            margin: 0 auto;
            align-items: stretch;
        }
        .tier-dsgvo {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 14px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(22,163,74,0.08);
            color: #15803D;
            font-size: 0.74rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            align-self: flex-start;
        }
        .tier-dsgvo svg { width: 12px; height: 12px; }
        .tier-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 18px;
            padding: 32px 28px 30px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .tier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
        .tier-card.tier-featured {
            border: 2px solid var(--accent);
            box-shadow: 0 14px 44px rgba(59,130,246,0.14), 0 2px 8px rgba(0,0,0,0.04);
            position: relative;
            transform: translateY(-6px);
        }
        .tier-card.tier-featured:hover { transform: translateY(-10px); }
        .tier-badge {
            position: absolute;
            top: -13px; left: 50%; transform: translateX(-50%);
            background: var(--gradient);
            color: #fff;
            font-size: 0.74rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 6px 14px;
            border-radius: 999px;
            white-space: nowrap;
        }
        .tier-label {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .tier-name {
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }
        .tier-subtitle {
            font-size: 0.92rem;
            color: var(--text-mid);
            line-height: 1.5;
            margin: 0 0 22px;
            min-height: 56px;
        }
        .tier-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            margin-bottom: 26px;
            line-height: 1.1;
        }
        .tier-price-unit {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-mid);
            letter-spacing: 0;
        }
        .tier-desc {
            font-size: 0.96rem;
            color: var(--text-mid);
            line-height: 1.6;
            margin-bottom: 22px;
            min-height: 88px;
        }
        .tier-features {
            list-style: none;
            margin: 0 0 26px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .tier-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.93rem;
            color: var(--text-dark);
            line-height: 1.5;
        }
        .tier-features li::before {
            content: "✓";
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
            font-size: 0.95rem;
            line-height: 1.45;
        }
        .tier-cta {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 18px;
            border-radius: 10px;
            background: var(--text-dark);
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: background var(--transition), transform var(--transition);
        }
        .tier-cta:hover { background: #000; transform: translateY(-1px); }
        .tier-card.tier-featured .tier-cta { background: var(--accent); }
        .tier-card.tier-featured .tier-cta:hover { background: #2563EB; }
        .preise-note {
            max-width: 760px;
            margin: 36px auto 0;
            padding: 18px 22px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            font-size: 0.93rem;
            color: var(--text-mid);
            text-align: center;
            line-height: 1.6;
        }
        .preise-intro {
            max-width: 760px;
            margin: 0 auto 40px;
            text-align: center;
            font-size: 1.05rem;
            color: var(--text-mid);
            line-height: 1.6;
        }
        .preise-cta-wrap {
            display: flex;
            justify-content: center;
            margin-top: 26px;
        }
        .preise-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 12px;
            background: var(--text-dark);
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: background var(--transition), transform var(--transition);
        }
        .preise-cta:hover { background: #000; transform: translateY(-1px); }
        .preise-cta svg { width: 16px; height: 16px; }

        /* ══════════════════════════════════
           FAQ
        ══════════════════════════════════ */
        #faq { background: var(--bg-card); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
        .faq-liste {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-body);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .faq-item[open] {
            border-color: rgba(59,130,246,0.4);
            box-shadow: 0 4px 18px rgba(59,130,246,0.06);
        }
        .faq-item > summary {
            list-style: none;
            cursor: pointer;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            transition: background var(--transition);
        }
        .faq-item > summary::-webkit-details-marker { display: none; }
        .faq-item > summary:hover { background: rgba(59,130,246,0.04); }
        .faq-icon {
            width: 22px; height: 22px;
            flex-shrink: 0;
            color: var(--accent);
            transition: transform var(--transition);
        }
        .faq-item[open] .faq-icon { transform: rotate(45deg); }
        .faq-body {
            padding: 0 22px 20px;
            color: var(--text-mid);
            font-size: 0.96rem;
            line-height: 1.7;
        }
        .faq-body p + p { margin-top: 10px; }
        .faq-body ol { margin: 8px 0 0 22px; }
        .faq-body ol li { margin-bottom: 4px; }

        /* ══════════════════════════════════
           LEGAL (Impressum + Datenschutz)
        ══════════════════════════════════ */
        .legal-section { background: var(--bg-body); padding: 80px 32px; }
        .legal-section.alt { background: var(--bg-card); border-top: 1px solid var(--border-light); }
        .legal-inner {
            max-width: 820px;
            margin: 0 auto;
        }
        .legal-inner h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.025em;
            margin-bottom: 8px;
        }
        .legal-lead {
            color: var(--text-mid);
            font-size: 1rem;
            margin-bottom: 32px;
        }
        .legal-inner h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 26px 0 8px;
        }
        .legal-inner p, .legal-inner ul, .legal-inner ol {
            color: var(--text-mid);
            font-size: 0.95rem;
            line-height: 1.75;
        }
        .legal-inner ul, .legal-inner ol { margin-left: 22px; }
        .legal-inner a { color: var(--accent); text-decoration: none; }
        .legal-inner a:hover { text-decoration: underline; }
        .legal-platzhalter {
            display: inline-block;
            padding: 1px 6px;
            background: rgba(59,130,246,0.08);
            color: var(--accent);
            border-radius: 4px;
            font-size: 0.88em;
            font-weight: 600;
        }
        .legal-stand {
            margin-top: 28px;
            padding-top: 16px;
            border-top: 1px solid var(--border-light);
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .legal-back {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 28px;
            color: var(--text-mid);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
        }
        .legal-back:hover { color: var(--text-dark); }
        .legal-back svg { flex-shrink: 0; }

        /* Footer-Links für Legal-Bereich */
        .footer-legal {
            display: flex;
            gap: 18px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        .footer-legal a { font-size: 0.84rem; }

        @media (max-width: 1080px) {
            .preise-grid { grid-template-columns: 1fr; max-width: 460px; }
            .tier-subtitle { min-height: 0; }
            .tier-desc { min-height: 0; }
        }

        @media (max-width: 540px) {
            .nav-label { display: none; }
            .nav-sep {
                width: 100%;
                height: 1px;
                margin: 6px 0;
            }
            .nav-links .nav-right { margin-left: 0; }
            .nav-links { display: none; }
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 68px;
                left: 0; right: 0;
                background: var(--bg-header);
                backdrop-filter: blur(24px);
                border-bottom: 1px solid var(--border-light);
                padding: 12px 20px;
                gap: 4px;
            }
            .nav-toggle { display: block; }
            .merkmale { grid-template-columns: 1fr; }
            .kontakt-box { padding: 36px 24px; }
            .footer-inner { grid-template-columns: 1fr; gap: 8px; text-align: center; }
            .footer-inner a { text-align: center; }
            .hero h1 { font-size: 1.7rem; }
            .hero-buttons { flex-direction: column; align-items: center; }
        }
