        :root {
            --besa-dark: #0f172a;
            --besa-blue: #1C2B39;
            --besa-blue-light: #2c5a85;
            --besa-accent: #2c5a85;
            --besa-orange: #F39200;
            --besa-orange-hover: #d97706;
            --besa-green: #10b981;
            --besa-red: #ef4444;
            --bg-light: #f8fafc;
            --text-main: #334155;
            --text-muted: #64748b;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .text-center { text-align: center; }

        /* --- Typografie --- */
        h1, h2, h3, h4 { color: var(--besa-blue); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
        p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; }
        
        .badge { 
            background: rgba(243, 146, 0, 0.1); color: var(--besa-orange); 
            padding: 6px 16px; border-radius: 99px; font-weight: 800; 
            font-size: 13px; text-transform: uppercase; display: inline-block; margin-bottom: 20px; letter-spacing: 1px;
        }
        .badge.blue { background: rgba(44, 90, 133, 0.1); color: var(--besa-accent); }
        .badge.red { background: rgba(239, 68, 68, 0.1); color: var(--besa-red); }

        /* --- Buttons --- */
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 18px 36px; border-radius: 12px; font-size: 16px; font-weight: 800;
            text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer;
            text-transform: uppercase; letter-spacing: 1px; text-align: center;
        }
        .btn-primary { background-color: var(--besa-orange); color: white !important; box-shadow: 0 10px 20px rgba(243, 146, 0, 0.3); }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(243, 146, 0, 0.4); background: var(--besa-orange-hover); }
        .btn-dark { background: var(--besa-blue); color: white !important; }
        .btn-dark:hover { background: var(--besa-dark); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(15, 23, 42, 0.3); }
        .btn-outline { background: transparent; color: var(--white) !important; border: 2px solid rgba(255,255,255,0.3); }
        .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

        /* --- ORIGINAL HERO --- */
        .hero {
            background: radial-gradient(circle at 70% 30%, #2c4a63, var(--besa-blue));
            color: white; padding: 40px 0 200px; text-align: center;
            clip-path: ellipse(160% 100% at 50% 0%); position: relative;
        }
        .hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 30px; letter-spacing: -1px; color: white; }
        .hero h1 span { color: var(--besa-orange); }
        .hero p { font-size: 1.6rem; opacity: 0.95; max-width: 900px; margin: 0 auto 50px; line-height: 1.5; color: #cbd5e1; }

        /* --- Demos Section --- */
        .demo-box {
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px; padding: 40px; max-width: 1000px; margin: 0 auto; backdrop-filter: blur(10px);
        }
        .demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .demo-card { background: white; border-radius: 16px; padding: 30px; text-align: left; color: var(--besa-dark); transition: transform 0.3s; }
        .demo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
        .demo-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--besa-dark); }
        .demo-card p { font-size: 1rem; color: var(--text-muted); margin-bottom: 25px; }

        /* --- Testimonial --- */
        .testimonial {
            background: white; border-radius: 20px; padding: 40px; max-width: 900px; margin: -80px auto 80px;
            box-shadow: var(--shadow-xl); position: relative; z-index: 10; border: 1px solid var(--border);
            text-align: center;
        }
        .testimonial .stars { color: var(--besa-orange); font-size: 24px; margin-bottom: 20px; letter-spacing: 5px; }
        .testimonial blockquote { font-size: 1.5rem; font-style: italic; color: var(--besa-dark); font-weight: 600; margin-bottom: 20px; line-height: 1.4; }
        .testimonial .author { font-size: 1rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

        /* --- Sektionen --- */
        .section { padding: 100px 0; }
        .section.bg-gray { background: var(--bg-light); }
        
        .section-header { text-align: center; max-width: 900px; margin: 0 auto 80px; }
        .section-header h2 { font-size: 3.5rem; margin-bottom: 25px; letter-spacing: -1px; }
        .section-header p { font-size: 1.3rem; color: var(--text-muted); }

        /* --- ROI / Nutzen (3 Spalten) --- */
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .benefit-card { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: transform 0.3s; }
        .benefit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
        .benefit-card .icon { font-size: 40px; margin-bottom: 20px; display: block; }
        .benefit-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .benefit-card p { font-size: 1rem; margin-bottom: 0; }

        /* --- Split Layouts (Features) --- */
        .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
        .split-grid.reverse .text-col { order: 2; }
        .split-grid.reverse .visual-col { order: 1; }
        
        .text-col h3 { font-size: 2.2rem; margin-bottom: 20px; }
        
        .check-list { list-style: none; margin: 30px 0; }
        .check-list li { position: relative; padding-left: 35px; margin-bottom: 20px; font-weight: 600; font-size: 1.1rem; color: var(--besa-dark); }
        .check-list li::before { 
            content: "✓"; position: absolute; left: 0; top: 2px;
            background: var(--besa-green); color: white; width: 22px; height: 22px;
            display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px;
        }

        /* --- FIXED PHONE MOCKUP SIZE --- */
        .phone-mockup {
            max-width: 240px; /* VERKLEINERT WIE GEWÜNSCHT */
            margin: 0 auto; 
            border: 10px solid var(--besa-dark); 
            border-radius: 32px; 
            overflow: hidden; 
            box-shadow: var(--shadow-xl); 
            position: relative;
        }
        .phone-mockup img { 
            width: 100%; 
            display: block; 
        }

        /* --- Desktop Mockup --- */
        .desktop-mockup {
            background: #e2e8f0; border-radius: 12px 12px 0 0; padding-top: 30px; position: relative;
            box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--border);
        }
        .desktop-mockup::before {
            content: ''; position: absolute; top: 10px; left: 15px; width: 12px; height: 12px;
            border-radius: 50%; background: #ef4444; box-shadow: 20px 0 0 #f59e0b, 40px 0 0 #10b981;
        }
        .desktop-mockup img { width: 100%; display: block; border-top: 1px solid var(--border); }

        /* --- Feature Cards --- */
        .f-card { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-md); border: 1px solid var(--border); height: 100%; }
        .f-card .icon { font-size: 40px; margin-bottom: 20px; display: block; }
        .f-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .f-card p { font-size: 1.05rem; margin-bottom: 0; }

        /* --- Viral Network Section --- */
        .viral-box { background: var(--besa-dark); color: white; padding: 80px; border-radius: 30px; position: relative; overflow: hidden; }
        .viral-box::after {
            content: '∞'; position: absolute; right: -50px; bottom: -100px; font-size: 400px; color: rgba(255,255,255,0.03); line-height: 1;
        }
        .viral-step { background: rgba(255,255,255,0.1); padding: 25px; border-radius: 16px; margin-bottom: 15px; display: flex; align-items: center; gap: 20px; }
        .viral-step .num { background: var(--besa-orange); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 20px; flex-shrink: 0; }
        .viral-step p { margin: 0; color: white; font-weight: 600; font-size: 1.1rem; }

        /* --- Pricing Table --- */
        .pricing-wrap { padding: 120px 0; background: var(--bg-light); }
        .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
        .price-card { background: white; border: 1px solid var(--border); padding: 50px; border-radius: 24px; text-align: center; position: relative; box-shadow: var(--shadow-md); }
        .price-card.featured { transform: scale(1.05); border-color: var(--besa-orange); z-index: 10; box-shadow: var(--shadow-xl); border-width: 2px; }
        .price-card h3 { font-size: 2rem; margin-bottom: 10px; }
        .price-card .amount { font-size: 4.5rem; font-weight: 900; margin: 15px 0 30px; display: block; line-height: 1; color: var(--besa-dark); }
        .price-card .amount span { font-size: 1.2rem; opacity: 0.6; font-weight: 600; }
        .exklusiv-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--besa-orange); color: white; padding: 8px 20px; border-radius: 99px; font-weight: 900; font-size: 12px; letter-spacing: 1.5px; }

        .price-features { list-style: none; text-align: left; margin-bottom: 40px; }
        .price-features li { margin-bottom: 12px; font-size: 1rem; display: flex; align-items: flex-start; gap: 10px; }
        .price-features li::before { content: "✓"; color: var(--besa-green); font-weight: bold; }

        /* --- Footer --- */
        .footer { padding: 80px 0 40px; text-align: center; background: var(--besa-dark); color: white; }
        .footer h2 { color: white; font-size: 3rem; margin-bottom: 30px; }
        .footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; font-size: 0.9rem; }
        .footer a { color: var(--besa-orange); text-decoration: none; }
        /* FIX: Anrufbutton Kontrast */
        .footer a.btn { color: white !important; }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .grid-2, .grid-3, .demo-grid, .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
            .grid-2.reverse .text-col { order: 1; }
            .grid-2.reverse .visual-col { order: 2; }
            .price-card.featured { transform: none; }
            .hero { clip-path: none; padding: 80px 0 100px; }
            .testimonial { margin: -40px 20px 60px; }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .section-header h2, .text-col h3, .pricing-wrap h2, .footer h2 { font-size: 2.2rem; }
            .btn { width: 100%; }
            .viral-box { padding: 40px 20px; }
        }
