:root {
    --bg: #f6fbf7;
    --text: #102016;
    --muted: #64746a;
    --primary: #12823f;
    --primary-dark: #075c2b;
    --green: #2fbf71;
    --light-green: #e9f8ef;
    --card: rgba(255, 255, 255, 0.92);
    --line: rgba(16, 32, 22, 0.12);
    --shadow: 0 24px 70px rgba(18, 130, 63, 0.16);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.section-pad {
    padding: 96px 0;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.08rem;
}

.brand img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.brand span {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #334155;
    font-weight: 800;
}

.nav-links a {
    transition: color .25s ease;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    color: white !important;
    background: linear-gradient(135deg, var(--primary), var(--green));
    box-shadow: 0 10px 26px rgba(18, 130, 63, .22);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background: var(--text);
    border-radius: 999px;
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: grid;
    align-items: center;
    background: radial-gradient(circle at 18% 15%, rgba(47, 191, 113, .22), transparent 34%), radial-gradient(circle at 80% 18%, rgba(18, 130, 63, .18), transparent 38%), linear-gradient(180deg, #f6fbf7 0%, #eaf8ef 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(47, 191, 113, .13);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 58px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .8rem;
}

h1,
h2,
h3 {
    line-height: 1.12;
    margin: 0;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    letter-spacing: -0.06em;
}

h1 span,
h2 span {
    color: var(--primary-dark);
}

.hero-text {
    max-width: 630px;
    color: var(--muted);
    font-size: 1.16rem;
    margin: 24px 0 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 15px 24px;
    font-weight: 900;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--green));
    box-shadow: 0 16px 34px rgba(18, 130, 63, .28);
}

.btn-secondary {
    color: var(--primary-dark);
    background: white;
    border: 1px solid var(--line);
}

.btn-light {
    color: var(--primary-dark);
    background: white;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    color: #365642;
    font-weight: 800;
}

.trust-row span {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .9);
    padding: 10px 14px;
    border-radius: 999px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    padding: 42px;
    background: var(--card);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
}

.card-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--green));
    font-size: 2.2rem;
    margin-bottom: 28px;
}

.hero-card h2 {
    font-size: 2rem;
    letter-spacing: -.03em;
}

.hero-card p {
    color: var(--muted);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.stats div {
    padding: 18px;
    border-radius: 20px;
    background: var(--light-green);
}

.stats strong {
    display: block;
    font-size: 1.45rem;
    color: var(--primary-dark);
}

.stats span {
    color: var(--muted);
    font-size: .9rem;
}


/* SECTIONS */

.section-head {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-head h2,
.contact-grid h2,
.why-grid h2,
.reviews-head h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -.05em;
    margin-bottom: 16px;
}

.section-head p,
.muted {
    color: var(--muted);
    font-size: 1.06rem;
}


/* SERVICES */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card,
.step,
.contact-form,
.review-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 16px 44px rgba(16, 32, 22, .06);
}

.service-card {
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.035);
    box-shadow: var(--shadow);
    border-color: rgba(18, 130, 63, .35);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--light-green);
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.service-card h3,
.step h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.service-card p,
.step p {
    color: var(--muted);
    margin: 0;
}

.service-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary-dark);
    font-weight: 900;
}


/* WHY */

.why {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    position: relative;
    min-height: 430px;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(18, 130, 63, .20), rgba(47, 191, 113, .22)), url("cleaning.jpg") center/cover no-repeat;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.why-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 32, 22, .08), rgba(16, 32, 22, .58));
}

.why-photo-card {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
}

.why-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--green));
    font-weight: 900;
    font-size: .85rem;
}

.why-photo-card h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.why-photo-card p {
    margin: 0 0 18px;
    color: var(--muted);
}

.why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.why-points span {
    padding: 10px 12px;
    border-radius: 14px;
    background: #f7fbff;
    border: 1px solid var(--line);
    font-weight: 800;
    color: #334155;
}

.feature-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.feature-list div {
    display: grid;
    gap: 5px;
    padding: 20px;
    border-radius: 22px;
    background: var(--light-green);
    border: 1px solid var(--line);
}

.feature-list strong {
    color: var(--primary-dark);
}

.feature-list span {
    color: var(--muted);
}


/* REVIEWS */

.reviews {
    background: #f7fbf8;
}

.reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--primary-dark);
    letter-spacing: 3px;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.review-card p {
    font-size: 1.03rem;
    color: #1f2937;
    margin-bottom: 24px;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-person>span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--primary);
    border-radius: 50%;
    font-weight: 900;
}

.review-person small {
    display: block;
    color: var(--muted);
}

.review-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: .9rem;
}


/* STEPS */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step span {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 18px;
    color: white;
    background: var(--primary);
    font-weight: 900;
}


/* CTA */

.cta-strip {
    padding: 64px 0;
    color: white;
    background: linear-gradient(135deg, var(--primary-dark), var(--green));
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -.05em;
}

.cta-inner p {
    margin: 8px 0 0;
    opacity: .9;
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    font-weight: 800;
}

.contact-info a {
    padding: 16px 18px;
    border-radius: 18px;
    background: white;
    border: 1px solid var(--line);
    transition: transform .25s ease, border-color .25s ease;
}

.contact-info a:hover {
    transform: translateX(4px);
    border-color: rgba(18, 130, 63, .35);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    color: #334155;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit;
    color: var(--text);
    background: #fbfffc;
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(18, 130, 63, .12);
}

textarea {
    resize: vertical;
}

.form-note {
    min-height: 24px;
    color: var(--primary-dark);
    font-weight: 800;
    margin: 0;
}


/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 2%;
    bottom: 22px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, #128c3f, #25d366);
    box-shadow: 0 18px 40px rgba(18, 130, 63, .35);
    font-weight: 900;
    transition: transform .25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}


/* FOOTER */

.footer {
    padding: 28px 0;
    color: #64746a;
    border-top: 1px solid var(--line);
    background: white;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer a {
    margin-left: 18px;
}


/* ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .22s;
}


/* RESPONSIVE */

@media (max-width: 1050px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 18px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 12px;
    }
    .hero {
        min-height: auto;
    }
    .hero-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .review-grid,
    .steps {
        grid-template-columns: 1fr;
    }
    .reviews-head,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1120px);
    }
    .section-pad {
        padding: 72px 0;
    }
    .brand span {
        display: none;
    }
    h1 {
        font-size: 2.7rem;
    }
    .service-grid,
    .stats,
    .why-points {
        grid-template-columns: 1fr;
    }
    .hero-card,
    .service-card,
    .step,
    .contact-form,
    .review-card {
        padding: 24px;
    }
    .trust-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .why-image {
        min-height: 380px;
    }
    .whatsapp-float span {
        display: none;
    }
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    width: 215px;
    /* anpassen */
    height: auto;
    margin-top: auto;
}