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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        

		/* inter-300 - latin */
		@font-face {
		  font-display: swap;
		  font-family: 'Inter';
		  font-style: normal;
		  font-weight: 300;
		  src: url('/assets/fonts/inter/inter-v19-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		       url('/assets/fonts/inter/inter-v19-latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		}
		
		/* inter-regular - latin */
		@font-face {
		  font-display: swap;
		  font-family: 'Inter';
		  font-style: normal;
		  font-weight: 400;
		  src: url('/assets/fonts/inter/inter-v19-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		       url('/assets/fonts/inter/inter-v19-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		}
		
		/* inter-500 - latin */
		@font-face {
		  font-display: swap;
		  font-family: 'Inter';
		  font-style: normal;
		  font-weight: 500;
		  src: url('/assets/fonts/inter/inter-v19-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		       url('/assets/fonts/inter/inter-v19-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		}
		
		/* inter-600 - latin */
		@font-face {
		  font-display: swap;
		  font-family: 'Inter';
		  font-style: normal;
		  font-weight: 600;
		  src: url('/assets/fonts/inter/inter-v19-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		       url('/assets/fonts/inter/inter-v19-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		}
		
		/* inter-700 - latin */
		@font-face {
		  font-display: swap;
		  font-family: 'Inter';
		  font-style: normal;
		  font-weight: 700;
		  src: url('/assets/fonts/inter/inter-v19-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		       url('/assets/fonts/inter/inter-v19-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		}



        .floating-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.7);
            backdrop-filter: blur(25px) saturate(1.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

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

        .language-switcher {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 25px;
            padding: 6px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lang-option {
            padding: 6px 12px;
            border-radius: 20px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            letter-spacing: 0.5px;
        }

        .lang-option.active {
            background: rgba(255, 71, 87, 0.9);
            color: white;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
        }

        .lang-option:not(.active):hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .logo img {
            height: 36px;
            margin-top:4px;
            transition: transform 0.5s ease;
            cursor:hand;
        }

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

        .contact-btn {
            background: linear-gradient(135deg, #ff4757, #ff3838);
            color: white;
            padding: 14px 24px 14px 28px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(255, 71, 87, 0.25);
        }

        .contact-btn::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.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-btn:hover::before {
            left: 100%;
        }

        .contact-btn:hover::after {
            transform: translateX(3px);
        }

        .contact-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4);
        }




        .hero-section {
            height: 75vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: cover;
            background-position: center;
            filter: grayscale(100%) contrast(1.1) brightness(1.5);
        }

        .slide.active {
            opacity: 1;
            animation: slideZoom 10s ease-in-out infinite;
        }

        @keyframes slideZoom {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(255,71,87,0.1));
        }



        .intro-section {
            background: white;
            padding: 100px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gradient-heading {
            font-size: 2.75rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            letter-spacing: -2px;
            line-height: 1.1;
						background: linear-gradient(180deg, #1a1a1a 0%, #777777 100%);
						 background-clip: border-box;
						-webkit-background-clip: text;
						-webkit-text-fill-color: transparent;
						background-clip: text;   
        }

        .gradient-heading::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ffffff 0%, #ff4757 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 2;
        }

        .gradient-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff4757, #ff3838);
            border-radius: 2px;
        }
        
				.gradient-heading span {
					vertical-align: top;
					font-size:2rem;
					-webkit-text-fill-color: initial;
					color: initial;
				}

        .intro-text {
            font-size: 1.2rem;
            line-height: 1.7;
            text-align: center;
            max-width: 1080px;
            margin: 0 auto 20px auto;
            color: #333;
        }
        
        .intro-text-left {
            font-size: 1.2rem;
            line-height: 1.7;
            text-align: left;
            max-width: 1080px;
            margin: 0 auto 20px auto;
            color: #333;
        }
        
        .intro-text-left a {
        		color:#333;
        }
        
        
        .brands-heading {
            font-size: 1.85rem;
            font-weight: 600;
            text-align: center;
            margin-top:60px;
            margin-bottom: 30px;
            position: relative;
            letter-spacing:0;
            line-height: 1.1;
						background: linear-gradient(180deg, #1a1a1a 0%, #777777 100%);
						 background-clip: border-box;
						-webkit-background-clip: text;
						-webkit-text-fill-color: transparent;
						background-clip: text;   
        }

        .brands-heading::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ffffff 0%, #ff4757 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 2;
        }
        
        .brands-text {
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: center;
            max-width: 1080px;
            margin: 0 auto 20px auto;
            color: #333;
        }
        
        
		.elrex-section {
		    background: rgba(0, 0, 0, 0.06);
		    border-radius: 24px;
		    margin-top:60px;
		    padding: 35px;
		    border: 1px solid rgba(0, 0, 0, 0.08);
		    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		    position: relative;
		    overflow: hidden;
		    cursor:default;
		}
		
		.elrex-section::before {
		    content: '';
		    position: absolute;
		    top: -2px;
		    left: -2px;
		    right: -2px;
		    bottom: -2px;
		    border-radius: 26px;
		    background: linear-gradient(45deg, 
		        transparent 0%, 
		        rgba(255, 71, 87, 0.3) 25%, 
		        rgba(255, 255, 255, 0.1) 50%, 
		        rgba(255, 71, 87, 0.3) 75%, 
		        transparent 100%);
		    z-index: -1;
		    opacity: 0;
		    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		}
		
		.elrex-section:hover::before {
		    opacity: 1;
		}
		
		.elrex-section:hover {
		    transform: translateY(-8px);
		    background: rgba(0, 0, 0, 0.19);
		    border-color: #ff4757;
		}
        
        .elrex-section h2 {
	        margin-bottom:15px;
            font-size: 1.85rem;
            font-weight: 600;
            line-height: 1.7;
            letter-spacing:0.1rem;
            text-align: center;
            max-width: 1080px;
						background: linear-gradient(180deg, #1a1a1a 0%, #777777 100%);
						 background-clip: border-box;
						-webkit-background-clip: text;
						-webkit-text-fill-color: transparent;
						background-clip: text; 
	       }
        
        .elrex-section p {
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: center;
            max-width: 1080px;
            margin: 0 auto;
            color: #333;
	       }



        .text-slider-container {
            position: relative;
            width: 100%;
            height: 80px;
            overflow: hidden;
            margin: 30px auto;
            display: flex;
            align-items: center;
        }

        .text-slider-container::before,
        .text-slider-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 10;
            pointer-events: none;
        }

        .text-slider-container::before {
            left: 0;
            background: linear-gradient(to right, white 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
        }

        .text-slider-container::after {
            right: 0;
            background: linear-gradient(to left, white 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
        }

        .text-slider {
            display: flex;
            white-space: nowrap;
            animation: slide-infinite 60s linear infinite;
            will-change: transform;
        }

        .text-slider-item {
            color: #ff4757;
            font-weight: 600;
            font-size: 1.5rem;
            padding: 0 2rem;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            transition: transform 0.75s ease;
            cursor:default;
        }
        
        .text-slider-item:hover {
	       	transform:scale(1.4);	       
	       }

        .text-slider-separator {
            color: #ff4757;
            font-weight: 400;
            font-size: 1.2rem;
            margin: 0 1rem;
            opacity: 0.6;
        }

        @keyframes slide-infinite {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }        



        .services-section {
            background: #1a1a1a;
            padding: 100px 0;
        }

        .services-heading {
            font-size: 4rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            letter-spacing: -2px;
            line-height: 1.1;
						background: linear-gradient(180deg, #fff 0%, #2e2e2e 100%);
						 background-clip: border-box;
						-webkit-background-clip: text;
						-webkit-text-fill-color: transparent;
						background-clip: text;
        }

        .services-heading::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ff4757 0%, #0f0f0f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 2;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(4, 114px);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .bento-box {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 24px;
            padding: 35px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor:default;
        }

        .bento-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 26px;
            background: linear-gradient(45deg, 
                transparent 0%, 
                rgba(255, 71, 87, 0.3) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 71, 87, 0.3) 75%, 
                transparent 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .bento-box:hover::before {
            opacity: 1;
        }

        .bento-box:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.06);
            border-color:#ff4757
        }

        .bento-box.large {
            grid-column: span 8;
            grid-row: span 2;
        }

        .bento-box.medium {
            grid-column: span 4;
            grid-row: span 2;
        }

        .bento-box.small {
            grid-column: span 6;
            grid-row: span 2;
        }

        .bento-box h3 {
            color: white;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .bento-box p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 400;
        }



        .contact-section {
            background: white;
            padding: 100px 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: flex-start;
            margin-bottom: 80px;
        }

        .ceo-image {
            width: 100%;
            max-width: 400px;
            height: 500px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .ceo-subline {
	        margin:10px 0 0 16px;
	        font-weight:600;
        }
        
        .ceo-subline span {
	        color:#666;
	        font-weight:normal;
        }

        .contact-info {
            font-size: 1.3rem;
            line-height: 1.8;
        }
        
        .contact-info img {
	        max-width:240px;
	        height:auto;
	        display:block;
	        margin-top:10px;
	        margin-bottom:15px
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .contact-info .contact-address a {
	        color:inherit;
	        text-decoration:none;
        }
        
        .contact-info .contact-email a,
        .contact-info .contact-phone a {
	        color:#FF4048;
	        text-decoration:underline solid inherit!important;
	        text-decoration-thickness:0.15rem;;
	        text-underline-offset:8px;
	        transition: text-underline-thickness 0.3s ease;
        }
        
        .contact-info .contact-email a:hover,
        .contact-info .contact-phone a:hover {
	        color:#333;
        }
        
        .contact-info svg {
	        width:30px;
	        height:30px;
	        margin-right:14px;
	        vertical-align:middle
        }
        
        .contact-email {
	        margin-bottom:8px;
        }

        .contact-form {
            max-width: 1200px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 25px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e53e3e;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-actions {
	        text-align:center;
        }

        .submit-btn {
            background: linear-gradient(135deg, #ff4757, #ff3838);
            color: white;
            margin-top:20px;
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            max-width:600px;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
        }

        .submit-btn::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.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 71, 87, 0.4);
        }
        
        .success-message {
	        margin-top:20px;
	        font-weight:bold;
        }

        .privacy-link {
            text-align: center;
            margin-top: 20px;
        }

        .privacy-link a {
            color: #e53e3e;
            text-decoration: none;
        }

        .privacy-link a:hover {
            text-decoration: underline;
        }



        .footer {
            background: #1a1a1a;
            padding: 60px 0 30px;
            color: white;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .footer-logo img {
            height: 90px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            text-align: right;
            align-items: flex-end;
            gap: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 1);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #e53e3e;
        }

        .footer-contact {
            font-size: 1rem;
            line-height: 1.8;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
	        	text-decoration:none;
	       }
	       
        .footer-bottom a:hover {
            color: rgba(255, 255, 255, 1);
	       }



        @media (max-width: 768px) {
            .floating-header {
                padding: 15px 0;
            }
            
		        .hero-section {
		            height: 45vh;
		            position: relative;
		            overflow: hidden;
		            background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
		        }

            .nav-container {
                align-items: flex-start;
            }

            .nav-right {
                flex-direction: column;
                gap: 12px;
                align-items: flex-end;
            }

            .contact-btn {
                padding: 8px 16px;
                font-size: 0.85rem;
                height: 37px;
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: 120px;
            }

            .language-switcher {
                height: 37px;
                padding: 4px;
            }

            .lang-option {
                padding: 6px 10px;
                font-size: 0.8rem;
            }

            .logo img {
                height: 30px;
            }

            .gradient-heading,
            .services-heading {
                font-size: 2.5rem;
            }

            .bento-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .bento-box.large,
            .bento-box.medium,
            .bento-box.small {
                grid-column: span 1;
                grid-row: span 1;
            }
            
		        .ceo-subline {
			        margin:10px 0 0 0;
		        }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            
		        .footer-links {
			        	width:100%;
		            flex-direction:row;
		            text-align:center;
		            align-items: center;
		            justify-content: center;
		            gap: 15px; 
		        } 
		        
		        
						/* Speziell für Bento-Box-Headlines auf Mobile */
			    .bento-box h3 {
			        font-size: 1.3rem !important;
			        line-height: 1.3;
			        margin-bottom: 12px;
			        hyphens: auto;
			    }
			
			    .bento-box {
			        grid-row: span auto !important;
			        min-height: 120px;
			        padding: 25px 20px !important;
			    }
			
			    /* Für sehr kleine Screens (z. B. unter 480px) noch mehr Flexibilität */
			    @media (max-width: 480px) {
			        .bento-box h3 {
			            font-size: 1.1rem !important;
			        }
			        .bento-box {
			            padding: 20px 15px !important;
			        }
			    }
			    
			    
					.gradient-heading,
			    .services-heading,
			    .brands-heading,
			    .elrex-section h2,
			    .contact-info h3 {
			        font-size: 1.65rem !important;
			        line-height:1.2;
			        overflow-wrap:break-word;
			        lang:de;
			        letter-spacing: -0.5px !important;
			        hyphens: manual;
			    }
		        
            
        }
