* { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth;  }

        body {
            font-family: 'Quicksand', sans-serif; background-color: var(--bg-page);
            color: var(--text-main); line-height: 1.6; font-size: 18px; 
        }

        h1, h2, h3 { font-weight: 700; color: var(--text-main); }
        
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* --- HEADER --- */
        header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 1.2rem 5%; background-color: var(--bg-hero);
            position: sticky; top: 0; z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            animation: slideDown 0.8s ease-out forwards;
        }
        @keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

        .logo { font-size: 1.6rem; font-weight: 700; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 10px; }
        .logo i { color: var(--primary); font-size: 1.8rem; animation: heartbeat 2s infinite; }
        @keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }

        nav { display: flex; gap: 2rem; align-items: center; }
        nav a { text-decoration: none; color: var(--text-main); font-weight: 600; transition: color 0.2s; font-size: 1.1rem; }
        nav a:hover { color: var(--primary); }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            padding: 0.8rem 2rem; border-radius: 50px;
            font-weight: 700; font-size: 1.1rem; cursor: pointer;
            text-decoration: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .btn-primary { background-color: var(--primary); color: #fff; }
        .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 20px rgba(255, 138, 101, 0.4); }
        .btn-secondary { background-color: #fff; color: var(--text-main); }
        .btn-secondary:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: var(--primary); }

        /* --- HERO BEREICH --- */
        .sub-hero { background-color: var(--bg-hero); padding: 5rem 5% 6rem; text-align: center; position: relative; overflow: hidden; }
        .trust-badges { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
        .trust-badge { background: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 700; color: var(--secondary); box-shadow: 0 4px 10px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 8px; }
        .trust-badge i { color: var(--primary); }
        
        .sub-hero h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 1.5rem; line-height: 1.2; }
        .sub-hero p { font-size: 1.25rem; color: var(--text-light); max-width: 800px; margin: 0 auto 2.5rem; }
        
        .wave-bottom { position: absolute; bottom: -2px; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); }
        .wave-bottom svg { display: block; width: calc(100% + 1.3px); height: 60px; }
        .wave-bottom .shape-fill { fill: var(--bg-page); }

        /* --- TYPISCHE PROBLEME --- */
        .problems-section { max-width: 1200px; margin: -3rem auto 6rem; padding: 0 5%; position: relative; z-index: 10; }
        .problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
        .problem-card { background: #fff; padding: 2.5rem; border-radius: 30px; box-shadow: 0 15px 35px rgba(0,0,0,0.04); border: 2px solid transparent; transition: all 0.3s; position: relative; overflow: hidden; }
        .problem-card:hover { transform: translateY(-10px); border-color: var(--secondary); box-shadow: 0 20px 40px rgba(77, 182, 172, 0.1); }
        .problem-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--secondary); opacity: 0; transition: opacity 0.3s; }
        .problem-card:hover::before { opacity: 1; }
        .problem-icon { width: 60px; height: 60px; border-radius: 20px; background: var(--bg-hero); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem; }
        .problem-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
        .problem-card p { color: var(--text-light); font-size: 1.05rem; }

        /* --- FERNWARTUNG HIGHLIGHT (NEU) --- */
        .remote-support-box {
            background: linear-gradient(135deg, #E8F5E9 0%, #B2DFDB 100%);
            border-radius: 40px; padding: 4rem 5%; max-width: 1100px; margin: 0 auto 6rem;
            display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
            box-shadow: 0 20px 40px rgba(77, 182, 172, 0.15); border: 4px solid #fff;
        }
        .remote-text { flex: 1.5; min-width: 320px; }
        .remote-icon { flex: 1; text-align: center; font-size: 8rem; color: #fff; text-shadow: 0 10px 20px rgba(0,0,0,0.1); animation: floatTech 6s ease-in-out infinite; }
        @keyframes floatTech { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        .remote-text h2 { font-size: 2.2rem; color: var(--text-main); margin-bottom: 1rem; }
        .remote-text p { font-size: 1.15rem; color: var(--text-main); margin-bottom: 1.5rem; opacity: 0.9; }
        .highlight-tag { display: inline-block; background: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 1rem; }



        .whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); color: white; animation: none; }
        @keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

        @media (max-width: 768px) {
            .trust-badges { flex-direction: column; align-items: center; gap: 10px; }
            .promise-section, .remote-support-box { flex-direction: column; text-align: center; }
            .guarantee-badge { right: 0; bottom: -30px; left: 0; margin: 0 auto; width: 90%; justify-content: center; }
            .check-list li { justify-content: center; }
            .cta-buttons { flex-direction: column; }
            .whatsapp-float { width: 55px; height: 55px; font-size: 30px; bottom: 20px; right: 20px; }
        }
    
                /* --- H1 ANIMATION --- */
                @keyframes superTitleAnim {
                    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
                    60% { opacity: 1; transform: translateY(-5px) scale(1.02); }
                    100% { opacity: 1; transform: translateY(0) scale(1); }
                }
                .hero h1, .sub-hero h1 {
                    animation: superTitleAnim 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
                    animation-delay: 0.1s;
                    opacity: 0;
                    display: block;
                }
                

/* --- MOBILE NAVIGATION FIX --- */
@media (max-width: 768px) {
    
}


/* --- BURGER MENU CSS --- */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
}
@media (max-width: 768px) {
    .mobile-menu-btn { display: block !important; }
    .header-phone-btn { display: none !important; }
    nav {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        gap: 1.5rem;
        padding: 0;
        z-index: 999;
    }
    nav.open {
        max-height: 400px;
        padding: 2rem 0;
    }
    nav a { text-align: center; font-size: 1.2rem; display: block; width: 100%; }
}


/* --- WACKEL-FIX FÜR HANDYS (HORIZONTAL SCROLLING) --- */



/* --- BILD-LOGO ANIMATION --- */
.logo-icon {
    animation: heartbeat 2s infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}


/* --- SOCIALS IN NAV --- */
.nav-socials a:hover i {
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .nav-socials {
        justify-content: center;
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-top: 0.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        border-left: none !important;
    }
    .nav-socials a {
        display: inline-flex !important;
        width: auto !important;
        justify-content: center;
    }
}


/* --- FLOATING SOCIALS (SIDEBAR) --- */
.floating-socials {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.08);
    border-radius: 0 20px 20px 0;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    border-left: none;
}
.floating-socials a {
    padding: 15px 18px;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.floating-socials a:last-child { border-bottom: none; }
.floating-socials a:hover.social-ig { color: #E1306C; background: #fff4f7; padding-left: 25px; }
.floating-socials a:hover.social-tt { color: #000; background: #f2f2f2; padding-left: 25px; }
.floating-socials a:hover.social-fb { color: #1877F2; background: #f0f5ff; padding-left: 25px; }

.mobile-only-socials { display: none; }

@media (max-width: 768px) {
    .floating-socials { display: none !important; }
    .mobile-only-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        width: 100%;
        flex-direction: row;
    }
    .mobile-only-socials a { font-size: 2rem; display: inline-block; width: auto; }
}