        /**
         * ElbeEichhorn - Industriedesign & Produktentwicklung
         * Design & Development: siondesign.de
         * © 2026 siondesign.de - All rights reserved
         */
        
        /* Font Faces */
        @font-face {
            font-family: 'Bullet';
            src: url('/fonts/Bullet-Regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Avenir';
            src: url('/fonts/Avenir/Avenir-Book.woff2') format('woff2'),
                 url('/fonts/Avenir/Avenir-Book.woff') format('woff');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        
        @font-face {
            font-family: 'Avenir';
            src: url('/fonts/Avenir/Avenir-Black.woff2') format('woff2'),
                 url('/fonts/Avenir/Avenir-Black.woff') format('woff');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }
        
        :root {
            --primary: #1a1a2e;
            --secondary: #867f6a;
            --accent: #ff6b9d;
            --text: #2d2d2d;
            --text-light: #666;
            --bg-light: #f8f8f8;
            --white: #ffffff;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            max-width: 1200px;
            width: calc(100% - 40px);
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #1a1a2e 100%);
            padding: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-stripes {
            display: flex;
            height: 5px;
            width: 45%;
        }

        .nav-stripes span {
            flex: 1;
        }

        .nav-stripes span:nth-child(1) { background: #009ee0; }
        .nav-stripes span:nth-child(2) { background: #e2007a; }
        .nav-stripes span:nth-child(3) { background: #d0ecf9; }
        .nav-stripes span:nth-child(4) { background: #f08a00; }
        .nav-stripes span:nth-child(5) { background: #867f6a; }
        .nav-stripes span:nth-child(6) { background: #a5c400; }
        .nav-stripes span:nth-child(7) { background: #50460c; }
        .nav-stripes span:nth-child(8) { background: #912683; }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

        .nav-logo-img {
            height: 40px;
            width: auto;
            display: block;
        }

        .nav-logo {
            font-family: 'Bullet', Georgia, serif;
            font-size: 1.8rem;
            color: var(--white);
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .nav-logo:hover {
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            margin: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s;
            white-space: nowrap;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--white);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

.mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--white);
        }

        @media (max-width: 968px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 46, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                margin-top: 0;
                padding: 1rem 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
            }

            .nav-menu.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                padding: 0.75rem 0;
            }

            .nav-menu a {
                display: block;
                padding: 0.5rem 1rem;
            }

        }

        /* Skip Link für Barrierefreiheit */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: var(--white);
            padding: 8px 16px;
            z-index: 10000;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero {
            background: var(--bg-light);
            color: var(--text);
            padding: 140px 0 80px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-video-wrapper {
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .hero-video {
            width: 100%;
            display: block;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .hero h1 {
            font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
            font-weight: 500;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            line-height: 1.15;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .highlight {
            position: relative;
            display: inline;
        }

        .highlight .marker {
            position: absolute;
            bottom: 2px;
            left: -4px;
            right: -4px;
            height: 35%;
            background: rgba(233, 30, 99, 0.18);
            border-radius: 3px;
            transform-origin: left center;
            transform: scaleX(0);
            transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .fade-in.visible .highlight .marker {
            transform: scaleX(1);
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            margin-bottom: 40px;
            color: var(--text-light);
            max-width: 700px;
            line-height: 1.6;
        }
        
        .cta-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-weight: 900;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn-text-short {
            display: none;
        }
        
        .btn-primary {
            background: var(--secondary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: #756f5c;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }
        
        .trust-badges {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
            color: var(--text-light);
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        
        .trust-icon {
            width: 24px;
            height: 24px;
            fill: var(--secondary);
        }
        
        section {
            padding: 100px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-badge {
            display: inline-block;
            background: var(--bg-light);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        h2 {
            font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
            font-weight: 500;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .usp-card {
            background: var(--white);
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 3px solid var(--secondary);
        }
        
        .usp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }
        
        .usp-image {
            width: calc(100% + 60px);
            height: 120px;
            margin: -40px -30px 20px -30px;
            object-fit: cover;
            display: block;
        }
        
        .usp-card h3 {
            font-size: 1.4rem;
            line-height: 1.25;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 900;
        }
        
        .usp-card p {
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* Image Gallery */
        .gallery {
            padding: 60px 0;
            background: #ebebeb;
        }

        .gallery-row {
            display: grid;
            gap: 8px;
            height: 280px;
        }

        .gallery-row + .gallery-row {
            margin-top: 8px;
        }

        .gallery-row--a { grid-template-columns: 2fr 1fr 1fr; }
        .gallery-row--b { grid-template-columns: 1fr 1fr 1fr; }
        .gallery-row--c { grid-template-columns: 1fr 1fr 2fr; }

        .gallery-item {
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }

        @media (max-width: 768px) {
            .gallery-row {
                height: 150px;
                grid-template-columns: 1fr 1fr !important;
            }
            .gallery-row--a .gallery-item:nth-child(3),
            .gallery-row--c .gallery-item:nth-child(3) {
                display: none;
            }
        }

        .philosophy {
            background: var(--bg-light);
            position: relative;
            overflow: visible;
        }

        .philosophy-bg {
            position: absolute;
            right: -10%;
            bottom: -20%;
            width: 85%;
            max-width: 1200px;
            opacity: 1;
            pointer-events: none;
            z-index: 0;
        }

        .philosophy .container {
            position: relative;
            z-index: 1;
        }

        .philosophy-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .philosophy .philosophy-content {
            grid-template-columns: 1fr;
            max-width: 650px;
        }
        
        .philosophy-text h3 {
            font-family: 'Avenir', Arial, sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .philosophy-text p {
            margin-bottom: 15px;
            line-height: 1.7;
            color: var(--text-light);
        }

        .philosophy-text .section-badge {
            background: var(--white);
        }
        
        .quote {
            font-family: 'Avenir', Arial, sans-serif;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--secondary);
            margin: 30px 0;
            padding-left: 30px;
            border-left: 4px solid var(--secondary);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: var(--white);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 15px 15px 0 0;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: var(--white);
            border-radius: 50%;
            line-height: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .step-label {
            font-size: 0.75rem;
            color: var(--secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .process-step h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--primary);
            font-weight: 900;
        }
        
        .process-step p {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .portfolio {
            background: var(--primary);
            color: var(--white);
        }
        
        .portfolio .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        
        .portfolio h2 {
            color: var(--white);
        }
        
        .portfolio .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 2px;
            background: rgba(255,255,255,0.1);
            padding: 2px;
            margin-top: 40px;
        }
        
        .portfolio-item {
            aspect-ratio: 1;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover {
            background: rgba(233, 30, 99, 0.2);
            transform: scale(1.05);
        }
        
        .clients {
            background: var(--bg-light);
        }
        
        /* Testimonials Section */
        .testimonials {
            background: var(--white);
            padding: 100px 0;
        }
        
        .google-rating {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .google-rating:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        
        .rating-stars {
            color: #fbbc04;
            font-size: 1.2rem;
        }
        
        .rating-text {
            color: var(--text);
            font-weight: 600;
        }
        
        .testimonials-slider {
            margin-top: 40px;
            padding: 20px 0;
        }
        
        .testimonials-slider .swiper-slide {
            height: auto;
        }
        
        .testimonial {
            background: var(--bg-light);
            padding: 40px 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary);
        }
        
        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
            margin-top: auto;
        }
        
        .testimonial-rating {
            color: #fbbc04;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .testimonials-slider .swiper-button-next,
        .testimonials-slider .swiper-button-prev {
            color: var(--secondary);
            background: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .testimonials-slider .swiper-button-next:after,
        .testimonials-slider .swiper-button-prev:after {
            font-size: 1.2rem;
        }
        
        .testimonials-slider .swiper-pagination {
            position: relative;
            margin-top: 30px;
        }

        .testimonials-slider .swiper-pagination-bullet {
            background: var(--secondary);
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
            margin-top: 40px;
        }
        
        .client-logo {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
        }

        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }
        
        .contact {
            background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
            color: var(--white);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .contact-info h2 {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .contact-info p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contact-person {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .contact-person h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            font-weight: 900;
        }
        
        .contact-person .title {
            color: var(--accent);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--white);
        }
        
        .contact-method:hover {
            background: rgba(233, 30, 99, 0.3);
            transform: translateX(5px);
        }
        
        .contact-form {
            background: var(--white);
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .contact-form h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 900;
        }
        
        .form-subtitle {
            color: var(--text-light);
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            font-family: 'Avenir', Arial, sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .btn-submit {
            width: 100%;
            background: var(--secondary);
            color: var(--white);
            border: none;
            padding: 16px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background: #d81b60;
            transform: translateY(-2px);
        }

        .btn-submit:disabled {
            background: #999;
            cursor: not-allowed;
            transform: none;
        }

        .form-success {
            position: absolute;
            inset: 0;
            background: rgba(26, 26, 46, 0.98);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s, visibility 0.5s;
            z-index: 10;
            cursor: pointer;
        }

        .form-success.show {
            opacity: 1;
            visibility: visible;
        }

        .contact-form {
            position: relative;
            overflow: hidden;
        }

        footer {
            background: var(--primary);
            color: var(--white);
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            text-align: left;
        }
        
        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-weight: 900;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 60px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .cta-group {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }

            .btn-text-full {
                display: none;
            }

            .btn-text-short {
                display: inline;
            }
            
            .philosophy-content,
            .contact-content {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }
            
            .philosophy-content > div[style*="order: 1"],
            .philosophy-content > div[style*="order: 2"] {
                order: 0 !important;
            }

            .philosophy {
                overflow: hidden;
            }

            .philosophy-bg {
                position: relative;
                right: auto;
                bottom: auto;
                width: 90%;
                max-width: none;
                margin: -20px auto -40px;
                display: block;
            }
            
            section {
                padding: 60px 0;
            }

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

            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .client-logo {
                padding: 15px;
                height: 70px;
                font-size: 0.75rem;
            }

            .contact-form {
                padding: 20px !important;
            }

            .contact-form h3 {
                font-size: 1.3rem !important;
            }

            .contact-person {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center;
            }

            .contact-method {
                font-size: 0.9rem;
                word-break: break-all;
            }

            .contact-method div {
                min-width: 0;
            }

            .usp-grid {
                grid-template-columns: 1fr !important;
                gap: 20px;
            }

            .usp-card {
                padding: 0 !important;
                overflow: hidden;
            }

            .usp-image {
                width: 100% !important;
                height: 180px !important;
                margin: 0 !important;
                object-fit: cover;
            }

            .usp-card h3,
            .usp-card p {
                padding: 0 20px;
            }

            .usp-card h3 {
                padding-top: 20px;
            }

            .usp-card p {
                padding-bottom: 20px;
            }

            .process-step {
                flex-direction: column !important;
                text-align: center;
            }

            .section-header h2 {
                font-size: 1.6rem !important;
            }

            html, body {
                overflow-x: hidden;
                max-width: 100vw;
            }

            img {
                max-width: 100%;
                height: auto;
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Cookie Banner Animation */
    @keyframes cookieSlideIn {
        from { opacity: 0; transform: translateY(-20px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

/* ============================================================
   AUDIT-QUICK-WIN: Focus-State (Accessibility)
   ============================================================ */
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-submit:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   STICKY MOBILE-CTA (Conversion-Hebel)
   ============================================================ */
.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9998;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        padding: 12px 16px;
        gap: 12px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .sticky-cta a {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 16px;
        border-radius: 30px;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.95rem;
        transition: transform 0.2s ease;
    }
    .sticky-cta .sticky-call {
        background: var(--accent);
        color: #fff;
    }
    .sticky-cta .sticky-form {
        background: #fff;
        color: var(--primary);
    }
    .sticky-cta a:active {
        transform: scale(0.97);
    }
    /* Letzte Sektion mit Padding-Bottom, damit Sticky-CTA Inhalt nicht überdeckt */
    body {
        padding-bottom: 70px;
    }
}

/* ============================================================
   B2B-BRANCHEN-SEKTION (NEU)
   ============================================================ */
.industries {
    padding: 100px 0;
    background: #f8f8f8;
}
.industries .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.industry-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.industry-card .industry-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    color: var(--secondary);
}
.industry-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--primary);
}
.industry-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

/* ============================================================
   FAQ-SEKTION (NEU)
   ============================================================ */
.faq {
    padding: 100px 0;
    background: var(--white);
}
.faq-grid {
    max-width: 850px;
    margin: 50px auto 0;
}
.faq-item {
    border-bottom: 1px solid #e8e8e8;
}
.faq-item details {
    padding: 22px 0;
}
.faq-item summary {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 8px;
    transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item details[open] summary::after {
    transform: rotate(45deg);
}
.faq-item summary:hover {
    color: var(--secondary);
}
.faq-item details[open] summary {
    margin-bottom: 14px;
}
.faq-answer {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    padding-right: 32px;
}

/* ============================================================
   NO-JS FALLBACK (Form bleibt nutzbar ohne JS)
   ============================================================ */
.no-js .swiper-slide:not(:first-child) {
    display: none;
}

/* ════════════════════════════════════════════════════════════════
   2026 DESIGN-SYSTEM — Polish & Refinement
   Erweitert das bestehende Design ohne Identitätsverlust.
   Identität bleibt: Farben (--primary, --secondary, --accent),
   Bullet-Schreibschrift, Avenir, Bildsprache.
   Reihenfolge ganz unten = höchste Cascade-Priorität.
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Erweiterte Token-Scales */
  --primary-deep: #0f0f1f;
  --primary-soft: #20203a;
  --bg-soft: #fafaf8;
  --bg-muted: #f3f1ec;
  --border: #e8e5dc;
  --border-strong: #c8c4b8;

  /* Spacing 8-Grid */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.25rem;
  --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem; --s-12: 3rem; --s-16: 4rem;
  --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Type-Scale */
  --fs-xs: .75rem; --fs-sm: .875rem; --fs-base: 1rem; --fs-lg: 1.125rem;
  --fs-xl: 1.25rem; --fs-2xl: 1.5rem; --fs-3xl: 2rem; --fs-4xl: 2.75rem;
  --fs-5xl: 3.75rem; --fs-6xl: 5rem;

  /* Radius */
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;

  /* Shadows (subtle, premium) */
  --shadow-xs: 0 1px 2px rgba(15,15,31,.04);
  --shadow-sm: 0 2px 8px rgba(15,15,31,.05);
  --shadow-md: 0 8px 24px rgba(15,15,31,.08);
  --shadow-lg: 0 16px 40px rgba(15,15,31,.10);
  --shadow-xl: 0 28px 60px rgba(15,15,31,.14);

  /* Transitions */
  --t-fast: .15s ease;
  --t-base: .25s cubic-bezier(.4,0,.2,1);
  --t-slow: .5s cubic-bezier(.4,0,.2,1);

  /* Container */
  --container: 1240px;
}

/* Container vereinheitlichen */
.container {
  max-width: var(--container);
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ───── SECTION-RHYTHM (vertikale Konsistenz) ───── */
section {
  padding-block: clamp(72px, 10vw, 120px);
}
@media (min-width: 1280px) {
  section { padding-block: 120px; }
}
.hero { padding-block: clamp(110px, 12vw, 140px) clamp(72px, 8vw, 100px); }

/* Section-Header: Badge → H2 → Subtitle, einheitlicher Rhythmus */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.section-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-muted);
  color: var(--secondary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
}
.section-header h2 {
  font-size: clamp(1.85rem, 4vw, var(--fs-4xl));
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 var(--s-5);
  color: var(--primary);
  font-weight: 900;
}
.section-subtitle {
  font-size: clamp(1rem, 1.4vw, var(--fs-lg));
  line-height: 1.6;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* ───── HERO POLISH ───── */
.hero {
  background: linear-gradient(180deg, #fafaf8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-video-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
}
.hero-video-wrapper::after {
  /* Fallback wenn Video nicht lädt: dezente Skizze-Andeutung */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(255,107,157,.12), transparent 50%),
                    radial-gradient(circle at 70% 60%, rgba(134,127,106,.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
}
.hero-content { position: relative; }
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(134,127,106,.12);
  color: var(--secondary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-6);
}
.hero h1#hero-heading,
#hero-heading {
  font-size: clamp(2.4rem, 5.5vw, var(--fs-6xl));
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 var(--s-6);
  color: var(--primary);
  font-weight: 900;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 var(--s-8);
  max-width: 540px;
}
.cta-group {
  display: flex; flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-10);
}
.trust-badges {
  display: flex; flex-wrap: wrap;
  gap: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-sm);
  color: var(--text-light);
  font-weight: 500;
}
.trust-icon { width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0; }

/* ───── BUTTON-SYSTEM ───── */
.btn, .btn-primary, .btn-secondary, .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 16px 32px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--fs-base);
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  white-space: nowrap;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #756e5a;
}
.btn-primary svg { color: var(--white); }
.btn-text-short { display: none; }
@media (max-width: 540px) {
  .btn-text-full { display: none; }
  .btn-text-short { display: inline; }
}

/* ───── KARTEN-KONSISTENZ (USP, Industry, FAQ, Testimonials) ───── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
}
.usp-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 0 0 var(--s-8);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column;
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.usp-card .usp-image,
.usp-card picture {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  border-radius: 0;
  margin: 0 0 var(--s-6);
  background: var(--bg-muted);
}
.usp-card picture img { width: 100%; height: 100%; object-fit: cover; }
.usp-card h3 {
  font-size: var(--fs-xl);
  font-weight: 900;
  margin: 0 var(--s-6) var(--s-3);
  color: var(--primary);
  letter-spacing: -.01em;
}
.usp-card p {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 var(--s-6);
}

/* Industry Cards */
.industries { background: var(--bg-soft); }
.industries-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-5);
  max-width: 1100px;
  margin-inline: auto;
}
.industry-card {
  padding: var(--s-10) var(--s-6);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
.industry-card .industry-icon {
  width: 48px; height: 48px;
  margin: 0 auto var(--s-5);
  color: var(--secondary);
  stroke-width: 1.5;
}
.industry-card h3 {
  font-size: var(--fs-lg);
  font-weight: 900;
  margin: 0 0 var(--s-2);
}
.industry-card p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* FAQ */
.faq { background: var(--white); }
.faq-grid { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--t-base);
}
.faq-item:hover { background: var(--bg-soft); }
.faq-item details { padding: var(--s-6) var(--s-4); }
.faq-item summary {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.005em;
}
.faq-item summary::after {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--bg-muted);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item details[open] summary::after {
  background: var(--secondary);
  color: var(--white);
}
.faq-answer {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--text-light);
  padding-block-start: var(--s-2);
  padding-inline-end: var(--s-12);
  max-width: 760px;
}

/* Testimonials */
.testimonials { background: var(--bg-soft); }
.testimonial {
  background: var(--white);
  padding: var(--s-8);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.testimonial-text {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: var(--s-3) 0 var(--s-5);
  flex: 1;
}
.testimonial-author {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

/* ───── PROCESS-SEKTION VISUELL AUFWERTEN ───── */
.process { background: var(--bg-soft); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5);
  max-width: 1140px;
  margin-inline: auto;
}
.process-step {
  background: var(--white);
  padding: var(--s-8) var(--s-6);
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--t-base), border-color var(--t-base);
  position: relative;
}
.process-step:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
}
.process-step .step-number {
  width: 48px; height: 48px;
  margin: 0 auto var(--s-4);
  display: flex; align-items: center; justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: var(--fs-lg);
  font-weight: 900;
  font-family: 'Avenir', sans-serif;
}
.process-step .step-label {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-muted);
  color: var(--secondary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: var(--r-sm);
  margin-bottom: var(--s-3);
}
.process-step h4 {
  font-size: var(--fs-base);
  font-weight: 900;
  color: var(--primary);
  margin: 0 0 var(--s-2);
}
.process-step p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ───── GALLERY POLISH ───── */
.gallery .container { padding-inline: clamp(16px, 3vw, 32px); }
.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-muted);
}
.gallery-item picture, .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .gallery-row { grid-template-columns: repeat(2, 1fr); }
}

/* ───── CLIENTS LOGO-GRID ───── */
.clients { background: var(--white); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--s-6);
  max-width: 1100px;
  margin-inline: auto;
  align-items: center;
  justify-items: center;
}
.client-logo {
  opacity: .6;
  transition: opacity var(--t-base), filter var(--t-base);
  filter: grayscale(80%);
}
.client-logo:hover { opacity: 1; filter: grayscale(0%); }
.client-logo img { max-width: 100px; max-height: 60px; width: auto; height: auto; }

/* ───── PHILOSOPHY / FACHBUCH / SURFACEZOO POLISH ───── */
.philosophy, .fachbuch { background: var(--bg-soft); }
.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}
@media (max-width: 880px) {
  .philosophy-content { grid-template-columns: 1fr !important; }
}

/* ───── CONTACT / FORM ───── */
.contact {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: var(--white);
}
.contact h2, .contact h3 { color: var(--white); }
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--container);
  margin-inline: auto;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-content { grid-template-columns: 1fr; }
}
.contact-info p { color: rgba(255,255,255,.8); line-height: 1.7; }
.contact-form {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  padding: var(--s-10);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-xl);
}
.contact-form h3 { font-size: var(--fs-2xl); margin: 0 0 var(--s-2); }
.form-subtitle { color: rgba(255,255,255,.7); margin: 0 0 var(--s-6); font-size: var(--fs-base); }
.form-group { margin-bottom: var(--s-5); }
.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--s-2);
  color: rgba(255,255,255,.85);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: var(--fs-base);
  transition: border-color var(--t-base), background var(--t-base);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255,255,255,.4);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.08);
  outline: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-base);
  letter-spacing: .01em;
}
.btn-submit:hover {
  background: #ff5a8e;
  transform: translateY(-2px);
}

/* ───── FOOTER POLISH ───── */
footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,.7);
  padding-block: clamp(64px, 8vw, 96px) var(--s-8);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: var(--container);
  margin-inline: auto;
}
@media (max-width: 880px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-content { grid-template-columns: 1fr; }
}
footer .footer-section h4 {
  color: var(--white);
  font-size: var(--fs-base);
  font-weight: 700;
  margin: 0 0 var(--s-5);
  letter-spacing: .02em;
}
footer .footer-section ul { list-style: none; padding: 0; margin: 0; }
footer .footer-section li { margin-bottom: var(--s-3); }
footer .footer-section a {
  color: rgba(255,255,255,.6);
  font-size: var(--fs-sm);
  transition: color var(--t-base);
}
footer .footer-section a:hover { color: var(--white); }
.footer-bottom {
  margin-top: var(--s-12);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.4);
}

