/* =====================================================
   #1 Reset
===================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#111;
    color:#fff;
    line-height:1.6;
}

/* =====================================================
   #2 Container
===================================================== */
.container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 22px;
}

/* =====================================================
   #3 Header
===================================================== */
.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(10,10,10,0.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:92px;
}

.logo-area img{
    height:68px;
    object-fit:contain;
}

/* =====================================================
   #4 Navigation
===================================================== */
.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.main-nav a:hover{
    color:#f59c00;
}

.nav-contact-btn{
    background:#f59c00;
    color:#111 !important;
    padding:12px 22px;
    border-radius:12px;
    transition:0.3s;
}

.nav-contact-btn:hover{
    transform:translateY(-2px);
}

/* =====================================================
   #5 Mobile Button
===================================================== */
.mobile-menu-btn{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* =====================================================
   #6 Hero Section
===================================================== */
.hero-section{
    position:relative;
    min-height:88vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.45);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.25)
    );
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:760px;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:22px;
}

.hero-content p{
    font-size:20px;
    color:#d7d7d7;
    margin-bottom:36px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:210px;
    min-height:58px;
    padding:14px 24px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.hero-btn-primary{
    background:#f59c00;
    color:#111;
}

.hero-btn-secondary{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

/* =====================================================
   #7 Allgemeine Sections
===================================================== */
.section{
    padding:100px 0;
}

.section-title{
    font-size:46px;
    margin-bottom:16px;
}

.section-subtitle{
    max-width:760px;
    color:#c8c8c8;
    margin-bottom:50px;
}

/* =====================================================
   #8 Karten
===================================================== */
.cards-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.service-card{
    background:#1a1a1a;
    border-radius:24px;
    overflow:hidden;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#f59c00;
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.service-card-content{
    padding:28px;
}

.service-card-content h3{
    margin-bottom:14px;
    font-size:24px;
}

.service-card-content p{
    color:#c9c9c9;
}

/* =====================================================
   #9 Footer
===================================================== */
.site-footer{
    background:#0a0a0a;
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    gap:40px;
    align-items:flex-start;
}

.footer-logo{
    height:70px;
    margin-bottom:18px;
}

.site-footer h3{
    margin-bottom:16px;
}

.site-footer ul{
    list-style:none;
}

.site-footer li{
    margin-bottom:10px;
}

.site-footer a{
    color:#d6d6d6;
    text-decoration:none;
}

.site-footer a:hover{
    color:#f59c00;
}

.footer-bottom{
    text-align:center;
    padding:26px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.05);
    color:#9f9f9f;
}
.footer-top{
    padding:70px 0 50px;
}
.footer-company{
    max-width:480px;
}

.footer-logo{
    width:220px;
    margin-bottom:24px;
}

.footer-text{
    color:#c8c8c8;
    line-height:1.9;
    font-size:16px;
}
.footer-grid{
    max-width:1350px;
}
/* =====================================================
   #10 Laptop 17 Zoll
===================================================== */
@media(max-width:1700px){

    .container{
        max-width:1380px;
    }

    .hero-content h1{
        font-size:58px;
    }

}

/* =====================================================
   #11 Laptop 15 Zoll
===================================================== */
@media(max-width:1500px){

    .cards-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .hero-content h1{
        font-size:52px;
    }

}

/* =====================================================
   #12 Tablet
===================================================== */
@media(max-width:992px){

    .main-nav{
        display:none;
    }

    .mobile-menu-btn{
        display:block;
    }

    .cards-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:44px;
    }

}

/* =====================================================
   #13 Mobile
===================================================== */
@media(max-width:768px){

    .hero-section{
        min-height:80vh;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:17px;
    }

    .section{
        padding:70px 0;
    }

    .section-title{
        font-size:34px;
    }

    .hero-btn{
        width:100%;
    }

}
/* =====================================================
   #14 Kontakt
===================================================== */
.kontakt-wrapper{
    width:100%;
    max-width:900px;
}

.kontakt-form{
    background:#1a1a1a;
    padding:40px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.06);
}

.form-group{
    margin-bottom:24px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:700;
    color:#f59c00;
}

.form-group input,
.form-group textarea{
    width:100%;
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:16px;
    color:#fff;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#f59c00;
}

.kontakt-btn{
    width:100%;
    min-height:58px;
    border:none;
    border-radius:14px;
    background:#f59c00;
    color:#111;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.kontakt-btn:hover{
    transform:translateY(-2px);
}

