:root{
    --primary:#132651;
    --primary-dark:#0d1c3d;
    --accent:#2a6df4;
    --light:#f5f7fb;
    --text:#1e293b;
    --muted:#64748b;
    --white:#ffffff;
    --border:#e5e7eb;
    --shadow:0 12px 30px rgba(19,38,81,0.10);
    --radius:20px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}
/* ===== PV REINIGUNG PAGE ===== */

.pv-cleaning-hero{
    background:
        linear-gradient(135deg, rgba(19,38,81,0.95), rgba(29,78,216,0.86)),
        url('/assets/img/placeholder-pv-reinigung-hero.jpg') center center / cover no-repeat;
}

.pv-cleaning-intro,
.pv-cleaning-benefits,
.pv-cleaning-process,
.pv-cleaning-types,
.pv-cleaning-cta{
    padding:95px 0;
}

.pv-cleaning-grid,
.pv-cleaning-types-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

.pv-cleaning-image img{
    width:100%;
    border-radius:24px;
    box-shadow:var(--shadow);
    object-fit:cover;
}

.pv-cleaning-text h2,
.pv-cleaning-types h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.15;
}

.pv-cleaning-text p,
.pv-cleaning-types p{
    margin:0 0 16px;
    color:var(--muted);
}

.pv-cleaning-benefits,
.pv-cleaning-process{
    background:var(--light);
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.benefit-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:30px;
    box-shadow:var(--shadow);
}

.benefit-card h3{
    margin:0 0 12px;
    color:var(--primary);
    font-size:22px;
}

.benefit-card p{
    margin:0;
    color:var(--muted);
}

.pv-cleaning-list{
    display:grid;
    gap:16px;
}

.pv-cleaning-list-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:22px 24px;
    box-shadow:var(--shadow);
}

.pv-cleaning-list-item strong{
    display:block;
    color:var(--primary);
    font-size:20px;
    margin-bottom:6px;
}

.pv-cleaning-list-item span{
    color:var(--muted);
}

@media (max-width: 1100px){
    .pv-cleaning-grid,
    .pv-cleaning-types-grid{
        grid-template-columns:1fr;
    }

    .benefit-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .benefit-grid{
        grid-template-columns:1fr;
    }

    .pv-cleaning-text h2,
    .pv-cleaning-types h2{
        font-size:30px;
    }
}
a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1200px, calc(100% - 40px));
    margin:0 auto;
}

/* ===== HEADER ===== */

/* ===== HEADER ===== */

.site-header{
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.topbar{
    background: var(--primary-dark);
    color: #dbe4f0;
    font-size: 13px;
}

.topbar-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
    gap: 20px;
}

.topbar-right{
    display: flex;
    gap: 16px;
}

.topbar-right a{
    color: #dbe4f0;
    font-weight: 500;
}

.navbar{
    background: #ffffff;
}

.nav-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    gap: 32px;
}

.logo img{
    height: 64px;
    width: auto;
}