/* ───── NAVIGATION POLISH ───── */
nav#navbar {
  backdrop-filter: blur(16px);
  background: linear-gradient(135deg, rgba(26,26,46,.92), rgba(22,33,62,.92));
  border-radius: 999px;
  margin-top: 16px;
  padding: 8px 24px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-sm);
}
.nav-menu {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: color var(--t-base);
}
.nav-menu a:hover { color: var(--accent); }
.nav-logo-img { display: block; }

/* ───── ANIMATION POLISH ───── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { transition: none; opacity: 1; transform: none; }
}

/* ───── MOBILE TYPOGRAPHIE-POLISH ───── */
@media (max-width: 640px) {
  section { padding-block: 64px; }
  .hero { padding-block: 88px 56px; }
  body { padding-bottom: 76px; /* Sticky-CTA-Höhe */ }
  .section-header { margin-bottom: 40px; }
  .testimonial { padding: var(--s-6); }
  .contact-form { padding: var(--s-6); }
  .industry-card, .process-step { padding: var(--s-6) var(--s-4); }
}

/* ───── ACCESSIBILITY-POLISH ───── */
*, *::before, *::after { box-sizing: border-box; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; height: auto; }

/* ════════════════════════════════════════════════════════════════
   USER-FEEDBACK PATCH (10.05.2026, 04:xx)
   - Nav: kein Pill, zurück zu klassischem Volle-Breite-Header
   - H1: deutlich kleiner
   - Hero: dauerhaft sichtbar (Race-Condition gegen Animation)
   - Section-Padding subtil reduziert
   ════════════════════════════════════════════════════════════════ */

