﻿        /* Font Declarations */
        @font-face {
            font-family: 'Ragtime';
            src: url('../assets/fonts/Ragtime-ExtraBold.otf') format('opentype');
            font-weight: 800;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Archivo';
            src: url('../assets/fonts/Archivo-Light.ttf') format('truetype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Archivo';
            src: url('../assets/fonts/Archivo-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Archivo';
            src: url('../assets/fonts/Archivo-Medium.ttf') format('truetype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Archivo';
            src: url('../assets/fonts/Archivo-SemiBold.ttf') format('truetype');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Theme: Dunkel/Gelb */
        :root {
            --primary: #000000;
            --secondary: #1a1a1a;
            --accent: #2a2a2a;
            --text: #ffffff;
            --text-dim: #b0b0b0;
            --surface: #0a0a0a;
            --surface-elevated: #1a1a1a;
            --hero-overlay: rgba(0, 0, 0, 0.5);
            --header-bg: rgba(250, 219, 38, 0.92);
            --header-bg-scrolled: rgba(250, 219, 38, 0.95);
            --heading-color: #fadb26;
        }

        body {
            font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--surface);
            color: var(--text);
            overflow-x: hidden;
            transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        }

        header.scrolled {
            background: var(--header-bg-scrolled);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        nav {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 2rem;
            padding: 1.5rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            opacity: 0;
            animation: fadeSlideIn 0.8s ease forwards;
        }

        .logo {
            height: 60px;
            width: auto;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
            justify-content: center;
            opacity: 0;
            animation: fadeSlideIn 0.8s ease 0.2s forwards;
        }

        .nav-menu a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: rgba(0, 0, 0, 0.7);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Header Contact */
        .header-contact {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            opacity: 0;
            animation: fadeSlideIn 0.8s ease 0.4s forwards;
        }

        .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--primary);
        }

        .header-contact-item .contact-label {
            font-size: 1rem;
            color: var(--primary);
        }

        .header-contact-item span {
            color: var(--primary);
            font-weight: 600;
        }

        .header-contact-item a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .header-contact-item a:hover {
            color: rgba(0, 0, 0, 0.7);
        }

        /* Burger Menu */
        .burger-menu {
            display: none;
            position: fixed;
            top: 1rem;
            right: 1.5rem;
            z-index: 1002;
            flex-direction: column;
            gap: 5px;
            background: var(--header-bg);
            border: 2px solid var(--primary);
            border-radius: 8px;
            padding: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .burger-menu:hover {
            background: var(--primary);
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .burger-menu:hover .burger-line {
            background: var(--header-bg);
        }

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            animation: zoomIn 20s ease infinite alternate;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 2rem;
            max-width: 1200px;
            transition: transform 0.1s ease-out, opacity 0.1s ease-out;
            will-change: transform, opacity;
        }

        .hero-title {
            font-size: clamp(3rem, 10vw, 8rem);
            line-height: 0.9;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeSlideUp 1s ease 0.6s forwards;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-title-top {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-weight: 800;
            letter-spacing: 0.15em;
            color: #ffffff;
            text-transform: uppercase;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }

        .hero-title-bottom {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: #ffffff;
            text-transform: none;
            font-size: 0.6em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 600;
            letter-spacing: 0.15em;
            color: #fadb26;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeSlideUp 1s ease 0.9s forwards;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
        }

        .hero-cta {
            display: inline-flex;
            gap: 2rem;
            opacity: 0;
            animation: fadeSlideUp 1s ease 1.2s forwards;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border: 2px solid #fadb26;
            background: #fadb26;
            color: #000000;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #fbec8c;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .cta-button.secondary {
            background: transparent;
            color: #ffffff;
            border-color: #ffffff;
        }

        .cta-button.secondary:hover {
            background: #fadb26;
            color: #000000;
            border-color: #fadb26;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            animation: fadeIn 1s ease 1.5s forwards, bounce 2s ease-in-out 2.5s infinite;
            transition: opacity 0.3s ease-out;
            will-change: opacity;
        }

        .scroll-indicator::before {
            content: '';
            display: block;
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, #fadb26);
            margin: 0 auto 0.5rem;
        }

        .scroll-indicator span {
            display: block;
            color: #ffffff;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Animations */
        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        @keyframes zoomIn {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.1);
            }
        }

        /* Feature Carousel Section */
        .features-section {
            padding: 6rem 2rem;
            background: var(--surface);
            transition: background 0.6s ease;
        }

        .features-wrapper {
            max-width: 1600px;
            margin: 0 auto;
        }

        .features-carousel {
            display: flex;
            flex-direction: row;
            min-height: 600px;
            border-radius: 3rem;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(0, 0, 0, 0.1);
        }

        .features-sidebar {
            width: 40%;
            min-width: 350px;
            background: #0a0a0a;
            position: relative;
            overflow: hidden;
            padding: 3rem 2rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .features-heading {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #fadb26;
            text-align: center;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            position: relative;
            z-index: 15;
            margin: 0 0 3rem 0;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(250, 219, 38, 0.3);
            padding: 0;
        }

        .features-sidebar::before,
        .features-sidebar::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 100px;
            pointer-events: none;
            z-index: 10;
        }

        .features-sidebar::before {
            top: 0;
            background: linear-gradient(to bottom, 
                #0a0a0a 0%, 
                #0a0a0a 20%, 
                transparent 100%);
        }

        .features-sidebar::after {
            bottom: 0;
            background: linear-gradient(to top, 
                #0a0a0a 0%, 
                #0a0a0a 20%, 
                transparent 100%);
        }

        .features-list {
            width: 100%;
            position: relative;
            height: 400px;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            max-height: 450px;
        }

        .feature-btn {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            opacity: 0.6;
            user-select: none;
            backdrop-filter: blur(10px);
        }

        .feature-btn:hover {
            border-color: rgba(250, 219, 38, 0.5);
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .feature-btn.active {
            background: #fadb26;
            color: #000000;
            border-color: #fadb26;
            opacity: 1;
            box-shadow: 0 10px 30px rgba(250, 219, 38, 0.4),
                        0 0 0 4px rgba(250, 219, 38, 0.2);
            z-index: 20;
            transform: scale(1.02);
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        /* Play button - hidden */
        .play-button {
            display: none;
        }

        /* Navigation arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0;
            transition: all 0.3s ease;
            z-index: 101;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
        }

        .nav-arrow:hover {
            transform: translateY(-50%) scale(1.15);
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
        }

        .nav-arrow-left {
            left: 2rem;
        }

        .nav-arrow-right {
            right: 2rem;
        }

        .nav-arrow svg {
            width: 48px;
            height: 48px;
        }

        .nav-arrow svg .arrow-outline {
            stroke: #fadb26;
            stroke-width: 5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .nav-arrow svg .arrow-fill {
            stroke: rgba(0, 0, 0, 0.6);
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .nav-arrow:hover svg .arrow-fill {
            stroke: rgba(0, 0, 0, 0.9);
        }

        .features-display {
            flex: 1;
            background: var(--accent);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem 6rem;
            overflow: hidden;
            height: 595px;
            flex-shrink: 0;
        }

        /* Fixed text overlay in features-display - always visible */
        .zoom-text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            padding: 2rem 3rem 2.5rem 3rem;
            background: rgba(0, 0, 0, 0.65);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            opacity: 1;
            pointer-events: auto;
            z-index: 100;
            transition: opacity 0.8s ease 0.2s;
        }

        .zoom-text-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 0.5rem;
        }

        .zoom-text-title {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            flex: 1;
        }

        .zoom-text-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.5;
            margin: 0 0 1rem 0;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
        }

        .zoom-cta-button {
            padding: 0.8rem 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border: 2px solid #fadb26;
            background: #fadb26;
            color: #000000;
            border-radius: 50px;
            position: absolute;
            bottom: 2.5rem;
            right: 3rem;
            overflow: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .zoom-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .zoom-cta-button:hover::before {
            left: 100%;
        }

        .zoom-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(250, 219, 38, 0.5);
        }

        .feature-card-container {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            transform: translate(0, 0);
            transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
            transform-origin: center center;
            z-index: 15;
        }

        .feature-card {
            position: absolute;
            inset: 0;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border: 6px solid var(--surface);
            opacity: 0;
            transform: scale(0.8);
            transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
            pointer-events: none;
        }

        .feature-card.active {
            opacity: 1;
            transform: scale(1);
            z-index: 10;
            pointer-events: auto;
        }

        /* Active card fills the container */
        .feature-card.active {
            border-radius: 0;
            border-width: 0;
            inset: 0;
            overflow: hidden;
        }

        .feature-card.prev,
        .feature-card.next {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .feature-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: filter 1.2s ease;
        }

        .feature-card:not(.active) .feature-card-image {
            filter: grayscale(100%) blur(2px) brightness(0.6);
        }

        /* Image always fills completely */
        .feature-card.active .feature-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .feature-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 3rem 2rem 3rem;
            background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.90) 30%, 
                rgba(0, 0, 0, 0.7) 50%, 
                transparent 100%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .feature-card.active .feature-card-overlay {
            opacity: 1;
        }

        .feature-card-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.5;
            margin: 0;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.6s ease, max-height 0.6s ease;
        }

        .feature-card-title {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 0.5rem 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Hide card overlay text - always hidden */
        .feature-card-overlay {
            opacity: 0 !important;
        }

        .live-indicator {
            position: absolute;
            top: 2rem;
            left: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            transition: opacity 0.6s ease 0.3s;
        }

        .feature-card.active .live-indicator {
            opacity: 1;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ff0000;
            animation: livePulse 2s ease infinite;
        }

        @keyframes livePulse {
            0%, 100% {
                box-shadow: 0 0 5px #ff0000;
            }
            50% {
                box-shadow: 0 0 15px #ff0000, 0 0 25px #ff0000;
            }
        }

        .live-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .features-carousel {
                flex-direction: column;
                min-height: auto;
            }

            .features-sidebar {
                width: 100%;
                min-width: unset;
                padding: 2.5rem 1rem 2rem 1rem;
                min-height: 450px;
            }

            .features-heading {
                font-size: 2.5rem;
                margin-bottom: 2.5rem;
            }

            .features-sidebar::before,
            .features-sidebar::after {
                height: 60px;
            }

            .features-display {
                min-height: 600px;
                padding: 2rem 4rem;
            }

            .feature-card-container {
                max-width: 400px;
            }

            .feature-card.prev {
                transform: scale(0.88) translateX(-100px) rotate(-5deg);
            }

            .feature-card.next {
                transform: scale(0.88) translateX(100px) rotate(5deg);
            }
        }

        @media (max-width: 768px) {
            .features-section {
                padding: 4rem 1rem;
            }

            .features-carousel {
                border-radius: 1.5rem;
                flex-direction: column;
            }

            /* Hide sidebar in mobile - only show images with rotation */
            .features-sidebar {
                display: none;
            }

            .features-display {
                width: 100%;
                min-height: 500px;
                padding: 1.5rem 3rem;
            }

            .feature-card-container {
                max-width: 100%;
            }

            .feature-card {
                border-width: 4px;
                border-radius: 1.5rem;
            }

            .feature-card.prev {
                transform: scale(0.85) translateX(-80px) rotate(-4deg);
                opacity: 0.5;
            }

            .feature-card.next {
                transform: scale(0.85) translateX(80px) rotate(4deg);
                opacity: 0.5;
            }

            .feature-card-overlay {
                padding: 2rem 1.5rem;
                padding-top: 4rem;
            }

            .feature-card-title {
                font-size: 1.4rem;
            }

            .feature-card-badge {
                font-size: 0.7rem;
                padding: 0.3rem 0.8rem;
            }

            /* Adjust navigation arrows for mobile */
            .nav-arrow-left {
                left: 1rem;
            }

            .nav-arrow-right {
                right: 1rem;
            }

            .nav-arrow svg {
                width: 40px;
                height: 40px;
            }

            .zoom-text-overlay {
                padding: 1.5rem 2rem 2rem 2rem;
                height: 50%;
            }

            .zoom-text-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                margin-bottom: 1rem;
            }

            .zoom-text-title {
                font-size: 1.4rem;
            }

            .zoom-text-description {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }

            .zoom-cta-button {
                position: absolute;
                bottom: 2rem;
                left: 2rem;
                right: 2rem;
                padding: 0.7rem 1.5rem;
                font-size: 0.75rem;
                width: auto;
                text-align: center;
            }
        }

        /* Fleet Section - LKW Accordion */
        .fleet-section {
            padding: 6rem 2rem;
            background: var(--secondary);
            transition: background 0.6s ease;
        }

        .section-divider {
            height: 5px;
            background: linear-gradient(90deg, 
                rgba(250, 219, 38, 0.05) 0%, 
                rgba(250, 219, 38, 0.25) 10%,
                rgba(250, 219, 38, 0.35) 50%,
                rgba(250, 219, 38, 0.25) 90%,
                rgba(250, 219, 38, 0.05) 100%);
            margin: 0;
            border: none;
        }

        .fleet-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .fleet-content {
            display: flex;
            flex-direction: row;
            gap: 4rem;
            align-items: center;
        }

        .fleet-text {
            flex: 1;
            min-width: 300px;
            opacity: 0;
            transform: translateX(-80px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fleet-text.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        .fleet-text h2 {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--heading-color);
            margin-bottom: 1.5rem;
            letter-spacing: 0.05em;
            line-height: 1.1;
            transition: opacity 0.3s ease;
        }

        .fleet-text p {
            font-size: 1.125rem;
            color: var(--text-dim);
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 600px;
            transition: opacity 0.3s ease;
        }

        .fleet-text.text-changing h2,
        .fleet-text.text-changing p {
            opacity: 0;
        }

        .fleet-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--heading-color);
            color: var(--surface);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--heading-color);
            transition: all 0.3s ease;
        }

        .fleet-button:hover {
            background: transparent;
            color: var(--heading-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .fleet-accordion {
            flex: 1;
            display: flex;
            gap: 1rem;
            height: 450px;
            overflow: hidden;
        }

        .accordion-item {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            width: 60px;
        }

        .accordion-item.active {
            width: 400px;
        }

        .accordion-item.expanded {
            width: 100%;
        }

        .accordion-item.hidden {
            width: 0;
            opacity: 0;
            pointer-events: none;
        }

        /* Override width for variant2 to use flex properly */
        .fleet-accordion-variant2 .accordion-item {
            width: auto !important;
            flex: 1;
            min-width: 150px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fleet-accordion-variant2 .accordion-item.active {
            flex: 2;
            width: auto !important;
        }

        .fleet-accordion-variant2 .accordion-item.expanded {
            flex: 20;
            width: auto !important;
        }

        .fleet-accordion-variant2 .accordion-item.hidden {
            flex: 0.1;
            opacity: 0.3;
            width: auto !important;
        }

        .accordion-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .accordion-item:hover img {
            transform: scale(1.05);
        }

        .accordion-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
        }

        .accordion-text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 70%, transparent 100%);
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            display: none;
        }

        .accordion-text-overlay h3 {
            color: #fadb26;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            font-family: 'Ragtime', 'Arial Black', sans-serif;
        }

        .accordion-text-overlay p {
            color: #ffffff;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .accordion-title {
            position: absolute;
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .accordion-item:not(.active) .accordion-title {
            bottom: 6rem;
            left: 50%;
            transform: translateX(-50%) rotate(90deg);
            transform-origin: center;
        }

        .accordion-item.active .accordion-title {
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%) rotate(0deg);
        }

        .accordion-item.expanded .accordion-title {
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) rotate(0deg);
            font-size: 1.5rem;
        }

        .accordion-click-hint {
            position: absolute;
            top: 0;
            right: 0;
            background: rgba(250, 219, 38, 0.75);
            color: #000000;
            padding: 0.4rem 0.8rem;
            border-radius: 0 0 0 1rem;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        /* Show hint only on active items when hovering (Desktop) */
        .accordion-item.active:hover .accordion-click-hint {
            opacity: 1;
        }

        /* Pulse animation only on first active item */
        .accordion-item.active:first-child .accordion-click-hint {
            animation: hintPulse 2s ease-in-out infinite;
            opacity: 0.8;
        }

        @keyframes hintPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .accordion-item.expanded .accordion-click-hint {
            opacity: 0;
        }

        /* Fleet Section - Full Width Accordion */
        #fuhrpark {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #fuhrpark .fleet-container {
            max-width: 100%;
            width: 100%;
        }

        #fuhrpark .fleet-content {
            flex-direction: column;
        }

        .fleet-accordion-variant2 {
            height: 80vh;
            min-height: 600px;
        }

        /* Fleet Gallery Styles */
        .fleet-category {
            margin-bottom: 4rem;
        }

        .fleet-category:last-child {
            margin-bottom: 0;
        }

        .fleet-category-title {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text);
            text-align: center;
            margin-bottom: 2rem;
            letter-spacing: 0.03em;
        }

        .fleet-gallery {
            display: grid;
            gap: 2rem;
            padding: 1rem;
        }

        /* LKW Galerie: 6-column grid for centering */
        .fleet-gallery-lkw {
            grid-template-columns: repeat(6, 1fr);
        }

        .fleet-gallery-lkw .fleet-gallery-item:nth-child(1),
        .fleet-gallery-lkw .fleet-gallery-item:nth-child(2),
        .fleet-gallery-lkw .fleet-gallery-item:nth-child(3) {
            grid-column: span 2;
        }

        .fleet-gallery-lkw .fleet-gallery-item:nth-child(4) {
            grid-column: 2 / 4;
        }

        .fleet-gallery-lkw .fleet-gallery-item:nth-child(5) {
            grid-column: 4 / 6;
        }

        /* Anhänger Galerie: 6-column grid for centering */
        .fleet-gallery-anhaenger {
            grid-template-columns: repeat(6, 1fr);
        }

        .fleet-gallery-anhaenger .fleet-gallery-item:nth-child(1) {
            grid-column: 2 / 4;
        }

        .fleet-gallery-anhaenger .fleet-gallery-item:nth-child(2) {
            grid-column: 4 / 6;
        }

        .fleet-gallery-item {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .fleet-gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .fleet-gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .fleet-gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .fleet-gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .fleet-gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .fleet-gallery-item:nth-child(6) { animation-delay: 0.6s; }
        .fleet-gallery-item:nth-child(7) { animation-delay: 0.7s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fleet-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fleet-image-wrapper:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
        }

        .fleet-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .fleet-image-wrapper:hover img {
            transform: scale(1.1);
        }

        .fleet-item-title {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--heading-color);
            text-align: center;
            margin: 0;
            transition: color 0.3s ease;
        }

        .fleet-gallery-item:hover .fleet-item-title {
            color: var(--text);
        }

        /* Responsive Gallery */
        @media (max-width: 1024px) {
            .fleet-gallery-lkw,
            .fleet-gallery-anhaenger {
                grid-template-columns: repeat(2, 1fr);
            }

            .fleet-gallery-lkw .fleet-gallery-item:nth-child(1),
            .fleet-gallery-lkw .fleet-gallery-item:nth-child(2),
            .fleet-gallery-lkw .fleet-gallery-item:nth-child(3),
            .fleet-gallery-lkw .fleet-gallery-item:nth-child(4),
            .fleet-gallery-lkw .fleet-gallery-item:nth-child(5),
            .fleet-gallery-anhaenger .fleet-gallery-item:nth-child(1),
            .fleet-gallery-anhaenger .fleet-gallery-item:nth-child(2) {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .fleet-gallery-lkw,
            .fleet-gallery-anhaenger {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0.5rem;
            }

            .fleet-gallery-lkw .fleet-gallery-item:nth-child(1),
            .fleet-gallery-lkw .fleet-gallery-item:nth-child(2),
            .fleet-gallery-lkw .fleet-gallery-item:nth-child(3),
            .fleet-gallery-lkw .fleet-gallery-item:nth-child(4),
            .fleet-gallery-lkw .fleet-gallery-item:nth-child(5),
            .fleet-gallery-anhaenger .fleet-gallery-item:nth-child(1),
            .fleet-gallery-anhaenger .fleet-gallery-item:nth-child(2) {
                grid-column: 1;
            }

            .fleet-image-wrapper {
                aspect-ratio: 16 / 11;
            }

            .fleet-item-title {
                font-size: 1.3rem;
            }

            .fleet-category-title {
                font-size: 1.8rem;
            }
        }

        /* Company Section - Das Unternehmen */
        .company-section {
            padding: 8rem 2rem;
            background: var(--surface);
            transition: background 0.6s ease;
        }

        .company-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .company-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .company-header h2 {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--heading-color);
            letter-spacing: 0.05em;
            line-height: 1.1;
        }

        .company-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            grid-template-rows: auto 1fr;
            gap: 2rem 4rem;
            align-items: start;
        }

        .company-subtitle {
            grid-column: 1;
            grid-row: 1;
        }

        .company-text {
            grid-column: 1;
            grid-row: 2;
            max-width: 600px;
        }

        .company-image {
            grid-column: 2;
            grid-row: 1 / span 2;
            position: relative;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            height: 600px;
        }

        .company-subtitle h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 0;
            line-height: 1.3;
        }

        .company-text p {
            font-size: 1.125rem;
            color: var(--text-dim);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .company-text p:last-child {
            margin-bottom: 0;
        }

        .company-image {
            flex: 1.2;
            position: relative;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            height: 600px;
        }

        .company-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center -150px;
            transition: transform 0.6s ease;
        }

        .company-image:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .company-content {
                display: flex;
                flex-direction: column;
                gap: 2rem;
            }

            .company-subtitle {
                order: 1;
            }

            .company-image {
                order: 2;
                width: 100%;
                height: 500px;
            }

            .company-text {
                order: 3;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .company-section {
                padding: 4rem 1.5rem;
            }

            .company-header {
                margin-bottom: 2rem;
            }

            .company-content {
                gap: 1.5rem;
            }

            .company-image {
                height: 400px;
            }

            .company-image img {
                object-position: center top;
            }

            .company-subtitle h3 {
                font-size: 1.5rem;
                margin-bottom: 0;
            }

            .company-text p {
                font-size: 1rem;
                text-align: justify;
            }
        }

        /* Footer */
        .footer {
            background: var(--secondary);
            color: var(--text);
            padding: 5rem 0 0;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
            transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--primary) 0%, 
                var(--heading-color) 50%, 
                var(--primary) 100%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 4rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 0.7fr 2fr;
            gap: 4rem;
            padding-bottom: 4rem;
            border-bottom: 2px solid rgba(250, 219, 38, 0.2);
        }

        .footer-column {
            opacity: 0;
            animation: fadeSlideUp 0.8s ease forwards;
        }

        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { 
            animation-delay: 0.2s;
            text-align: center;
        }
        .footer-column:nth-child(2) .footer-heading {
            text-align: center;
        }
        .footer-column:nth-child(3) { 
            animation-delay: 0.3s;
            padding-left: 6rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            text-align: center;
        }

        .footer-logo {
            height: 65px;
            width: auto;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
        }

        .footer-logo-svg {
            height: 80px;
            width: auto;
            margin-bottom: 0.5rem;
            display: block;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
            transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Logo Anpassungen für dunkles Theme */
        .footer-logo-svg {
            filter: brightness(0) saturate(100%) invert(88%) sepia(34%) saturate(1454%) hue-rotate(356deg) brightness(102%) contrast(98%) drop-shadow(0 2px 8px rgba(250, 219, 38, 0.3));
        }

        .footer-tagline {
            font-size: 1rem;
            font-weight: 600;
            font-style: italic;
            color: var(--heading-color);
            margin-bottom: 0.5rem;
        }

        .footer-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-dim);
            max-width: 400px;
        }

        .footer-heading {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--heading-color);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-align: left;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding: 0.25rem 0;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--heading-color);
            transform: translateX(20px);
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .footer-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .footer-contact li {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .contact-icon {
            font-size: 1.25rem;
            flex-shrink: 0;
            filter: grayscale(1);
            opacity: 0.8;
        }

        .footer-contact strong {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
            color: var(--heading-color);
            text-align: left;
        }

        .footer-contact p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
            color: var(--text);
            text-align: left;
        }

        .footer-contact a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .footer-contact a:hover {
            color: var(--heading-color);
            text-decoration: underline;
        }

        .footer-cta {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(250, 219, 38, 0.15);
        }

        .footer-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, #d4a800 100%);
            color: #000;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(250, 219, 38, 0.3);
        }

        .footer-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.4s ease;
        }

        .footer-cta-button:hover::before {
            left: 100%;
        }

        .footer-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(250, 219, 38, 0.4);
        }

        .footer-hours {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-hours li {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .footer-hours span {
            font-size: 0.85rem;
            color: var(--text-dim);
            font-weight: 500;
        }

        .footer-hours strong {
            font-size: 0.95rem;
            color: var(--text);
            font-weight: 600;
        }

        .footer-emergency {
            margin-top: 0.5rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-emergency strong {
            color: var(--heading-color);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
            gap: 2rem;
        }

        .footer-legal {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-legal p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-dim);
        }

        .footer-legal-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .footer-legal-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-legal-links a:hover {
            color: var(--heading-color);
            text-decoration: underline;
        }

        .separator {
            color: var(--text-dim);
            opacity: 0.5;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: var(--primary);
            color: var(--secondary);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .social-link:hover {
            background: var(--heading-color);
            color: var(--primary);
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .social-link svg {
            transition: transform 0.3s ease;
        }

        .social-link:hover svg {
            transform: scale(1.1);
        }

        /* Responsive */
        @media (min-width: 769px) and (max-width: 1140px) {
            nav {
                gap: 1.5rem;
                padding: 1.5rem 2rem;
            }

            .nav-menu {
                flex-wrap: wrap;
                gap: 1.5rem 2rem;
                max-width: 400px;
            }

            .header-contact {
                gap: 0.3rem;
            }

            .header-contact-item {
                font-size: 0.75rem;
            }

            .header-contact-item .contact-label {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .burger-menu {
                display: flex !important;
            }

            header {
                position: static;
                background: var(--header-bg);
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
                backdrop-filter: none;
            }

            nav {
                display: flex;
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 1rem;
                align-items: center;
            }

            .logo-container {
                width: 100%;
                justify-content: center;
            }

            .logo {
                height: 50px;
            }

            .header-contact {
                display: flex;
                width: 100%;
                justify-content: center;
                align-items: center;
            }

            .header-contact-item {
                font-size: 0.75rem;
            }

            .header-contact-item .contact-label {
                font-size: 0.9rem;
            }

            .nav-menu {
                display: flex;
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--header-bg);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 2rem;
                align-items: flex-start;
                transition: right 0.4s ease;
                z-index: 1001;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                width: 100%;
            }

            .nav-menu a {
                display: block;
                padding: 0.75rem 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .nav-menu a::after {
                display: none;
            }

            .hero-title {
                font-size: clamp(3.5rem, 15vw, 5rem);
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 1rem;
            }

            .fleet-content {
                flex-direction: column;
                gap: 2rem;
            }

            .fleet-text {
                order: 1;
            }

            .fleet-accordion {
                order: 2;
                flex-direction: column;
                height: auto;
                width: 100%;
                gap: 1rem;
            }

            .accordion-item {
                width: 100% !important;
                height: 250px;
                min-width: unset;
                flex-shrink: 0;
            }

            .accordion-item.active {
                min-width: unset;
                height: 250px;
            }

            .accordion-item.expanded {
                height: 400px;
            }

            .accordion-item.expanded .accordion-text-overlay {
                display: block;
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }

            .accordion-item.hidden {
                display: none;
            }

            .accordion-title {
                font-size: 1.5rem !important;
                bottom: 1.5rem !important;
                left: 50% !important;
                transform: translateX(-50%) rotate(0deg) !important;
                transition: opacity 0.3s ease;
            }

            .accordion-item.expanded .accordion-title {
                opacity: 0;
            }

            /* Mobile: Show hints on all items (no hover on mobile) */
            .accordion-item .accordion-click-hint {
                opacity: 1 !important;
            }

            .accordion-item.expanded .accordion-click-hint {
                opacity: 0 !important;
            }

            .fleet-text h2 {
                font-size: 2rem;
            }

            .fleet-text p {
                font-size: 1rem;
            }

            /* Footer Responsive */
            .footer {
                padding: 3rem 0 0;
                margin-top: 4rem;
            }

            .footer-container {
                padding: 0 2rem;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding-bottom: 3rem;
            }

            .footer-column:nth-child(2) {
                display: none;
            }

            .footer-column:nth-child(3) {
                text-align: center;
                padding-left: 0;
            }

            .footer-column:nth-child(3) .footer-heading {
                text-align: center;
            }

            .footer-contact {
                align-items: center;
            }

            .footer-contact li {
                gap: 0.75rem;
                flex-direction: column;
                align-items: center;
            }

            .footer-contact .contact-icon {
                display: none;
            }

            .footer-contact strong,
            .footer-contact p {
                text-align: center;
            }

            .footer-contact div {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-logo-svg {
                height: 65px;
            }

            .footer-heading {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            .footer-description {
                font-size: 0.9rem;
            }

            .footer-links a:hover {
                transform: translateX(10px);
            }

            .footer-contact li {
                gap: 0.75rem;
            }

            .contact-icon {
                font-size: 1.25rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
                padding: 1.5rem 0;
            }

            .footer-legal {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        /* ========================================
           TIMELINE STYLES - 4 Konzepte
        ======================================== */

        /* Gemeinsame Timeline Basis-Styles */
        .timeline-section {
            padding: 6rem 0;
            background: var(--surface);
            position: relative;
            overflow: hidden;
            transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 5rem;
            opacity: 0;
            animation: fadeSlideUp 0.8s ease forwards;
        }

        .timeline-header h2 {
            font-family: 'Ragtime', 'Arial Black', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--heading-color);
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .timeline-header p {
            font-size: 1.2rem;
            color: var(--text-dim);
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4rem;
        }

        /* ========================================
           KONZEPT 1: ROAD TIMELINE (REDESIGNED)
        ======================================== */
        .road-timeline {
            position: relative;
            padding: 4rem 0;
            min-height: 700px;
        }

        .road-path {
            position: relative;
            width: 100%;
            height: 120px;
            background: linear-gradient(to bottom, 
                #2a2a2a 0%, 
                #1a1a1a 20%, 
                #1a1a1a 80%, 
                #2a2a2a 100%);
            border-radius: 20px;
            overflow: visible;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                        inset 0 -10px 20px rgba(0, 0, 0, 0.4);
            margin-top: -60px;
        }

        .road-marking {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 6px;
            transform: translateY(-50%);
            background: repeating-linear-gradient(
                to right,
                transparent 0px,
                transparent 20px,
                #fadb26 20px,
                #fadb26 60px,
                transparent 60px,
                transparent 80px
            );
            opacity: 0.8;
        }

        .road-milestones {
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 0 2rem;
            margin-bottom: 3rem;
        }

        .road-milestone {
            position: relative;
            width: 220px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .milestone-marker {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--accent);
            border: 4px solid var(--heading-color);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .road-milestone.active .milestone-marker {
            background: var(--heading-color);
            box-shadow: 0 0 0 8px rgba(250, 219, 38, 0.3),
                        0 4px 20px rgba(0, 0, 0, 0.5);
            animation: markerPulse 2s ease infinite;
        }

        .milestone-year-badge {
            background: var(--heading-color);
            color: var(--surface);
            padding: 1rem 1.5rem;
            font-family: 'Ragtime', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            letter-spacing: 0.05em;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 10;
        }

        .road-milestone.active .milestone-year-badge {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        }

        @keyframes markerPulse {
            0%, 100% {
                box-shadow: 0 0 0 8px rgba(250, 219, 38, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(250, 219, 38, 0), 0 4px 20px rgba(0, 0, 0, 0.5);
            }
        }

        .road-card {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 350px;
            margin-bottom: 1rem;
            background: var(--secondary);
            border-radius: 15px 15px 0 0;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 20;
        }

        .road-milestone.active .road-card {
            opacity: 1;
            max-height: 400px;
        }

        .road-card-content {
            padding: 2rem;
        }

        .road-card-content h3 {
            color: var(--heading-color);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .road-card-content p {
            color: var(--text);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .truck-icon {
            position: absolute;
            top: 50%;
            left: -5%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 50px;
            transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.6));
            z-index: 100;
            transform-origin: center center;
        }

        .truck-icon svg {
            width: 100%;
            height: 100%;
        }

        .truck-icon.dumping {
            animation: dumpTruck 1.5s ease-in-out;
        }

        @keyframes dumpTruck {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            30% {
                transform: translate(-50%, -50%) rotate(-15deg);
            }
            70% {
                transform: translate(-50%, -50%) rotate(-15deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
        }

        .road-navigation {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .road-nav-btn {
            background: var(--heading-color);
            color: var(--surface);
            border: none;
            padding: 1rem 2.5rem;
            font-family: 'Ragtime', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .road-nav-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        }

        .road-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .road-progress {
            text-align: center;
            margin-top: 2rem;
            color: var(--text-dim);
            font-size: 1.1rem;
        }

        .road-progress-current {
            color: var(--heading-color);
            font-family: 'Ragtime', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
        }

        /* ========================================
           KONZEPT 2: VERTICAL PROGRESS BAR
        ======================================== */
        .vertical-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent);
            transform: translateX(-50%);
        }

        .timeline-progress {
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            height: 0;
            background: var(--heading-color);
            transform: translateX(-50%);
            transition: height 0.3s ease;
        }

        .timeline-items {
            position: relative;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            margin-bottom: 6rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
            align-items: center;
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-content {
            padding: 0 3rem;
        }

        /* Left content (odd items) - first column */
        .timeline-item:nth-child(odd) .timeline-content:first-child {
            text-align: right;
            grid-column: 1;
        }

        /* Right content (even items) - third column */
        .timeline-item:nth-child(even) .timeline-content:last-child {
            text-align: left;
            grid-column: 3;
        }

        /* Hide empty content */
        .timeline-content:empty {
            display: none;
        }

        /* Dot always in middle column */
        .timeline-dot {
            grid-column: 2;
        }

        .timeline-year {
            font-family: 'Ragtime', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--heading-color);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .timeline-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .timeline-desc {
            font-size: 1rem;
            color: var(--text-dim);
            line-height: 1.7;
        }

        .timeline-dot {
            width: 24px;
            height: 24px;
            background: var(--heading-color);
            border: 4px solid var(--surface);
            border-radius: 50%;
            position: relative;
            z-index: 10;
            box-shadow: 0 0 0 4px var(--accent);
            transition: all 0.3s ease;
        }

        .timeline-item.animate .timeline-dot {
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 4px var(--accent), 0 0 0 8px transparent;
            }
            50% {
                box-shadow: 0 0 0 4px var(--accent), 0 0 0 12px var(--heading-color);
            }
        }

        /* ========================================
           KONZEPT 3: HORIZONTAL SCROLL TIMELINE
        ======================================== */
        .horizontal-timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline-scroll-container {
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--heading-color) var(--accent);
        }

        .timeline-scroll-container::-webkit-scrollbar {
            height: 8px;
        }

        .timeline-scroll-container::-webkit-scrollbar-track {
            background: var(--accent);
            border-radius: 10px;
        }

        .timeline-scroll-container::-webkit-scrollbar-thumb {
            background: var(--heading-color);
            border-radius: 10px;
        }

        .timeline-track {
            display: flex;
            gap: 3rem;
            padding: 3rem 2rem;
            min-width: min-content;
        }

        .timeline-card {
            min-width: 400px;
            background: var(--secondary);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            position: relative;
            transition: all 0.4s ease;
            cursor: grab;
        }

        .timeline-card:active {
            cursor: grabbing;
        }

        .timeline-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        }

        .timeline-card-year {
            position: absolute;
            top: -20px;
            left: 2.5rem;
            font-family: 'Ragtime', sans-serif;
            font-size: 5rem;
            font-weight: 800;
            color: var(--heading-color);
            opacity: 0.15;
            line-height: 1;
            pointer-events: none;
        }

        .timeline-card h3 {
            font-family: 'Ragtime', sans-serif;
            font-size: 2rem;
            color: var(--heading-color);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .timeline-card p {
            font-size: 1.05rem;
            color: var(--text);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .scroll-progress {
            height: 4px;
            background: var(--accent);
            border-radius: 10px;
            margin-top: 2rem;
            overflow: hidden;
        }

        .scroll-progress-bar {
            height: 100%;
            background: var(--heading-color);
            width: 0%;
            transition: width 0.1s linear;
        }

        /* ========================================
           KONZEPT 4: INTERACTIVE CARDS
        ======================================== */
        .interactive-timeline {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-spine {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(to bottom, var(--heading-color), var(--accent));
            transform: translateX(-50%);
            border-radius: 10px;
        }

        .interactive-items {
            position: relative;
        }

        .interactive-item {
            display: flex;
            margin-bottom: 4rem;
            position: relative;
            opacity: 0;
            animation: fadeSlideIn 0.8s ease forwards;
        }

        .interactive-item:nth-child(1) { animation-delay: 0.1s; }
        .interactive-item:nth-child(2) { animation-delay: 0.2s; }
        .interactive-item:nth-child(3) { animation-delay: 0.3s; }
        .interactive-item:nth-child(4) { animation-delay: 0.4s; }
        .interactive-item:nth-child(5) { animation-delay: 0.5s; }
        .interactive-item:nth-child(6) { animation-delay: 0.6s; }

        .interactive-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .interactive-card {
            flex: 1;
            background: var(--secondary);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 0 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .interactive-card::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 2px;
            background: var(--heading-color);
            transform: translateY(-50%);
        }

        .interactive-item:nth-child(odd) .interactive-card::before {
            right: -40px;
        }

        .interactive-item:nth-child(even) .interactive-card::before {
            left: -40px;
        }

        .interactive-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
        }

        .interactive-card.expanded {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }

        .interactive-card h3 {
            font-family: 'Ragtime', sans-serif;
            font-size: 2.5rem;
            color: var(--heading-color);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .interactive-card h4 {
            font-size: 1.3rem;
            color: var(--text);
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .interactive-card p {
            font-size: 1rem;
            color: var(--text-dim);
            line-height: 1.7;
            opacity: 0.9;
        }

        .year-bubble {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: var(--heading-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Ragtime', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--surface);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 20;
        }

        .year-bubble:hover {
            transform: translateX(-50%) scale(1.15);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }

        .year-bubble.active {
            background: var(--primary);
            color: var(--heading-color);
            transform: translateX(-50%) scale(1.2);
        }

        /* Responsive Timeline Styles */
        @media (max-width: 768px) {
            .timeline-container {
                padding: 0 2rem;
            }

            .road-milestones {
                flex-direction: column;
                gap: 3rem;
                margin-top: 2rem;
                padding: 0;
                align-items: center;
            }

            .road-milestone {
                width: 100%;
                max-width: 100%;
            }

            .milestone-year-badge {
                font-size: 1.6rem;
                padding: 0.8rem 1.2rem;
            }

            .road-card {
                position: relative;
                left: 0;
                transform: none;
                width: 100%;
            }

            .road-path {
                height: 80px;
                margin-top: 2rem;
            }

            .truck-icon {
                font-size: 2.5rem;
            }

            .road-card-content {
                padding: 1.5rem;
            }

            .milestone-year-badge {
                font-size: 1.6rem;
                padding: 0.8rem 1.2rem;
            }

            .road-nav-btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                grid-template-columns: auto 1fr;
                gap: 0;
            }

            .timeline-dot {
                grid-column: 1;
            }

            .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                text-align: left !important;
                padding: 0 0 0 2rem !important;
                grid-column: 2 !important;
            }

            .timeline-content:empty {
                display: none;
            }

            .timeline-line {
                left: 12px;
            }

            .timeline-progress {
                left: 12px;
            }

            .timeline-card {
                min-width: 300px;
            }

            .interactive-item,
            .interactive-item:nth-child(even) {
                flex-direction: column !important;
            }

            .interactive-card {
                margin: 0;
            }

            .timeline-spine {
                left: 12px;
            }

            .year-bubble {
                left: 12px;
                width: 60px;
                height: 60px;
                font-size: 1rem;
            }
        }