.nav-menu{
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu li{
    position: relative;
}

.nav-menu a{
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    transition: 0.2s ease;
}

.nav-menu a:hover{
    color: var(--accent);
}

.has-dropdown > a::after{
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-top: -3px;
    display: inline-block;
    transition: 0.25s ease;
}

.has-dropdown:hover > a::after{
    transform: rotate(225deg);
    margin-top: 2px;
}.dropdown-menu{
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 270px;
    background: #ffffff;
    padding: 12px 0 !important;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    display: none !important;
    z-index: 9999;
}

.dropdown-menu::before{
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 18px;
}

.dropdown-menu li{
    width: 100%;
}

.dropdown-menu a{
    display: block;
    padding: 13px 20px;
    color: var(--primary);
    font-size: 14px;
    width: 100%;
}

.dropdown-menu a:hover{
    background: #f3f6fb;
    color: var(--accent);
}

.has-dropdown:hover .dropdown-menu{
    display: block !important;
}

.nav-cta{
    background: linear-gradient(135deg, var(--accent), #1d4ed8);
    color: #fff !important;
    padding: 13px 24px !important;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(42, 109, 244, 0.22);
}

.nav-cta:hover{
    transform: translateY(-1px);
    color: #fff !important;
}

/* ===== RESPONSIVE HEADER ===== */

@media (max-width: 900px){
    .topbar-inner{
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .nav-inner{
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
        min-height: auto;
    }

    .nav-menu{
        width: 100%;
        justify-content: flex-start;
    }

    .nav-menu ul{
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px 22px;
    }

    .dropdown-menu{
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 12px;
        margin-top: 8px;
    }
}

@media (max-width: 600px){
    .logo img{
        height: 52px;
    }

    .nav-menu a{
        font-size: 14px;
    }

    .nav-cta{
        padding: 11px 18px !important;
    }
}
/* ===== HERO ===== */

.hero{
    position:relative;
    min-height:720px;
    background:
        linear-gradient(90deg, rgba(13,28,61,0.88) 0%, rgba(19,38,81,0.72) 45%, rgba(19,38,81,0.38) 100%),
        url('/assets/img/pVDach.jpg') center center / cover no-repeat;
    display:flex;
    align-items:center;
}

.hero-content{
    position:relative;
    z-index:2;
    padding:110px 0;
}

.hero-text{
    max-width:720px;
    color:#fff;
}

.hero-kicker{
    display:inline-block;
    margin-bottom:18px;
    font-size:14px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:#dbe7ff;
}

.hero h1{
    margin:0 0 22px;
    font-size:58px;
    line-height:1.08;
    font-weight:700;
}

.hero p{
    margin:0 0 30px;
    font-size:19px;
    color:#e4ebf7;
    max-width:680px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* ===== BUTTONS ===== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    font-weight:700;
    transition:0.25s ease;
}

.btn-primary{
    background:var(--accent);
    color:#fff;
}

.btn-primary:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

.btn-secondary{
    background:rgba(255,255,255,0.12);
    color:#fff;
    border:1px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.20);
}

.btn-light{
    background:#fff;
    color:var(--primary);
}

.btn-light:hover{
    transform:translateY(-2px);
}

/* ===== GENERAL SECTIONS ===== */

.section-kicker{
    display:inline-block;
    margin-bottom:12px;
    color:var(--accent);
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.08em;
}

.section-head{
    margin-bottom:42px;
}

.section-head.center{
    text-align:center;
}

.section-head h2{
    margin:0 0 14px;
    font-size:40px;
    line-height:1.15;
}

.section-head p{
    margin:0;
    color:var(--muted);
}

/* ===== INTRO ===== */

.intro-section{
    padding:95px 0;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

.intro-image img{
    width:100%;
    border-radius:24px;
    box-shadow:var(--shadow);
    object-fit:cover;
}

.intro-text-block h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.15;
}

.intro-text-block p{
    color:var(--muted);
    margin:0 0 16px;
}

/* ===== SERVICES ===== */

.services-section{
    padding:95px 0;
    background:var(--light);
}

.service-cards{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.service-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:0.25s ease;
    color:inherit;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.service-card-body{
    padding:24px;
}

.service-card-body h3{
    margin:0 0 12px;
    font-size:22px;
    color:var(--primary);
}

.service-card-body p{
    margin:0;
    color:var(--muted);
}

/* ===== ADVANTAGES ===== */

.advantages-section{
    padding:95px 0;
}

.advantage-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.advantage-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    box-shadow:var(--shadow);
}

.advantage-box h3{
    margin:0 0 10px;
    color:var(--primary);
    font-size:22px;
}

.advantage-box p{
    margin:0;
    color:var(--muted);
}

/* ===== PROJECT ===== */

.project-section{
    padding:95px 0;
    background:#fff;
}

.project-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

.project-text h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.15;
}

.project-text p{
    margin:0 0 24px;
    color:var(--muted);
}

.project-image img{
    width:100%;
    border-radius:24px;
    box-shadow:var(--shadow);
    object-fit:cover;
}

/* ===== CTA ===== */

.cta-section{
    padding:0 0 95px;
}

.cta-box{
    background:linear-gradient(135deg, #132651 0%, #1d4ed8 100%);
    color:#fff;
    border-radius:26px;
    padding:55px 40px;
    text-align:center;
    box-shadow:var(--shadow);
}

.cta-box h2{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.15;
}

.cta-box p{
    margin:0 0 24px;
    color:#dce7fb;
}

/* ===== FOOTER ===== */

.footer{
    background:var(--primary-dark);
    color:#fff;
    padding:60px 0 24px;
}

.footer-content{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:30px;
    padding-bottom:30px;
}

.footer h3,
.footer h4{
    margin:0 0 14px;
    color:#fff;
}

.footer p,
.footer li,
.footer a{
    color:#d7e2f3;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer li{
    margin-bottom:10px;
}

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

.footer-logo{
    height:58px;
    width:auto;
    margin-bottom:16px;
}

.footer-social{
    margin-top:20px;
}

.social-links{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.12);
    padding-top:20px;
    color:#d7e2f3;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px){
    .service-cards{
        grid-template-columns:repeat(2, 1fr);
    }

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

    .intro-grid,
    .project-grid,
    .footer-content{
        grid-template-columns:1fr;
    }
}

@media (max-width: 900px){
    .topbar-inner{
        flex-direction:column;
        align-items:flex-start;
        padding:10px 0;
    }

    .nav-inner{
        flex-direction:column;
        align-items:flex-start;
        padding:18px 0;
        gap:16px;
    }

    .nav-menu ul{
        gap:16px;
    }

    .logo img{
        height:50px;
    }
}

@media (max-width: 768px){
    .hero{
        min-height:560px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

    .service-cards{
        grid-template-columns:1fr;
    }

    .section-head h2,
    .intro-text-block h2,
    .project-text h2,
    .cta-box h2{
        font-size:30px;
    }

    .cta-box{
        padding:40px 24px;
    }
}
/* ===== INFO PAGE ===== */

.page-hero{
    padding: 110px 0 80px;
    background:
        linear-gradient(135deg, rgba(19,38,81,0.95), rgba(29,78,216,0.88)),
        url('/assets/img/placeholder-hero.jpg') center center / cover no-repeat;
    color:#fff;
}

.page-hero-content{
    max-width: 850px;
}

.page-hero h1{
    margin:0 0 18px;
    font-size:54px;
    line-height:1.08;
}

.page-hero p{
    margin:0;
    max-width:760px;
    font-size:18px;
    color:#dbe7fb;
}

.info-section,
.process-section,
.target-section,
.numbers-section,
.usp-section,
.future-section{
    padding:95px 0;
}

.info-grid,
.usp-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

.info-image-block img,
.usp-image-block img{
    width:100%;
    border-radius:24px;
    box-shadow:var(--shadow);
    object-fit:cover;
}

.info-text-block h2,
.usp-text-block h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.15;
}

.info-text-block p,
.usp-text-block p{
    margin:0 0 16px;
    color:var(--muted);
}

.process-section{
    background:var(--light);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.process-card{
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.process-number{
    font-size:14px;
    font-weight:700;
    color:var(--accent);
    margin-bottom:10px;
    letter-spacing:0.08em;
}

.process-card h3{
    margin:0 0 12px;
    color:var(--primary);
    font-size:22px;
    line-height:1.2;
}

.process-card p{
    margin:0;
    color:var(--muted);
}

.target-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.target-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    box-shadow:var(--shadow);
}

.target-card h3{
    margin:0 0 12px;
    color:var(--primary);
    font-size:24px;
}

.target-card p{
    margin:0;
    color:var(--muted);
}

.numbers-section{
    background:var(--light);
}

.numbers-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.number-card{
    background:#fff;
    border-radius:22px;
    padding:34px 24px;
    text-align:center;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.number-card .counter,
.number-card .suffix{
    font-size:48px;
    font-weight:700;
    color:var(--primary);
    line-height:1;
}

.number-card p{
    margin:12px 0 0;
    color:var(--muted);
    font-weight:600;
}

.usp-list{
    display:grid;
    gap:18px;
}

.usp-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:22px 24px;
    box-shadow:var(--shadow);
}

.usp-item h3{
    margin:0 0 8px;
    color:var(--primary);
    font-size:22px;
}

.usp-item p{
    margin:0;
    color:var(--muted);
}

.future-box{
    background:linear-gradient(135deg, #132651 0%, #1d4ed8 100%);
    color:#fff;
    border-radius:28px;
    padding:55px 40px;
    box-shadow:var(--shadow);
}

.future-box h2{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.15;
}

.future-box p{
    margin:0;
    color:#dce7fb;
    max-width:900px;
}

@media (max-width: 1100px){
    .process-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .target-grid,
    .numbers-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .info-grid,
    .usp-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .page-hero{
        padding:90px 0 70px;
    }

    .page-hero h1{
        font-size:38px;
    }

    .page-hero p{
        font-size:17px;
    }

    .process-grid,
    .target-grid,
    .numbers-grid{
        grid-template-columns:1fr;
    }

    .info-text-block h2,
    .usp-text-block h2,
    .future-box h2{
        font-size:30px;
    }

    .future-box{
        padding:40px 24px;
    }
}
/* ===== LEISTUNGEN PAGE ===== */

.services-hero{
    background:
        linear-gradient(135deg, rgba(19,38,81,0.95), rgba(29,78,216,0.88)),
        url('/assets/img/placeholder-services-hero.jpg') center center / cover no-repeat;
}

.services-intro-section,
.services-overview-section,
.workflow-section,
.highlight-energy-section{
    padding:95px 0;
}

.services-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

.services-intro-image img{
    width:100%;
    border-radius:24px;
    box-shadow:var(--shadow);
    object-fit:cover;
}

.services-intro-text h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.15;
}

.services-intro-text p{
    margin:0 0 16px;
    color:var(--muted);
}

.services-overview-section{
    background:var(--light);
}

.services-overview-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.service-feature-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:30px;
    box-shadow:var(--shadow);
    transition:0.25s ease;
}

.service-feature-card:hover{
    transform:translateY(-5px);
}

.service-feature-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(42,109,244,0.10);
    color:var(--accent);
    font-weight:700;
    margin-bottom:18px;
}