/* Hero-Section immer sofort sichtbar — Above-the-fold darf nicht fade-in-en */
.hero .hero-content,
.hero .hero-video-wrapper,
.hero .fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* Navigation zurück: klassisch volle Breite mit Streifen oben */
nav#navbar {
  border-radius: 0 !important;
  margin-top: 0 !important;
  max-width: none !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #1a1a2e 100%) !important;
  backdrop-filter: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.18) !important;
}
nav#navbar .nav-stripes {
  display: flex !important;
  height: 4px;
  width: 100%;
}
nav#navbar .nav-stripes span {
  flex: 1; height: 100%;
}
nav#navbar .nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
nav#navbar.scrolled {
  background: rgba(15,15,31,.96) !important;
  backdrop-filter: blur(12px);
}
.nav-menu a {
  color: rgba(255,255,255,.85) !important;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .01em;
}
.nav-menu a:hover { color: var(--accent) !important; }

/* Hero-Container braucht Padding-Top, weil Nav nicht mehr floatet */
.hero { padding-top: clamp(96px, 10vw, 140px) !important; }

/* H1 deutlich kleiner */
.hero h1#hero-heading,
#hero-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -.015em !important;
  margin: 0 0 1.25rem !important;
  font-weight: 900;
}
.hero-badge {
  margin-bottom: 1rem;
  font-size: var(--fs-xs);
}
.hero-subtitle {
  font-size: clamp(.98rem, 1.2vw, 1.1rem) !important;
  margin-bottom: 1.75rem;
}
.cta-group { margin-bottom: 2rem; }