/* =====================================================
   #15 Mobile Kontakt
===================================================== */
@media(max-width:768px){

    .kontakt-form{
        padding:24px;
    }

}
/* =====================================================
   #16 Service Card Link
===================================================== */
.service-card-link{
    text-decoration:none;
    color:#fff;
    display:block;
}

/* =====================================================
   #17 Hover Effekt
===================================================== */
.service-card-link:hover .service-card h3{
    color:#f59c00;
}
/* =====================================================
   #18 Referenzen
===================================================== */
.referenz-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.referenz-item{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,0.05);
}

.referenz-item img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:0.4s;
    display:block;
}

.referenz-item:hover img{
    transform:scale(1.06);
}

/* =====================================================
   #19 Referenzen Responsive
===================================================== */
@media(max-width:1200px){

    .referenz-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media(max-width:768px){

    .referenz-grid{
        grid-template-columns:1fr;
    }

    .referenz-item img{
        height:280px;
    }

}
/* =====================================================
   #20 Service Liste
===================================================== */
.service-list-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
}

.service-box{
    background:#1a1a1a;
    border-radius:24px;
    padding:40px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-6px);
    border-color:#f59c00;
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#f59c00;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:24px;
}

.service-box h3{
    font-size:28px;
    margin-bottom:14px;
}

.service-box p{
    color:#cfcfcf;
    font-size:16px;
}

/* =====================================================
   #21 Service Responsive
===================================================== */
@media(max-width:900px){

    .service-list-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .service-box{
        padding:28px;
    }

    .service-box h3{
        font-size:24px;
    }

}
/* =====================================================
   #22 Detail Seiten
===================================================== */
.detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.detail-image{
    overflow:hidden;
    border-radius:24px;
}

.detail-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;
}

.detail-content h2{
    font-size:44px;
    margin-bottom:24px;
}

.detail-content p{
    color:#d1d1d1;
    margin-bottom:20px;
    font-size:17px;
}

.detail-list{
    list-style:none;
    margin-top:30px;
    margin-bottom:36px;
}

.detail-list li{
    margin-bottom:14px;
    font-size:17px;
    color:#f0f0f0;
}

.detail-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    min-height:58px;
    padding:14px 24px;
    background:#f59c00;
    color:#111;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.detail-btn:hover{
    transform:translateY(-3px);
}

/* =====================================================
   #23 Detail Responsive
===================================================== */
@media(max-width:1100px){

    .detail-grid{
        grid-template-columns:1fr;
    }

    .detail-image img{
        height:420px;
    }

}

@media(max-width:768px){

    .detail-content h2{
        font-size:34px;
    }

    .detail-image img{
        height:320px;
    }

}
/* =====================================================
   #24 Rechtliches
===================================================== */
.legal-box{
    background:#1a1a1a;
    border-radius:24px;
    padding:50px;
    border:1px solid rgba(255,255,255,0.06);
}

.legal-content{
    color:#d2d2d2;
    font-size:16px;
    line-height:1.9;
}

.legal-content h2{
    margin-top:40px;
    margin-bottom:16px;
    color:#f59c00;
}

.legal-content p{
    margin-bottom:20px;
}

.legal-content ul{
    padding-left:20px;
    margin-bottom:20px;
}

.legal-content li{
    margin-bottom:10px;
}

/* =====================================================
   #25 Rechtliches Responsive
===================================================== */
@media(max-width:768px){

    .legal-box{
        padding:28px;
    }

}
/* =====================================================
   #26 Scrollbar
===================================================== */
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#f59c00;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#ffb733;
}

/* =====================================================
   #27 Auswahl Farbe
===================================================== */
::selection{
    background:#f59c00;
    color:#111;
}

/* =====================================================
   #28 Bilder Responsive
===================================================== */
img{
    max-width:100%;
}

/* =====================================================
   #29 Smooth Animation
===================================================== */
.service-card,
.service-box,
.referenz-item,
.detail-image,
.kontakt-form,
.legal-box{
    will-change:transform;
}

/* =====================================================
   #30 Hover Glow
===================================================== */
.service-card:hover,
.service-box:hover,
.referenz-item:hover,
.kontakt-form:hover{
    box-shadow:
        0 0 0 rgba(0,0,0,0),
        0 15px 40px rgba(245,156,0,0.08);
}