.service-feature-card h3{
    margin:0 0 12px;
    color:var(--primary);
    font-size:24px;
}

.service-feature-card p{
    margin:0;
    color:var(--muted);
}

.workflow-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.workflow-step{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:28px;
    box-shadow:var(--shadow);
    text-align:left;
}

.workflow-step-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    font-weight:700;
    margin-bottom:16px;
}

.workflow-step h3{
    margin:0 0 10px;
    color:var(--primary);
    font-size:22px;
}

.workflow-step p{
    margin:0;
    color:var(--muted);
}

.highlight-energy-box{
    background:linear-gradient(135deg, #132651 0%, #1d4ed8 100%);
    color:#fff;
    border-radius:28px;
    padding:48px 40px;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:28px;
    align-items:center;
    box-shadow:var(--shadow);
}

.highlight-energy-text h2{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.15;
}

.highlight-energy-text p{
    margin:0;
    color:#dce7fb;
    max-width:760px;
}

.highlight-energy-stats{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
}

.highlight-mini-card{
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.16);
    border-radius:18px;
    padding:20px;
}

.highlight-mini-card strong{
    display:block;
    font-size:30px;
    line-height:1;
    margin-bottom:8px;
}

.highlight-mini-card span{
    color:#dce7fb;
}

@media (max-width: 1100px){
    .services-intro-grid,
    .highlight-energy-box{
        grid-template-columns:1fr;
    }

    .services-overview-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .workflow-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .services-overview-grid,
    .workflow-grid{
        grid-template-columns:1fr;
    }

    .services-intro-text h2,
    .highlight-energy-text h2{
        font-size:30px;
    }

    .highlight-energy-box{
        padding:36px 24px;
    }
}
/* ===== SOLARPROJEKTE PAGE NEW ===== */

.solarprojects-hero{
    background:
        linear-gradient(135deg, rgba(19,38,81,0.94), rgba(29,78,216,0.86)),
        url('/assets/img/placeholder-solarprojects-hero.jpg') center center / cover no-repeat;
}

.solar-intro-section,
.solar-types-section,
.solar-focus-section,
.solar-approach-section,
.solar-cta-section{
    padding:95px 0;
}

.solar-intro-grid,
.solar-focus-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

.solar-intro-image img,
.solar-focus-image img{
    width:100%;
    border-radius:24px;
    box-shadow:var(--shadow);
    object-fit:cover;
}

.solar-intro-text h2,
.solar-focus-text h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.15;
}

.solar-intro-text p,
.solar-focus-text p{
    margin:0 0 16px;
    color:var(--muted);
}

.solar-types-section{
    background:var(--light);
}

.solar-types-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.solar-type-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.solar-type-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.solar-type-body{
    padding:26px;
}

.solar-type-tag{
    display:inline-block;
    margin-bottom:12px;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(42,109,244,0.10);
    color:var(--accent);
    font-size:13px;
    font-weight:700;
}

.solar-type-body h3{
    margin:0 0 12px;
    color:var(--primary);
    font-size:26px;
    line-height:1.2;
}

.solar-type-body p{
    margin:0 0 14px;
    color:var(--muted);
}

.solar-type-body ul{
    margin:0;
    padding-left:18px;
    color:var(--text);
}

.solar-type-body li{
    margin-bottom:8px;
}

.solar-focus-points{
    display:grid;
    gap:14px;
    margin-top:22px;
}

.solar-focus-point{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px 20px;
    box-shadow:var(--shadow);
}