/* Section-Padding leicht zurück */
section { padding-block: clamp(64px, 8vw, 96px) !important; }
.hero { padding-bottom: clamp(56px, 7vw, 88px) !important; }

/* Mobile-Polish */
@media (max-width: 640px) {
  .hero { padding-top: 88px !important; padding-bottom: 48px !important; }
  section { padding-block: 56px !important; }
  .hero h1#hero-heading { font-size: 1.65rem !important; }
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM 2026 — TOP-AGENTUR-REDESIGN (komplett-Override)
   Editorial · scharfe Kanten · alternierende Section-BGs · korrekte Bild-Ratios
   ════════════════════════════════════════════════════════════════ */

:root {
  --c-black: #0a0a0f;
  --c-charcoal: #1a1a2e;
  --c-cream: #faf8f3;
  --c-sand: #f0ece2;
  --c-stone: #e8e3d8;
  --c-muted: #6e6960;
  --c-gold: #867f6a;
  --c-accent: #ff6b9d;
  --container-xl: 1320px;
}

body {
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--container-xl) !important; padding-inline: clamp(20px, 4vw, 48px); }

/* Section-Rhythm + alternierende BGs */
section { padding-block: clamp(96px, 11vw, 160px) !important; }
section.hero { background: var(--c-cream) !important; padding-block: 140px 100px !important; }
section.usp { background: var(--c-cream) !important; }
section.gallery { background: var(--c-sand) !important; }
section.philosophy { background: var(--c-charcoal) !important; color: var(--c-cream); }
section.process { background: var(--c-cream) !important; }
section.surfacezoo { background: var(--c-charcoal) !important; padding: 0 !important; }
section.surfacezoo > .container { padding-block: clamp(96px, 11vw, 160px); }
section.fachbuch { background: var(--c-sand) !important; }
section.portfolio { background: var(--c-cream) !important; }
section.clients { background: var(--c-cream) !important; padding-block: 80px !important; }
section.industries { background: var(--c-charcoal) !important; color: var(--c-cream); }
section.testimonials { background: var(--c-sand) !important; }
section.faq { background: var(--c-cream) !important; }
section.contact { background: var(--c-black) !important; }

