.wp-hero{
    position:relative;
    overflow:hidden;
    min-height:760px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 42%, rgba(255,255,255,.55) 72%, rgba(255,255,255,.20) 100%),
        radial-gradient(circle at 75% 25%, rgba(14,169,100,.13), transparent 34%),
        url('/pics/waermepumpe.png') right center / contain no-repeat,
        linear-gradient(180deg,#ffffff 0%, #f7fafb 100%);
}

.wp-hero::before{
    display:none !important;
    content:none !important;
}

.wp-hero::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(14,169,100,.35),transparent);
}

.wp-hero-inner{
    position:relative;
    z-index:2;
    width:min(1220px, calc(100% - 32px));
    margin:0 auto;
    padding:120px 0 100px;
    display:block;
    overflow:visible;
}

.wp-hero-inner::before{
    display:none !important;
    content:none !important;
}

.wp-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#edf8f4;
    border:1px solid #d7eee5;
    color:var(--green);
    padding:10px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    margin-bottom:18px;
}

.wp-hero h1{
    font-size:clamp(38px,5vw,70px);
    line-height:1.03;
    max-width:780px;
    margin:0 0 22px;
    letter-spacing:-0.03em;
    color:#152330;
    text-shadow:none;
}

.wp-hero h1 span{
    color:var(--green) !important;
}

.wp-hero p{
    font-size:clamp(18px,2vw,24px);
    line-height:1.65;
    max-width:760px;
    color:#526270;
    margin:0 0 24px;
}

.wp-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:24px;
}

.wp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 24px;
    border-radius:14px;
    font-weight:800;
    text-decoration:none;
    transition:.22s ease;
}

.wp-btn-primary{
    background:var(--green);
    color:#fff;
    box-shadow:0 12px 28px rgba(14,169,100,.25);
}

.wp-btn-secondary{
    background:#fff;
    border:1px solid #d8e5e9;
    color:#1c2d36;
}

.wp-btn-secondary:hover{
    border-color:#9fdccd;
    color:var(--green);
}

.wp-btn:hover{
    transform:translateY(-2px);
}

.wp-card{
    margin-top:34px;
    max-width:720px;
    background:#fff;
    border:1px solid #e2eaee;
    border-radius:26px;
    padding:26px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.wp-card h2{
    color:#152330;
    font-size:28px;
    line-height:1.2;
    margin:0 0 18px;
}

.wp-card ul{
    display:grid;
    gap:14px;
    padding:0;
    margin:0;
}

.wp-card li{
    list-style:none;
    color:#526270;
    font-size:16px;
}

@media(max-width:900px){
    .wp-hero{
        min-height:auto;
        background:
            linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 62%, rgba(255,255,255,.96) 100%),
            url('/pics/waermepumpe.png') right bottom / 440px auto no-repeat,
            linear-gradient(180deg,#ffffff 0%, #f7fafb 100%);
    }

    .wp-hero-inner{
        padding:90px 0 360px;
    }

    .wp-hero h1,
    .wp-hero p{
        max-width:100%;
    }
}

.wp-section{
    padding:78px 0;
    background:#fff;
}

.wp-section.alt{
    background:linear-gradient(180deg,#f7fafb,#fff);
}

.wp-container{
    width:min(1180px, calc(100% - 32px));
    margin:0 auto;
}

.wp-eyebrow{
    color:var(--green);
    text-transform:uppercase;
    letter-spacing:.08em;
    font-weight:900;
    font-size:13px;
    margin-bottom:12px;
}

.wp-title{
    font-size:clamp(30px,3vw,48px);
    line-height:1.1;
    color:#152330;
    margin:0 0 18px;
}

.wp-text{
    color:#526270;
    font-size:18px;
    line-height:1.85;
    max-width:920px;
}

.wp-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:34px;
}

.wp-box{
    background:#fff;
    border:1px solid #e2eaee;
    border-radius:22px;
    padding:24px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.wp-box h3{
    font-size:21px;
    margin:0 0 10px;
    color:#152330;
}

.wp-box p{
    margin:0;
    color:#667480;
    line-height:1.75;
}

.wp-highlight{
    background:#10251d;
    color:#fff;
    border-radius:28px;
    padding:42px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:center;
}

.wp-highlight h2{
    color:#fff;
}

.wp-highlight p{
    color:rgba(255,255,255,.86);
}

.wp-table{
    width:100%;
    border-collapse:collapse;
    margin-top:28px;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.wp-table th,
.wp-table td{
    padding:16px;
    border-bottom:1px solid #e5ecef;
    text-align:left;
}

.wp-table th{
    background:#edf8f4;
    color:var(--green);
}

.wp-faq details{
    background:#fff;
    border:1px solid #e2eaee;
    border-radius:16px;
    padding:18px 20px;
    margin-bottom:12px;
}

.wp-faq summary{
    cursor:pointer;
    font-weight:800;
    color:#152330;
}

.wp-faq p{
    margin:12px 0 0;
    color:#667480;
    line-height:1.75;
}