/* =====================================================
   #31 Buttons Allgemein
===================================================== */
button,
a{
    transition:
        background 0.3s,
        color 0.3s,
        border-color 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
}

/* =====================================================
   #32 Fokus Style
===================================================== */
input:focus,
textarea:focus,
button:focus{
    outline:none;
}

/* =====================================================
   #33 Mobile Abstand
===================================================== */
@media(max-width:768px){

    .container{
        padding:0 18px;
    }

}
/* =====================================================
   #34 Sticky WhatsApp Button
===================================================== */
.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:68px;
    height:68px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:32px;
    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,0.35);
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.05);
}

/* =====================================================
   #35 Floating Animation
===================================================== */
@keyframes whatsappFloat {

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }

}

.whatsapp-float{
    animation:whatsappFloat 2.5s infinite;
}

/* =====================================================
   #36 Mobile WhatsApp
===================================================== */
@media(max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        right:16px;
        bottom:16px;
        font-size:28px;
    }

}
/* =====================================================
   #37 Fade Animation
===================================================== */
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

/* =====================================================
   #38 Hero Animation
===================================================== */
.hero-content h1,
.hero-content p,
.hero-buttons{
    animation:heroFade 1s ease forwards;
}

.hero-content p{
    animation-delay:0.2s;
}

.hero-buttons{
    animation-delay:0.4s;
}

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =====================================================
   #39 Image Hover Zoom
===================================================== */
.detail-image,
.referenz-item,
.service-card{
    overflow:hidden;
}

.detail-image img,
.referenz-item img,
.service-card img{
    transition:transform 0.5s ease;
}

.detail-image:hover img,
.referenz-item:hover img,
.service-card:hover img{
    transform:scale(1.05);
}
/* =====================================================
   #40 Mobile Navigation
===================================================== */
.mobile-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111;
    border-top:1px solid rgba(255,255,255,0.08);
    display:none;
    flex-direction:column;
    padding:20px;
    gap:14px;
}

.mobile-nav.active{
    display:flex;
}

.mobile-nav a{
    color:#fff;
    text-decoration:none;
    padding:14px 18px;
    border-radius:12px;
    background:#1a1a1a;
    font-weight:600;
}

.mobile-nav a:hover{
    background:#f59c00;
    color:#111;
}

/* =====================================================
   #41 Desktop MobileNav verstecken
===================================================== */
@media(min-width:993px){

    .mobile-nav{
        display:none !important;
    }

}
/* =====================================================
   #42 CTA Section
===================================================== */
.cta-section{
    padding:40px 0 120px;
}

.cta-box{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #f59c00,
        #ffb733
    );
    border-radius:32px;
    padding:80px 60px;
    text-align:center;
    color:#111;
}

.cta-box h2{
    font-size:52px;
    margin-bottom:20px;
    line-height:1.1;
}

.cta-box p{
    max-width:760px;
    margin:0 auto 36px;
    font-size:20px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-box .hero-btn-primary{
    background:#111;
    color:#fff;
}

.cta-box .hero-btn-secondary{
    border:1px solid rgba(17,17,17,0.2);
    color:#111;
}

/* =====================================================
   #43 CTA Responsive
===================================================== */
@media(max-width:992px){

    .cta-box{
        padding:50px 30px;
    }

    .cta-box h2{
        font-size:40px;
    }

}

@media(max-width:768px){

    .cta-section{
        padding:20px 0 90px;
    }

    .cta-box h2{
        font-size:32px;
    }

    .cta-box p{
        font-size:17px;
    }

}
/* =====================================================
   #46 Footer Kontakt
===================================================== */
.footer-contact-bar{
    margin-top:70px;
    padding:30px 0;
    border-top:1px solid rgba(255,255,255,0.06);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.footer-contact-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.footer-contact-item{
    text-align:center;
}

.footer-contact-title{
    display:block;
    margin-bottom:10px;
    color:#f59c00;
    font-weight:700;
    font-size:15px;
}

.footer-contact-item a,
.footer-contact-item span{
    color:#fff;
    text-decoration:none;
    font-size:17px;
}

/* =====================================================
   #47 Footer Kontakt Responsive
===================================================== */
@media(max-width:900px){

    .footer-contact-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

}

/* =====================================================
   #44 Statistik FIX
===================================================== */
.stats-section{
    position:relative;
    margin-top:-70px;
    z-index:10;
    padding:0 0 0;
}

.stats-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:24px;
}

.stats-item{
    background:#1a1a1a;
    border-radius:24px;
    padding:34px 24px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.06);
}

.stats-item h3{
    font-size:42px;
    color:#f59c00;
    margin-bottom:10px;
    line-height:1.1;
}

.stats-item p{
    color:#d2d2d2;
    font-size:16px;
}

.section{
    padding:70px 0;
}

/* =====================================================
   #45 Statistik Responsive FIX
===================================================== */
@media(max-width:1200px){

    .stats-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

}

@media(max-width:768px){

    .stats-section{
        margin-top:-35px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

}

/* =====================================================
   #60 Kontakt Grid
===================================================== */
.kontakt-page-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:34px;
    align-items:stretch;
}

/* =====================================================
   #61 Map Box
===================================================== */
.kontakt-map-box{
    background:#151515;
    border-radius:26px;
    padding:38px;
    border:1px solid rgba(255,255,255,0.06);
}

.kontakt-map-box h2{
    font-size:34px;
    margin-bottom:12px;
}

.kontakt-map-box p{
    color:#c9c9c9;
    margin-bottom:24px;
    line-height:1.7;
}

/* =====================================================
   #62 Google Map
===================================================== */
.kontakt-map{
    width:100%;
    height:100%;
    min-height:500px;
    overflow:hidden;
    border-radius:22px;
}

.kontakt-map iframe{
    width:100%;
    height:75%;
    border:0;
    border-radius:22px;
}

/* =====================================================
   #63 Responsive
===================================================== */
@media(max-width:1100px){

    .kontakt-page-grid{
        grid-template-columns:1fr;
    }

    .kontakt-map{
        min-height:420px;
    }

}

/* =====================================================
   #64 Vorher Nachher
===================================================== */
.before-after-section{
    background:#101010;
}

.before-after-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.before-after-card{
    background:#1a1a1a;
    border-radius:24px;
    padding:18px;
    border:1px solid rgba(255,255,255,0.06);
}

.before-after-title-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:14px;
}

.before-after-title-row span{
    color:#f59c00;
    font-size:20px;
    font-weight:800;
    font-style:italic;
    text-align:center;
}

.before-after-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.before-after-images img{
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:16px;
    display:block;
}

/* =====================================================
   #65 Vorher Nachher Responsive
===================================================== */
@media(max-width:1200px){

    .before-after-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media(max-width:768px){

    .before-after-grid{
        grid-template-columns:1fr;
    }

    .before-after-images img{
        height:200px;
    }

}

/* =====================================================
   #95 Image Popup
===================================================== */
.image-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    padding:40px;
}

.image-popup.active{
    opacity:1;
    visibility:visible;
}

.image-popup img{
    max-width:92%;
    max-height:92%;
    border-radius:18px;
    box-shadow:0 0 40px rgba(0,0,0,0.5);
}

.image-popup-close{
    position:absolute;
    top:25px;
    right:35px;
    font-size:54px;
    color:#fff;
    cursor:pointer;
    line-height:1;
}

/* =====================================================
   #96 Hover Zoom
===================================================== */
.gallery-grid img,
.before-after-images img,
.service-card img{
    cursor:pointer;
    transition:0.35s;
}

.gallery-grid img:hover,
.before-after-images img:hover,
.service-card img:hover{
    transform:scale(1.03);
}

/* =====================================================
   #70 Erfahrung Section
===================================================== */
.experience-section{
    background:#0d0d0d;
}

/* =====================================================
   #71 Grid
===================================================== */
.experience-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
}

/* =====================================================
   #72 Bild
===================================================== */
.experience-image{
    text-align:center;
}

.experience-image img{
    width:100%;
    max-width:360px;
    object-fit:contain;
}

/* =====================================================
   #73 Inhalt
===================================================== */
.experience-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(245,156,0,0.14);
    color:#f59c00;
    margin-bottom:24px;
    font-weight:700;
}

.experience-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:24px;
}

.experience-content p{
    color:#c9c9c9;
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

/* =====================================================
   #74 Punkte
===================================================== */
.experience-points{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
    margin:40px 0;
}

.experience-point{
    background:#171717;
    border-radius:18px;
    padding:18px 22px;
    border:1px solid rgba(255,255,255,0.06);
    color:#f2f2f2;
    font-weight:600;
}

/* =====================================================
   #75 Responsive
===================================================== */
@media(max-width:1100px){

    .experience-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .experience-content h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .experience-content h2{
        font-size:30px;
    }

    .experience-points{
        grid-template-columns:1fr;
    }

}

.experience-image img{
    width:100%;
    max-width:360px;
    object-fit:contain;
    border-radius:28px;
    background:#fff;
    padding:18px;
}

.experience-content h2{
    font-size:44px;
    line-height:1.18;
    margin-bottom:24px;
}

/* =====================================================
   #80 Dropdown
===================================================== */
.nav-dropdown{
    position:relative;
}

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:6px;
}

/* =====================================================
   #81 Dropdown Menü
===================================================== */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:320px;
    background:#151515;
    border-radius:18px;
    padding:14px;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 20px 50px rgba(0,0,0,0.35);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:0.3s;

    display:flex;
    flex-direction:column;
    gap:8px;

    z-index:9999;
}

/* =====================================================
   #82 Hover
===================================================== */
.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* =====================================================
   #83 Dropdown Links
===================================================== */
.dropdown-menu a{
    padding:14px 16px;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.dropdown-menu a:hover{
    background:#f59c00;
    color:#111;
}

/* =====================================================
   #90 Footer Bottom
===================================================== */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.06);
    margin-top:70px;
    padding-top:28px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    color:#a5a5a5;
    font-size:14px;
}

/* =====================================================
   #91 Right
===================================================== */
.footer-bottom-right{
    display:flex;
    align-items:center;
    gap:8px;
}

.footer-bottom-right a{
    color:#f59c00;
    text-decoration:none;
    font-weight:700;
}

/* =====================================================
   #92 Mobile
===================================================== */
@media(max-width:768px){

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}

.footer-brand{
    color:#f59c00;
    font-weight:700;
}
/* =====================================================
   #100 Legal Box
===================================================== */
.legal-box{
    max-width:1100px;
    margin:0 auto;
    background:#151515;
    border-radius:32px;
    padding:70px;
    border:1px solid rgba(255,255,255,0.06);
}

/* =====================================================
   #101 Legal Titel
===================================================== */
.legal-box .section-title{
    margin-bottom:14px;
}

.legal-box .section-subtitle{
    margin-bottom:60px;
}

/* =====================================================
   #102 Legal Block
===================================================== */
.legal-block{
    margin-bottom:55px;
}

.legal-block h2{
    font-size:34px;
    margin-bottom:22px;
    color:#fff;
}

/* =====================================================
   #103 Text
===================================================== */
.legal-block p{
    color:#d2d2d2;
    line-height:1.95;
    margin-bottom:18px;
    font-size:17px;
}

/* =====================================================
   #104 Links
===================================================== */
.legal-block a{
    color:#f59c00;
    text-decoration:none;
    transition:0.3s;
}

.legal-block a:hover{
    opacity:0.8;
}

/* =====================================================
   #105 Mobile
===================================================== */
@media(max-width:768px){

    .legal-box{
        padding:34px 24px;
        border-radius:24px;
    }

    .legal-block h2{
        font-size:28px;
    }

    .legal-block p{
        font-size:16px;
        line-height:1.8;
    }

}

/* =====================================================
   #110 Kontakt Formular Grid
===================================================== */
.kontakt-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

/* =====================================================
   #111 Captcha
===================================================== */
.captcha-box{
    width:100%;
    min-height:56px;
    background:#0f0f0f;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    display:flex;
    align-items:center;
    padding:8px 14px;
}

.captcha-box img{
    max-height:44px;
    width:auto;
}

/* =====================================================
   #112 Mobile Formular
===================================================== */
@media(max-width:768px){

    .kontakt-form-grid{
        grid-template-columns:1fr;
        gap:0;
    }

}
/* =====================================================
   #120 WhatsApp Button
===================================================== */
.whatsapp-contact-btn{
    width:100%;
    margin-top:24px;
    margin-bottom:6px;

    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:#ffffff;
    text-decoration:none;

    border-radius:18px;

    font-size:18px;
    font-weight:700;

    transition:0.3s;
}

/* =====================================================
   #121 Hover
===================================================== */
.whatsapp-contact-btn:hover{
    transform:translateY(-2px);
    background:#1ebe5d;
}
/* =====================================================
   #130 Kontakt Grid
===================================================== */
.kontakt-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:36px;
    align-items:stretch;
}

/* =====================================================
   #131 Rechte Map Box
===================================================== */
.kontakt-map-box{
    background:linear-gradient(145deg,#1b1b1b,#111111);
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.06);

    padding:34px;

    display:flex;
    flex-direction:column;

    height:100%;
}