/* Dark-Section Typo */
section.philosophy h2,
section.philosophy h3,
section.surfacezoo h2,
section.surfacezoo h3,
section.industries h2,
section.industries h3 { color: var(--c-cream) !important; }
section.philosophy p,
section.surfacezoo p,
section.industries p,
section.industries .section-subtitle { color: rgba(250, 248, 243, 0.7) !important; }
section.philosophy .section-badge,
section.industries .section-badge,
section.surfacezoo .section-badge { color: rgba(250, 248, 243, 0.5) !important; }
section.industries .section-badge::before { background: rgba(250, 248, 243, 0.4) !important; }

/* === EDITORIAL SECTION-HEADER === */
.section-header { text-align: left !important; max-width: 800px; margin-left: 0 !important; margin-bottom: 80px !important; }
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 4rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
  font-weight: 900 !important;
  margin: 0 0 24px !important;
}
.section-badge {
  display: inline-block !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 0 0 40px !important;
  margin-bottom: 24px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--c-muted) !important;
  position: relative;
}
.section-badge::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--c-gold);
}
.section-subtitle {
  font-size: 1.1rem !important;
  line-height: 1.65 !important;
  color: var(--c-muted) !important;
  max-width: 640px;
  margin: 0 !important;
}

/* === HERO PREMIUM === */
.hero .hero-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  gap: clamp(40px, 6vw, 100px) !important;
  align-items: center !important;
  max-width: var(--container-xl);
  margin: 0 auto;
}
.hero-content { padding-block: 0 !important; }
.hero-badge {
  background: transparent !important;
  border-radius: 0 !important;
  color: var(--c-muted) !important;
  padding: 0 0 0 40px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  margin-bottom: 32px !important;
  position: relative;
  display: inline-block !important;
}
.hero-badge::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--c-gold);
}
.hero h1#hero-heading,
#hero-heading {
  font-size: clamp(2.4rem, 5.5vw, 5rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  font-weight: 900 !important;
  margin: 0 0 32px !important;
  color: var(--c-charcoal) !important;
}
#hero-heading::after {
  content: ".";
  color: var(--c-accent);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem) !important;
  line-height: 1.6 !important;
  color: var(--c-muted) !important;
  max-width: 520px;
  margin: 0 0 40px !important;
}
.hero-video-wrapper {
  border-radius: 0 !important;
  aspect-ratio: 4/5 !important;
  background: var(--c-charcoal) !important;
  box-shadow: 0 40px 80px -32px rgba(10,10,15,0.4) !important;
  overflow: hidden;
}
.hero-video-wrapper::after {
  content: "" !important;
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,157,0.15) 0%, transparent 50%, rgba(134,127,106,0.2) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-video { z-index: 1; }
.cta-group { gap: 16px !important; margin-bottom: 48px !important; }
.trust-badges {
  border-top: 1px solid var(--c-stone) !important;
  padding-top: 28px !important;
  gap: 40px !important;
  flex-wrap: wrap;
}
.trust-item { color: var(--c-muted) !important; font-size: 0.9rem !important; font-weight: 500; gap: 10px !important; }
.trust-icon { color: var(--c-gold) !important; width: 16px !important; height: 16px !important; }

/* === BUTTONS PREMIUM === */
.btn, .btn-primary {
  border-radius: 0 !important;
  background: var(--c-charcoal) !important;
  color: var(--c-cream) !important;
  padding: 20px 36px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  box-shadow: none !important;
  transition: background 0.3s, transform 0.3s !important;
  border: 1px solid var(--c-charcoal) !important;
}
.btn-primary:hover {
  background: var(--c-accent) !important;
  border-color: var(--c-accent) !important;
  transform: translateY(-2px) !important;
}
.btn-text-short { display: none; }
@media (max-width: 540px) { .btn-text-full { display: none; } .btn-text-short { display: inline; } }

