:root {
            /* Petrol Farbpalette */
            --primary: #0D7377;
            --primary-dark: #095456;
            --primary-light: #14A3A8;
            --primary-glow: rgba(13, 115, 119, 0.4);
            
            /* Gelb Akzentfarbe */
            --accent: #F5B800;
            --accent-light: #FFD54F;
            --accent-dark: #C99700;
            --accent-glow: rgba(245, 184, 0, 0.4);
            
            /* Neutrale Farben - VERBESSERTE KONTRASTE */
            --dark: #0A1628;
            --dark-soft: #132238;
            --gray: #94A3B8;           /* aufgehellt für bessere Lesbarkeit */
            --gray-light: #CBD5E1;     /* deutlich aufgehellt */
            --gray-dark: #64748B;      /* für helle Sektionen */
            --light: #F1F5F9;
            --light-soft: #E2E8F0;
            --white: #FFFFFF;
            
            /* Helle Sektion Farben */
            --section-light-bg: #F8FAFC;
            --section-light-text: #1E293B;
            --section-light-muted: #475569;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #0D7377 0%, #14A3A8 50%, #0D7377 100%);
            --gradient-accent: linear-gradient(135deg, #F5B800 0%, #FFD54F 50%, #F5B800 100%);
            --gradient-hero: linear-gradient(135deg, #0D7377 0%, #095456 100%);
            --gradient-dark: linear-gradient(180deg, #0A1628 0%, #132238 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            
            /* Shadows */
            --shadow-glow: 0 0 60px rgba(13, 115, 119, 0.3);
            --shadow-accent: 0 0 40px rgba(245, 184, 0, 0.3);
            --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-card-light: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            
            /* Border Radius */
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Animated Background */
        .bg-animated {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: var(--gradient-dark);
        }

        .bg-animated::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%, rgba(13, 115, 119, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(245, 184, 0, 0.08) 0%, transparent 50%);
            animation: bgPulse 15s ease-in-out infinite;
        }

        @keyframes bgPulse {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-5%, -5%) scale(1.1); }
        }

        /* ==================== */
        /* SHRINK NAVBAR        */
        /* ==================== */
        .navbar-custom {
            background: transparent;
            padding: 1.5rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid transparent;
        }

        .navbar-custom.scrolled {
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(20px);
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(13, 115, 119, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .navbar-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--white) !important;
            transition: all 0.4s ease;
        }

        .navbar-custom.scrolled .navbar-brand {
            font-size: 1.5rem;
        }

        .navbar-brand span {
            color: var(--accent);
        }

        .nav-link {
            color: var(--gray-light) !important;
            font-weight: 500;
            padding: 0.5rem 1.25rem !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--white) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 60%;
        }

        /* Buttons */
        .btn-glow {
            background: var(--gradient-accent);
            border: none;
            color: var(--dark);
            font-weight: 700;
            padding: 1rem 2rem;
            border-radius: var(--radius-sm);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(245, 184, 0, 0.3);
        }

        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }

        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 60px rgba(245, 184, 0, 0.5);
            color: var(--dark);
        }

        .btn-glow:hover::before {
            left: 100%;
        }

        .btn-outline-glow {
            background: transparent;
            border: 2px solid var(--primary-light);
            color: var(--white);
            font-weight: 600;
            padding: 0.9rem 2rem;
            border-radius: var(--radius-sm);
            transition: all 0.4s ease;
        }

        .btn-outline-glow:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(13, 115, 119, 0.4);
        }

        /* ==================== */
        /* HERO WITH VIDEO      */
        /* ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero > .container {
            position: relative;
            z-index: 10;
        }

        .hero-video-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 1;
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(10, 22, 40, 0.85) 0%,
                rgba(13, 115, 119, 0.75) 50%,
                rgba(10, 22, 40, 0.85) 100%
            );
            z-index: 2;
        }

        /* Animierter Fallback-Hintergrund wenn Video nicht lädt */
        .hero-video-fallback {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(13, 115, 119, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(245, 184, 0, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(13, 115, 119, 0.3) 0%, transparent 50%),
                linear-gradient(180deg, #0A1628 0%, #132238 50%, #0A1628 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .hero-video-fallback.active {
            opacity: 1;
            z-index: 1;
        }

        /* Animierte Partikel/Shapes im Fallback */
        .hero-video-fallback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(13, 115, 119, 0.3) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(245, 184, 0, 0.2) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(13, 115, 119, 0.2) 0%, transparent 30%);
            animation: floatingShapes 20s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes floatingShapes {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(2%, -2%) scale(1.05); }
            50% { transform: translate(-1%, 2%) scale(1); }
            75% { transform: translate(1%, -1%) scale(1.02); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(245, 184, 0, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245, 184, 0, 0.3);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge i {
            font-size: 1rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.1s both;
            line-height: 1.1em;
        }

        .hero h1 .gradient-text {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text {
            font-size: 1.25rem;
            color: var(--light);
            margin-bottom: 2.5rem;
            max-width: 540px;
            animation: fadeInUp 0.8s ease 0.2s both;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: var(--gray-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: floatIn 1s ease 0.5s both;
        }

        .hero-mockup {
            position: relative;
            z-index: 2;
        }

        .mockup-browser {
            background: var(--dark-soft);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card), 0 0 80px rgba(13, 115, 119, 0.2);
            border: 1px solid rgba(13, 115, 119, 0.3);
        }

        .mockup-header {
            background: rgba(0, 0, 0, 0.4);
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mockup-dots {
            display: flex;
            gap: 0.5rem;
        }

        .mockup-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .mockup-dot:nth-child(1) { background: #EF4444; }
        .mockup-dot:nth-child(2) { background: var(--accent); }
        .mockup-dot:nth-child(3) { background: #22C55E; }

        .mockup-url {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            color: var(--gray-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .mockup-url i {
            color: var(--primary-light);
        }

        .mockup-content {
            padding: 0;
            min-height: 350px;
            background: linear-gradient(180deg, #132238 0%, #0A1628 100%);
            position: relative;
            overflow: hidden;
        }

        .mockup-hero-section {
            background: linear-gradient(135deg, rgba(13, 115, 119, 0.4) 0%, rgba(245, 184, 0, 0.15) 100%);
            padding: 2rem;
            text-align: center;
        }

        .mockup-logo {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mockup-logo i {
            font-size: 1.5rem;
            color: white;
        }

        .mockup-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .mockup-subtitle {
            font-size: 0.75rem;
            color: var(--gray-light);
            margin-bottom: 1rem;
        }

        .mockup-btn {
            background: var(--accent);
            color: var(--dark);
            font-size: 0.7rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            display: inline-block;
            font-weight: 700;
        }

        .mockup-services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            padding: 1.5rem;
        }

        .mockup-service {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            border: 1px solid rgba(13, 115, 119, 0.2);
        }

        .mockup-service-icon {
            width: 35px;
            height: 35px;
            background: var(--gradient-primary);
            border-radius: 8px;
            margin: 0 auto 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .mockup-service-title {
            font-size: 0.65rem;
            font-weight: 600;
            color: var(--white);
        }

        .hero-float-element {
            position: absolute;
            background: rgba(10, 22, 40, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(13, 115, 119, 0.3);
            border-radius: var(--radius-md);
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: float 4s ease-in-out infinite;
            z-index: 3;
        }

        .hero-float-element.element-1 {
            top: 5%;
            right: -20px;
            animation-delay: 0s;
        }

        .hero-float-element.element-2 {
            bottom: 20%;
            left: -30px;
            animation-delay: 1s;
        }

        .hero-float-element.element-3 {
            bottom: -10%;
            right: 30%;
            animation-delay: 2s;
        }

        .float-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }

        .float-icon.accent {
            background: var(--gradient-accent);
            color: var(--dark);
        }

        .float-text {
            font-size: 0.8rem;
        }

        .float-text strong {
            display: block;
            color: var(--white);
            font-weight: 600;
        }

        .float-text span {
            color: var(--gray-light);
            font-size: 0.75rem;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* ==================== */
/* HERO MOCKUP GROUP    */
/* Desktop + Mobile     */
/* ==================== */

/* Wrapper für Desktop + Mobile nebeneinander */
.hero-mockup-group {
    position: relative;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

/* Desktop Mockup – leicht verkleinert für Platz */
.hero-mockup-group .hero-mockup {
    flex: 1;
    min-width: 0;
}

/* Mobile Phone Mockup – überlappt den Desktop leicht */
.hero-mockup-mobile {
    position: relative;
    width: 140px;
    flex-shrink: 0;
    margin-left: -30px;
    margin-bottom: -10px;
    z-index: 3;
    animation: floatIn 1s ease 0.7s both;
}

.mockup-phone {
    background: var(--dark-soft);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 0 60px rgba(13, 115, 119, 0.15);
    border: 2px solid rgba(13, 115, 119, 0.35);
    position: relative;
}

/* Notch oben */
.mockup-phone-notch {
    position: relative;
    height: 24px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-phone-notch::after {
    content: '';
    width: 50px;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

/* Inhalt / Screenshot */
.mockup-phone-content {
    background: linear-gradient(180deg, #132238 0%, #0A1628 100%);
    min-height: 240px;
    overflow: hidden;
    position: relative;
}

.mockup-phone-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Home-Bar unten */
.mockup-phone-bar {
    height: 20px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-phone-bar::after {
    content: '';
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}


/* ==================== */
/* FLOAT ELEMENT 4      */
/* Barrierefrei         */
/* ==================== */

.hero-float-element.element-4 {
    top: 45%;
    right: -125px;
    animation-delay: 3s;
}


/* ==================== */
/* RESPONSIVE           */
/* ==================== */

@media (min-width: 1200px) {
    .hero-mockup-mobile {
        width: 160px;
    }

    .mockup-phone-content {
        min-height: 280px;
    }
}

@media (max-width: 991px) {
    .hero-mockup-group {
        justify-content: center;
    }

    .hero-mockup-mobile {
        width: 110px;
        margin-left: -20px;
    }

    .mockup-phone-content {
        min-height: 190px;
    }

    /* Float-Elemente auf Tablet ausblenden – 
       existierende Regel greift via .hero-float-element { display: none; } */
}

@media (max-width: 575px) {
    .hero-mockup-mobile {
        width: 90px;
        margin-left: -15px;
    }

    .mockup-phone {
        border-radius: 20px;
    }

    .mockup-phone-notch {
        height: 18px;
    }

    .mockup-phone-content {
        min-height: 150px;
    }

    .mockup-phone-bar {
        height: 16px;
    }
}

        /* Trust Bar */
        .trust-bar {
            background: var(--dark-soft);
            border-top: 1px solid rgba(13, 115, 119, 0.2);
            border-bottom: 1px solid rgba(13, 115, 119, 0.2);
            padding: 3rem 0;
        }

        .trust-items {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .trust-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .trust-text strong {
            display: block;
            font-size: 1.25rem;
            color: var(--white);
        }

        .trust-text span {
            font-size: 0.875rem;
            color: var(--gray-light);
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
        }

        /* Helle Sektion */
        .section-light {
            background: var(--section-light-bg);
            color: var(--section-light-text);
        }

        .section-light .section-title {
            color: var(--section-light-text);
        }

        .section-light .section-subtitle {
            color: var(--section-light-muted);
        }

        .section-light .section-badge {
            background: rgba(13, 115, 119, 0.1);
            border-color: rgba(13, 115, 119, 0.2);
            color: var(--primary);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(13, 115, 119, 0.15);
            border: 1px solid rgba(13, 115, 119, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            color: var(--white);
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-light);
        }

        /* Benefits Section - HELLE VARIANTE */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: var(--white);
            border: 1px solid var(--light-soft);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card-light);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 30px 60px rgba(13, 115, 119, 0.15);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
            box-shadow: 0 15px 35px rgba(13, 115, 119, 0.25);
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon {
            background: var(--gradient-accent);
            color: var(--dark);
            box-shadow: 0 15px 35px rgba(245, 184, 0, 0.3);
        }

        .benefit-title {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--section-light-text);
        }

        .benefit-text {
            color: var(--section-light-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Process Section - DUNKEL mit besseren Kontrasten */
        .process-section {
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 50%, var(--dark) 100%);
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-line {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: rgba(13, 115, 119, 0.2);
            border-radius: 2px;
            z-index: 0;
        }

        .process-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--gradient-accent);
            border-radius: 2px;
            transition: width 1s ease;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .process-step {
            flex: 1;
            text-align: center;
            padding: 0 1rem;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--dark-soft);
            border: 3px solid rgba(13, 115, 119, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-light);
            transition: all 0.4s ease;
        }

        .process-step:hover .step-number {
            background: var(--gradient-accent);
            border-color: transparent;
            color: var(--dark);
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(245, 184, 0, 0.4);
        }

        .step-title {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .step-text {
            font-size: 0.9rem;
            color: var(--gray-light);
            line-height: 1.6;
        }

        /* Demo Section - HELLE VARIANTE */
        .demo-section {
            background: var(--section-light-bg);
        }

        .demo-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .demo-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--section-light-text);
        }

        .demo-content p {
            color: var(--section-light-muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .demo-content .section-badge {
            background: rgba(13, 115, 119, 0.1);
            border-color: rgba(13, 115, 119, 0.2);
            color: var(--primary);
        }

        .demo-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .demo-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .demo-feature i {
            width: 30px;
            height: 30px;
            background: rgba(13, 115, 119, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .demo-feature span {
            color: var(--section-light-text);
            font-weight: 500;
        }

        .demo-visual {
            position: relative;
        }

        .demo-screen {
            background: var(--dark-soft);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(13, 115, 119, 0.3);
        }

        .demo-screen-header {
            background: rgba(0, 0, 0, 0.4);
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .demo-screen-content {
            padding: 1.5rem;
            background: linear-gradient(180deg, #132238 0%, #0A1628 100%);
        }

        .demo-mockup-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(13, 115, 119, 0.2);
            margin-bottom: 1.5rem;
        }

        .demo-mockup-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            color: var(--white);
        }

        .demo-mockup-logo i {
            color: var(--primary-light);
            font-size: 1.25rem;
        }

        .demo-mockup-links {
            display: flex;
            gap: 1rem;
        }

        .demo-mockup-links span {
            font-size: 0.75rem;
            color: var(--gray-light);
        }

        .demo-mockup-hero {
            text-align: center;
            padding: 2rem 0;
        }

        .demo-mockup-hero h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .demo-mockup-hero p {
            font-size: 0.8rem;
            color: var(--gray-light);
            margin-bottom: 1rem;
        }

        .demo-mockup-cta {
            display: inline-block;
            background: var(--gradient-accent);
            color: var(--dark);
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .demo-badges {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
        }

        .demo-badge {
            background: var(--white);
            border: 1px solid var(--light-soft);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            color: var(--section-light-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .demo-badge i {
            color: var(--primary);
        }

        /* Pricing Section - DUNKEL mit besseren Kontrasten */
        .pricing-section {
            background: var(--dark);
            background-image: radial-gradient(ellipse at center, rgba(13, 115, 119, 0.15) 0%, transparent 70%);
        }

        .pricing-card {
            background: var(--dark-soft);
            border: 1px solid rgba(13, 115, 119, 0.3);
            border-radius: var(--radius-lg);
            padding: 3rem;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .pricing-badge {
            position: absolute;
            top: 2rem;
            right: -35px;
            background: var(--accent);
            color: var(--dark);
            padding: 0.5rem 3rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            transform: rotate(45deg);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(13, 115, 119, 0.2);
        }

        .pricing-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .pricing-subtitle {
            color: var(--gray-light);
            font-size: 0.95rem;
        }

        .pricing-amount {
            text-align: center;
            margin-bottom: 2rem;
        }

        .price {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

        .price-suffix {
            font-size: 1.25rem;
            color: var(--gray-light);
            font-weight: 400;
        }

        .price-note {
            font-size: 0.875rem;
            color: var(--gray-light);
            margin-top: 0.5rem;
        }

        .pricing-features {
            margin-bottom: 2rem;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(13, 115, 119, 0.1);
        }

        .pricing-feature:last-child {
            border-bottom: none;
        }

        .pricing-feature i {
            width: 24px;
            height: 24px;
            background: rgba(245, 184, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .pricing-feature span {
            color: var(--white);
        }

        .pricing-cta {
            text-align: center;
        }

        .pricing-cta .btn-glow {
            width: 100%;
            padding: 1.25rem;
            font-size: 1.1rem;
        }

        .pricing-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: var(--gray-light);
        }

        .pricing-guarantee i {
            color: var(--primary-light);
        }

        /* FAQ Section - HELLE VARIANTE */
        .faq-section {
            background: var(--section-light-bg);
        }

        .faq-section .section-title {
            color: var(--section-light-text);
        }

        .faq-section .section-subtitle {
            color: var(--section-light-muted);
        }

        .faq-section .section-badge {
            background: rgba(13, 115, 119, 0.1);
            border-color: rgba(13, 115, 119, 0.2);
            color: var(--primary);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: var(--white);
            border: 1px solid var(--light-soft) !important;
            border-radius: var(--radius-md) !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .accordion-button {
            background: transparent !important;
            color: var(--section-light-text) !important;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.5rem;
            box-shadow: none !important;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230D7377'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-button:not(.collapsed) {
            background: rgba(13, 115, 119, 0.08) !important;
            color: var(--primary) !important;
        }

        .accordion-body {
            padding: 0 1.5rem 1.5rem;
            color: var(--section-light-muted);
            line-height: 1.8;
        }

        /* CTA Section - DUNKEL mit besseren Kontrasten */
        .cta-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background: var(--dark);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(13, 115, 119, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(245, 184, 0, 0.1) 0%, transparent 40%);
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .cta-content p {
            font-size: 1.25rem;
            color: var(--gray-light);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: var(--dark-soft);
            border-top: 1px solid rgba(13, 115, 119, 0.2);
            padding: 3rem 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
        }

        .footer-brand span {
            color: var(--accent);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--gray-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-copyright {
            color: var(--gray-light);
            font-size: 0.85rem;
        }

        /* ==================== */
        /* TO TOP BUTTON        */
        /* ==================== */
        .to-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: var(--gradient-accent);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(245, 184, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 9999;
            overflow: hidden;
        }

        .to-top-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }

        .to-top-btn:hover::before {
            width: 100%;
            height: 100%;
        }

        .to-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .to-top-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(245, 184, 0, 0.5);
        }

        .to-top-btn i {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .to-top-btn:hover i {
            transform: translateY(-3px);
        }

        /* Progress Ring */
        .to-top-progress {
            position: absolute;
            top: -3px;
            left: -3px;
            width: 62px;
            height: 62px;
        }

        .to-top-progress svg {
            transform: rotate(-90deg);
        }

        .to-top-progress circle {
            fill: none;
            stroke-width: 3;
        }

        .to-top-progress .progress-bg {
            stroke: rgba(255, 255, 255, 0.2);
        }

        .to-top-progress .progress-fill {
            stroke: var(--dark);
            stroke-dasharray: 176;
            stroke-dashoffset: 176;
            transition: stroke-dashoffset 0.1s ease;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-visual {
                margin-top: 3rem;
            }

            .hero-float-element {
                display: none;
            }

            .demo-wrapper {
                grid-template-columns: 1fr;
            }

            .process-line {
                display: none;
            }

            .process-steps {
                flex-direction: column;
                gap: 2rem;
            }

            .to-top-btn {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }

            .to-top-progress {
                width: 56px;
                height: 56px;
            }
        }

        @media (max-width: 768px) {
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .trust-items {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }