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

html{
    scroll-behavior:smooth;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Helvetica Neue",sans-serif;
    background:#ffffff;
    color:#111111;
    line-height:1.6;
}

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}
.logo{
    width:650px;
    max-width:90%;
    margin-bottom:10px;

    opacity:0;

    animation:logoIntro 2.2s ease forwards;

    will-change:transform, opacity;
}

@keyframes logoIntro{
    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}
h1{
    font-size:clamp(2.2rem,3.5vw,3.8rem);
    letter-spacing:-1px;
}
.subtitle{
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:1.4s;

}

.intro{
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:1.4s;
}

.cta-button{
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:2.0s;
}
.leistungen,
.kontakt{
    max-width:900px;
    margin:120px auto;
    padding:0 40px;
    text-align:center;
}

h2{
    font-size:3rem;
    font-weight:600;
    margin-bottom:60px;
}

ul{
    list-style:none;
}

li{
    padding:35px 0;
    border-bottom:1px solid #ececec;
    font-size:1.4rem;
    transition:.3s;
}

li:hover{
    padding-left:20px;
}

.kontakt p{
    font-size:1.3rem;
}

@media(max-width:768px){

    .logo{
        width:430px;
        max-width:100%;
    }

    h1{
        font-size:3rem;
    }

    h2{
        font-size:2rem;
    }

    .intro{
        font-size:1.1rem;
    }

    li{
        font-size:1.1rem;
    }
    .subtitle{
    font-size:1.15rem;
    }
    .cta-button{
    padding:14px 28px;
    font-size:1rem;
    }
}
nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 60px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    z-index:1000;
}

nav a{
    text-decoration:none;
    color:#111;
}

.nav-links{
    display:flex;
    gap:40px;
}
.cta-button{
    display:inline-block;
    margin-top:50px;
    background:#111;
    color:#fff;
    padding:16px 32px;
    border-radius:999px;
    text-decoration:none;
    font-weight:500;
}

.cta-button:hover{
    opacity:0.9;
}

@media(max-width:768px){

    nav{
        padding:20px;
    }

    .nav-links{
        gap:20px;
    }
}
.services{
    max-width:1000px;
    margin:30px auto;
    padding:0 40px;
}

.services h2{
    font-size:2.5rem;
    font-weight:600;
    margin-bottom:10px;
    text-align:center;
}

.service{
    padding:10px 0;
    border-bottom:1px solid #e5e5e5;
}

.service h3{
    font-size:1.5rem;
    font-weight:600;
    margin-bottom:8px;
}

.service p{
    color:#666;
    font-size:1.1rem;
}
.why{
    max-width:1000px;
    margin:80px auto;
    padding:0 40px;
    text-align:center;
}

.why h2{
    font-size:2.5rem;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-item{
    padding:30px;
    border:1px solid #e5e5e5;
    border-radius:20px;
    font-size:1.2rem;
    font-weight:500;
}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

}
.whatsapp-button{
    display:inline-block;
    margin-top:10px;
    padding:14px 30px;
    border:1px solid #111;
    border-radius:999px;
    text-decoration:none;
    color:#111;
    font-weight:600;
}

.whatsapp-button:hover{
    background:#111;
    color:#fff;
}
.contact-mail{
    display:block;
    margin:30px 0;
    font-size:1.3rem;
    font-weight:600;
    color:#111;
    text-decoration:none;
}
.contact-section{
    max-width:900px;
    margin:120px auto;
    padding:0 40px;
    text-align:center;
}

.contact-text{
    font-size:1.2rem;
    color:#666;
    margin-bottom:30px;
}

.contact-location{
    margin-top:25px;
    color:#777;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
.footer{
    text-align:center;
    padding:40px 20px;
    border-top:1px solid #e5e5e5;
    margin-top:100px;
}

.footer a{
    color:#666;
    text-decoration:none;
    margin:0 10px;
}

.footer a:hover{
    color:#111;
}
