
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;600;800&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb;
            color: #1a1a1a;
        }
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }
        .newspaper-border {
            border-top: 8px solid #111827;
        }
        .dropcap::first-letter {
            font-family: 'Playfair Display', serif;
            float: left;
            font-size: 5rem;
            line-height: 0.7;
            padding-top: 8px;
            padding-right: 12px;
            color: #1d4ed8;
            font-weight: 900;
        }
        .bg-police {
            background-color: #0f172a;
        }
        .dominanz-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-left: 4px solid #3b82f6;
        }
        .buerger-quote {
            position: relative;
            padding-left: 2rem;
        }
        .buerger-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            font-family: 'Playfair Display', serif;
            color: #d1d5db;
        }

        /* ===== CONVERSION OPTIMIERUNG ===== */

        .sticky-cta-bar {
            position: fixed;
            bottom: -100%;
            left: 0;
            right: 0;
            z-index: 100;
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
            transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(10px);
        }
        .sticky-cta-bar.visible {
            bottom: 0;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
            50% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
        }
        .cta-pulse {
            animation: pulse-glow 2s infinite;
        }

        .countdown-digit {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            padding: 4px 8px;
            font-variant-numeric: tabular-nums;
            min-width: 36px;
            text-align: center;
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #ef4444);
            z-index: 200;
            transition: width 0.1s linear;
        }

        .exit-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            z-index: 300;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .exit-overlay.show {
            display: flex;
            opacity: 1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(-2deg); }
            50% { transform: translateY(-6px) rotate(2deg); }
        }
        .float-badge {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes highlight-flash {
            0% { background-color: transparent; }
            50% { background-color: rgba(239, 68, 68, 0.1); }
            100% { background-color: transparent; }
        }
        .highlight-row:hover {
            animation: highlight-flash 0.8s ease;
        }

        .gradient-text {
            background: linear-gradient(135deg, #3b82f6, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .trust-badge {
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        .trust-badge:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59,130,246,0.15);
        }

        .inline-cta {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid #f59e0b;
            position: relative;
            overflow: hidden;
        }
        .inline-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            animation: shimmer 3s infinite;
        }
        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .ticker-animation {
            animation: ticker 20s linear infinite;
        }

        @media (max-width: 900px) {
            .dropcap::first-letter {
                font-size: 4rem;
                padding-top: 4px;
                padding-right: 10px;
            }

            .countdown-digit {
                min-width: 32px;
                padding: 3px 6px;
            }

            .sticky-cta-bar {
                box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.28);
            }

            .ticker-animation {
                animation-duration: 26s;
            }
        }

        @media (max-width: 640px) {
            #urgencyBanner {
                padding-top: 8px !important;
                padding-bottom: 8px !important;
            }

            #countdownTimer {
                font-size: 12px !important;
            }

            .countdown-digit {
                min-width: 28px;
                padding: 2px 6px;
                border-radius: 5px;
            }

            .dropcap::first-letter {
                font-size: 3rem;
                line-height: 0.8;
                padding-right: 8px;
            }

            .buerger-quote {
                padding-left: 1.3rem;
            }

            .buerger-quote::before {
                font-size: 2.1rem;
                top: -6px;
            }

            .scroll-progress {
                height: 2px;
            }
        }