.solar-focus-point strong{
    display:block;
    color:var(--primary);
    margin-bottom:4px;
    font-size:18px;
}

.solar-focus-point span{
    color:var(--muted);
}

.solar-approach-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.solar-approach-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:28px;
    box-shadow:var(--shadow);
}

.approach-number{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(42,109,244,0.10);
    color:var(--accent);
    font-weight:700;
    margin-bottom:16px;
}

.solar-approach-card h3{
    margin:0 0 10px;
    color:var(--primary);
    font-size:22px;
}

.solar-approach-card p{
    margin:0;
    color:var(--muted);
}

.solar-cta-box{
    background:linear-gradient(135deg, #132651 0%, #1d4ed8 100%);
    color:#fff;
    border-radius:28px;
    padding:55px 40px;
    text-align:center;
    box-shadow:var(--shadow);
}

.solar-cta-box h2{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.15;
}

.solar-cta-box p{
    margin:0 0 24px;
    color:#dce7fb;
}

@media (max-width: 1100px){
    .solar-intro-grid,
    .solar-focus-grid{
        grid-template-columns:1fr;
    }

    .solar-types-grid{
        grid-template-columns:1fr;
    }

    .solar-approach-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .solar-approach-grid{
        grid-template-columns:1fr;
    }

    .solar-intro-text h2,
    .solar-focus-text h2,
    .solar-cta-box h2{
        font-size:30px;
    }

    .solar-cta-box{
        padding:40px 24px;
    }
}
/* ===== ADMIN PROJEKTE ===== */

.admin-page{
    padding: 60px 0 90px;
    background: #f5f7fb;
    min-height: 100vh;
}

.admin-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:24px;
    margin-bottom:32px;
}

.admin-header h1{
    margin:0 0 10px;
    font-size:42px;
    line-height:1.1;
    color:var(--primary);
}

.admin-header p{
    margin:0;
    color:var(--muted);
    max-width:720px;
}

.admin-header-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.admin-card{
    background:#fff;
    border-radius:24px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    padding:28px;
}

.admin-table-wrap{
    overflow-x:auto;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
    min-width:1100px;
}

.admin-table thead th{
    text-align:left;
    padding:16px 14px;
    font-size:14px;
    color:var(--primary);
    background:#f8fafc;
    border-bottom:1px solid var(--border);
}

.admin-table tbody td{
    padding:16px 14px;
    border-bottom:1px solid var(--border);
    vertical-align:top;
    color:var(--text);
}

.admin-table-description-row td{
    background:#fbfdff;
    color:var(--muted);
    font-size:15px;
}

.admin-status-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(42,109,244,0.10);
    color:var(--accent);
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
}

.admin-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.admin-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 14px;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
}

.admin-action.edit{
    background:rgba(42,109,244,0.10);
    color:var(--accent);
}

.admin-action.delete{
    background:rgba(220,38,38,0.10);
    color:#dc2626;
}

.admin-empty-state{
    text-align:center;
    padding:40px 20px;
}

.admin-empty-state h2{
    margin:0 0 10px;
    color:var(--primary);
}

.admin-empty-state p{
    margin:0 0 20px;
    color:var(--muted);
}

.admin-form-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.admin-form-full{
    grid-column:1 / -1;
}

.admin-form label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:var(--primary);
}

.admin-form input,
.admin-form textarea,
.admin-form select{
    width:100%;
    padding:14px 16px;
    border:1px solid var(--border);
    border-radius:14px;
    font-size:16px;
    font-family:inherit;
    background:#fff;
}

.admin-form textarea{
    resize:vertical;
}

.admin-form-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}

.admin-checkbox-row label{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    margin-bottom:0;
}

.admin-checkbox-row input[type="checkbox"]{
    width:auto;
}

.admin-message{
    margin:0 0 18px;
    padding:14px 16px;
    border-radius:14px;
    background:rgba(220,38,38,0.08);
    color:#b91c1c;
    font-weight:600;
}

.admin-btn-dark{
    color:var(--primary);
    border:1px solid var(--border);
    background:#fff;
}

.admin-btn-dark:hover{
    background:#f8fafc;
}

@media (max-width: 900px){
    .admin-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .admin-form-grid{
        grid-template-columns:1fr;
    }
}
.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form button {
    border: none;
    cursor: pointer;
}
/* Kontaktseite MJ Energy */

