
/* Inter Local Font Setup */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
:root {
    --primary-color: #2d7a3e;
    --primary-dark: #1f5a2c;
    --primary-light: #3a9450;
    --secondary-color: #f8f9fa;
    --partner-green: #72a21f;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --text-light: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--text-light);
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subline {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 18px;
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Leistungen */
.leistungen {
    background-color: var(--secondary-color);
}

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

.leistung-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.leistung-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.leistung-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.leistung-content {
    padding: 30px 25px;
}

.leistung-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.leistung-list {
    list-style: none;
}

.leistung-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.leistung-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

/* Warum Grüncon */
.warum-wir {
    background-color: #ffffff;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.vorteil-item {
    text-align: center;
    padding: 30px 20px;
}

.vorteil-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
}

.vorteil-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.vorteil-item p {
    color: var(--text-gray);
    font-size: 15px;
}

.trust-badge {
    text-align: center;
    margin-top: 40px;
}

.trust-badge img {
    margin: 0 auto;
    opacity: 0.9;
}

/* Pflege-Pakete */
.pflege-pakete {
    background-color: var(--secondary-color);
}

.pakete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.paket-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.paket-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.paket-featured {
    border: 3px solid var(--primary-color);
}

.paket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.paket-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.paket-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.paket-preis {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preis-wert {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.preis-interval {
    font-size: 14px;
    color: var(--text-gray);
}

.paket-features {
    list-style: none;
    margin-bottom: 30px;
}

.paket-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.paket-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.pakete-hinweis {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
}

/* ============================
   Einsatzgebiete Section
   ============================ */

.einsatzgebiete {
    padding: 80px 0;
    background: radial-gradient(circle at top left, #f3f8f2 0%, #f9fbf7 40%, #ffffff 100%);
}

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

.einsatzgebiete-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.einsatzgebiet-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.einsatzgebiet-card-main {
    border: 1px solid rgba(45, 122, 62, 0.25);
    box-shadow: 0 16px 40px rgba(45, 122, 62, 0.16);
}

.einsatzgebiet-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(45, 122, 62, 0.08), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.einsatzgebiet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(45, 122, 62, 0.35);
}

.einsatzgebiet-card:hover::before {
    opacity: 1;
}

.einsatzgebiet-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1f3d25;
}

.einsatzgebiet-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #5f6b60;
    margin-bottom: 14px;
}

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

.einsatzgebiet-list li {
    font-size: 13px;
    color: #374036;
    padding-left: 18px;
    position: relative;
    margin-bottom: 4px;
}

.einsatzgebiet-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #2d7a3e;
    position: absolute;
    left: 0;
    top: 8px;
}

.einsatzgebiet-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 999px;
    background: rgba(45, 122, 62, 0.08);
    color: #2d7a3e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.einsatzgebiete-bottom {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.einsatzgebiete-bottom p {
    font-size: 15px;
    color: #475047;
    margin-bottom: 16px;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .einsatzgebiete-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .einsatzgebiete {
        padding: 60px 0;
    }

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

    .einsatzgebiet-card {
        padding: 20px 18px;
    }
}


/* Kooperationspartner - NEU */
.kooperationspartner {
    background-color: var(--partner-green);
    padding: 60px 0;
}

.kooperationspartner .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kooperationspartner-image {
    width: 450px;
    height: 182px;
    max-width: 100%;
    height: auto;
}

/* Impressionen */
.impressionen {
    background-color: #ffffff;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.galerie-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.galerie-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.galerie-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.galerie-item figcaption {
    padding: 20px;
    background-color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}


/* Kooperationspartner */
.kooperationspartner {
    background-color: var(--partner-green);
    padding: 60px 0;
}

.kooperationspartner .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kooperationspartner-image {
    width: 400px;
    height: 162px;
    max-width: 100%;
    height: auto;
}


/* Kontakt */
.kontakt {
    background-color: var(--secondary-color);
}

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.kontakt-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: left;
}

.link-datenschutz {
    color: var(--primary-color);
    text-decoration: underline;
}

