/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero{
    position:relative;
    min-height:850px;
    background:url('hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
}

.hero-content{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.subtitle{
    color:#b6d61d;
    font-size:24px;
    font-weight:700;
}

.hero h1{
    font-size:92px;
    line-height:0.95;
    color:#fff;
    margin:20px 0;
    font-family:'Oswald',sans-serif;
}

.hero h1 span{
    color:#b6d61d;
}

.hero p{
    color:#fff;
    font-size:23px;
    line-height:1.7;
    max-width:700px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-green{
    background:#b6d61d;
    color:#000;
    padding:18px 35px;
    text-decoration:none;
    font-weight:700;
    border-radius:4px;
}

.btn-dark{
    border:1px solid rgba(255,255,255,0.4);
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:4px;
}

.side-info{
    display:flex;
    flex-direction:column;
    gap:20px;
    color:#fff;
    font-weight:700;
    text-align:center;
}

.side-info div{
    border-left:3px solid #b6d61d;
    padding-left:20px;
}


/* ==========================================================================
   FEATURES
   ========================================================================== */
.features{
    padding:70px 0;
    background:#fff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;
}

.feature-card{
    text-align:center;
}

.icon{
    font-size:40px;
    color:#b6d61d;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:18px;
    margin-bottom:12px;
}

.feature-card p{
    color:#555;
    line-height:1.6;
}


/* ==========================================================================
   MODELLE
   ========================================================================== */
.models{
    padding:100px 0;
    background:#f7f7f7;
}

.section-subtitle{
    color:#b6d61d;
    font-weight:700;
    display:block;
    text-align:center;
    margin-bottom:15px;
}

.section-title{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
    font-family:'Oswald',sans-serif;
}

.model-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.model-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    border:1px solid #eee;
}

.model-image{
    height:220px;
    background:#101820;
    border-radius:8px;
    margin-bottom:25px;
}

.model-card h3{
    margin-bottom:20px;
    font-size:28px;
    font-family:'Oswald',sans-serif;
}

.model-card ul{
    list-style:none;
    margin-bottom:30px;
}

.model-card li{
    margin-bottom:12px;
    color:#555;
}

.model-card a{
    display:inline-block;
    border:2px solid #b6d61d;
    padding:14px 28px;
    text-decoration:none;
    color:#111;
    font-weight:700;
}


/* ==========================================================================
   AREAS / EINSATZBEREICHE
   ========================================================================== */
.areas{
    padding:100px 0;
}

.areas-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    margin-top:50px;
}

.area-card{
    height:260px;
    background:#111;
    border-radius:10px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    color:#fff;
    font-weight:700;
    padding-bottom:30px;
    background-size:cover;
    background-position:center;
}


/* ==========================================================================
   STATS
   ========================================================================== */
.stats{
    background:#071018;
    padding:60px 0;
    border-top:2px solid #b6d61d;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

.stat{
    text-align:center;
}

.stat h3{
    color:#b6d61d;
    font-size:44px;
    margin-bottom:10px;
}

.stat p{
    color:#fff;
}


/* ==========================================================================
   HOME RESPONSIVE (Nur für seitenbezogene Grids & Texte)
   ========================================================================== */
@media(max-width:1200px){
    .feature-grid,
    .model-grid,
    .areas-grid,
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:70px;
    }
}

@media(max-width:768px){
    .feature-grid,
    .model-grid,
    .areas-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        flex-direction:column;
        gap:50px;
    }

    .hero h1{
        font-size:55px;
    }

    .section-title{
        font-size:34px;
    }
}