.page-hero.contact-hero {
    background: linear-gradient(135deg, #0b2f24 0%, #0f5132 45%, #1f8f5f 100%);
    color: #ffffff;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero.contact-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

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

.section-kicker {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    margin: 0 0 20px;
    font-weight: 800;
}

.page-hero p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    background: #f5f7f6;
    padding: 80px 0;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section-head.center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 8px 0 14px;
    color: #10231b;
}

.section-head p {
    color: #5d6b64;
    font-size: 16px;
}

.contact-form {
    background: #ffffff;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(12, 45, 32, 0.12);
    border: 1px solid rgba(15, 81, 50, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 700;
    color: #17382b;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d9e3de;
    background: #fbfdfc;
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 16px;
    color: #10231b;
    transition: all 0.2s ease;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1f8f5f;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(31, 143, 95, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa8a2;
}

.form-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 800;
    border-radius: 999px;
    padding: 16px 34px;
    font-size: 16px;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0f5132, #1f8f5f);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 143, 95, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(31, 143, 95, 0.34);
}

.form-message {
    max-width: 850px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 700;
    text-align: center;
}

.success-message {
    background: #e8f8ef;
    color: #0f5132;
    border: 1px solid #b8ebce;
}

.error-message {
    background: #fff0f0;
    color: #a11c1c;
    border: 1px solid #f0b6b6;
}

.g-recaptcha {
    margin-top: 6px;
}

#kwpGroup {
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .page-hero.contact-hero {
        padding: 70px 0 60px;
    }

    .contact-section {
        padding: 55px 0;
    }

    .contact-form {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .btn {
        width: 100%;
    }
}
/* ===== SMART ENERGY QUARTIER - FUTURE STYLE ===== */

.seq-hero{
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(6,22,56,0.72), rgba(6,22,56,0.72)),
        url('/assets/img/smartquartier.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.seq-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59,130,246,0.35), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(34,197,94,0.22), transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(14,165,233,0.25), transparent 35%);
    pointer-events: none;
}

.seq-overlay{
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.seq-hero-content{
    max-width: 820px;
    color: #fff;
}

.seq-hero-content h1{
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.02;
    margin: 14px 0 24px;
    letter-spacing: -0.04em;
}

.seq-hero-content p{
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 720px;
}

.seq-light{
    background:
        linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.seq-section{
    position: relative;
}

.seq-section .section-head h2{
    letter-spacing: -0.03em;
}

.seq-section .section-head p{
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* Futuristische Karten */
.seq-section .advantage-box,
.seq-section .service-card{
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59,130,246,0.12);
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
}

.seq-section .advantage-box::before,
.seq-section .service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(34,197,94,0.08));
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.seq-section .advantage-box:hover,
.seq-section .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.seq-section .advantage-box:hover::before,
.seq-section .service-card:hover::before{
    opacity: 1;
}

.seq-section .advantage-box h3,
.seq-section .service-card h3{
    position: relative;
    z-index: 2;
}

.seq-section .advantage-box p,
.seq-section .service-card p{
    position: relative;
    z-index: 2;
}

/* Service Bilder moderner */
.seq-section .service-card img{
    height: 230px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

/* Projektbereich futuristischer */
.project-section{
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.12), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.project-image img{
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.project-text h2{
    letter-spacing: -0.03em;
}

/* CTA modern */
.cta-section{
    background:
        radial-gradient(circle at 20% 20%, rgba(34,197,94,0.25), transparent 30%),
        linear-gradient(135deg, #061638, #0f3d7c);
}

.cta-box{
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border-radius: 32px;
}

/* Mobile */
@media (max-width: 768px){
    .seq-hero{
        min-height: 70vh;
    }

    .seq-overlay{
        padding: 90px 0;
    }

    .seq-hero-content h1{
        font-size: 44px;
    }

    .seq-hero-content p{
        font-size: 18px;
    }

    .seq-section .service-card img{
        height: 210px;
    }
}
/* ===== W RMEPUMPEN ===== */

.wp-hero{
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,#061638 0%, #0f3d7c 45%, #1d4ed8 100%);
}

.wp-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(34,197,94,0.22), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(59,130,246,0.28), transparent 35%),
        radial-gradient(circle at 70% 78%, rgba(255,255,255,0.10), transparent 30%);
    pointer-events: none;
}

.wp-hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 45%, transparent 100%);
    pointer-events: none;
}

.wp-hero-overlay{
    width: 100%;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.wp-hero-content{
    max-width: 760px;
    color: #fff;
}

.wp-hero-content h1{
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.02;
    margin: 14px 0 22px;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.wp-hero-content p{
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    margin-bottom: 34px;
}

.wp-hero .section-kicker{
    color: #4ade80;
}

/* ===== CONTENT LOOK ===== */

.wp-section{
    padding: 95px 0;
}

.wp-light{
    background: linear-gradient(180deg,#f8fafc 0%, #eef6ff 100%);
}

.wp-white{
    background: #ffffff;
}

.wp-dark{
    background: linear-gradient(135deg,#061638,#0f3d7c);
    color: #fff;
}

.wp-dark .section-head h2,
.wp-dark .section-head p,
.wp-dark h3,
.wp-dark p{
    color: #fff;
}

/* ===== MODERNE KARTEN ===== */

.wp-section .service-card,
.wp-section .advantage-box{
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(59,130,246,0.10);
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wp-section .service-card::before,
.wp-section .advantage-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.10), rgba(34,197,94,0.08));
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.wp-section .service-card:hover,
.wp-section .advantage-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15,23,42,0.14);
}

.wp-section .service-card:hover::before,
.wp-section .advantage-box:hover::before{
    opacity: 1;
}

.wp-section .service-card img{
    height: 230px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

/* ===== PROJEKTBEREICH ===== */

.wp-project{
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 34%),
        linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
}

.wp-project .project-image img{
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,0.18);
}

/* ===== CTA ===== */

.wp-cta{
    background:
        radial-gradient(circle at 18% 25%, rgba(34,197,94,0.22), transparent 28%),
        linear-gradient(135deg,#061638,#0f3d7c);
}

.wp-cta .cta-box{
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border-radius: 32px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px){

    .wp-hero{
        min-height: 74vh;
    }

    .service-cards{
        grid-template-columns: repeat(2,1fr);
    }

    .advantage-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px){

    .wp-hero{
        min-height: auto;
    }

    .wp-hero-overlay{
        padding: 95px 0;
    }

    .wp-hero-content h1{
        font-size: 44px;
    }

    .wp-hero-content p{
        font-size: 18px;
    }

    .service-cards,
    .advantage-grid,
    .project-grid,
    .intro-grid{
        grid-template-columns: 1fr;
    }

    .wp-section{
        padding: 72px 0;
    }

    .wp-section .service-card img{
        height: 210px;
    }
}
/* ===== W RMEPUMPEN VERGLEICHSTABELLE ===== */

.wp-table-wrap{
    margin-top: 45px;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15,23,42,0.10);
    border: 1px solid rgba(59,130,246,0.12);
}

.wp-table{
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.wp-table th{
    background: linear-gradient(135deg,#061638,#0f3d7c);
    color: #ffffff;
    padding: 22px 24px;
    text-align: left;
    font-size: 16px;
}

.wp-table th:first-child{
    border-top-left-radius: 24px;
}

.wp-table th:last-child{
    border-top-right-radius: 24px;
}

.wp-table td{
    padding: 20px 24px;
    border-bottom: 1px solid #e5edf7;
    font-size: 16px;
    color: #0f172a;
}

.wp-table tbody tr:nth-child(even){
    background: #f8fafc;
}

.wp-table tbody tr:hover{
    background: #eef6ff;
}

.wp-table td:last-child{
    font-weight: 700;
    color: #16a34a;
}

.wp-table tbody tr:last-child td{
    border-bottom: none;
}

@media (max-width: 768px){
    .wp-table-wrap{
        border-radius: 18px;
    }

    .wp-table th,
    .wp-table td{
        padding: 16px 18px;
        font-size: 14px;
    }
}
/* ===== LADEINFRASTRUKTUR ===== */

.lade-hero{
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,#061638 0%, #0f3d7c 45%, #1d4ed8 100%);
}

.lade-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(34,197,94,0.22), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(59,130,246,0.28), transparent 35%),
        radial-gradient(circle at 70% 78%, rgba(255,255,255,0.10), transparent 30%);
    pointer-events: none;
}

.lade-hero-overlay{
    width: 100%;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.lade-hero-content{
    max-width: 780px;
    color: #fff;
}

.lade-hero-content h1{
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.02;
    margin: 14px 0 22px;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.lade-hero-content p{
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    margin-bottom: 34px;
}

.lade-hero .section-kicker{
    color: #4ade80;
}

.lade-section{
    padding: 95px 0;
}

.lade-light{
    background: linear-gradient(180deg,#f8fafc 0%, #eef6ff 100%);
}

.lade-white{
    background: #ffffff;
}

.lade-page .advantage-box,
.lade-page .service-card{
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(59,130,246,0.12);
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lade-page .advantage-box::before,
.lade-page .service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(34,197,94,0.08));
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.lade-page .advantage-box:hover,
.lade-page .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15,23,42,0.14);
}

.lade-page .advantage-box:hover::before,
.lade-page .service-card:hover::before{
    opacity: 1;
}

.lade-page .service-card img{
    height: 230px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.lade-table-wrap{
    margin-top: 45px;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15,23,42,0.10);
    border: 1px solid rgba(59,130,246,0.12);
}

.lade-table{
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.lade-table th{
    background: linear-gradient(135deg,#061638,#0f3d7c);
    color: #ffffff;
    padding: 22px 24px;
    text-align: left;
    font-size: 16px;
}

.lade-table th:first-child{
    border-top-left-radius: 24px;
}

.lade-table th:last-child{
    border-top-right-radius: 24px;
}

.lade-table td{
    padding: 20px 24px;
    border-bottom: 1px solid #e5edf7;
    font-size: 16px;
    color: #0f172a;
}

.lade-table tbody tr:nth-child(even){
    background: #f8fafc;
}

.lade-table tbody tr:hover{
    background: #eef6ff;
}

.lade-table td:last-child{
    font-weight: 700;
    color: #16a34a;
}

.lade-table tbody tr:last-child td{
    border-bottom: none;
}

.lade-project{
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 34%),
        linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
}

.lade-project .project-image img{
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,0.18);
}

.lade-cta{
    background:
        radial-gradient(circle at 18% 25%, rgba(34,197,94,0.22), transparent 28%),
        linear-gradient(135deg,#061638,#0f3d7c);
}

.lade-cta .cta-box{
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border-radius: 32px;
}

@media (max-width: 1100px){
    .lade-hero{
        min-height: 74vh;
    }
}

@media (max-width: 768px){
    .lade-hero{
        min-height: auto;
    }

    .lade-hero-overlay{
        padding: 95px 0;
    }

    .lade-hero-content h1{
        font-size: 44px;
    }

    .lade-hero-content p{
        font-size: 18px;
    }

    .lade-section{
        padding: 72px 0;
    }

    .lade-page .service-card img{
        height: 210px;
    }

    .lade-table th,
    .lade-table td{
        padding: 16px 18px;
        font-size: 14px;
    }
}
/* ===== TECHNISCHE BETRIEBSF HRUNG ===== */

.tb-hero{
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#061638 0%, #0f3d7c 45%, #1d4ed8 100%);
}

.tb-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(34,197,94,0.22), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(59,130,246,0.28), transparent 35%),
        radial-gradient(circle at 70% 78%, rgba(255,255,255,0.10), transparent 30%);
    pointer-events: none;
}

.tb-hero-overlay{
    width: 100%;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.tb-hero-content{
    max-width: 800px;
    color: #fff;
}

.tb-hero-content h1{
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.02;
    margin: 14px 0 22px;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.tb-hero-content p{
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
    max-width: 740px;
    margin-bottom: 34px;
}

.tb-hero .section-kicker{
    color: #4ade80;
}

.tb-section{
    padding: 95px 0;
}

.tb-light{
    background: linear-gradient(180deg,#f8fafc 0%, #eef6ff 100%);
}

.tb-white{
    background: #ffffff;
}

.tb-page .advantage-box,
.tb-page .service-card{
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(59,130,246,0.12);
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tb-page .advantage-box::before,
.tb-page .service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(34,197,94,0.08));
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.tb-page .advantage-box:hover,
.tb-page .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15,23,42,0.14);
}

.tb-page .advantage-box:hover::before,
.tb-page .service-card:hover::before{
    opacity: 1;
}

.tb-page .service-card img{
    height: 230px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.tb-table-wrap{
    margin-top: 45px;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15,23,42,0.10);
    border: 1px solid rgba(59,130,246,0.12);
}

.tb-table{
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.tb-table th{
    background: linear-gradient(135deg,#061638,#0f3d7c);
    color: #ffffff;
    padding: 22px 24px;
    text-align: left;
    font-size: 16px;
}

.tb-table th:first-child{
    border-top-left-radius: 24px;
}

.tb-table th:last-child{
    border-top-right-radius: 24px;
}

.tb-table td{
    padding: 20px 24px;
    border-bottom: 1px solid #e5edf7;
    font-size: 16px;
    color: #0f172a;
}

.tb-table tbody tr:nth-child(even){
    background: #f8fafc;
}

.tb-table tbody tr:hover{
    background: #eef6ff;
}

.tb-table td:last-child{
    font-weight: 700;
    color: #16a34a;
}

.tb-table tbody tr:last-child td{
    border-bottom: none;
}

.tb-project{
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 34%),
        linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
}

.tb-project .project-image img{
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,0.18);
}

.tb-cta{
    background:
        radial-gradient(circle at 18% 25%, rgba(34,197,94,0.22), transparent 28%),
        linear-gradient(135deg,#061638,#0f3d7c);
}

.tb-cta .cta-box{
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border-radius: 32px;
}

@media (max-width: 1100px){
    .tb-hero{
        min-height: 74vh;
    }
}

@media (max-width: 768px){
    .tb-hero{
        min-height: auto;
    }

    .tb-hero-overlay{
        padding: 95px 0;
    }

    .tb-hero-content h1{
        font-size: 42px;
    }

    .tb-hero-content p{
        font-size: 18px;
    }

    .tb-section{
        padding: 72px 0;
    }

    .tb-page .service-card img{
        height: 210px;
    }

    .tb-table th,
    .tb-table td{
        padding: 16px 18px;
        font-size: 14px;
    }
}
/* ===== MONITORING ===== */

.mon-hero{
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#061638 0%, #0f3d7c 45%, #1d4ed8 100%);
}

.mon-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(34,197,94,0.22), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(59,130,246,0.28), transparent 35%),
        radial-gradient(circle at 70% 78%, rgba(255,255,255,0.10), transparent 30%);
    pointer-events: none;
}

.mon-hero-overlay{
    width: 100%;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.mon-hero-content{
    max-width: 820px;
    color: #fff;
}

.mon-hero-content h1{
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.02;
    margin: 14px 0 22px;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.mon-hero-content p{
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
    max-width: 740px;
    margin-bottom: 34px;
}

.mon-hero .section-kicker{
    color: #4ade80;
}

.mon-section{
    padding: 95px 0;
}

.mon-light{
    background: linear-gradient(180deg,#f8fafc 0%, #eef6ff 100%);
}

.mon-white{
    background: #ffffff;
}

.monitoring-page .advantage-box,
.monitoring-page .service-card{
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(59,130,246,0.12);
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.monitoring-page .advantage-box::before,
.monitoring-page .service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(34,197,94,0.08));
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.monitoring-page .advantage-box:hover,
.monitoring-page .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15,23,42,0.14);
}

.monitoring-page .advantage-box:hover::before,
.monitoring-page .service-card:hover::before{
    opacity: 1;
}

.monitoring-page .service-card img{
    height: 230px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.mon-table-wrap{
    margin-top: 45px;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15,23,42,0.10);
    border: 1px solid rgba(59,130,246,0.12);
}

.mon-table{
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.mon-table th{
    background: linear-gradient(135deg,#061638,#0f3d7c);
    color: #ffffff;
    padding: 22px 24px;
    text-align: left;
    font-size: 16px;
}

.mon-table th:first-child{
    border-top-left-radius: 24px;
}

.mon-table th:last-child{
    border-top-right-radius: 24px;
}

.mon-table td{
    padding: 20px 24px;
    border-bottom: 1px solid #e5edf7;
    font-size: 16px;
    color: #0f172a;
}

.mon-table tbody tr:nth-child(even){
    background: #f8fafc;
}

.mon-table tbody tr:hover{
    background: #eef6ff;
}

.mon-table td:last-child{
    font-weight: 700;
    color: #16a34a;
}

.mon-table tbody tr:last-child td{
    border-bottom: none;
}

.mon-project{
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 34%),
        linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
}

.mon-project .project-image img{
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,0.18);
}

.mon-cta{
    background:
        radial-gradient(circle at 18% 25%, rgba(34,197,94,0.22), transparent 28%),
        linear-gradient(135deg,#061638,#0f3d7c);
}

.mon-cta .cta-box{
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border-radius: 32px;
}

@media (max-width: 1100px){
    .mon-hero{
        min-height: 74vh;
    }
}

@media (max-width: 768px){
    .mon-hero{
        min-height: auto;
    }

    .mon-hero-overlay{
        padding: 95px 0;
    }

    .mon-hero-content h1{
        font-size: 42px;
    }

    .mon-hero-content p{
        font-size: 18px;
    }

    .mon-section{
        padding: 72px 0;
    }

    .monitoring-page .service-card img{
        height: 210px;
    }

    .mon-table th,
    .mon-table td{
        padding: 16px 18px;
        font-size: 14px;
    }
}
/* ===== PV-REINIGUNG ===== */

.pvc-hero{
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(6,22,56,0.92), rgba(15,61,124,0.82)),
        url('/assets/img/sunbrush-sunbotics.jpg') center/cover no-repeat;
}

.pvc-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(34,197,94,0.22), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(59,130,246,0.28), transparent 35%),
        radial-gradient(circle at 70% 78%, rgba(255,255,255,0.10), transparent 30%);
    pointer-events: none;
}

.pvc-hero-overlay{
    width: 100%;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.pvc-hero-content{
    max-width: 850px;
    color: #fff;
}

.pvc-hero-content h1{
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.02;
    margin: 14px 0 22px;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.pvc-hero-content p{
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
    max-width: 760px;
    margin-bottom: 34px;
}

.pvc-hero .section-kicker{
    color: #4ade80;
}

.pvc-section{
    padding: 95px 0;
}

.pvc-light{
    background: linear-gradient(180deg,#f8fafc 0%, #eef6ff 100%);
}

.pvc-white{
    background: #ffffff;
}

.pv-clean-page .advantage-box,
.pv-clean-page .service-card,
.pvc-process-card{
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(59,130,246,0.12);
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pv-clean-page .advantage-box::before,
.pv-clean-page .service-card::before,
.pvc-process-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(34,197,94,0.08));
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.pv-clean-page .advantage-box:hover,
.pv-clean-page .service-card:hover,
.pvc-process-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15,23,42,0.14);
}

.pv-clean-page .advantage-box:hover::before,
.pv-clean-page .service-card:hover::before,
.pvc-process-card:hover::before{
    opacity: 1;
}

.pv-clean-page .service-card img{
    height: 230px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.pvc-process-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
}

.pvc-process-card{
    padding: 34px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15,23,42,0.07);
}

.pvc-number{
    font-size: 42px;
    font-weight: 800;
    color: rgba(29,78,216,0.18);
    margin-bottom: 18px;
}

.pvc-process-card h3{
    font-size: 23px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.pvc-process-card p{
    color: #475569;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.pvc-table-wrap{
    margin-top: 45px;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15,23,42,0.10);
    border: 1px solid rgba(59,130,246,0.12);
}

.pvc-table{
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.pvc-table th{
    background: linear-gradient(135deg,#061638,#0f3d7c);
    color: #ffffff;
    padding: 22px 24px;
    text-align: left;
    font-size: 16px;
}

.pvc-table th:first-child{
    border-top-left-radius: 24px;
}

.pvc-table th:last-child{
    border-top-right-radius: 24px;
}

.pvc-table td{
    padding: 20px 24px;
    border-bottom: 1px solid #e5edf7;
    font-size: 16px;
    color: #0f172a;
}

.pvc-table tbody tr:nth-child(even){
    background: #f8fafc;
}

.pvc-table tbody tr:hover{
    background: #eef6ff;
}

.pvc-table td:last-child{
    font-weight: 700;
    color: #16a34a;
}

.pvc-table tbody tr:last-child td{
    border-bottom: none;
}

.pvc-project{
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 34%),
        linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
}

.pvc-project .project-image img{
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,0.18);
}

.pvc-cta{
    background:
        radial-gradient(circle at 18% 25%, rgba(34,197,94,0.22), transparent 28%),
        linear-gradient(135deg,#061638,#0f3d7c);
}

.pvc-cta .cta-box{
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border-radius: 32px;
}

@media (max-width: 1100px){
    .pvc-hero{
        min-height: 74vh;
    }

    .pvc-process-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px){
    .pvc-hero{
        min-height: auto;
    }

    .pvc-hero-overlay{
        padding: 95px 0;
    }

    .pvc-hero-content h1{
        font-size: 42px;
    }

    .pvc-hero-content p{
        font-size: 18px;
    }

    .pvc-section{
        padding: 72px 0;
    }

    .pvc-process-grid{
        grid-template-columns: 1fr;
    }

    .pv-clean-page .service-card img{
        height: 210px;
    }

    .pvc-table th,
    .pvc-table td{
        padding: 16px 18px;
        font-size: 14px;
    }
}
.privacy-check{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e5edf7;
    padding: 16px 18px;
    border-radius: 14px;
}

.privacy-check input{
    margin-top: 5px;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.privacy-check a{
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
}
/* ===== DATENSCHUTZ ===== */

.privacy-section{
    padding: 90px 0;
    background: #f8fafc;
}

.privacy-content{
    max-width: 960px;
    background: #ffffff;
    padding: 52px;
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(15,23,42,0.08);
    border: 1px solid rgba(59,130,246,0.10);
}

.privacy-content h2{
    font-size: 28px;
    margin: 34px 0 14px;
    color: var(--primary);
}

.privacy-content h2:first-child{
    margin-top: 0;
}

.privacy-content p,
.privacy-content li{
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.privacy-content ul{
    margin: 16px 0 24px;
    padding-left: 22px;
}

.privacy-content a{
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
}

.privacy-date{
    margin-top: 42px;
    font-weight: 700;
    color: var(--primary) !important;
}

@media(max-width: 768px){
    .privacy-section{
        padding: 70px 0;
    }

    .privacy-content{
        padding: 30px 22px;
        border-radius: 22px;
    }

    .privacy-content h2{
        font-size: 23px;
    }
}
/* ===== IMPRESSUM / RECHTLICHES ===== */

.legal-section{
    padding: 90px 0;
    background: #f8fafc;
}

.legal-content{
    max-width: 960px;
    background: #ffffff;
    padding: 52px;
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(15,23,42,0.08);
    border: 1px solid rgba(59,130,246,0.10);
}

.legal-content h2{
    font-size: 28px;
    margin: 34px 0 14px;
    color: var(--primary);
}

.legal-content h2:first-child{
    margin-top: 0;
}

.legal-content p{
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.legal-content a{
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
}

.legal-date{
    margin-top: 42px;
    font-weight: 700;
    color: var(--primary) !important;
}

@media(max-width:768px){

    .legal-section{
        padding: 70px 0;
    }

    .legal-content{
        padding: 30px 22px;
        border-radius: 22px;
    }

    .legal-content h2{
        font-size: 23px;
    }

}
/* ===== COOKIE BANNER ===== */

.cookie-banner{
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(59,130,246,0.16);
    box-shadow: 0 24px 70px rgba(15,23,42,0.18);
    border-radius: 24px;
    padding: 22px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner.show{
    display: flex;
}

.cookie-text{
    max-width: 850px;
}

.cookie-text strong{
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 6px;
}

.cookie-text p{
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

.cookie-text a{
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
}

.cookie-actions{
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn{
    border: none;
    cursor: pointer;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

.cookie-btn-primary{
    background: linear-gradient(135deg, var(--accent), #1d4ed8);
    color: #fff;
}

.cookie-btn-secondary{
    background: #eef2f7;
    color: var(--primary);
}

.recaptcha-notice{
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

@media(max-width: 768px){
    .cookie-banner{
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
    }

    .cookie-actions{
        width: 100%;
    }

    .cookie-btn{
        flex: 1;
    }
}