:root {
    --color-bg: #faf8f2;          /* warmes Creme-Weiß */
    --color-surface: #ffffff;
    --color-surface-alt: #f0f4ec; /* helles Grün-Grau für Sektionen */
    --color-primary: #63b26e;     /* helles, freundliches Grün */
    --color-primary-dark: #2c5e34;
    --color-primary-light: #e6f5e2;
    --color-accent: #f5c400;      /* klares Gelb für CTAs */
    --color-accent-dark: #b38f00; /* dunkleres Gelb für Text/Icons & Hover */
    --color-text: #22281f;
    --color-text-muted: #5b6357;
    --color-border: #e3ddcd;

    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --radius: 8px;
    --radius-lg: 12px;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 2px 10px rgba(34, 40, 31, 0.06);
    --shadow-strong: 0 12px 28px rgba(34, 40, 31, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.accent {
    color: var(--color-accent-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-surface-alt);
}

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

/* Section kicker (small tracked label above headings) */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.kicker::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--color-accent-dark);
    display: inline-block;
}

/* Trust bar (used in hero) */
.badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    animation: fadeInUp 0.6s ease-out 0.32s both;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    border-right: 1px solid var(--color-border);
}

.badge:last-child {
    border-right: none;
}

.badge-icon {
    width: 17px;
    height: 17px;
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

/* Top info bar */
.topbar {
    background: var(--color-primary-dark);
    color: #fff;
    font-size: 0.82rem;
    padding: 9px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    letter-spacing: 0.2px;
}

.topbar a {
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

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

.icon-inline {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(250, 248, 242, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-primary-dark);
}

.logo span {
    color: var(--color-accent-dark);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
}

.nav-links a:hover {
    color: var(--color-primary-dark);
}

.nav-phone {
    font-weight: 700;
    color: var(--color-primary-dark) !important;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text);
    border: none;
    padding: 13px 28px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary-dark);
    border: 1.5px solid var(--color-primary-dark);
    padding: 11px 26px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease-out 0.24s both;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(180deg, #eef4e8 0%, var(--color-bg) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: fadeInUp 0.6s ease-out both;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--color-accent-dark);
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.3rem, 5.2vw, 3.4rem);
    margin-bottom: 20px;
    color: var(--color-primary-dark);
    animation: fadeInUp 0.6s ease-out 0.08s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 34px;
    animation: fadeInUp 0.6s ease-out 0.16s both;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 22px;
    color: var(--color-primary-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-glass {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    border-left: 3px solid var(--color-accent-dark);
}

.about-glass h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-primary-dark);
}

.about-glass p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* Price promise strip */
.promise-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.promise-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    text-align: center;
}

.promise-card .icon {
    width: 46px;
    height: 46px;
    padding: 12px;
    box-sizing: border-box;
    color: var(--color-primary-dark);
    background: var(--color-primary-light);
    border-radius: var(--radius);
    margin: 0 auto 18px;
}

.promise-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.promise-card p {
    color: var(--color-text-muted);
    font-size: 0.93rem;
    margin: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 34px 30px;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 46px;
    height: 46px;
    padding: 11px;
    box-sizing: border-box;
    margin-bottom: 20px;
    color: var(--color-accent-dark);
    background: var(--color-primary-light);
    border-radius: var(--radius);
}

.service-card h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
    color: var(--color-primary-dark);
}

.service-card p {
    color: var(--color-text-muted);
}

.service-card .price-tag {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    color: var(--color-accent-dark);
    font-size: 0.86rem;
    letter-spacing: 0.2px;
}

/* Einsatzgebiet / Region grid */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.region-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius);
    padding: 24px 26px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

.region-card:hover {
    border-color: var(--color-primary-dark);
    box-shadow: var(--shadow-strong);
    color: var(--color-text);
}

.region-card h3 {
    color: var(--color-primary-dark);
    font-size: 1.12rem;
    margin-bottom: 6px;
}

.region-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.region-card.is-current {
    border-left-color: var(--color-accent-dark);
    background: var(--color-primary-light);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 24px 0;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: rgba(255,255,255,0.85);
    padding-bottom: 40px;
}

.footer .section-title,
.footer h4 {
    color: #fff;
}

.footer .logo {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a,
.footer-links p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.82rem;
}

.footer-credit a {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-credit a:hover {
    color: var(--color-accent);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(34, 40, 31, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    position: relative;
    text-align: center;
    max-width: 440px;
    width: 90%;
    transform: translateY(16px);
    transition: transform 0.3s ease;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-strong);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.close-modal {
    position: absolute;
    top: 14px; right: 18px;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    color: var(--color-text-muted);
    transition: color 0.2s;
}
.close-modal:hover { color: var(--color-accent-dark); }
.modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.modal-btn {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    padding: 18px 20px;
    border-radius: var(--radius);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.modal-btn:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-text);
}
.modal-btn .icon-inline {
    width: 19px;
    height: 19px;
    color: var(--color-accent-dark);
}
.modal-btn small {
    font-size: 0.85rem;
    margin-left: 6px;
    opacity: 0.6;
}

/* Legal pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-muted);
}
.legal-content h1, .legal-content h2, .legal-content h3 {
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}
.legal-content h2 {
    margin-top: 40px;
    font-size: 1.6rem;
}
.legal-content p {
    margin-bottom: 15px;
}
.legal-content a {
    color: var(--color-accent-dark);
    font-weight: 600;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-strong);
        padding: 8px 5%;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
    }

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

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 640px) {
    .badge {
        border-right: none;
        padding: 5px 14px;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .topbar {
        gap: 14px;
        font-size: 0.76rem;
    }
    .topbar span {
        display: none;
    }
    .hero {
        padding-top: 50px;
    }
}