/* =====================================================
   #132 Google Maps
===================================================== */
.kontakt-map{
    margin-top:20px;
}

.kontakt-map iframe{
    width:100%;
    height:420px;
    border:0;
    border-radius:22px;
}

/* =====================================================
   #133 WhatsApp Button
===================================================== */
.whatsapp-contact-btn{
    width:100%;
    margin-top:24px;

    min-height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:#ffffff;

    text-decoration:none;

    border-radius:18px;

    font-size:18px;
    font-weight:700;

    transition:0.3s;
}

.whatsapp-contact-btn:hover{
    transform:translateY(-2px);
    background:#1ebe5d;
}

/* =====================================================
   #134 Mobile
===================================================== */
@media(max-width:950px){

    .kontakt-page-grid{
        grid-template-columns:1fr;
    }

}
.experience-point span{
    color:#f59c00;
    font-weight:700;
    margin-right:8px;
}

/* =====================================================
   #140 Produkt Showcase
===================================================== */
.product-showcase-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.product-showcase-card{
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:24px;
    text-align:center;
    transition:0.3s;
}

.product-showcase-card:hover{
    transform:translateY(-6px);
    border-color:#f59c00;
}

.product-showcase-card img{
    width:100%;
    height:260px;
    object-fit:contain;
    background:#fff;
    border-radius:18px;
    padding:14px;
    margin-bottom:24px;
}

.product-showcase-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.product-showcase-card p{
    color:#cfcfcf;
    line-height:1.7;
}

/* =====================================================
   #141 Produkt Showcase Responsive
===================================================== */
@media(max-width:1100px){

    .product-showcase-grid{
        grid-template-columns:1fr;
    }

}

/* =====================================================
   #140 Produkt Showcase
===================================================== */
.product-showcase-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.product-showcase-card{
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:24px;
    text-align:center;
    transition:0.3s;
}

.product-showcase-card:hover{
    transform:translateY(-6px);
    border-color:#f59c00;
}

.product-showcase-card img{
    width:100%;
    height:260px;
    object-fit:contain;
    background:#ffffff;
    border-radius:18px;
    padding:14px;
    margin-bottom:24px;
    cursor:pointer;
}

.product-showcase-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.product-showcase-card p{
    color:#cfcfcf;
    line-height:1.7;
}

/* =====================================================
   #141 Popup
===================================================== */
.image-popup{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.92);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:9999;

    padding:40px;
}

.image-popup img{
    max-width:90%;
    max-height:90vh;

    background:#ffffff;

    border-radius:20px;
    padding:20px;
}

.image-popup-close{
    position:absolute;
    top:25px;
    right:35px;

    color:#ffffff;
    font-size:46px;
    font-weight:700;

    cursor:pointer;
}

/* =====================================================
   #142 Responsive
===================================================== */
@media(max-width:1100px){

    .product-showcase-grid{
        grid-template-columns:1fr;
    }

}
.image-popup.active{
    display:flex;
}

/* =====================================================
   #150 Produkt Galerie Sektionen
===================================================== */
.product-gallery-sections{
    display:flex;
    flex-direction:column;
    gap:90px;
}

/* =====================================================
   #151 Einzelne Sektion
===================================================== */
.product-gallery-section{
    background:#151515;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:30px;
    padding:42px;
}

/* =====================================================
   #152 Titel
===================================================== */
.product-gallery-title{
    text-align:center;
    color:#ffffff;
    font-size:38px;
    margin-bottom:36px;
    letter-spacing:1px;
}

/* =====================================================
   #153 5 Bilder Layout
===================================================== */
.product-gallery-layout-big{
    display:grid;
    grid-template-columns:1.15fr 1fr;
    gap:26px;
}

/* =====================================================
   #154 Großes Bild
===================================================== */
.product-gallery-big img{
    width:100%;
    height:540px;
    object-fit:cover;
    border-radius:24px;
    cursor:pointer;
}

/* =====================================================
   #155 Kleine Bilder 2x2
===================================================== */
.product-gallery-small-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.product-gallery-small-grid img{
    width:100%;
    height:257px;
    object-fit:cover;
    border-radius:24px;
    cursor:pointer;
}

/* =====================================================
   #156 4 Bilder Layout
===================================================== */
.product-gallery-four-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.product-gallery-four-grid img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#ffffff;
    border-radius:24px;
    cursor:pointer;
    padding:12px;
}