.link-datenschutz:hover {
    color: var(--primary-dark);
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-gray);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 500;
}

.info-block a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-logo {
    margin-bottom: 20px;
    height: 50px;
    width: auto;
}

.footer-copy {
    color: #adb5bd;
    font-size: 14px;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #adb5bd;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    max-width: 700px;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.modal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.modal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-content ul li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 992px) {
    .kontakt-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 38px;
    }

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

    .leistung-content {
    padding: 24px 22px;
}
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow);
        transform: translateX(100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero {
        margin-top: 80px;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subline {
        font-size: 18px;
    }

    .hero-cta {
    flex-direction: column;
}

.section-title {
    font-size: 32px;
}

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

.leistung-image {
    height: 200px;
}

.leistung-content {
    padding: 25px 20px;
}

.leistung-card h3 {
    font-size: 20px;
}

.vorteile-grid,
.pakete-grid,
.galerie-grid {
    grid-template-columns: 1fr;
}

.form-row {
    grid-template-columns: 1fr;
}

.whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
}

.modal-content {
    padding: 30px 20px;
}

.kooperationspartner {
    padding: 40px 0;
}
}

@media (max-width: 480px) {
.hero h1 {
font-size: 28px;
}

.hero-subline {
    font-size: 16px;
}

.btn-large {
    padding: 14px 30px;
    font-size: 15px;
}

.section-title {
    font-size: 28px;
}

.section-intro {
    font-size: 16px;
}

.leistung-image {
    height: 180px;
}

.leistung-content {
    padding: 20px;
}

.leistung-card h3 {
    font-size: 19px;
}

.leistung-list li {
    font-size: 13px;
}

.kooperationspartner {
    padding: 30px 0;
}
}

/* ============================
   Modals (Impressum / Datenschutz / Cookie)
   ============================ */

.modal {
    position: fixed;
    inset: 0;
    display: none; /* Standard: versteckt */
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
}

.modal.is-open {
    display: flex;
}

.modal-content {
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    position: relative;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
}

.modal-content h3 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 16px;
}

.modal-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 8px;
}

.modal-close {
    position: absolute;
    right: 14px;
    top: 10px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.modal-close:hover {
    color: #000;
}

body.modal-open {
    overflow: hidden;
}

/* =======================================
   Navigation: Tablet-Darstellung wie Mobile
   ======================================= */

@media (max-width: 1024px) {
    /* Grundlayout Header */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 50;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    /* Burger sichtbar, Desktop-Navi erst mal aus */
    .hamburger {
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
        border: none;
        background: transparent;
        cursor: pointer;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: #222;
        display: block;
    }

    /* Standard: Menü verstecken (wie Mobile) */
    .nav-menu {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        background: #ffffff;
        display: none;
        flex-direction: column;
        padding: 12px 16px 16px;
        gap: 10px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-radius: 0 0 16px 16px;
    }

    /* Wenn JS-Klasse .nav-menu--open aktiv ist → anzeigen */
    .nav-menu.nav-menu--open {
        display: flex;
    }

    .nav-link {
        display: block;
        padding: 8px 4px;
        font-size: 15px;
    }

    .nav-menu .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Optional: ab 1025px wieder klassisches Desktop-Menü erzwingen */
@media (min-width: 1025px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 18px;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }
}

/* ==========================================
   FIX: Weißer Abstand unter Header entfernen
   für Mobile & Tablet (max-width: 1024px)
   ========================================== */

@media (max-width: 1024px) {
    /* Navbar selbst */
    .navbar {
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        min-height: 60px !important;
        border-bottom: none !important;
    }

    /* Container im Header */
    .navbar .container {
        padding: 0 16px !important;
        margin: 0 !important;
    }

    /* Die Wrapper-Zeile */
    .nav-wrapper {
        padding: 12px 0 !important;
        margin: 0 !important;
        height: auto !important;
    }

    /* Verhindert zusätzliches margin-top am HERO */
    #hero,
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
 .leistung-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.checkbox-inline {
    font-size: 14px;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.checkbox-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
