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

        :root {
            --gruen:       #0AB606;
            --gruen-dk:    #088D05;
            --gruen-xdk:   #065C03;
            --orange:      #D45018;
            --gold:        #FFD220;
            --beige:       #FFF1BB;
            --schwarz:     #1A171B;
            --grau-mid:    #4A4A4A;
            --grau-hell:   #F2F2F2;
            --weiss:       #FFFFFF;

            /* ══════════════════════════════════════
               REIFENSPUR-FARBE – hier zentral ändern
               z.B. Grau:  #7A7A7A
                    Gruen: #0AB606
                    Orange: #D45018
               ══════════════════════════════════════ */
            --spur-farbe:  #7A7A7A;
            --spur-linie:  #999999;
        }

        html {
            font-size: 15px; /* Etwas kleiner für kompaktere Darstellung */
            scroll-behavior: smooth;
			scroll-padding-top: 120px;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--schwarz);
            line-height: 1.6;
            background: var(--weiss);
        }

        /* ───────────────────────────────────────
           TOP BAR
        ─────────────────────────────────────── */
        .top-bar {
            background: var(--schwarz);
            color: var(--grau-hell);
            font-size: 0.85rem;
            padding: 0.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar a {
            color: var(--gruen);
            text-decoration: none;
        }

        .top-bar-right {
            display: flex;
            gap: 2rem;
        }

        /* ───────────────────────────────────────
           HEADER – Logo + Name als Hauptbühne
        ─────────────────────────────────────── */
        .site-header {
            background: var(--weiss);
            box-shadow: 0 3px 15px rgba(10, 182, 6, 0.15);
            padding: 0 2rem;
            position: sticky;
            top: 0;
            z-index: 4000;
        }

        .header-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            padding: 1.5rem 0;
        }

        /* Logo-Block */
        .brand {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            text-decoration: none;
        }

        .brand-logo {
            height: 72px;
            width: auto;
        }

        .brand-text {}

        .brand-name {
            display: block;
            font-size: 1.85rem;
            font-weight: 900;
            color: var(--schwarz);
            letter-spacing: -0.5px;
            line-height: 1.1;
        }

        .brand-name span {
            color: var(--gruen);
        }

        .brand-claim {
            display: block;
            font-size: 0.85rem;
            color: var(--grau-mid);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-top: 0.25rem;
        }

        /* Navigation */
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 0.2rem;
        }

        .main-nav a {
            display: block;
            padding: 0.6rem 1.1rem;
            border-radius: 5px;
            text-decoration: none;
            color: var(--schwarz);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.25s;
        }

        .main-nav a:hover {
            background: var(--gruen);
            color: var(--weiss);
        }

        .nav-cta a {
            background: var(--orange);
            color: var(--weiss) !important;
            padding: 0.7rem 1.4rem !important;
            box-shadow: 0 4px 12px rgba(212,80,24,0.35);
        }

        .nav-cta a:hover {
            background: #B5400F !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(212,80,24,0.45);
        }

        /* ───────────────────────────────────────
           HERO – Volle Breite, dramatisch
        ─────────────────────────────────────── */
        .hero {
            position: relative;
            min-height: 88vh;
            background: linear-gradient(125deg, #1e3a1e 0%, #2a1a10 55%, #1A171B 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Großes dekoratives R im Hintergrund – sichtbarer */
        .hero-bg-letter {
            position: absolute;
            right: -60px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 60vw;
            font-weight: 900;
            color: var(--gruen);
            opacity: 0.10;
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        /* Grüner Lichtschimmer oben links */
        .hero-glow {
            position: absolute;
            left: -100px;
            top: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(10,182,6,0.18) 0%, transparent 65%);
            pointer-events: none;
        }

        /* Grüner Seitenstreifen */
        .hero::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 8px;
            background: linear-gradient(to bottom, var(--gruen), var(--gruen-dk));
        }

        /* Diagonaler oranger Akzent */
        .hero::after {
            content: '';
            position: absolute;
            bottom: -2px; right: 0;
            width: 45%;
            height: 6px;
            background: var(--orange);
        }

        .hero-content {
            max-width: 1300px;
            margin: 0 auto;
            padding: 4rem 2rem 4rem 5rem;
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--gruen);
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero-eyebrow::before {
            content: '';
            width: 32px;
            height: 3px;
            background: var(--gruen);
            border-radius: 2px;
            flex-shrink: 0;
        }

        /* Firmenname GROSS */
        .hero-brand {
            font-size: clamp(2.8rem, 6vw, 5.5rem);
            font-weight: 900;
            color: var(--weiss);
            line-height: 1.05;
            margin-bottom: 0.4rem;
        }

        .hero-brand .green {
            color: var(--gruen);
        }

        .hero-sub {
            font-size: clamp(1.5rem, 3vw, 2.8rem);
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 2rem;
            letter-spacing: 0.03em;
        }

        .hero-desc {
            max-width: 620px;
            font-size: 1.15rem;
            color: rgba(255,255,255,0.82);
            line-height: 1.85;
            margin-bottom: 3rem;
        }

        .hero-actions {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.05rem 2.4rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            letter-spacing: 0.02em;
        }

        .btn-gruen {
            background: var(--gruen);
            color: var(--weiss);
            box-shadow: 0 5px 20px rgba(10,182,6,0.45);
        }

        .btn-gruen:hover {
            background: var(--gruen-dk);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(10,182,6,0.55);
        }

        .btn-outline {
            background: transparent;
            color: var(--weiss);
            border: 2.5px solid rgba(255,255,255,0.5);
        }

        .btn-outline:hover {
            border-color: var(--weiss);
            background: rgba(255,255,255,0.08);
        }

        /* Hero-Kennzahlen unten */
        .hero-stats {
            display: flex;
            gap: 3.5rem;
            margin-top: 4rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .hero-stat-number {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--gruen);
            display: block;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.4rem;
        }

        /* ───────────────────────────────────────
           SERVICES – Breite dunkle Karte oben,
           dann 3-spaltig
        ─────────────────────────────────────── */
        .services {
            background: var(--grau-hell);
            padding: 6rem 2rem;
        }

        .section-header {
            max-width: 1300px;
            margin: 0 auto 3.5rem;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 2rem;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--gruen);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 3px;
            background: var(--gruen);
            border-radius: 2px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--schwarz);
            line-height: 1.1;
        }

        .section-title span {
            color: var(--gruen);
        }

        .section-link {
            color: var(--gruen);
            font-weight: 700;
            text-decoration: none;
            font-size: 0.95rem;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gruen);
        }

        .service-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .service-card {
            background: var(--weiss);
            border-radius: 12px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.35s;
            border: 1px solid transparent;
        }

        .service-card::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 5px;
            background: var(--gruen);
            border-radius: 12px 0 0 12px;
            transition: width 0.3s;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(10,182,6,0.15);
            border-color: rgba(10,182,6,0.15);
        }

        .service-card:hover::before {
            width: 8px;
        }

        /* featured card */
        .service-card.featured {
            background: var(--schwarz);
            color: var(--weiss);
        }

        .service-card.featured::before {
            background: var(--orange);
        }

        .service-card.featured .service-title {
            color: var(--weiss);
        }

        .service-card.featured .service-desc {
            color: rgba(255,255,255,0.65);
        }

        .service-icon-wrap {
            width: 58px;
            height: 58px;
            background: linear-gradient(135deg, var(--gruen), #06A003);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 6px 18px rgba(10,182,6,0.3);
        }

        .service-card.featured .service-icon-wrap {
            background: linear-gradient(135deg, var(--orange), #B8400F);
            box-shadow: 0 6px 18px rgba(212,80,24,0.4);
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--schwarz);
            margin-bottom: 0.75rem;
        }

        .service-desc {
            color: var(--grau-mid);
            font-size: 0.97rem;
            line-height: 1.75;
        }

        /* ───────────────────────────────────────
           ABOUT – Bild links, Text rechts
        ─────────────────────────────────────── */
        .about {
            padding: 6rem 2rem;
            background: var(--weiss);
        }

        .about-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-img-box {
            background: linear-gradient(135deg, var(--gruen-xdk), var(--gruen));
            border-radius: 16px;
            height: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            box-shadow: 0 20px 60px rgba(10,182,6,0.25);
        }

        /* Oranger Akzent-Block */
        .about-accent-box {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
            background: var(--orange);
            color: var(--weiss);
            padding: 2rem 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(212,80,24,0.4);
            text-align: center;
        }

        .accent-big {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
            display: block;
        }

        .accent-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.85;
            margin-top: 0.4rem;
        }

        .about-content {}

        .about-content h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--schwarz);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .about-content h2 span { color: var(--gruen); }

        .about-content p {
            color: var(--grau-mid);
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.2rem;
        }

        .check-list {
            list-style: none;
            margin: 1.5rem 0 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 600;
            color: var(--schwarz);
        }

        .check-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--gruen);
            color: white;
            border-radius: 50%;
            font-size: 0.75rem;
            font-weight: 900;
            flex-shrink: 0;
        }

        /* ───────────────────────────────────────
           CONTACT – dunkel, volle Wirkung
        ─────────────────────────────────────── */
        .contact {
            background: var(--schwarz);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--gruen), var(--orange));
        }

        .contact-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 6rem;
            align-items: start;
        }

        .contact-left h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--weiss);
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .contact-left h2 span { color: var(--gruen); }

        .contact-left p {
            color: rgba(255,255,255,0.6);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
        }

        .contact-dot {
            width: 50px;
            height: 50px;
            background: rgba(10,182,6,0.15);
            border: 2px solid var(--gruen);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-item-label {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--gruen);
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .contact-item-value {
            color: var(--weiss);
            font-size: 1rem;
            line-height: 1.5;
        }

        .contact-form {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
        }

        .contact-form h3 {
            color: var(--weiss);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem;
        }

        .form-group label {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.6);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            background: rgba(255,255,255,0.07);
            border: 1.5px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            padding: 0.9rem 1rem;
            font-size: 1rem;
            color: var(--weiss);
            transition: all 0.3s;
            font-family: inherit;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.3);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gruen);
            background: rgba(10,182,6,0.08);
            box-shadow: 0 0 0 3px rgba(10,182,6,0.12);
        }

        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            padding: 1.1rem;
            font-size: 1.05rem;
            font-weight: 800;
            background: var(--gruen);
            color: var(--weiss);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            box-shadow: 0 5px 20px rgba(10,182,6,0.45);
        }

        .btn-submit:hover {
            background: var(--gruen-dk);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(10,182,6,0.55);
        }

        /* ───────────────────────────────────────
           FOOTER
        ─────────────────────────────────────── */
        footer {
            background: #0D0B0E;
            padding: 3rem 2rem;
        }

        .footer-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo {
            height: 42px;
            opacity: 0.85;
        }

        .footer-brand-name {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--weiss);
        }

        .footer-brand-name span { color: var(--gruen); }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-links a:hover { color: var(--gruen); }

        .footer-copy {
            color: rgba(255,255,255,0.3);
            font-size: 0.85rem;
        }
        
        
        
        
        
        
        
        
        /* ═══════════════════════════════════════════
           REIFENSPUR-ELEMENTE
           Realistisches Agrar-Chevron-Muster
        ═══════════════════════════════════════════ */

        .tire-divider {
            display: block;
            width: 100%;
            height: 120px;
            overflow: hidden;
            line-height: 0;
            flex-shrink: 0;
        }
        .tire-divider svg {
            display: block;
            width: 100%;
            height: 120px;
        }

        .hero-track-vert {
            position: absolute;
            right: 80px;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 1;
            pointer-events: none;
            opacity: 0.35;
        }
        .hero-track-vert svg {
            display: block;
            width: 120px;
            height: 100%;
        }

        @media (max-width: 1100px) {
            .hero-track-vert { display: none; }
        }
        
        
        
        

 
        /* ───────────────────────────────────────
           RESPONSIVE
        ─────────────────────────────────────── */
        @media (max-width: 1024px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .brand-name {
                font-size: 1.4rem;
            }
            
			.brand-claim {
				font-size: 0.60rem;
			}
		
        }





  

        /* ═══════════════════════════════════════════
           MOBILE NAVIGATION FIX
        ═══════════════════════════════════════════ */
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--schwarz);
            cursor: pointer;
            padding: 0.5rem;
            line-height: 1;
            z-index: 3000; /* Höher als Overlay! */
            position: relative;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.35); /* Noch heller für optimale Sichtbarkeit */
            z-index: 2000;
            display: none;
            pointer-events: none; /* WICHTIG: Overlay ist durchklickbar! */
        }

        .mobile-overlay.active {
            display: block;
            /* KEIN pointer-events: auto! Overlay bleibt durchklickbar! */
        }

        @media (max-width: 900px) {
          .brand-text {
                display: none;
            }
			
		   .mobile-menu-toggle {
				display: none;
                order: 2;
            }
          
        }
        
        @media (max-width: 850px) {
          .nav-cta {
                display: none;
            }
		   .mobile-menu-toggle {
				display: none;
                order: 2;
            }          
        }


        @media (max-width: 800px) {
            /* Header Layout: Logo links, Hamburger rechts */
            
            .container {
                padding: 0 1rem; /* Weniger Padding */
            }

            .site-header {
                padding: 0 1rem; /* Weniger Padding */
            }


            .header-inner {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 0;

                flex-wrap: nowrap; /* Verhindert Umbruch */
                gap: 0.5rem; /* Kleiner Abstand */}

            .brand {
                flex: 0 1 auto;
            }

            
            .mobile-menu-toggle {
                display: block;
                /* position: fixed !important; /* Fixiert rechts! */
                /*top: 1rem; /* Oben */
                right: 1rem; /* Rechts mit Abstand */
                background: none;
                border: none;
                font-size: 2rem;
                color: var(--schwarz);
                cursor: pointer;
                padding: 0.5rem;
                line-height: 1;
                z-index: 3000;
            }


            .brand-logo {
                height: 50px;
            }



            /* Navigation als Slide-in, main-nav Schatten der Slide-in Box */
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #FFFFFF !important;
                box-shadow: -3px 0 15px rgba(0,0,0,0.3);
                z-index: 2500;
                transition: right 0.3s ease;
                overflow-y: auto;
                padding: 6rem 0 2rem 0; /* Oben 4rem, unten 2rem */
            
            pointer-events: auto; /* Klicks funktionieren! */}

            .main-nav.active {
                right: 0;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 0;
                padding: 0;
            }

            .main-nav li {
                border-bottom: 1px solid #f0f0f0;
            }

            .main-nav a {
                display: block;
                padding: 1.2rem 2rem;
                font-size: 1.1rem;
                border-radius: 0;
                width: 100%;
                position: relative;
                z-index: 2000;
                background: white;
            }

            .main-nav a:hover {
                background: var(--grau-hell);
                color: var(--schwarz);
            }

            .nav-cta {
                display: block;
                margin: 1rem 2rem 0;
            }

            .nav-cta a {
                display: block;
                text-align: center;
                border-radius: 8px !important;
                background: var(--orange) !important;
                color: white !important;
            }

            .nav-cta a:hover {
                background: #B5400F !important;
            }

            /* Hero */
            .hero {
                padding: 3rem 1.5rem;
                min-height: auto;
            }

            .hero-track-vert {
                display: none;
            }

            .hero-content {
                max-width: 100%;
                padding: 2rem 0;
            }

            .hero-brand {
                font-size: 2.5rem;
            }

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

            /* Services */
            .service-grid {
                grid-template-columns: 1fr;
            }

            /* About */
            .about-inner {
                flex-direction: column;
            }

            /* Contact */
            .contact-inner {
                flex-direction: column;
            }

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

            .contact-form {
                padding: 2rem;
            }

            .form-row {
                flex-direction: column;
            }

            /* Footer */
            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        

        
        @media (max-width: 768px) {
            .top-bar { display: none; }

            .header-inner {
                /*flex-direction: column;    Linksbndig wird damit aufgelst */
                text-align: center;
                gap: 1.5rem;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 0.4rem;     
            }

            .hero-content {
                padding: 3rem 1.5rem;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .service-grid,
            .about-inner,
            .contact-inner {
                grid-template-columns: 1fr;
            }

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

            .about-accent-box {
                position: static;
                margin-top: 1.5rem;
                display: inline-block;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }
        
        


        @media (max-width: 600px) {
            html {
                font-size: 14px; /* Mobile noch kleiner */
            }

            .site-header {
                padding: 0 0.75rem; /* Sehr kompakt */
            }



            .brand {
                gap: 0.8rem;
            }

            .brand-logo {
                height: 40px;
            }


            
            
            .mobile-menu-toggle {
                position: fixed; /* WICHTIG! */
                top: 0.75rem;
                right: 0.75rem;
                font-size: 1.6rem;
                padding: 0.3rem;
            }



            .hero {
                padding: 2rem 1rem;
            }

            .hero-brand {
                font-size: 2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

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

            .contact-form {
                padding: 1.5rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 16px;
            }

            .footer-main {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-legal-links {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Sehr schmale Displays */
        @media (max-width: 400px) {
            .brand-logo {
                height: 28px; /* Noch kleineres Logo */
            }
            
            .brand {
                gap: 0.5rem;
            }
            
            
            .mobile-menu-toggle {
                position: fixed; /* WICHTIG! */
                top: 0.5rem;
                right: 0.5rem;
                font-size: 1.4rem;
                padding: 0.3rem 0.5rem;
            }

            
            .header-inner {
                padding: 0.5rem 0;
            }

            .site-header {
                padding: 0 0.5rem; /* Minimal padding */
            }

        }

