/* Outfit Font - Lokal gehostet */
@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit-v15-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit-v15-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit-v15-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit-v15-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit-v15-latin-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --accent: #22c55e;
    --text: #0d6b3a;
    --text-light: #4a5f54;
    --bg: #ffffff;
    --bg-light: #f7fbf9;
    --border: #d8e8df;
    --accent-light: #e6f5ec;
}

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            width: 100%;
        }

        /* Header - Transparent auf Hero */
        header {
            background: transparent;
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            max-width: 160px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--primary);
            color: var(--bg) !important;
            padding: 0.7rem 1.6rem;
            border-radius: 25px;
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .burger span {
            width: 24px;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s;
        }

        /* Hero - Asymmetrisch mit Bild */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 60%;
            height: 100%;
            background: url('../img/hero-bg.jpg') center/cover;
            opacity: 0.06;
            transform: skewX(-5deg);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
        }

        .hero-tag {
            display: inline-block;
            background: var(--accent-light);
            color: var(--primary);
            padding: 0.6rem 1.3rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
        }

        h1 {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 800;
            color: var(--text);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        h1 .highlight {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .hero-lead {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .hero-btns {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.2rem 2.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--bg);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(13, 107, 58, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border-color: var(--border);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            background: var(--accent-light);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .stat-box {
            text-align: center;
        }

        .stat-val {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-weight: 500;
        }

        /* Services - Cards mit Overlay-Nummer */
        .services {
            padding: 8rem 0;
            background: var(--bg);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-sup {
            display: inline-block;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1.25rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .section-intro {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(13, 107, 58, 0.15);
        }

        .service-num {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 5rem;
            font-weight: 900;
            color: var(--accent-light);
            line-height: 1;
            transition: all 0.4s;
        }

        .service-card:hover .service-num {
            color: rgba(13, 107, 58, 0.15);
            transform: scale(1.1);
        }

        .service-icon-holder {
            width: 70px;
            height: 70px;
            background: var(--accent-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .service-icon {
            width: 40px;
            height: 40px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.25rem;
            line-height: 1.3;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.75rem;
        }

        .service-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .service-features li {
            display: flex;
            align-items: start;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: var(--text);
            font-weight: 500;
        }

        .service-features li::before {
            content: "✓";
            color: var(--primary);
            font-weight: 800;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        /* Steps - Horizontal mit Pfeilen */
        .steps {
            padding: 8rem 0;
            background: var(--bg-light);
        }

        .steps-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
        }

        .step-box {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            text-align: center;
            position: relative;
            transition: all 0.3s;
        }

        .step-box:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(13, 107, 58, 0.1);
        }

        .step-badge {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 800;
            box-shadow: 0 5px 15px rgba(13, 107, 58, 0.3);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            margin: 1.5rem auto 1.5rem;
        }

        .step-box h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
        }

        .step-box p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* About - Bild links, Content rechts */
        .about {
            padding: 8rem 0;
            background: var(--bg);
        }

        .about-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 600px;
            object-fit: contain;
            object-position: center;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            background: var(--bg-light);
            padding: 3rem;
        }

        .about-content h2 {
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .about-text {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-top: 3rem;
        }

        .feature-box {
            display: flex;
            align-items: start;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--bg-light);
            border-radius: 15px;
            border: 1px solid var(--border);
        }

        .feature-check {
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: var(--bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: 800;
            font-size: 0.85rem;
        }

        .feature-box strong {
            display: block;
            color: var(--text);
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .feature-box span {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Locations - Kreative Cards */
        .locations {
            padding: 8rem 0;
            background: var(--bg-light);
        }

        .cities-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .city-card {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .city-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(180deg, transparent, var(--accent-light));
            transition: height 0.3s;
        }

        .city-card:hover::before {
            height: 100%;
        }

        .city-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(13, 107, 58, 0.15);
        }

        .city-card span {
            position: relative;
            z-index: 1;
        }

        /* Contact - Split Layout */
        .contact {
            padding: 8rem 0;
            background: var(--bg);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            margin-top: 4rem;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 2.5rem;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1.25rem;
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: 15px;
            border: 1px solid var(--border);
        }

        .contact-icon {
            width: 28px;
            height: 28px;
            margin-top: 2px;
        }

        .contact-item strong {
            display: block;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .contact-item a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        /* Form */
        .form-box {
            background: var(--bg-light);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 3rem;
        }

        .form-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .field-group {
            margin-bottom: 1.5rem;
        }

        .field-group label {
            display: block;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }

        .field-group input,
        .field-group textarea {
            width: 100%;
            padding: 1.1rem 1.25rem;
            border: 2px solid var(--border);
            border-radius: 15px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            color: var(--text);
            background: var(--bg);
            transition: all 0.3s;
        }

        .field-group input:focus,
        .field-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(13, 107, 58, 0.1);
        }

        .field-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .checkbox-row {
            display: flex;
            gap: 1rem;
            align-items: start;
            margin: 2rem 0;
        }

        .checkbox-row input {
            margin-top: 3px;
        }

        .checkbox-row label {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .checkbox-row a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: var(--text);
            color: rgba(255, 255, 255, 0.8);
            padding: 3.5rem 0;
            text-align: center;
        }

        footer p {
            margin-bottom: 0.75rem;
        }

        footer strong {
            color: var(--bg);
        }

        footer a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 600;
        }

        footer a:hover {
            color: var(--bg);
        }

        /* Scroll Top */
        .scroll-top {
            position: fixed;
            bottom: 90px;
            right: 10px;
            width: 55px;
            height: 55px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            border: none;
            box-shadow: 0 5px 20px rgba(13, 107, 58, 0.4);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(13, 107, 58, 0.5);
        }

        .scroll-top img {
            width: 20px;
            height: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid,
            .about-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .cities-wrap {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            header {
                padding: 1rem 0;
            }
            
            .hero::before {
                display: none;
            }

            nav {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 0;
                gap: 0;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                opacity: 0;
                transition: all 0.4s ease-in-out;
                z-index: 999;
            }

            nav.active {
                transform: translateX(0);
                opacity: 1;
            }

            nav a {
                width: 100%;
                max-width: 300px;
                padding: 1.2rem 2rem;
                text-align: center;
                border-bottom: 1px solid var(--border);
                font-size: 1.1rem;
            }

            nav a:first-child {
                border-top: 1px solid var(--border);
            }

            nav a:last-child {
                border-bottom: none;
            }

            .nav-cta {
                margin-top: 1rem;
                border: 2px solid var(--primary) !important;
            }

            .burger {
                display: flex;
                z-index: 1001;
                position: relative;
            }

            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 7px);
            }

            .burger.active span:nth-child(2) {
                opacity: 0;
            }

            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            .hero {
                padding-top: 80px;
            }

            h1 {
                font-size: 2.5rem;
            }

            .hero-lead {
                font-size: 1.05rem;
            }

            .hero-btns {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .stat-val {
                font-size: 2rem;
            }

            .services,
            .steps,
            .about,
            .locations,
            .contact {
                padding: 5rem 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .steps-wrapper {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .about-image {
                height: 400px;
            }

            .cities-wrap {
                grid-template-columns: 1fr;
            }

            .form-cols {
                grid-template-columns: 1fr;
            }

            .scroll-top {
                bottom: 80px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }


/* Form Message Styles */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.g-recaptcha {
    margin: 1.5rem 0;
}