/* === USP-CARDS — FIX BILD-CROP === */
section.usp .section-header { text-align: center !important; margin-left: auto !important; margin-right: auto !important; max-width: 720px; }
section.usp .section-header .section-badge { padding-left: 0 !important; }
section.usp .section-header .section-badge::before { display: none; }
.usp-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 56px 32px !important;
}
@media (max-width: 980px) { .usp-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px) { .usp-grid { grid-template-columns: 1fr !important; } }
.usp-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  transition: transform 0.4s !important;
}
.usp-card:hover { transform: translateY(-6px) !important; box-shadow: none !important; }
.usp-card picture {
  display: block;
  aspect-ratio: 16/10 !important;
  background: var(--c-stone);
  margin: 0 0 28px !important;
  overflow: hidden;
  border-radius: 0 !important;
}
.usp-card picture img,
.usp-card .usp-image {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  display: block !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.usp-card h3 {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  margin: 0 0 12px !important;
  color: var(--c-charcoal);
}
.usp-card p {
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  color: var(--c-muted) !important;
  margin: 0 !important;
}

/* === GALLERY PREMIUM === */
.gallery-row { gap: 20px !important; margin-bottom: 20px !important; }
.gallery-item {
  aspect-ratio: 4/3 !important;
  border-radius: 0 !important;
  overflow: hidden;
}
.gallery-item img { transition: transform 0.6s ease !important; }
.gallery-item:hover img { transform: scale(1.04) !important; }

/* === CLIENTS LOGO-GRID PREMIUM === */
section.clients .section-header { display: none !important; }
.clients-grid {
  display: grid !important;
  grid-template-columns: repeat(8, 1fr) !important;
  gap: 40px 60px !important;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 980px) { .clients-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 32px !important; } }
@media (max-width: 540px) { .clients-grid { grid-template-columns: repeat(3, 1fr) !important; } }
.client-logo {
  filter: grayscale(1) !important;
  opacity: 0.45 !important;
  transition: all 0.3s !important;
}
.client-logo:hover { filter: grayscale(0) !important; opacity: 1 !important; }
.client-logo img { max-height: 44px !important; max-width: 100px !important; width: auto !important; height: auto !important; }

/* === INDUSTRIES (DARK) === */
section.industries .section-header { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
section.industries .section-header .section-badge { padding-left: 0 !important; }
section.industries .section-header .section-badge::before { display: none; }
.industries-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  background: rgba(250,248,243,0.08);
  border: 1px solid rgba(250,248,243,0.08);
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 980px) { .industries-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 540px) { .industries-grid { grid-template-columns: 1fr !important; } }
.industry-card {
  background: var(--c-charcoal) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 48px 32px !important;
  box-shadow: none !important;
  transition: background 0.3s !important;
  text-align: center;
}
.industry-card:hover {
  background: rgba(255,107,157,0.06) !important;
  transform: none !important;
  box-shadow: none !important;
}
.industry-card .industry-icon {
  width: 36px !important; height: 36px !important;
  color: var(--c-accent) !important;
  margin-bottom: 20px !important;
}
.industry-card h3 {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: var(--c-cream) !important;
  margin: 0 0 8px !important;
  letter-spacing: -0.01em;
}
.industry-card p {
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  color: rgba(250,248,243,0.6) !important;
  margin: 0 !important;
}

/* === PROCESS PREMIUM === */
section.process .section-header { text-align: center !important; margin-left: auto !important; margin-right: auto !important; max-width: 720px; }
section.process .section-header .section-badge { padding-left: 0 !important; }
section.process .section-header .section-badge::before { display: none; }
.process-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 24px !important; }
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr !important; } }
.process-step {
  background: transparent !important;
  border: 1px solid var(--c-stone) !important;
  border-radius: 0 !important;
  padding: 40px 28px !important;
  text-align: left !important;
}
.process-step:hover { background: var(--c-charcoal) !important; color: var(--c-cream) !important; transform: none !important; }
.process-step:hover h4 { color: var(--c-cream) !important; }
.process-step:hover p { color: rgba(250,248,243,0.7) !important; }
.process-step:hover .step-label { background: rgba(250,248,243,0.1) !important; color: var(--c-cream) !important; }
.process-step .step-number {
  background: transparent !important;
  border: 1px solid var(--c-charcoal) !important;
  color: var(--c-charcoal) !important;
  border-radius: 0 !important;
  width: 40px !important; height: 40px !important;
  font-size: 0.95rem !important;
  margin: 0 0 24px !important;
}
.process-step:hover .step-number { border-color: var(--c-cream) !important; color: var(--c-cream) !important; }
.process-step .step-label { display: none !important; }
.process-step h4 {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  margin: 0 0 8px !important;
}
.process-step p { font-size: 0.9rem !important; color: var(--c-muted) !important; }

/* === FAQ PREMIUM === */
section.faq .section-header { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
section.faq .section-header .section-badge { padding-left: 0 !important; }
section.faq .section-header .section-badge::before { display: none; }
.faq-grid { max-width: 880px !important; }
.faq-item { border-bottom: 1px solid var(--c-stone) !important; }
.faq-item details { padding: 24px 0 !important; }
.faq-item summary {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--c-charcoal) !important;
  letter-spacing: -0.005em;
}
.faq-item summary::after {
  background: transparent !important;
  border: 1px solid var(--c-stone) !important;
  border-radius: 0 !important;
  width: 32px !important; height: 32px !important;
}
.faq-item details[open] summary::after {
  background: var(--c-charcoal) !important;
  border-color: var(--c-charcoal) !important;
  color: var(--c-cream) !important;
}
.faq-answer { padding-right: 60px !important; line-height: 1.75 !important; color: var(--c-muted) !important; }

/* === TESTIMONIALS === */
.testimonial {
  background: var(--c-cream) !important;
  border: 1px solid var(--c-stone) !important;
  border-radius: 0 !important;
  padding: 40px 32px !important;
  box-shadow: none !important;
}