/* =====================================================
   #157 Hover
===================================================== */
.product-gallery-big img,
.product-gallery-small-grid img,
.product-gallery-four-grid img{
    transition:0.35s;
}

.product-gallery-big img:hover,
.product-gallery-small-grid img:hover,
.product-gallery-four-grid img:hover{
    transform:scale(1.025);
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

/* =====================================================
   #158 Responsive
===================================================== */
@media(max-width:1100px){

    .product-gallery-layout-big{
        grid-template-columns:1fr;
    }

    .product-gallery-big img{
        height:420px;
    }

}

@media(max-width:768px){

    .product-gallery-section{
        padding:24px;
    }

    .product-gallery-title{
        font-size:28px;
    }

    .product-gallery-small-grid,
    .product-gallery-four-grid{
        grid-template-columns:1fr;
    }

    .product-gallery-big img,
    .product-gallery-small-grid img,
    .product-gallery-four-grid img{
        height:260px;
    }

}

/* =====================================================
   #160 Großes Einzelbild
===================================================== */
.product-gallery-big-single{
    margin-bottom:32px;
}

.product-gallery-big-single img{
    width:100%;
    height:500px;
    object-fit:contain;
    background:#ffffff;
    border-radius:26px;
    cursor:pointer;
    transition:0.35s;
    padding:20px;
}

.product-gallery-big-single img:hover{
    transform:scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

/* =====================================================
   #161 Textbereich
===================================================== */
.product-gallery-text{
    margin-top:50px;

    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:50px;

    align-items:start;
}

/* =====================================================
   #180 Linker Text
===================================================== */
/* =====================================================
   #183 Linke Box
===================================================== */
.product-gallery-text-left{
    background:#181818;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:34px;
    height:100%;
}

.product-gallery-text-left h3{
    font-size:38px;
    color:#ffffff;
    margin-bottom:24px;
}

.product-gallery-text-left p{
    color:#d7d7d7;
    font-size:18px;
    line-height:1.9;
}

/* =====================================================
   #181 Rechte Liste
===================================================== */
.product-gallery-text-right{
    background:#181818;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:34px;
}

.product-gallery-text-right .detail-list{
    margin-bottom:30px;
}

.product-gallery-text-right .detail-list li{
    margin-bottom:18px;
}

/* =====================================================
   #182 Mobile
===================================================== */
@media(max-width:900px){

    .product-gallery-text{
        grid-template-columns:1fr;
        gap:28px;
    }

    .product-gallery-text-left h3{
        font-size:30px;
    }

}

.product-gallery-text h3{
    font-size:34px;
    color:#ffffff;
    margin-bottom:20px;
}

.product-gallery-text p{
    max-width:900px;
    margin:0 auto 28px;
    color:#d5d5d5;
    font-size:18px;
    line-height:1.8;
}

/* =====================================================
   #162 Responsive
===================================================== */
@media(max-width:768px){

    .product-gallery-big-single img{
        height:280px;
    }

    .product-gallery-text h3{
        font-size:28px;
    }

    .product-gallery-text p{
        font-size:16px;
    }

}

/* =====================================================
   #170 Großbild + Text
===================================================== */
.product-gallery-top{
    display:grid;
    grid-template-columns:1.4fr 0.7fr;
    gap:40px;
    align-items:start;
    margin-bottom:40px;
}

/* =====================================================
   #171 Rechte Liste
===================================================== */
.product-gallery-info{
    color:#ffffff;
}

.product-gallery-info ul{
    margin:0;
    padding-left:24px;
}

.product-gallery-info li{
        margin-top: 30px;
    margin-bottom:22px;
    font-size:20px;
    line-height:1.5;
}
/* =====================================================
   #172 Mobile Ansicht
===================================================== */
@media(max-width:900px){

    .product-gallery-top{
        grid-template-columns:1fr;
        gap:24px;
    }

    .product-gallery-info{
        width:100%;
    }

    .product-gallery-info ul{
        padding-left:20px;
    }

    .product-gallery-info li{
        margin-top:12px;
        margin-bottom:12px;
        font-size:16px;
        line-height:1.5;
    }

}
.detail-list{
    list-style:none;
    padding:0;
}

.detail-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:18px;
}

.detail-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#f59c00;
    font-weight:700;
}
.product-pdf-card{
    text-decoration:none;
    color:#ffffff;
}