
html, body {
    font-family: 'Inter', sans-serif;
}


* {
    box-sizing: border-box;
}


input,
textarea,
button,
select,
label,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span {
    font-family: 'Inter', sans-serif;
}
:root {
    --text-2xl: 32px;
    --text-xl: 26px;
    --text-lg: 20px;
    --text-base: 16px;
    --font-weight-medium: 500;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Grund-Typografie */
h1 {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h2 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h4 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h5{
    font-family: 'Inter', sans-serif;
}


.leistungsbereich {

        max-width: 1200px;
        margin: 80px auto;
        padding: 0 30px;

}

.leistungscontainer{
    display: flex;
    flex-direction: column;

}




/*Leistungsboxen*/
.kontakt-item {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 26px;

    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    border: 1px solid #dbe3e8;
    border-radius: 24px;
    box-shadow: 0 18px 42px -30px rgba(18, 32, 41, 0.22);

    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kontakt-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px -28px rgba(18, 32, 41, 0.24);
    border-color: #cfd8de;
}

.leistungenbereich {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    font-family: 'Inter', sans-serif;
}

.leistungen-header {
    padding: 32px 36px;
    margin-bottom: 48px;

    background:
            radial-gradient(circle at top right, rgba(159, 178, 191, 0.18), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f5f8fa 100%);


    border: 1px solid rgba(219, 227, 232, 0.9);
    border-radius: 24px;
    box-shadow: 0 18px 42px -30px rgba(18, 32, 41, 0.22);
    text-align: center;
}

.leistungen-header h4 {

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    font-variant-caps: all-small-caps;
    color: #7b8f9c;

}

.leistungen-header h1 {
    margin: 0 auto 16px auto;
    max-width: 13ch;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0f1b24;
    text-align: center;
}

.leistungen-header p {

    max-width: 720px;
    font-size: 17px;
    line-height: 1.55;
    color: #6b7c88;
    text-align: center;
    margin: 0 auto;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.leistung-box {
    padding: 28px 30px;

    background: radial-gradient(
            circle at top right,
            rgba(230, 240, 246, 0.65) 0%,
            rgba(244, 248, 251, 0.65) 50%,
            #ffffff 100%
    );
    border: 1px solid #dbe3e8;
    border-radius: 24px;
    box-shadow: 0 18px 42px -30px rgba(18, 32, 41, 0.22);

    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.leistung-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px -28px rgba(18, 32, 41, 0.24);
    border-color: #cfd8de;
}

.leistung-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgb(153, 172, 184);
    border-radius: 16px;
    box-shadow: 0 14px 28px -20px rgba(115, 136, 150, 0.55);
}

.leistung-icon i {
    font-size: 20px;
    color: #ffffff;
}

.leistung-box h3 {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #0f1b24;
}

.leistung-box ul {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}

.leistung-box li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 22px;

    font-size: 15px;
    line-height: 1.5;
    color: #5f7482;
}

.leistung-box li::before {
    content: "";
    width: 7px;
    height: 7px;

    position: absolute;
    left: 0;
    top: 9px;

    background: #9fb2bf;
    border-radius: 50%;
}

.leistung-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #6f7d88;
}

@media (max-width: 768px) {
    .leistungenbereich {
        margin: 50px auto;
        padding: 0 20px;
    }

    .leistungen-header {
        padding: 28px 26px;
        margin-bottom: 32px;
        border-radius: 22px;
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leistung-box {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .leistung-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .leistung-icon i {
        font-size: 18px;
    }

    .leistung-box h3 {
        font-size: 20px;
    }
}



.cta-box {
    padding: 60px 30px;
    text-align: center;


    background-color: rgba(135, 135, 135, 0.09);

    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom: none;
    margin-bottom: -1px;
}

.footer {
    margin-top: 0;
}

/* Überschrift */
.cta-box h3 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f1b24;
}

/* Text */
.cta-box p {
    margin: 0 0 26px 0;
    font-size: 17px;
    line-height: 1.6;
    color: #6f7d88;
}

/* Button (wie bei dir) */
.cta-button {
    display: inline-block;
    padding: 14px 26px;

    background: #738896;
    color: white;
    text-decoration: none;

    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;

    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #738896;
    transform: translateY(-2px);
}

.cta-box {
    border-bottom: 1px solid #738896;
}

@keyframes pulseHighlight {
    0% {
        box-shadow: 0 0 0 rgba(153,172,184, 0);
    }
    50% {
        box-shadow: 0 0 12px rgba(153,172,184, 0.35);
    }
    100% {
        box-shadow: 0 0 0 rgba(153,172,184, 0);
    }
}

.highlight {
    animation: pulseHighlight 1.2s ease-in-out 1;
}
#installation,
/*#pv,*/
#wallbox,
#service,
#echeck {
    scroll-margin-top: 130px;
}


.footer {
    margin-top: 0px;
    padding: 60px 40px 28px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 48px;

    font-family: 'Manrope', sans-serif;

    background: #0f1b24; /* tiefes Navy */
    color: #e6edf2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Branding */

.footer-brand h3 {
    margin: 0 0 6px 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.footer-subtitle {
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8fa3b0;
}

/* Text */

.footer p,
.footer li {
    font-size: 15px;
    line-height: 1.7;
    color: #b8c6cf;
    margin: 0;
}

/* Section Titel */

.footer-section h4 {
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Listen */

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

/* subtiler Hover */

.footer-section li:hover {
    color: #ffffff;
}

/* Öffnungszeiten */

.zeiten li {
    display: flex;
    gap: 12px; /* statt auseinanderziehen */
}

.zeiten span {
    min-width: 28px; /* kleiner als vorher */
    font-weight: 600;
    color: #e6edf2;
}

/* Bottom */

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 34px;
    padding-top: 22px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: #7f95a3;
}

.footer-bottom a {
    font-size: 14px;
    font-weight: 500;
    color: #b8c6cf;
    text-decoration: none;
    margin-left: 18px;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        padding: 42px 20px;
        gap: 26px;
    }

    .footer-section {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 14px;
    }

    .footer-section ul {
        display: none;
        margin-top: 10px;
    }

    .footer-section.active ul {
        display: block;
    }

    .toggle {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
    }

    .toggle::after {
        content: "+";
        color: #8fa3b0;
        transition: 0.2s;
    }

    .footer-section.active .toggle::after {
        transform: rotate(45deg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 14px;
    }
}

.footer-address p {
    margin: 0 0 6px 0; /* mehr Abstand zwischen Zeilen */
    line-height: 1.9;  /* luftiger */
}
.footer-social h4 {
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Icons Container */
.social-icons {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 0;
}
.footer-links a {
    margin-left: 12px;
}

@media (max-width: 768px) {
    .footer-right {
        align-items: flex-start;
    }
}

/* Einzelne Buttons */
.social-icons a {
    width: 48px;
    height: 48px;

    display: flex;


    border-radius: 14px;
    text-decoration: none;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    transition: all 0.2s ease;
}

