:root{
    --green:#7CFF8A; /* Helleres Elite-Maigrün für stärkere Akzente */
    --green-soft:#b9ffc4;
    --black:#050505;
    --dark:#0e0e0e;
    --gray:#cfcfcf;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:system-ui,-apple-system,sans-serif;}
body{background:var(--black);color:white;}

/* WATERMARK */
body::before{
    content:"";
    position:fixed;
    inset:0;
    background:url('Logo.jpg') center center no-repeat;
    background-size:clamp(420px, 38vw, 720px);
    opacity:0.018; /* Elite Finish – noch subtiler */
    pointer-events:none;
    z-index:0;
}

/* High-End Displays / Retina */
@media (min-width:1800px){
    body::before{
        background-size:900px;
        opacity:0.015;
    }
}


/* Mobile weniger dominant */
@media (max-width:900px){
    body::before{
        background-size:320px;
        opacity:0.012;
    }
}

/* HEADER */
header{
    padding:18px 5%;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    border-bottom:1px solid #161616;
    position:sticky;
    top:0;
    background:rgba(5,5,5,.96);
    backdrop-filter:blur(14px);
    z-index:999;
}

.logo-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.logo-img{height:62px;}

.brand-block{text-align:center;}

.brand-title{
    font-weight:900;
    letter-spacing:2px;
    color:var(--green);
    font-size:26px;
}

.brand-sub{
    font-size:13px;
    color:#aaa;
    letter-spacing:1px;
}

.brand-tag{
    font-size:14px;
    margin-top:4px;
    color:white;
    font-weight:600;
}

nav{
    display:flex;
    gap:26px;
    justify-content:flex-end;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:600;
}

nav a:hover{color:var(--green); text-shadow:0 0 8px rgba(124,255,138,.6);} 

/* HERO SLIDESHOW */
.hero{
    position:relative;
    height:82vh;
    display:flex;
    align-items:center;
    padding:0 5%;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.85),rgba(0,0,0,.55));
    z-index:1;
}

.slideshow{
    position:absolute;
    inset:0;
}

.slideshow img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    animation:slide 32s infinite;
}

.slideshow img:nth-child(1){animation-delay:0s;}
.slideshow img:nth-child(2){animation-delay:6s;}
.slideshow img:nth-child(3){animation-delay:12s;}
.slideshow img:nth-child(4){animation-delay:18s;}
.slideshow img:nth-child(5){animation-delay:24s;}

@keyframes slide{
0%{opacity:0}
5%{opacity:1}
25%{opacity:1}
30%{opacity:0}
100%{opacity:0}
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.hero h1{
    font-size:clamp(40px,4vw,70px);
    line-height:1.05;
    margin-bottom:22px;
}

.hero span{color:var(--green);} 
.hero p{color:var(--gray);font-size:20px;margin-bottom:40px;}

.cta{
    background:var(--green);
    padding:18px 40px;
    border-radius:14px;
    text-decoration:none;
    color:black;
    font-weight:900;
}

.section{padding:100px 5%;max-width:1400px;margin:auto;position:relative;z-index:1;}
.section h2{color:var(--green);font-size:38px;margin-bottom:10px;}
.section-intro{color:#bdbdbd;margin-bottom:30px;}

.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:30px;margin-top:40px;}

.card{
    background:linear-gradient(145deg,#0e0e0e,#050505);
    padding:30px;
    border-radius:18px;
    border:1px solid rgba(124,255,138,0.25);
    box-shadow:0 0 18px rgba(124,255,138,0.06);
    transition:all .25s ease;
}

.card:hover{
    transform:translateY(-6px);
    border-color:var(--green);
    box-shadow:0 0 28px rgba(124,255,138,0.18);
}

.timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:26px;margin-top:40px;}

.step{
    background:#0b0b0b;
    padding:28px;
    border-radius:16px;
    border-top:4px solid var(--green);
}

.pricing{background:#040404;}

.price-box{background:var(--dark);padding:30px;border-radius:18px;text-align:center;}
.price{font-size:38px;color:var(--green);margin:14px 0;font-weight:900;}

form{display:grid;gap:14px;margin-top:30px;}
input,textarea,select{padding:15px;border-radius:10px;border:none;background:#1c1c1c;color:white;}
button{background:var(--green);border:none;padding:16px;border-radius:12px;font-weight:900;color:black;cursor:pointer;}

footer{border-top:2px solid var(--green);padding:60px 5%;color:#888;text-align:center;}

.floating{
    position:fixed;
    bottom:30px;
    right:30px;
    background:var(--green);
    padding:16px 26px;
    border-radius:40px;
    font-weight:900;
    text-decoration:none;
    color:black;
}

/* MOBILE */
@media(max-width:900px){
header{grid-template-columns:1fr;gap:10px;text-align:center;}
nav{justify-content:center;flex-wrap:wrap;}
.hero{height:70vh;}
.timeline{grid-template-columns:1fr;}
}