/* === CONTACT === */
section.contact { color: var(--c-cream); }
section.contact h2, section.contact h3 { color: var(--c-cream) !important; }
.contact-info p { color: rgba(250,248,243,0.7) !important; }
.contact-form {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 0 !important;
  backdrop-filter: blur(20px);
  padding: 48px !important;
}
.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 0 !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.btn-submit {
  border-radius: 0 !important;
  background: var(--c-accent) !important;
}
.btn-submit:hover { background: #ff5a8e !important; }

/* === FOOTER === */
footer {
  background: var(--c-black) !important;
  padding: 96px 0 32px !important;
  color: rgba(255,255,255,0.65);
}
footer h4 {
  font-size: 0.78rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 24px !important;
  font-family: 'Avenir', sans-serif !important;
}
footer h4:has(+ p),
footer .footer-section:first-child h4 {
  font-family: 'Bullet', Georgia, serif !important;
  text-transform: none !important;
  font-size: 1.8rem !important;
  letter-spacing: 0 !important;
  color: var(--c-cream) !important;
}
footer .footer-section a {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.9rem !important;
  font-weight: 500;
  transition: color 0.2s;
}
footer .footer-section a:hover { color: var(--c-accent) !important; }
.footer-bottom { border-color: rgba(255,255,255,0.08) !important; color: rgba(255,255,255,0.35) !important; }

/* === HERO sicher sichtbar === */
.hero .fade-in,
.hero .hero-content,
.hero .hero-video-wrapper { opacity: 1 !important; transform: none !important; }

/* ════════════════════════════════════════════════════════════════
   USER-FEEDBACK PASS 2 — Farbsystem korrigiert
   - Beige/Cream raus, weiß + hellgrau zurück
   - Footer + Form bleiben dunkelblau (#1a1a2e), nicht schwarz
   - Cards bekommen subtilen Background zurück
   - Section-Padding kompakter
   ════════════════════════════════════════════════════════════════ */

:root {
  --c-black: #1a1a2e !important;        /* Dunkelblau, kein Schwarz */
  --c-charcoal: #1a1a2e !important;
  --c-cream: #ffffff !important;        /* Weiß */
  --c-sand: #f5f5f7 !important;         /* Hellgrau (cool) */
  --c-stone: #e8e8ec !important;        /* Hellgrau Border */
  --c-muted: #6e6e7a !important;
  --c-text: #1a1a2e !important;
}

body { background: #ffffff !important; color: #1a1a2e !important; }

/* Section-Backgrounds: weiß / hellgrau / dunkelblau alternierend */
section.hero { background: #ffffff !important; padding-block: 100px 80px !important; }
section.usp { background: #ffffff !important; }
section.gallery { background: #f5f5f7 !important; }
section.philosophy { background: #1a1a2e !important; }
section.process { background: #ffffff !important; }
section.surfacezoo { background: #1a1a2e !important; }
section.fachbuch { background: #f5f5f7 !important; }
section.portfolio { background: #ffffff !important; }
section.clients { background: #ffffff !important; }
section.industries { background: #1a1a2e !important; }
section.testimonials { background: #f5f5f7 !important; }
section.faq { background: #ffffff !important; }
section.contact { background: #1a1a2e !important; }      /* Dunkelblau, nicht schwarz */

/* Section-Padding kompakter */
section { padding-block: clamp(80px, 9vw, 120px) !important; }

/* Hero sofort sichtbar gegen Race-Condition */
.hero .hero-content,
.hero .hero-video-wrapper,
.hero .fade-in,
.hero-content.fade-in,
.hero-video-wrapper.fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero-Background dezent */
section.hero {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
}

/* USP-Cards bekommen wieder einen subtilen Container */
.usp-card {
  background: #ffffff !important;
  border: 1px solid #e8e8ec !important;
  padding: 0 0 28px !important;
  box-shadow: 0 1px 3px rgba(26,26,46,0.04) !important;
  transition: transform 0.4s, box-shadow 0.4s !important;
}
.usp-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px -12px rgba(26,26,46,0.12) !important;
}
.usp-card picture { margin: 0 !important; }
.usp-card h3 { padding: 24px 28px 0 !important; margin: 0 0 12px !important; }
.usp-card p { padding: 0 28px !important; }

/* Gallery: einheitlicher Background hinter freigestellten Bildern */
.gallery-item {
  background: #ffffff !important;
  border: 1px solid #e8e8ec !important;
}
.gallery-item img,
.gallery-item picture {
  background: #ffffff !important;
}

/* Industries (Dark) bleibt dunkelblau */
section.industries .industry-card {
  background: #1a1a2e !important;
}
section.industries .industry-card:hover {
  background: rgba(255,107,157,0.08) !important;
}

/* Process-Cards mit subtilem Background */
.process-step {
  background: #ffffff !important;
  border: 1px solid #e8e8ec !important;
}
.process-step:hover {
  background: #1a1a2e !important;
  border-color: #1a1a2e !important;
}

/* FAQ in weiß */
.faq-item summary { color: #1a1a2e !important; }

/* Testimonials */
.testimonial {
  background: #ffffff !important;
  border: 1px solid #e8e8ec !important;
}

/* Contact + Form: dunkelblau */
section.contact { background: #1a1a2e !important; }
.contact-form {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0 !important;
  padding: 40px !important;
}

/* Footer: dunkelblau, nicht schwarz */
footer {
  background: #1a1a2e !important;
  padding: 80px 0 32px !important;
}

/* Body padding-bottom Sticky-CTA-Höhe nur Mobile */
body { padding-bottom: 0 !important; }
@media (max-width: 768px) {
  body { padding-bottom: 76px !important; }
}

/* Section-Header: Subtitle wieder etwas Padding */
.section-header { margin-bottom: clamp(48px, 6vw, 72px) !important; }

/* ════════════════════════════════════════════════════════════════
   USER-FEEDBACK PASS 3 — Konsistenz & Bugfixes
   - Philosophy-Skizze als Hintergrund-Akzent statt Text-Überlagerer
   - Hero-Video-Wrapper visuell aufgewertet (geometrisches Pattern)
   - Industries-Icons gold statt pink
   - Process-Numbers größer
   - Section-Header alle zentriert
   ════════════════════════════════════════════════════════════════ */

/* ═══ FIX 1: Philosophy-Section — Skizze nicht mehr über Text ═══ */
section.philosophy {
  position: relative;
  overflow: hidden;
}
.philosophy-content {
  position: relative;
  z-index: 2;
  max-width: 720px !important;
  margin-inline: auto !important;
  text-align: center;
  grid-template-columns: 1fr !important;
}
.philosophy-text {
  text-align: center;
}
.philosophy-bg {
  position: absolute !important;
  right: -10% !important;
  bottom: -10% !important;
  width: 50% !important;
  max-width: 600px !important;
  height: auto !important;
  opacity: 0.08 !important;
  z-index: 1 !important;
  pointer-events: none;
  filter: invert(1) brightness(2);  /* macht die schwarze Skizze hell auf dunklem BG */
}
section.philosophy .philosophy-text p {
  color: rgba(250, 250, 250, 0.85) !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  margin: 0 auto !important;
  max-width: 640px;
}
section.philosophy h2 {
  text-align: center;
}
section.philosophy .section-badge {
  padding-left: 0 !important;
  margin-inline: auto !important;
  display: inline-block !important;
  text-align: center;
}
section.philosophy .section-badge::before { display: none !important; }

/* ═══ FIX 2: Hero-Video-Wrapper aufwerten ═══ */
.hero-video-wrapper {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 50%, #1a1a2e 100%) !important;
  position: relative;
  overflow: hidden;
}
.hero-video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,107,157,0.18) 0%, transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(134,127,106,0.22) 0%, transparent 50%);
  z-index: 0;
}
.hero-video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
  opacity: 0.6;
}

/* ═══ FIX 3: Industries-Icons gold statt pink ═══ */
section.industries .industry-card .industry-icon {
  color: #c9bf9a !important;  /* helles gold */
}
section.industries .industry-card:hover .industry-icon {
  color: var(--c-accent) !important;  /* erst beim Hover Pink */
}

/* ═══ FIX 4: Process-Numbers größer & prominenter ═══ */
.process-step .step-number {
  width: 56px !important;
  height: 56px !important;
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  margin: 0 auto 24px !important;
  border-width: 2px !important;
}

/* ═══ FIX 5: Section-Header konsistent zentriert ═══ */
.section-header {
  text-align: center !important;
  max-width: 760px !important;
  margin: 0 auto clamp(48px, 6vw, 72px) !important;
}
.section-header .section-badge {
  padding-left: 0 !important;
  display: inline-block !important;
}
.section-header .section-badge::before { display: none !important; }
.section-header .section-subtitle {
  margin-inline: auto !important;
}

/* Hero-Badge bleibt linksbündig (das ist Hero, nicht Section-Header) */
.hero-content .hero-badge {
  padding-left: 40px !important;
  display: inline-block !important;
}
.hero-content .hero-badge::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 28px !important;
  height: 1px !important;
  background: var(--c-gold) !important;
}

/* ═══ FIX 6: SurfaceZoo Header zentriert wie andere ═══ */
section.surfacezoo .philosophy-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  text-align: left !important;
  max-width: 1100px !important;
}
section.surfacezoo .philosophy-content > div {
  text-align: left;
}
@media (max-width: 880px) {
  section.surfacezoo .philosophy-content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
}

/* ═══ FIX 7: Hero-Video-Wrapper minimum Höhe für volles Drama ═══ */
@media (min-width: 980px) {
  .hero-video-wrapper {
    aspect-ratio: 4/5 !important;
    min-height: 560px;
  }
}

/* ════════════════════════════════════════════════════════════════
   PASS 4 — Bug-Fixes
   - Kunden-Logos werden 0x0 gerendert → explizite Größen
   - Section-Header für Clients wieder einblenden + Trust-Statement
   ════════════════════════════════════════════════════════════════ */

/* Clients-Section: Header wieder einblenden */
section.clients .section-header { display: block !important; }

/* Logos müssen sichtbar werden */
.clients-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
  gap: 48px 32px !important;
  align-items: center !important;
  justify-items: center !important;
  max-width: 1200px;
  margin: 0 auto;
  padding-block: 0 !important;
}
.client-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 60px !important;
  padding: 8px !important;
  filter: grayscale(1) !important;
  opacity: 0.55 !important;
  transition: filter 0.3s, opacity 0.3s !important;
}
.client-logo:hover {
  filter: grayscale(0) !important;
  opacity: 1 !important;
}
.client-logo img {
  display: block !important;
  max-width: 100% !important;
  max-height: 50px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Section-Header für Clients wirkt wie andere */
section.clients { padding-block: clamp(72px, 8vw, 100px) !important; }
section.clients .section-header { margin-bottom: 56px !important; }

/* ════════════════════════════════════════════════════════════════
   PASS 5 — Bild-Anordnung & Ausschnitte
   - USP-Bilder: native 3:1 Ratio statt 16:10 → kein Crop mehr
   - Philosophy-Skizze: sichtbarer als dezenter Akzent
   - Fachbuch: Layout 2-spaltig, Buch in Block eingebettet
   ════════════════════════════════════════════════════════════════ */

/* ═══ USP-Bilder: aspect-ratio passt zur nativen Bild-Größe (3:1) ═══ */
.usp-card picture {
  aspect-ratio: 3/1 !important;     /* matcht native 370x120 — kein Crop */
  background: #f5f5f7 !important;
  margin: 0 !important;
}
.usp-card picture img,
.usp-card .usp-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;  /* keine Verschiebung mehr */
}

/* ═══ Philosophy-Skizze: dezent aber sichtbar ═══ */
section.philosophy { position: relative; overflow: hidden; }
.philosophy-bg {
  position: absolute !important;
  right: -8% !important;
  bottom: -10% !important;
  width: 55% !important;
  max-width: 720px !important;
  height: auto !important;
  opacity: 0.12 !important;
  filter: none !important;          /* invert + brightness raus */
  mix-blend-mode: screen !important; /* dunkle Linien werden transparent → helle Skizze auf dunklem BG */
  z-index: 1 !important;
  pointer-events: none;
}

/* ═══ Fachbuch: 2-spaltig auf Desktop, Buch besser eingebettet ═══ */
section.fachbuch .philosophy-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
  max-width: 1100px !important;
  margin-inline: auto !important;
}
@media (max-width: 880px) {
  section.fachbuch .philosophy-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
section.fachbuch .philosophy-content > div {
  text-align: left !important;
}
section.fachbuch .philosophy-content picture,
section.fachbuch .philosophy-content > div:first-child picture {
  display: block;
  max-width: 380px;
  margin: 0 auto;
}
section.fachbuch .philosophy-content img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  box-shadow: 0 30px 60px -20px rgba(26,26,46,0.25) !important;
  border-radius: 0 !important;
  display: block;
  background: transparent !important;
}

/* ═══ Sicherheit: alle USP-Section-Cards haben gleiche Höhe ═══ */
.usp-grid { align-items: stretch !important; }
.usp-card { display: flex !important; flex-direction: column !important; }
.usp-card > h3, .usp-card > p { flex-shrink: 0; }

/* ═══ Hero-Video Aspect 4:5 → eventuell zu hoch, auf 4:4 (quadratisch) ═══ */
@media (min-width: 980px) {
  .hero-video-wrapper {
    aspect-ratio: 1/1 !important;    /* quadratisch — weniger leer */
    min-height: 480px !important;
  }
}
