:root {
            --primary-green: #2d5c1e;
            --secondary-green: #3d6e2a;
            --accent-green: #5a9216;
            --accent-bright: #7db928;
            --dark: #1a1a1a;
            --text-dark: #2d2d2d;
            --text-medium: #525252;
            --bg-light: #f8faf8;
            --bg-white: #ffffff;
            --border-light: #e5e7e5;
            
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
            
            --font-primary: 'Inter', -apple-system, sans-serif;
            --font-display: 'Bebas Neue', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--bg-white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* NAVIGATION */
        @keyframes gradientMove {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes shimmer {
            0% { left: -100%; }
            50%, 100% { left: 200%; }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow:
                    0 5px 20px rgba(0, 0, 0, 0.12),
                    0 20px 50px rgba(93, 146, 22, 0.25),
                    0 0 0 1px rgba(125, 185, 40, 0.3),
                    0 0 40px rgba(125, 185, 40, 0.2),
                    0 0 60px rgba(164, 214, 82, 0.15),
                    inset 0 3px 6px rgba(255, 255, 255, 0.95),
                    inset 0 -2px 4px rgba(93, 146, 22, 0.08);
            }
            50% {
                box-shadow:
                    0 5px 20px rgba(0, 0, 0, 0.12),
                    0 20px 50px rgba(93, 146, 22, 0.4),
                    0 0 0 1px rgba(125, 185, 40, 0.5),
                    0 0 50px rgba(125, 185, 40, 0.35),
                    0 0 80px rgba(164, 214, 82, 0.25),
                    inset 0 3px 6px rgba(255, 255, 255, 0.95),
                    inset 0 -2px 4px rgba(93, 146, 22, 0.08);
            }
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 9999;
            background:
                radial-gradient(circle at 20% 50%, rgba(240, 250, 235, 0.88) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(235, 248, 228, 0.85) 0%, transparent 50%),
                linear-gradient(135deg,
                    rgba(255, 255, 255, 0.88) 0%,
                    rgba(248, 252, 246, 0.82) 20%,
                    rgba(240, 250, 235, 0.78) 40%,
                    rgba(235, 248, 228, 0.80) 60%,
                    rgba(245, 252, 242, 0.85) 80%,
                    rgba(250, 254, 248, 0.88) 100%);
            background-size: 200% 200%, 200% 200%, 200% 200%;
            animation: gradientMove 10s ease infinite, glow 3s ease-in-out infinite;
            backdrop-filter: blur(40px) saturate(250%) brightness(1.05);
            -webkit-backdrop-filter: blur(40px) saturate(250%) brightness(1.05);
            border-bottom: 5px solid transparent;
            border-image: linear-gradient(90deg,
                transparent 0%,
                rgba(93, 146, 22, 0.4) 8%,
                rgba(125, 185, 40, 0.6) 16%,
                rgba(164, 214, 82, 0.75) 24%,
                rgba(180, 230, 100, 0.85) 32%,
                rgba(190, 240, 110, 0.95) 40%,
                rgba(180, 230, 100, 1) 50%,
                rgba(190, 240, 110, 0.95) 60%,
                rgba(180, 230, 100, 0.85) 68%,
                rgba(164, 214, 82, 0.75) 76%,
                rgba(125, 185, 40, 0.6) 84%,
                rgba(93, 146, 22, 0.4) 92%,
                transparent 100%) 1;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(125, 185, 40, 0.35),
                rgba(164, 214, 82, 0.45),
                rgba(180, 230, 100, 0.5),
                rgba(164, 214, 82, 0.45),
                transparent);
            animation: shimmer 5s ease-in-out infinite;
            filter: blur(20px);
        }

        .navbar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg,
                transparent,
                rgba(164, 214, 82, 0.7) 15%,
                rgba(180, 230, 100, 0.9) 35%,
                rgba(190, 240, 110, 1) 50%,
                rgba(180, 230, 100, 0.9) 65%,
                rgba(164, 214, 82, 0.7) 85%,
                transparent);
            box-shadow: 0 0 15px rgba(180, 230, 100, 0.6);
        }

        .navbar.scrolled {
            animation: glow 3s ease-in-out infinite;
            box-shadow:
                0 8px 20px rgba(0, 0, 0, 0.15),
                0 20px 50px rgba(93, 146, 22, 0.25),
                0 0 0 1px rgba(125, 185, 40, 0.3),
                0 0 50px rgba(125, 185, 40, 0.12),
                inset 0 3px 6px rgba(255, 255, 255, 0.95),
                inset 0 -2px 4px rgba(93, 146, 22, 0.1);
            background:
                linear-gradient(135deg,
                    rgba(255, 255, 255, 0.98) 0%,
                    rgba(248, 252, 246, 0.96) 25%,
                    rgba(240, 250, 235, 0.93) 50%,
                    rgba(235, 248, 228, 0.95) 75%,
                    rgba(245, 252, 242, 0.97) 100%);
            background-size: 200% 200%;
            border-image: linear-gradient(90deg,
                transparent 0%,
                rgba(93, 146, 22, 0.4) 10%,
                rgba(125, 185, 40, 0.6) 20%,
                rgba(164, 214, 82, 0.8) 30%,
                rgba(180, 230, 100, 0.9) 40%,
                rgba(164, 214, 82, 1) 50%,
                rgba(180, 230, 100, 0.9) 60%,
                rgba(164, 214, 82, 0.8) 70%,
                rgba(125, 185, 40, 0.6) 80%,
                rgba(93, 146, 22, 0.4) 90%,
                transparent 100%) 1;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .nav-container::before {
            content: '';
            position: absolute;
            inset: -1rem -2rem;
            background:
                radial-gradient(circle at 30% 50%, rgba(180, 230, 100, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(164, 214, 82, 0.12) 0%, transparent 60%),
                linear-gradient(135deg,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(248, 252, 246, 0.4) 30%,
                    rgba(240, 250, 235, 0.45) 70%,
                    rgba(255, 255, 255, 0.5) 100%);
            backdrop-filter: blur(15px) saturate(150%);
            -webkit-backdrop-filter: blur(15px) saturate(150%);
            border-radius: 25px;
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
            box-shadow:
                0 8px 32px rgba(93, 146, 22, 0.15),
                0 0 60px rgba(125, 185, 40, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(125, 185, 40, 0.2);
        }

        .navbar:hover .nav-container::before {
            opacity: 1;
            transform: scale(1.02);
            box-shadow:
                0 12px 40px rgba(93, 146, 22, 0.2),
                0 0 80px rgba(125, 185, 40, 0.15),
                inset 0 2px 4px rgba(255, 255, 255, 0.8);
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.75rem 1rem;
            border-radius: 15px;
            position: relative;
        }

        .logo-text-wrapper {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .logo-greeting {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-green);
            letter-spacing: 0.05em;
        }

        .logo-company {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-small-icon {
            height: 30px;
            width: auto;
        }

        .logo-company-text {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: 0.02em;
        }

        .logo-container::before {
            content: '';
            position: absolute;
            inset: -4px;
            background:
                radial-gradient(circle at 50% 50%, rgba(180, 230, 100, 0.25) 0%, transparent 70%),
                linear-gradient(135deg,
                    rgba(255, 255, 255, 0.6) 0%,
                    rgba(248, 252, 246, 0.5) 30%,
                    rgba(240, 250, 235, 0.4) 70%,
                    rgba(255, 255, 255, 0.55) 100%);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-radius: 18px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 8px 20px rgba(93, 146, 22, 0.15),
                0 0 40px rgba(125, 185, 40, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.7);
            border: 2px solid rgba(125, 185, 40, 0.25);
        }

        .logo-container:hover {
            transform: scale(1.08) translateY(-3px);
        }

        .logo-container:hover::before {
            opacity: 1;
            box-shadow:
                0 12px 30px rgba(93, 146, 22, 0.25),
                0 0 60px rgba(125, 185, 40, 0.2),
                0 0 80px rgba(164, 214, 82, 0.1),
                inset 0 3px 6px rgba(255, 255, 255, 0.85);
            border-color: rgba(125, 185, 40, 0.5);
        }


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

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.8rem 1.4rem;
            border-radius: 16px;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            inset: -2px;
            background:
                radial-gradient(circle at 50% 0%, rgba(180, 230, 100, 0.4) 0%, transparent 70%),
                linear-gradient(135deg,
                    rgba(255, 255, 255, 0.75) 0%,
                    rgba(248, 252, 246, 0.65) 25%,
                    rgba(240, 250, 235, 0.55) 50%,
                    rgba(235, 248, 228, 0.65) 75%,
                    rgba(255, 255, 255, 0.7) 100%);
            backdrop-filter: blur(25px) saturate(200%) brightness(1.1);
            -webkit-backdrop-filter: blur(25px) saturate(200%) brightness(1.1);
            border-radius: 18px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
            border: 2px solid rgba(125, 185, 40, 0.3);
            box-shadow:
                0 10px 30px rgba(93, 146, 22, 0.15),
                0 0 40px rgba(125, 185, 40, 0.1),
                inset 0 3px 8px rgba(255, 255, 255, 0.9),
                inset 0 -3px 8px rgba(93, 146, 22, 0.12);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 5px;
            background: linear-gradient(90deg,
                var(--accent-green) 0%,
                var(--accent-bright) 20%,
                rgba(180, 230, 100, 1) 40%,
                rgba(190, 240, 110, 1) 50%,
                rgba(180, 230, 100, 1) 60%,
                var(--accent-bright) 80%,
                var(--accent-green) 100%);
            border-radius: 5px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 3px 15px rgba(125, 185, 40, 0.7),
                0 0 30px rgba(164, 214, 82, 0.5),
                0 0 50px rgba(180, 230, 100, 0.3);
        }

        .nav-link:hover {
            color: var(--primary-green);
            transform: translateY(-4px) scale(1.05);
            text-shadow:
                0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(125, 185, 40, 0.3);
            animation: float 2s ease-in-out infinite;
        }

        .nav-link:hover::before {
            opacity: 1;
            box-shadow:
                0 15px 35px rgba(93, 146, 22, 0.3),
                0 0 50px rgba(125, 185, 40, 0.25),
                0 0 80px rgba(164, 214, 82, 0.15),
                inset 0 4px 10px rgba(255, 255, 255, 0.95),
                inset 0 -3px 10px rgba(93, 146, 22, 0.15);
            border-color: rgba(125, 185, 40, 0.6);
            transform: scale(1.05);
        }

        .nav-link:hover::after {
            width: 90%;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow:
                    0 6px 20px rgba(93, 146, 22, 0.35),
                    0 2px 8px rgba(0, 0, 0, 0.15),
                    0 0 0 0 rgba(125, 185, 40, 0.4),
                    inset 0 1px 2px rgba(255, 255, 255, 0.3),
                    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
            }
            50% {
                box-shadow:
                    0 6px 20px rgba(93, 146, 22, 0.35),
                    0 2px 8px rgba(0, 0, 0, 0.15),
                    0 0 0 8px rgba(125, 185, 40, 0),
                    inset 0 1px 2px rgba(255, 255, 255, 0.3),
                    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
            }
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .nav-cta {
            background: linear-gradient(135deg,
                var(--primary-green) 0%,
                var(--accent-green) 25%,
                var(--accent-bright) 50%,
                var(--accent-green) 75%,
                var(--primary-green) 100%);
            background-size: 200% 200%;
            animation: gradientShift 8s ease infinite, pulse 2s ease-in-out infinite;
            color: white;
            padding: 1.1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: inline-block;
            z-index: 1;
        }

        .nav-cta > * {
            position: relative;
            z-index: 3;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent);
            transition: left 0.7s;
            z-index: 1;
        }

        .nav-cta::after {
            content: '';
            position: absolute;
            inset: 3px;
            border-radius: 47px;
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.03) 50%,
                transparent 100%);
            pointer-events: none;
            z-index: 2;
        }

        .nav-cta:hover::before {
            left: 100%;
        }

        .nav-cta:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow:
                0 15px 45px rgba(93, 146, 22, 0.5),
                0 5px 15px rgba(0, 0, 0, 0.25),
                0 0 40px rgba(125, 185, 40, 0.3),
                inset 0 2px 6px rgba(255, 255, 255, 0.5),
                inset 0 -3px 8px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            animation: gradientShift 4s ease infinite;
        }

        .nav-cta:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow:
                0 6px 20px rgba(93, 146, 22, 0.4),
                0 3px 8px rgba(0, 0, 0, 0.2),
                inset 0 3px 6px rgba(0, 0, 0, 0.2);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            background:
                linear-gradient(135deg,
                    #0a2e0f 0%,
                    #1e4620 25%,
                    #2d5c1e 50%,
                    #3d6e2a 75%,
                    #4a7d32 100%);
            display: flex;
            align-items: center;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        /* Animierte Lichtkugeln im Hintergrund */
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background:
                radial-gradient(circle at 20% 30%, rgba(125, 185, 40, 0.25) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(93, 146, 22, 0.3) 0%, transparent 30%),
                radial-gradient(circle at 60% 20%, rgba(180, 220, 100, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 30% 80%, rgba(150, 200, 60, 0.2) 0%, transparent 25%);
            animation: floatingLights 20s ease-in-out infinite;
        }

        @keyframes floatingLights {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 1;
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
                opacity: 0.8;
            }
            66% {
                transform: translate(-20px, 20px) scale(0.95);
                opacity: 0.9;
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        /* Leuchtende geometrische Muster mit 3D-Effekt */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(45deg, rgba(125, 185, 40, 0.03) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(125, 185, 40, 0.03) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(125, 185, 40, 0.03) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(125, 185, 40, 0.03) 75%);
            background-size: 80px 80px;
            background-position: 0 0, 0 40px, 40px -40px, -40px 0px;
            opacity: 0.4;
            animation: patternShift 30s linear infinite;
        }

        @keyframes patternShift {
            0% { background-position: 0 0, 0 40px, 40px -40px, -40px 0px; }
            100% { background-position: 80px 80px, 80px 120px, 120px 40px, 40px 80px; }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Logo mit 3D-Leucht-Effekt */
        .hero-logo {
            width: 350px;
            height: auto;
            margin-bottom: 2rem;
            filter:
                drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
                drop-shadow(0 0 40px rgba(180, 220, 100, 0.5))
                drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
        }

        .hero-logo-centered {
            display: block;
            width: 350px;
            height: auto;
            margin: 0 auto 1.5rem auto;
            filter:
                drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
                drop-shadow(0 0 40px rgba(180, 220, 100, 0.5))
                drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
        }

        @keyframes logoGlow {
            0%, 100% {
                filter:
                    drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
                    drop-shadow(0 0 40px rgba(180, 220, 100, 0.5))
                    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
            }
            50% {
                filter:
                    drop-shadow(0 0 30px rgba(255, 255, 255, 0.8))
                    drop-shadow(0 0 60px rgba(180, 220, 100, 0.7))
                    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Badge - Subtiler Texteffekt ohne Button-Look */
        .hero-badge {
            display: block;
            text-align: center;
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 auto 2rem auto;
            padding: 0 2rem;
            letter-spacing: 0.08em;
            text-shadow:
                0 2px 8px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(180, 220, 100, 0.2);
            position: relative;
            width: 100%;
        }


        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Titel mit 3D-Text-Effekt und Multi-Color Gradient */
        .hero-title {
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 700;
            color: white;
            line-height: 1.05;
            margin-bottom: 2rem;
            text-shadow:
                0 2px 0 rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.25),
                0 8px 16px rgba(0, 0, 0, 0.2),
                0 0 40px rgba(180, 220, 100, 0.3);
            letter-spacing: 0.02em;
        }

        .hero-greeting {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            text-align: left;
            text-shadow:
                0 2px 4px rgba(0, 0, 0, 0.5),
                0 4px 8px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(180, 220, 100, 0.3);
        }

        /* Highlight mit Rainbow-Shimmer und 3D-Tiefe */
        .hero-highlight {
            display: block;
            background: linear-gradient(
                135deg,
                #0a0f08 0%,
                #121812 15%,
                #1a221a 30%,
                #222c22 45%,
                #2a362a 60%,
                #222c22 75%,
                #1a221a 90%,
                #121812 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: rainbowShimmer 4s ease-in-out infinite;
            background-size: 300% auto;
            filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.9));
            position: relative;
        }

        @keyframes rainbowShimmer {
            0%, 100% {
                background-position: 0% 50%;
                filter: drop-shadow(0 0 20px rgba(200, 241, 157, 0.6));
            }
            50% {
                background-position: 100% 50%;
                filter: drop-shadow(0 0 35px rgba(200, 241, 157, 0.9));
            }
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subline {
            display: block;
            font-size: 1.8rem;
            font-weight: 400;
            color: #ffffff;
            margin-top: 0.5rem;
            text-shadow:
                0 2px 4px rgba(0, 0, 0, 0.5),
                0 4px 8px rgba(0, 0, 0, 0.4);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            margin-bottom: 3rem;
            font-weight: 400;
            max-width: 90%;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        /* Primary Button mit 3D-Lift-Effekt */
        .btn-primary {
            background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
            color: var(--primary-green);
            padding: 1.4rem 3.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 15px 45px rgba(0, 0, 0, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 0 0 1px rgba(255, 255, 255, 0.5);
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background:
                radial-gradient(circle,
                    rgba(125, 185, 40, 0.15) 0%,
                    rgba(93, 146, 22, 0.1) 100%);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 350px;
            height: 350px;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow:
                0 25px 60px rgba(0, 0, 0, 0.4),
                0 10px 25px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 0 0 2px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(255, 255, 255, 0.5);
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        /* Secondary Button mit Glassmorphism */
        .btn-secondary {
            background:
                linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(10px);
            color: white;
            padding: 1.4rem 3.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-secondary:hover::before {
            left: 0;
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(125, 185, 40, 0.2), rgba(93, 146, 22, 0.2));
            border-radius: 30px;
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .hero-image img {
            width: 100%;
            border-radius: 25px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-image:hover img {
            transform: scale(1.02) rotate(1deg);
        }

        /* FLOATING ACTION BUTTONS */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9998;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s backwards;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fab-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .fab-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            animation: ripple 2s infinite;
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .fab-button:hover {
            transform: scale(1.1) translateY(-3px);
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
        }

        .fab-phone {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
        }

        .fab-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .fab-button svg {
            width: 28px;
            height: 28px;
            position: relative;
            z-index: 1;
        }

        /* TRUST BAR */
        .trust-bar {
            background: white;
            padding: 4rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border-top: 4px solid var(--accent-bright);
            position: relative;
            overflow: hidden;
        }

        .trust-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, rgba(125, 185, 40, 0.5), transparent);
            animation: shimmerLine 3s infinite;
        }

        @keyframes shimmerLine {
            to { left: 100%; }
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .trust-item {
            text-align: center;
            padding: 2rem 1.5rem;
            border-right: 2px solid var(--border-light);
            position: relative;
            transition: transform 0.3s ease;
        }

        .trust-item:hover {
            transform: translateY(-5px);
        }

        .trust-item:last-child {
            border-right: none;
        }

        .trust-number {
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-family: var(--font-display);
            line-height: 1;
        }

        .trust-label {
            font-size: 1.1rem;
            color: var(--text-medium);
            font-weight: 600;
        }

        /* SECTIONS */
        section {
            padding: 120px 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-tag {
            display: inline-block;
            color: white;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(93, 146, 22, 0.3);
            animation: fadeInDown 0.8s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.35rem;
            color: var(--text-medium);
            max-width: 850px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 400;
        }

        /* ABOUT SECTION */
        .about-section {
            background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-green), var(--accent-bright));
            border-radius: 30px;
            z-index: 1;
            opacity: 0.15;
            animation: float 8s ease-in-out infinite;
        }

        .about-image {
            width: 100%;
            border-radius: 30px;
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 2;
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-image-wrapper:hover .about-image {
            transform: scale(1.02) rotate(-1deg);
        }

        .about-content h3 {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.2rem;
            color: var(--text-medium);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .about-content p:last-of-type {
            margin-bottom: 3rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .feature-item {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 1.2rem;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(125, 185, 40, 0.05), transparent);
            transition: left 0.6s;
        }

        .feature-item:hover::before {
            left: 100%;
        }

        .feature-item:hover {
            border-color: var(--accent-green);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-bright));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            box-shadow: 0 4px 15px rgba(93, 146, 22, 0.3);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
        }

        .feature-text h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 0.4rem;
            font-weight: 700;
        }

        .feature-text p {
            font-size: 1rem;
            color: var(--text-medium);
            margin: 0;
            line-height: 1.6;
        }

        /* SERVICES SECTION */
        .services-section {
            background: var(--bg-white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: linear-gradient(135deg,
                rgba(248, 252, 246, 0.7) 0%,
                rgba(255, 255, 255, 0.9) 100%);
            padding: 3rem 2.5rem;
            border-radius: 25px;
            box-shadow: var(--shadow-md);
            border: 2px solid rgba(125, 185, 40, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-bright));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-green);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(93, 146, 22, 0.1), rgba(125, 185, 40, 0.15));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon-wrapper svg {
            width: 40px;
            height: 40px;
            color: var(--primary-green);
        }

        .service-card h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: var(--font-display);
        }

        .service-card p {
            font-size: 1.05rem;
            color: var(--text-medium);
            line-height: 1.7;
        }

        .service-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-list li {
            padding: 0.6rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-medium);
            font-size: 1rem;
        }

        .service-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* VALUES SECTION */
        .values-section {
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .value-card {
            background: linear-gradient(135deg,
                rgba(248, 252, 246, 0.7) 0%,
                rgba(255, 255, 255, 0.9) 100%);
            padding: 3rem 2.5rem;
            border-radius: 30px;
            box-shadow: var(--shadow-md);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(125, 185, 40, 0.15);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-bright));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-green);
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-icon-wrapper {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(93, 146, 22, 0.1), rgba(125, 185, 40, 0.15));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem auto;
            position: relative;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .value-icon-wrapper svg {
            width: 45px;
            height: 45px;
            color: var(--primary-green);
        }

        .value-card h3 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-family: var(--font-display);
        }

        .value-card p {
            font-size: 1.05rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* TECHNIQUES SECTION */
        .techniques-section {
            background: var(--bg-white);
        }

        .techniques-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .technique-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 2px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .technique-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-green);
        }

        .technique-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .technique-card:hover .technique-image {
            transform: scale(1.1);
        }

        .technique-content {
            padding: 2.5rem;
        }

        .technique-content h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: var(--font-display);
        }

        .technique-content p {
            color: var(--text-medium);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* ADVANTAGES SECTION */
        .advantages-section {
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .advantage-card {
            background: white;
            padding: 3.5rem 2.5rem;
            border-radius: 25px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 2px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .advantage-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(180deg, transparent, rgba(125, 185, 40, 0.05));
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .advantage-card:hover::after {
            height: 100%;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-green);
        }

        .advantage-icon-wrapper {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-bright));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: white;
            box-shadow: 0 8px 25px rgba(93, 146, 22, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .advantage-card:hover .advantage-icon-wrapper {
            transform: scale(1.15) rotate(360deg);
        }

        .advantage-icon-wrapper svg {
            width: 40px;
            height: 40px;
        }

        .advantage-card h4 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: var(--font-display);
            position: relative;
            z-index: 1;
        }

        .advantage-card p {
            color: var(--text-medium);
            font-size: 1.05rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* CONTACT SECTION */
        .contact-section {
            background: linear-gradient(135deg, #1e4620 0%, #2d5c1e 50%, #3d6e2a 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
            opacity: 0.5;
            animation: movePattern 30s linear infinite;
        }

        @keyframes movePattern {
            from { transform: translateX(0); }
            to { transform: translateX(60px); }
        }

        .contact-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .contact-header h2 {
            font-family: var(--font-display);
            font-size: 4.5rem;
            color: white;
            margin-bottom: 2rem;
            font-weight: 700;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.02em;
        }

        .contact-header p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-highlight {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #c8e6a0, #d4f1b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 2rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem 2.5rem;
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-5px);
        }

        .contact-card-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-card-icon svg {
            width: 35px;
            height: 35px;
            color: var(--primary-green);
        }

        .contact-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contact-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .contact-card a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--accent-bright);
        }

        .contact-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 4rem;
        }

        /* FORMSPREE CONTACT FORM STYLING */
        .formspree-form input:focus,
        .formspree-form select:focus,
        .formspree-form textarea:focus {
            outline: none;
            border-color: var(--accent-green) !important;
            box-shadow: 0 0 0 4px rgba(93, 146, 22, 0.1) !important;
        }

        .formspree-form button[type="submit"]:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 25px rgba(93, 146, 22, 0.4) !important;
        }

        .formspree-form button[type="submit"]:active {
            transform: translateY(-1px) !important;
        }

        .formspree-form input[type="checkbox"]:focus {
            outline: 2px solid var(--accent-green);
            outline-offset: 2px;
        }

        /* Formspree Success/Error Messages */
        .formspree-form .success-message {
            background: #d4edda;
            color: #155724;
            border: 2px solid #c3e6cb;
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            font-weight: 600;
            animation: slideDown 0.4s ease;
        }

        .formspree-form .error-message {
            background: #f8d7da;
            color: #721c24;
            border: 2px solid #f5c6cb;
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            font-weight: 600;
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            color: white;
            padding: 5rem 0 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(93, 146, 22, 0.4) 8%,
                rgba(125, 185, 40, 0.6) 16%,
                rgba(164, 214, 82, 0.75) 24%,
                rgba(180, 230, 100, 0.85) 32%,
                rgba(190, 240, 110, 0.95) 40%,
                rgba(180, 230, 100, 1) 50%,
                rgba(190, 240, 110, 0.95) 60%,
                rgba(180, 230, 100, 0.85) 68%,
                rgba(164, 214, 82, 0.75) 76%,
                rgba(125, 185, 40, 0.6) 84%,
                rgba(93, 146, 22, 0.4) 92%,
                transparent 100%);
            box-shadow: 0 0 20px rgba(125, 185, 40, 0.4);
        }

        footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(125, 185, 40, 0.25),
                rgba(164, 214, 82, 0.35),
                rgba(180, 230, 100, 0.4),
                rgba(164, 214, 82, 0.35),
                transparent);
            animation: shimmer 6s ease-in-out infinite;
            filter: blur(25px);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-container::before {
            content: '';
            position: absolute;
            inset: -2rem;
            background:
                radial-gradient(circle at 50% 20%, rgba(180, 230, 100, 0.08) 0%, transparent 50%),
                linear-gradient(135deg,
                    rgba(255, 255, 255, 0.03) 0%,
                    rgba(248, 252, 246, 0.02) 50%,
                    rgba(255, 255, 255, 0.03) 100%);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            opacity: 0.6;
            transition: all 0.6s ease;
            z-index: -1;
            pointer-events: none;
        }

        .footer-logo-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 3px rgba(125, 185, 40, 0.3),
                inset 0 2px 8px rgba(255, 255, 255, 0.8);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-logo-wrapper::before {
            content: '';
            position: absolute;
            inset: -50%;
            background: linear-gradient(45deg,
                transparent 30%,
                rgba(125, 185, 40, 0.2) 50%,
                transparent 70%);
            animation: shimmer 4s linear infinite;
        }

        .footer-logo-img {
            height: 95px;
            width: auto;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .footer-logo-wrapper:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow:
                0 15px 50px rgba(0, 0, 0, 0.4),
                0 0 0 3px rgba(125, 185, 40, 0.5),
                0 0 30px rgba(125, 185, 40, 0.3),
                inset 0 2px 8px rgba(255, 255, 255, 0.9);
        }

        .footer-logo-wrapper:hover .footer-logo-img {
            transform: scale(1.1);
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            font-size: 1.15rem;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        /* SCROLL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 4rem;
            }
            .section-title {
                font-size: 3.5rem;
            }
            .services-grid,
            .techniques-grid,
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }

            .hero-container,
            .about-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 3rem;
            }

            .values-grid,
            .advantages-grid,
            .services-grid,
            .techniques-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .trust-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .trust-item {
                border-right: none;
                border-bottom: 2px solid var(--border-light);
                padding-bottom: 2rem;
            }

            .trust-item:nth-child(3),
            .trust-item:nth-child(4) {
                border-bottom: none;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            .container,
            .nav-container,
            .contact-container,
            .footer-container {
                padding: 0 2rem;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subline {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .contact-header h2 {
                font-size: 3rem;
            }

            .hero-buttons,
            .contact-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            section {
                padding: 80px 0;
            }
            .trust-container {
                grid-template-columns: 1fr !important;
                gap: 2rem;
                text-align: center;
            }

            .trust-item {
                text-align: center;
                border-right: none;
                border-bottom: 2px solid var(--border-light);
                padding-bottom: 2rem;
            }

            .trust-item:last-child {
                border-bottom: none;
            }


            .floating-contact {
                bottom: 20px;
                right: 20px;
            }

            .fab-button {
                width: 55px;
                height: 55px;
            }

            .logo-small-icon {
                height: 25px;
            }

            .logo-company-text {
                font-size: 1.1rem;
            }

            .logo-greeting {
                font-size: 0.75rem;
            }

            .hero-logo,
            .hero-logo-centered {
                width: 200px;
            }
        }
    .hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:0.5rem;z-index:10001;touch-action:manipulation;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;}@media(max-width:1024px){.hamburger{display:flex;}.nav-links{display:none;}}.hamburger span{width:30px;height:3px;background:var(--primary-green);border-radius:3px;transition:all 0.3s ease;pointer-events:none;}.hamburger.active span:nth-child(1){transform:rotate(45deg) translateY(10px);}.hamburger.active span:nth-child(2){opacity:0;}.hamburger.active span:nth-child(3){transform:rotate(-45deg) translateY(-10px);}.mobile-nav-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;background:linear-gradient(135deg,#1e4620 0%,#2d5c1e 50%,#3d6e2a 100%);z-index:10000;display:flex;flex-direction:column;padding:2rem;transform:translateX(-100%);transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);-webkit-overflow-scrolling:touch;}.mobile-nav-overlay.active{transform:translateX(0);}.mobile-close-btn{align-self:flex-end;background:none;border:none;color:white;font-size:2rem;cursor:pointer;padding:0.5rem 1rem;touch-action:manipulation;-webkit-tap-highlight-color:transparent;}.mobile-nav-links{display:flex;flex-direction:column;gap:1.5rem;margin-top:3rem;}.mobile-nav-link{color:white;text-decoration:none;font-size:1.3rem;font-weight:600;padding:1rem;border-radius:10px;transition:background 0.3s ease;touch-action:manipulation;-webkit-tap-highlight-color:transparent;}.mobile-nav-link:hover{background:rgba(255,255,255,0.1);}.social-links{display:flex;gap:1rem;align-items:center;margin-left:2rem;}.social-link{width:40px;height:40px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(125,185,40,0.1) 0%,rgba(93,146,22,0.15) 100%);border-radius:50%;border:2px solid rgba(93,146,22,0.3);transition:all 0.4s cubic-bezier(0.4,0,0.2,1);position:relative;overflow:hidden;backdrop-filter:blur(10px);box-shadow:0 2px 8px rgba(0,0,0,0.1),inset 0 1px 0 rgba(255,255,255,0.2);}.social-link::before{content:'';position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:radial-gradient(circle,rgba(125,185,40,0.3) 0%,rgba(93,146,22,0.2) 100%);transform:translate(-50%,-50%);transition:width 0.5s,height 0.5s;}.social-link:hover::before{width:100%;height:100%;}.social-link:hover{transform:translateY(-3px) scale(1.1);border-color:var(--accent-green);background:linear-gradient(135deg,rgba(125,185,40,0.2) 0%,rgba(93,146,22,0.25) 100%);box-shadow:0 8px 20px rgba(93,146,22,0.3),0 0 20px rgba(125,185,40,0.2),inset 0 1px 0 rgba(255,255,255,0.3);}.social-link svg{width:20px;height:20px;fill:var(--accent-green);transition:all 0.3s ease;position:relative;z-index:1;filter:drop-shadow(0 1px 2px rgba(0,0,0,0.1));}.social-link:hover svg{fill:var(--primary-green);transform:scale(1.1);filter:drop-shadow(0 2px 4px rgba(0,0,0,0.2));}.social-link.facebook:hover{background:linear-gradient(135deg,rgba(24,119,242,0.15) 0%,rgba(24,119,242,0.2) 100%);border-color:rgba(24,119,242,0.5);box-shadow:0 8px 20px rgba(24,119,242,0.25),0 0 20px rgba(24,119,242,0.15);}.social-link.facebook:hover svg{fill:#1877f2;}.social-link.instagram:hover{background:linear-gradient(135deg,rgba(225,48,108,0.15) 0%,rgba(193,53,132,0.2) 50%,rgba(131,58,180,0.2) 100%);border-color:rgba(225,48,108,0.5);box-shadow:0 8px 20px rgba(225,48,108,0.25),0 0 20px rgba(193,53,132,0.15);}.social-link.instagram:hover svg{fill:url(#instagram-gradient);}@media(max-width:1024px){.social-links{display:none;}}

        /* COOKIE CONSENT BANNER */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 246, 0.98) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 2rem;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
            z-index: 10002;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 4px solid var(--accent-bright);
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-consent-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cookie-consent-content {
            flex: 1;
            min-width: 300px;
        }

        .cookie-consent-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cookie-consent-text {
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .cookie-consent-text a {
            color: var(--accent-green);
            text-decoration: underline;
            font-weight: 600;
        }

        .cookie-consent-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: var(--font-primary);
        }

        .cookie-btn-accept {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: white;
            box-shadow: 0 4px 15px rgba(93, 146, 22, 0.3);
        }

        .cookie-btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(93, 146, 22, 0.4);
        }

        .cookie-btn-decline {
            background: white;
            color: var(--text-dark);
            border: 2px solid var(--border-light);
        }

        .cookie-btn-decline:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
        }

        .cookie-btn-settings {
            background: transparent;
            color: var(--text-medium);
            text-decoration: underline;
            padding: 0.8rem 1rem;
        }

        .cookie-btn-settings:hover {
            color: var(--primary-green);
        }

        @media (max-width: 768px) {
            .cookie-consent {
                padding: 1.5rem;
            }

            .cookie-consent-container {
                flex-direction: column;
                align-items: stretch;
                gap: 1.5rem;
            }

            .cookie-consent-buttons {
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
                text-align: center;
            }
        }

        /* Performance: Disable animations on mobile to improve performance */
        @media (max-width: 768px) {
            *,
            *::before,
            *::after {
                animation-duration: 0s !important;
                animation-delay: 0s !important;
                transition-duration: 0.15s !important;
            }
        }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01s !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01s !important;
                scroll-behavior: auto !important;
            }
