.preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .preloader-logo {
            width: 200px;
            height: auto;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }
        
        .preloader-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(34, 115, 186, 0.2);
            border-top: 3px solid #2273BA;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1.5rem;
        }
        
        .preloader-text {
            color: #F8F8FA;
            font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
            font-size: 1.2rem;
            font-weight: 500;
            opacity: 0;
            animation: fadeInUp 1s ease 1s forwards;
        }
        
        .preloader-progress {
            width: 300px;
            height: 4px;
            background: rgba(34, 115, 186, 0.2);
            border-radius: 2px;
            margin-top: 1rem;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 1s ease 1.5s forwards;
        }
        
        .preloader-progress-bar {
            height: 100%;
            background: var(--amg-gradient);
            width: 0%;
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* AMG Style Guidelines (brand.amg-nv.com) – Primary Colors & Typography */
        :root {
            --amg-blue: #4B7CAC;
            --amg-dark-blue: #11385F;
            --amg-black: #221F1F;
            --amg-dark-grey: #6F6F6F;
            --amg-medium-grey: #D3D4D9;
            --amg-light-blue-grey: #E6EAF3;
            --amg-white: #FFFFFF;
            --amg-gradient: linear-gradient(90deg, #11385F 0%, #4B7CAC 100%);
            --figtree: 'FuturaMDBT', 'Futura Md BT', 'Futura Md', 'Futura', 'Trebuchet MS', Arial, sans-serif;
        }
        @font-face {
            font-family: 'FuturaMDBT';
            src: url('/images/futuramdbt_bold.otf') format('opentype');
            font-style: normal;
            font-weight: 700;
            font-display: swap;
        }
        @font-face {
            font-family: 'FuturaMDBT';
            src: url('/images/futuramdbt_bold.otf') format('opentype');
            font-style: normal;
            font-weight: 400;
            font-display: swap;
        }
        
        body {
            font-family: var(--figtree);
            font-size: 17px;
            line-height: 26px;
            color: #ffffff;
            overflow-x: hidden;
        }
        button, input, textarea, select {
            font-family: var(--figtree);
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
            background: rgba(248, 248, 250, 0.9);
            border-bottom: 1px solid rgba(211, 212, 217, 0.3);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            background: rgba(248, 248, 250, 0.95);
            box-shadow: 0 8px 32px rgba(34, 31, 31, 0.1);
        }
        
        .nav-container {
            width: 100%;
            margin: 0;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--amg-blue);
            text-decoration: none;
            font-family: var(--figtree);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-link {
            color: var(--amg-black);
            text-decoration: none;
            font-weight: 500;
            font-family: var(--figtree);
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--amg-blue);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--amg-blue);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #000;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            object-position: center top;
            z-index: 1;
            will-change: transform;
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            image-rendering: auto;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .hero-contact-btn {
            position: absolute;
            right: 5%;
            bottom: 10%;
            z-index: 10;
            overflow: hidden;
            padding: 1.22rem 3.49rem;
            font-family: var(--figtree);
            font-size: 29px;
            font-weight: 600;
            letter-spacing: 0.25px;
            color: #f6fbff;
            text-decoration: none;
            text-align: center;
            background:
                radial-gradient(120% 160% at 15% 0%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 48%),
                linear-gradient(145deg, rgba(77, 129, 176, 0.34), rgba(18, 43, 73, 0.4));
            border: 1px solid rgba(255, 255, 255, 0.34);
            border-radius: 100px;
            cursor: pointer;
            backdrop-filter: blur(22px) saturate(185%) contrast(108%);
            -webkit-backdrop-filter: blur(22px) saturate(185%) contrast(108%);
            box-shadow:
                0 10px 26px rgba(9, 24, 42, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.55),
                inset 0 -1px 0 rgba(255, 255, 255, 0.14);
            transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }
        .hero-contact-btn::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.18));
            pointer-events: none;
            opacity: 0.72;
        }
        .hero-contact-btn::after {
            content: '';
            position: absolute;
            width: 52%;
            height: 210%;
            top: -65%;
            left: -38%;
            border-radius: 50%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
            transform: rotate(20deg);
            pointer-events: none;
            opacity: 0.75;
        }
        .hero-contact-btn:hover {
            background:
                radial-gradient(120% 160% at 12% 0%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 48%),
                linear-gradient(145deg, rgba(95, 151, 201, 0.38), rgba(22, 57, 95, 0.44));
            transform: translateY(-1px) scale(1.03);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow:
                0 14px 32px rgba(9, 24, 42, 0.42),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(255, 255, 255, 0.16);
        }
        @media (max-width: 768px) {
            .hero-contact-btn {
                left: 5%;
                bottom: 8%;
                font-size: 18px;
                padding: 0.7rem 1.8rem;
            }
        }
        
        .hero-content {
            position: absolute;
            bottom: 50px;
            left: 50px;
            z-index: 3;
            text-align: left;
            color: white;
            max-width: 600px;
            padding: 0;
            transform: translateX(100%);
            opacity: 0;
            animation: slideInFromRight 1s ease-out 3s forwards;
        }
        
        @keyframes slideInFromRight {
            0% {
                transform: translateX(100%);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 300;
            letter-spacing: -2px;
            line-height: 0.9;
            margin-bottom: 1rem;
            color: var(--amg-blue);
            font-family: var(--figtree);
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.9;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            margin-bottom: 2rem;
            color: var(--amg-light-blue-grey);
            font-family: var(--figtree);
        }
        
        /* Hero Logo (oben links, nach Preload eingeblendet) */
        .hero-logo {
            position: absolute;
            top: 2rem;
            left: 2rem;
            z-index: 4;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            pointer-events: none;
        }
        .hero-logo.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .hero-logo img {
            height: 48px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
        }
        @media (max-width: 768px) {
            .hero-logo {
                top: 1.25rem;
                left: 1.25rem;
            }
            .hero-logo img {
                height: 36px;
                max-width: 140px;
            }
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 24px;
            background: var(--amg-blue);
            color: var(--amg-white);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            font-family: var(--figtree);
            border: none;
            transition: all 0.3s ease;
            font-size: 17px;
            line-height: 26px;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background: var(--amg-dark-blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(34, 115, 186, 0.3);
        }
        
        .cta-button.secondary {
            background: var(--amg-white);
            color: var(--amg-blue);
            border: 1px solid var(--amg-blue);
        }
        
        .cta-button.secondary:hover {
            background: var(--amg-light-blue-grey);
            color: var(--amg-dark-blue);
            border-color: var(--amg-dark-blue);
        }
        
        /* Scroll-Reveal (Lando-Norris-Stil): Farbiger Block pro Zeile, gestaffelt – rechter Rand wirkt treppenartig */
        .scroll-reveal-section {
            --reveal: 0;
        }
        .scroll-reveal-section .scroll-reveal-cover {
            position: relative;
        }
        .scroll-reveal-section .scroll-reveal-cover .reveal-text {
            position: relative;
            z-index: 1;
        }
        .scroll-reveal-section .scroll-reveal-cover .reveal-cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--amg-blue);
            transform-origin: right center;
            transform: scaleX(calc(1 - var(--reveal, 0)));
            z-index: 2;
            pointer-events: none;
        }
        
        /* Sektion nach Hero (NewMOX fuel Text) – statisch weiß, ohne Transition */
        .hero-intro-section {
            background: #ffffff;
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 470px;
            min-height: 470px;
        }
        .hero-intro-section .scroll-reveal-inner {
            max-width: 900px;
            margin-left: 0;
            margin-right: auto;
            width: 100%;
            text-align: left;
        }
        .hero-intro-section .reveal-line {
            display: block;
            font-family: var(--figtree);
            font-size: clamp(3rem, 8vw, 4.75rem); /* doppelt so groß wie zuvor */
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        .hero-intro-section .reveal-line--blue {
            color: var(--amg-blue);
            font-size: 5.3331rem;
        }
        .hero-intro-section .reveal-line--gray {
            color: #9E9E9E;
            font-size: 5.3331rem;
        }
        .reveal-line--nowrap {
            white-space: nowrap;
        }
        
        /* Weiße Headline-Sektion – kann per JS von Weiß zu Schwarz gemischt werden (Nuclear Competence Logik bleibt im Code) */
        .white-headline-section {
            --section-bg-mix: 0;
            background: color-mix(in srgb, var(--amg-white) calc((1 - var(--section-bg-mix, 0)) * 100%), #000000);
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 16rem;
            transition: background 0.4s ease;
            
        }
        .white-headline-section.headline-section-nuclear {
            height: 20.375rem;
            background: #ffffff;
            transition: none;
            justify-content: center;
        }
        .white-headline-section.headline-section-nuclear .headline-inner {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            max-width: 1400px;
        }
        .nuclear-fade-img {
            width: min(90vw, 1100px);
            height: auto;
            display: block;
            margin: 0 auto;
            object-fit: contain;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }
        .nuclear-fade-img.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .white-headline-section.headline-section-wahrnehmung {
            height: 20rem;
            background: #ffffff;
            transition: none;
            justify-content: center;
        }
        .white-headline-section.headline-section-wahrnehmung .headline-inner {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            max-width: 980px;
        }
        .white-headline-section.headline-section-wahrnehmung .reveal-text {
            line-height: 1.05;
        }
        .white-headline-section.headline-section-wahrnehmung .headline-line {
            font-size: clamp(4.0494rem, 9.6663vw, 7.1844rem);
            letter-spacing: -0.015em;
            display: inline;
            font-family: 'FuturaMDBT', 'Futura Md BT', 'Futura Md', 'Futura', 'Trebuchet MS', Arial, sans-serif !important;
            font-weight: 500 !important;
        }
        .white-headline-section.headline-section-nuclear .split-char,
        .white-headline-section.headline-section-wahrnehmung .split-char {
            font-family: 'FuturaMDBT', 'Futura Md BT', 'Futura Md', 'Futura', 'Trebuchet MS', Arial, sans-serif !important;
            font-weight: inherit !important;
        }
        .white-headline-section.headline-section-wahrnehmung .headline-line--blue:first-child {
            display: block;
            margin-bottom: 0.2rem;
            transform: translateX(-25%);
        }
        .white-headline-section.headline-section-wahrnehmung .headline-line--blue,
        .white-headline-section.headline-section-wahrnehmung .headline-line--blue .split-char {
            color: var(--amg-blue);
            -webkit-text-stroke: 0.19rem #ffffff;
            paint-order: stroke fill;
        }
        .white-headline-section.headline-section-wahrnehmung .headline-line--blue-strong,
        .white-headline-section.headline-section-wahrnehmung .headline-line--blue-strong .split-char {
            color: var(--amg-blue);
            font-weight: 800;
            -webkit-text-stroke: 0.19rem #ffffff;
            paint-order: stroke fill;
        }
        .white-headline-section.headline-section-wahrnehmung .headline-line--white,
        .white-headline-section.headline-section-wahrnehmung .headline-line--white .split-char {
            color: #E6EAF3;
            -webkit-text-stroke: 0.19rem var(--amg-blue);
            paint-order: stroke fill;
        }
        .white-headline-section .headline-inner {
            max-width: 900px;
            margin-left: 0;
            margin-right: auto;
            width: 100%;
            text-align: left;
        }
        .white-headline-section .headline-line {
            font-family: var(--figtree);
            font-size: 5.3331rem;
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        .white-headline-section .headline-line--blue {
            color: var(--amg-blue);
        }
        .white-headline-section .headline-line--gray {
            color: #9E9E9E;
        }
        /* Interactive Factory + EGD: ein Block, eine sticky Headline (kein Float-Klon/JS-Lerp) */
        .interactive-egd-combo {
            position: relative;
            width: 100%;
        }
        .interactive-egd-body {
            display: flex;
            flex-direction: column;
        }
        .inter-egd-spacer-top,
        .inter-egd-spacer-bottom {
            flex: 1 1 0;
            min-height: clamp(3.5rem, 10vw, 7rem);
            background: var(--amg-white);
        }
        .interactive-egd-headline {
            position: sticky;
            top: 1.5rem;
            z-index: 70;
            flex: 0 0 auto;
            width: 100%;
            display: flex;
            justify-content: flex-start;
            padding: clamp(2rem, 6vw, 4rem) 2rem;
            box-sizing: border-box;
            pointer-events: none;
            background: transparent;
        }
        .interactive-egd-headline .headline-inner {
            max-width: 900px;
            width: 100%;
            margin: 0;
            margin-right: auto;
            text-align: left;
        }
        .interactive-egd-headline .headline-line {
            font-family: var(--figtree);
            font-size: 5.3331rem;
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -0.02em;
            -webkit-text-stroke: 4px #ffffff;
            paint-order: stroke fill;
        }
        .interactive-egd-headline .split-char {
            -webkit-text-stroke: 4px #ffffff;
            paint-order: stroke fill;
        }
        .interactive-egd-headline.headline-single-line .headline-line {
            display: inline;
        }
        /* Platzhalter, damit beim Pinnen (fixed) kein Layout-Sprung entsteht */
        .interactive-egd-headline-spacer {
            flex-shrink: 0;
            width: 100%;
            height: 0;
            pointer-events: none;
        }

        .headline-line--blue {
            color: var(--amg-blue);
        }
        .headline-line--gray {
            color: #9E9E9E;
        }

        .time-for-a-change-title {
            font-weight: 600;
            font-family: var(--figtree);
            font-size: 10rem;
            letter-spacing: -0.02em;
            text-align: left;
            text-transform: uppercase;
            color: var(--amg-blue);
        }
        
        /* Split-Text Animation (Buchstaben fallen leicht nach oben ein) */
        .split-text-target {
            visibility: hidden; /* initial unsichtbar bis Animation startet */
        }
        .split-char {
            display: inline-block;
            opacity: 0;
            transform: translateY(40px);
        }
        .split-char.split-char-visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Spezieller Blur-Effekt nur für markierte Split-Text-Container */
        .split-text-blur .split-char {
            filter: blur(10px);
        }
        .split-text-blur .split-char.split-char-visible {
            filter: blur(0);
        }
        .white-vision-section .headline-line {
            display: block;
        }
        .white-vision-section .reveal-text:first-of-type .headline-line {
            display: inline;
        }
        .white-vision-section.headline-single-line .headline-line {
            display: inline;
        }
        .headline-line--nowrap {
            white-space: nowrap;
        }
        /* Gestaffelte zweizeilige Headline (zweite Zeile leicht eingerückt) */
        .headline-staggered .scroll-reveal-cover:nth-child(2) .reveal-text {
            margin-left: calc(2.5ch + 180px);
        }
        /* Vision NewMox – bleibt weiß, nur Vision-Sektion zentriert */
        .white-vision-section {
            background: var(--amg-white) !important;
        }
        .white-vision-section.headline-center .headline-inner {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        .vision-section-newmox {
            margin-top: 5rem !important;
            position: relative;
            overflow: visible;
            height: auto;
            min-height: 14rem;
            padding-bottom: 5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .vision-section-newmox .vision-bg-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .vision-section-newmox .headline-inner {
            position: relative;
            z-index: 1;
        }
        .vision-text-image {
            position: relative;
            z-index: 1;
            width: min(90vw, 1100px);
            height: auto;
            display: block;
            margin: 0 auto;
            object-fit: contain;
        }
        /* Zones Section – Höhe passt sich dem 16:9 Bildseitenverhältnis an,
           begrenzt auf max. Viewport-Höhe, damit nichts abgeschnitten wird
           und keine Balken entstehen */
        .zones-section {
            position: relative;
            width: 100%;
            height: min(100vh, 56.25vw);
            margin: 0;
            overflow: visible;
            background: #fff;
        }

        /* Wrapper: Hover-Sektion rastet beim Scrollen kurz ein (sticky) */
        .zones-sticky-wrapper {
            height: 200vh;
        }
        .zones-sticky-wrapper .zones-section {
            position: sticky;
            top: 0;
        }
        
        .zones-container {
            position: relative;
            width: 100%;
            height: 100%;
            margin: 0;
            border-radius: 0;
            overflow: hidden;
            cursor: pointer;
            background-color: #fff;
        }
        .zones-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            background:
                linear-gradient(to bottom,
                    #fff 0%, #fff var(--img-top, 0%),
                    transparent var(--img-top, 0%),
                    transparent var(--img-bottom, 100%),
                    #fff var(--img-bottom, 100%), #fff 100%)
                    right top / 85% 100% no-repeat,
                linear-gradient(to right, #11385F 15%, #fff 15%);
            opacity: 0;
            transition: none;
            z-index: 0;
        }
        .zones-bg-img.zones-bg-active {
            opacity: 1;
        }
        .zones-grid {
            position: relative;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 40% 20% 1fr;
            z-index: 1;
        }
        
        /* Hover-Sektion: Logo und Unterzeile oben links */
        .zones-branding {
            position: absolute;
            top: 2rem;
            left: 2rem;
            z-index: 20;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .zones-branding img {
            width: 26.25rem;
            height: auto;
            display: block;
        }
        .zones-branding-text {
            font-family: var(--figtree);
            font-size: 2.55rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--amg-dark-grey);
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .zones-branding {
                top: 1.25rem;
                left: 1.25rem;
            }
            .zones-branding img {
                width: 130px;
            }
            .zones-branding-text {
                font-size: 11pt;
            }
        }
        
        /* Custom Cursor in der Hover-Sektion */
        .zones-section,
        .zones-section * {
            cursor: default !important;
        }
        .zones-ribbons-canvas {
            position: fixed;
            inset: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 999;
            opacity: 0;
            transition: opacity 0.15s ease;
        }
        
        .zone {
            background: transparent;
            border: 0px solid rgba(255,255,255,0.8);
            box-sizing: border-box;
        }
        
        .zone:hover {
            border-color: rgba(255,255,255,1);
        }
        
        
        /* Zone Info Box – statisch unten rechts in der Hover-Sektion */
        .zone-info-box {
            position: absolute;
            bottom: 30px;
            right: 30px;
            left: auto;
            top: auto;
            width: 48.00rem;
            height: 27.00rem;
            box-sizing: border-box;
            background: #F0F0F0;
            border-radius: 80px;
            border: 25px solid #9E9E9E;
            padding: 1.025rem 4.32rem; /* vertikal 10 % höher, horizontal an Breite angepasst */
            z-index: 10;
            opacity: 0;
            transform: translateY(20px);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        
        .zone-info-box.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .zone-info-title {
            font-size: 3.25rem;
            font-weight: 600;
            color: #9E9E9E;
            margin-bottom: 0.875rem;
            font-family: var(--figtree);
            line-height: 1.3;
            text-align: center;
        }
        
        .zone-info-description {
            font-size: 2.55rem;
            color: #000000;
            font-family: var(--figtree);
            line-height: 110%;
            margin-top: 7%;
            /* Fixe Mindesthöhe, damit alle Zonen gleich groß wirken */
        }

        /* Concept Modal Styles */
        .concept-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }
        
        .concept-modal-content {
            position: relative;
            margin: 2% auto;
            width: 95%;
            max-width: 1400px;
            height: 90vh;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }
        
        .concept-modal-header {
            padding: 20px 30px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.15) 0%, 
                rgba(255, 255, 255, 0.05) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .concept-modal-title {
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }
        
        .concept-modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .concept-modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }
        
        .concept-modal-body {
            height: calc(100% - 80px);
            padding: 0;
            position: relative;
        }
        
        .concept-pdf-container {
            width: 100%;
            height: 100%;
            border: none;
            background: white;
        }
        
        .concept-image-container {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0 0 20px 20px;
            background: #f8f8fa;
        }
        
        .concept-video-container {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 0 0 20px 20px;
            background: #000;
        }
        #processModal {
            align-items: center;
            justify-content: center;
        }
        #processModal .concept-modal-content {
            margin: 0;
            width: min(100vw, calc(100vh * (16 / 9)));
            aspect-ratio: 16 / 9;
            height: auto;
            background: transparent;
            border: none;
            border-radius: 0;
            backdrop-filter: none;
            box-shadow: none;
            overflow: visible;
        }
        #processModal .concept-modal-header {
            display: none;
        }
        #processModal .concept-modal-body {
            height: 100%;
            padding: 0;
        }
        #processModal .concept-video-container {
            border-radius: 0;
            object-fit: contain;
            background: #000;
        }
        #processModal .process-image-container {
            width: min(85rem, 95vw);
            height: auto;
            max-height: 95vh;
            border-radius: 0;
            object-fit: contain;
            background: transparent;
            margin: 0 auto;
            display: none;
        }
        .process-modal-close-floating {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 30;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.35);
            pointer-events: auto;
        }
        
        /* Viewport Video Section – spielt ab, sobald sichtbar */
        .viewport-video-wrapper {
            width: 100%;
        }

        .viewport-video-section {
            width: 100%;
            height: 100svh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .viewport-video-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .viewport-video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .viewport-video::-webkit-media-controls {
            display: none !important;
        }

        /* Scroll Video Section – Höhe wird per JS aus Videodauer gesetzt (playbackConst) */
        .scroll-video-wrapper {
            min-height: 100vh;
        }
        
        .scroll-video-section {
            position: sticky;
            top: 0;
            width: 100%;
            height: 100vh;
            background: var(--amg-white);
            z-index: 5;
            overflow: hidden;
        }
        
        .scroll-video-layout {
            display: flex;
            gap: 0rem;
            height: 100%;
            padding: 0;
            box-sizing: border-box;
            align-items: center;
            justify-content: center;
        }
        
        .scroll-info-card {
            width: 29.375rem;
            height: 30.625rem;
            background: var(--amg-light-blue-grey);
            border-radius: 80px;
            border: 25px solid #9E9E9E;
            padding: 2.5rem 3rem;
            box-sizing: border-box;
            color: #9E9E9E;
            font-family: var(--figtree);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .scroll-info-title {
            font-size: 3.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 200%
        }
        .scroll-info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .scroll-info-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 3.25rem;
            line-height: 150%;
            color: #9E9E9E;
        }
        .scroll-info-list li::before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            content: '\f00c';
            color: var(--amg-blue);
        }
        
        @media (max-width: 1024px) {
            .scroll-video-layout {
                padding: 0 1.25rem;
            }
            .scroll-info-card {
                order: 2;
            }
        }
        
        .scrolly-video-container {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 1;
            margin-left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .scrolly-video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            background: var(--amg-white);
            display: block;
        }
        
        /* Video-Controls verstecken */
        .scrolly-video::-webkit-media-controls-picture-in-picture-button {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls-panel {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls-play-button {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls-timeline {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls-current-time-display {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls-time-remaining-display {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls-mute-button {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls-volume-slider {
            display: none !important;
        }
        
        .scrolly-video::-webkit-media-controls-fullscreen-button {
            display: none !important;
        }
        
        /* Time for a Change – Slow-Motion Video (Fullscreen, weißer Hintergrund) */
        .change-video-section {
            background: var(--amg-white);
            padding: 0;
        }
        .change-video-wrapper {
            position: relative;
            width: 100%;
            height: 100vh; /* Vollbildhöhe, berücksichtigt Viewport */
            overflow: hidden;
        }
        .change-video-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/images/Relax1.png');
            background-repeat: no-repeat;
            background-position: right center;
            background-size: auto 100%;
            pointer-events: none;
            z-index: 10;
        }
        .change-video {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover; /* nutzt die volle Breite, Video füllt den Viewport */
            background: var(--amg-white);
        }
        .interactive-info-section {
            background: #ffffff;
            width: 100%;
            height: 100vh;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .interactive-info-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: left center;
            display: block;
            background: #ffffff;
        }
        .change-video-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-shadow: 5px 5px 5px rgba(251, 251, 251, 0.8);
            z-index: 2;
            text-align: center;
            white-space: nowrap;
        }
        #changeVideo::-webkit-media-controls,
        #changeVideo::-webkit-media-controls-enclosure,
        #changeVideo::-webkit-media-controls-panel,
        #changeVideo::-webkit-media-controls-play-button,
        #changeVideo::-webkit-media-controls-current-time-display,
        #changeVideo::-webkit-media-controls-time-remaining-display,
        #changeVideo::-webkit-media-controls-timeline,
        #changeVideo::-webkit-media-controls-mute-button,
        #changeVideo::-webkit-media-controls-volume-slider,
        #changeVideo::-webkit-media-controls-fullscreen-button,
        #changeVideo::-webkit-media-controls-picture-in-picture-button {
            display: none !important;
        }
        #duoBgVideo::-webkit-media-controls,
        #duoBgVideo::-webkit-media-controls-enclosure,
        #duoBgVideo::-webkit-media-controls-panel,
        #duoBgVideo::-webkit-media-controls-play-button,
        #duoBgVideo::-webkit-media-controls-current-time-display,
        #duoBgVideo::-webkit-media-controls-time-remaining-display,
        #duoBgVideo::-webkit-media-controls-timeline,
        #duoBgVideo::-webkit-media-controls-mute-button,
        #duoBgVideo::-webkit-media-controls-volume-slider,
        #duoBgVideo::-webkit-media-controls-fullscreen-button,
        #duoBgVideo::-webkit-media-controls-picture-in-picture-button {
            display: none !important;
        }
        
        /* Magic Bento Section (statt ScrollStack) */
        .magic-bento-section {
            position: relative;
            background: transparent;
            padding: clamp(1.5rem, 3vw, 3rem) 0;
            overflow: hidden;
            width: 100vw;
            min-height: 100vh;
        }
        .magic-bento-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 12%;
            background: linear-gradient(to bottom, transparent, var(--amg-white));
            z-index: 2;
            pointer-events: none;
            flex-direction: column;
            justify-content: center;
        }
        .magic-bento-bg-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .magic-bento-section .magic-bento-row {
            position: relative;
            z-index: 1;
        }

        .magic-bento-row {
            width: min(90rem, 92vw);
            margin: 0 auto;
            display: flex;
            gap: 0.95rem;
            align-items: stretch;
        }

        .magic-bento-card--small {
            flex: 0 0 42%;
            /* Verhindert Vertical-Stretch der kleinen Karte in der Flex-Row. */
            align-self: flex-start;
        }

        /* Nur die "oben links" Karte nach unten ausrichten,
           damit sie optisch zur Nachbarkarte passt. */
        .magic-bento-card--small.magic-bento-card--tl {
            align-self: flex-end;
        }

        .magic-bento-card--large {
            flex: 0 0 58%;
        }

        .magic-bento-card {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            border: 4px solid #9E9E9E;
            background: #060010;
            padding: 0;
            aspect-ratio: 16 / 9;
            box-sizing: content-box;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            isolation: isolate;
            cursor: pointer;
            transform: translateY(var(--stagger-y, 0%)) scale(1);
            transition: transform 220ms ease, box-shadow 220ms ease, border-width 220ms ease, border-color 220ms ease;
            will-change: transform;

            --glow-x: 50%;
            --glow-y: 50%;
            --glow-intensity: 0;
            --glow-radius: 240px;
        }

        .magic-bento-card:hover {
            transform: translateY(var(--stagger-y, 0%)) scale(1.03);
            border-width: 14px;
            border-color: var(--amg-blue);
            box-shadow: 0 12px 16px rgba(0, 0, 0, 0.25);
        }

        /* Layout-Staggering für "oben links" (Referenz: nicht an oben rechts anheften) */
        .magic-bento-card--tl {
            position: relative;
            z-index: 2;
        }

        .magic-bento-card::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(
                var(--glow-radius) circle at var(--glow-x) var(--glow-y),
                rgba(132, 0, 255, calc(var(--glow-intensity) * 0.35)) 0%,
                rgba(132, 0, 255, calc(var(--glow-intensity) * 0.16)) 30%,
                transparent 62%
            );
            opacity: 0;
            z-index: 1;
        }

        .magic-bento-media {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.02);
            z-index: 0;
        }

        .magic-bento-card--small .magic-bento-media {
            transform: none;
        }

        .magic-bento-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(6, 0, 16, 0.1) 0%, rgba(6, 0, 16, 0.7) 100%);
            z-index: 0;
        }

        .magic-bento-card__header,
        .magic-bento-card__content {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .magic-bento-card__header {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 0.5rem;
        }

        .magic-bento-card__label {
            font-size: 14px;
            opacity: 0.95;
        }

        .magic-bento-card__title {
            font-family: var(--figtree);
            font-size: 1.6rem;
            margin: 0 0 0.35rem 0;
            font-weight: 600;
        }

        .magic-bento-card__description {
            margin: 0;
            opacity: 0.88;
            font-size: 0.95rem;
            line-height: 1.35;
        }

        /* particles */
        .magic-bento-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(132, 0, 255, 0.95);
            box-shadow: 0 0 10px rgba(132, 0, 255, 0.65);
            left: var(--px);
            top: var(--py);
            transform: translate(-50%, -50%);
            z-index: 3;
            pointer-events: none;
            animation: mbParticle 850ms ease-out forwards;
            opacity: 0;
        }

        @keyframes mbParticle {
            0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.2); }
        }

        .magic-bento-spotlight {
            position: fixed;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            pointer-events: none;
            mix-blend-mode: screen;
            background: radial-gradient(circle, rgba(132, 0, 255, 0.18) 0%, rgba(132, 0, 255, 0.08) 25%, transparent 68%);
            opacity: 0;
            display: none !important;
            transform: translate(-50%, -50%);
            z-index: 250;
            will-change: left, top, opacity;
        }

        @media (max-width: 900px) {
            .magic-bento-spotlight { display: none; }
            .magic-bento-row {
                flex-direction: column;
                gap: 1rem;
                width: 92vw;
            }
            .magic-bento-card--small,
            .magic-bento-card--large {
                flex: 0 0 auto;
                width: 100%;
            }
            .magic-bento-card--tl { --stagger-y: 0%; }
        }

        /* Click-to-Zoom (Magic Bento) */
        .magic-bento-zoom-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 9999;
        }

        .magic-bento-zoom-clone {
            position: fixed;
            z-index: 10000;
            box-sizing: border-box;
            transition: left 420ms ease, top 420ms ease, width 420ms ease, height 420ms ease;
            pointer-events: auto;
            /* verhindert Hover-Scale während Zoom */
            transform: none !important;
            margin: 0;
            padding: 0 !important; /* verhindert doppelte Einrückung durch .magic-bento-card */
        }

        .magic-bento-zoom-clone:hover {
            transform: none !important;
            box-shadow: none !important;
        }

        /* Im Zoom: Glow/Filter ausschalten, damit das Bild nicht "schwarz/blur" wirkt */
        .magic-bento-zoom-clone::after {
            opacity: 0 !important;
        }

        .magic-bento-zoom-clone .magic-bento-media {
            inset: 0 !important;
            filter: none !important;
            transform: none !important;
            z-index: 0;
        }
        
        /* Duo-Image Section mit Video-Hintergrund */
        .duo-images-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        .duo-images-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 25%;
            background: linear-gradient(to bottom, var(--amg-white), transparent);
            z-index: 2;
            pointer-events: none;
        }
        .duo-images-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .duo-images-overlay {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .duo-images-wrapper {
            position: relative;
            /* Wrapper und Inhalte insgesamt deutlich größer (ca. doppelt) */
            width: min(120rem, 95vw);
            height: min(120rem, 70vh);
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            gap: 0;
        }
        .duo-image {
            position: relative;
            width: 80%;
            height: auto;
            aspect-ratio: 16 / 9;
            border-radius: 60px;
            border: 25px solid #9E9E9E;
            overflow: hidden;
            
            background: #fff;
        }
        .duo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Linke Duo-Box: Bild komplett sichtbar (kein Zuschnitt oben/unten) */
        .duo-image-left img {
            object-fit: contain;
        }
        .duo-image-left-text {
            width: 100%;
            height: 100%;
            background: rgba(240, 240, 240, 0.95);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 1.75rem;
            box-sizing: border-box;
            font-family: var(--figtree);
            line-height: 1.4; /* etwas größerer Zeilenabstand */
        }
        .duo-image-left-text-line1 {
            font-size: 6.25rem; /* +30% größer */
            font-weight: 600;
            color: #194369;
            margin-bottom: 0.4rem;
            width: 100%;
            text-align: left;
            max-width: 80%;
            margin: 0 auto 0.4rem;
        }
        .duo-image-left-text-line2 {
            font-size: 6.25rem; /* +30% größer */
            color: var(--amg-dark-grey);
            margin-bottom: 0.75rem;
            width: 100%;
            text-align: right;
            max-width: 60%; /* ca. 10% weiter auseinander */
            margin: 0 auto 0.75rem;
        }
        .duo-image-left-text-line2 span {
            color: #194369;
            font-weight: 600;
        }
        .duo-image-left-text-line3 {
            font-size: 6.25rem; /* +30% größer */
            font-weight: 700;
            color: #194369;
            margin-top: 0.25rem;
            width: 100%;
            text-align: center;
            text-decoration: underline;
        }
        .duo-text-we {
            display: inline-block;
            padding-left: 0%;
        }
        .duo-text-yourline {
            display: inline-block;
            white-space: nowrap; /* "your World." bleibt immer in einer Zeile */
        }
        .duo-text-your {
            display: inline-block;
            padding-left: 30%;
            color: #3A6693;
        }
        .duo-text-world {
            display: inline-block;
            color: #3A6693;
            font-weight: 800;
        }
        .duo-image-left {
            margin-top: 6%;
            /* leicht über das rechte Fenster legen (ca. 2% Überlappung) */
            margin-right: -6%; /* mehr Überlappung, damit die rechte Box den Rand "schluckt" */
            border: 0; /* Linke Box ohne Border */
            background: transparent; /* kein weißer Container-Hintergrund */
            transform: translateY(0);
            transition: transform 0.6s ease-out; /* etwas langsamer / smoother */
            z-index: 2;
        }
        .duo-image-right {
            margin-top: 10%;
            background: transparent;
            
            z-index: 1;
        }
        @media (max-width: 900px) {
            .duo-images-wrapper {
                width: min(900px, 96vw);
                height: min(520px, 75vh);
                gap: 0;
            }
            .duo-image {
                width: 72%;
            }
            .duo-image-left {
                margin-top: 2%;
                margin-right: -6%;
            }
            .duo-image-right {
                margin-top: 8%;
            }
        }

        /* Zusätzliche 6-Bilder-Sektion (links/rechts Thumbnails, Mitte Hauptbild) */
        .duo-gallery6-sticky-wrapper {
            height: 175vh;
        }
        .text-video-white-section {
            width: 100%;
            height: 50vh;
            min-height: 420px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .text-video-white {
            width: 80%;
            height: 80%;
            object-fit: contain;
            background: transparent;
            display: block;
        }
        .duo-gallery6-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: var(--amg-white);
            position: sticky;
            top: 0;
        }
        .duo-gallery6-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .duo-gallery6-overlay {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: auto;
        }
        .duo-gallery6-layout {
            width: min(120rem, 96vw);
            height: min(88vh, 860px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(0.75rem, 1.8vw, 2rem);
            transform: translateY(-10%);
        }
        .duo-gallery6-col {
            display: grid;
            grid-template-rows: repeat(3, 1fr);
            gap: clamp(0.65rem, 1.1vw, 1rem);
            width: min(8.58vw, 123px);
            height: min(37.44vh, 348px);
        }
        .duo-gallery6-thumb {
            border: 6px solid #9E9E9E;
            border-radius: 18px;
            background: #fff;
            overflow: hidden;
            padding: 0;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .duo-gallery6-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .duo-gallery6-thumb:hover,
        .duo-gallery6-thumb.is-active {
            border-color: #2273BA;
            box-shadow: 0 8px 20px rgba(34, 115, 186, 0.22);
        }
        .duo-gallery6-main {
            width: min(43.0vw, 668px);
            aspect-ratio: 1920 / 1620;
            border: 10px solid #9E9E9E;
            border-radius: 26px;
            overflow: hidden;
            background: #fff;
            transform: translateY(0);
            transition: transform 0.6s ease-out;
        }
        .duo-gallery6-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Sticky Wrapper für Slider, Time to Change, Bento */
        .slider-sticky-wrapper {
            height: 200vh;
        }
        .slider-sticky-inner {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow: hidden;
        }
        .change-sticky-wrapper {
            height: 175vh;
        }
        .change-sticky-wrapper .change-video-section {
            position: sticky;
            top: 0;
        }
        .bento-sticky-wrapper {
            height: 175vh;
            position: relative;
            z-index: 0;
        }
        .bento-sticky-wrapper .magic-bento-section {
            position: sticky;
            top: 0;
        }

        /* „Innovative solutions …“ + Bento: wie Interactive Factory — sticky, Dock in Bento, weißer Schriftrand */
        .innovative-bento-combo {
            position: relative;
            width: 100%;
        }
        .innovative-bento-body {
            display: flex;
            flex-direction: column;
        }
        .innovative-bento-spacer-top,
        .innovative-bento-spacer-bottom {
            flex: 1 1 0;
            min-height: clamp(1.25rem, 3vw, 2.75rem);
            background: var(--amg-white);
        }
        .innovative-bento-headline {
            position: sticky;
            top: 1.5rem;
            z-index: 70;
            flex: 0 0 auto;
            width: 100%;
            display: flex;
            justify-content: flex-start;
            padding: clamp(1.75rem, 4vw, 3.25rem) 2rem;
            box-sizing: border-box;
            pointer-events: none;
            background: transparent;
            transform-origin: top left;
            will-change: transform;
        }
        .innovative-bento-headline .headline-inner {
            max-width: 900px;
            width: 100%;
            margin: 0;
            margin-right: auto;
            text-align: left;
        }
        .innovative-bento-headline .headline-line {
            font-family: var(--figtree);
            font-size: 4.5rem;
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -0.02em;
            -webkit-text-stroke: 4px #ffffff;
            paint-order: stroke fill;
        }
        .innovative-bento-headline .split-char {
            -webkit-text-stroke: 4px #ffffff;
            paint-order: stroke fill;
        }
        .innovative-bento-headline .reveal-text:first-of-type .headline-line {
            display: inline;
        }
        #contact.innovative-bento-combo .innovative-bento-headline .headline-line--blue {
            color: var(--amg-blue);
        }
        #contact.innovative-bento-combo .innovative-bento-headline .headline-line--gray {
            color: #9E9E9E;
        }
        .innovative-bento-headline-spacer {
            flex-shrink: 0;
            width: 100%;
            height: 0;
            pointer-events: none;
        }
        /* Nach Dock: Teil der Bento-Fläche (wie EGD-Headline) */
        .magic-bento-section > .innovative-bento-headline.innovative-bento-headline--in-bento {
            position: absolute;
            right: auto;
            max-width: 900px;
            padding: 0;
            margin: 0;
            flex: none;
            z-index: 70;
            pointer-events: none;
            transition: none;
        }

        /* Sticky Wrapper für die letzte Duo-Sektion */
        .duo-sticky-wrapper {
            height: 175vh;
        }
        .duo-sticky-wrapper .duo-images-section {
            position: sticky;
            top: 0;
            z-index: 1;
        }

        /* Vorher/Nachher Slider (zwischen Vision und Interactive Factory) – AMG-Farben */
        .onepager-slider-section {
            position: relative;
            height: 100vh;
            min-height: 100vh;
            padding: 0;
            background-color: var(--amg-white);
            border: 0;
            box-sizing: border-box;
            display: flex;
            align-items: center;
        }
        .onepager-slider-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/images/Klarheit.png');
            background-repeat: no-repeat;
            background-position: right bottom;
            background-size: cover;
            pointer-events: none;
            z-index: 10;
        }
        .onepager-slider-section .slider-container {
            position: relative;
            width: 83.75%;
            max-width: none;
            margin: 0;
            margin-left: 0;
            border-radius: 12px;
            overflow: hidden;
            cursor: grab;
            z-index: 3;
        }
        .onepager-slider-section .slider-container:active {
            cursor: grabbing;
        }
        .onepager-slider-section .image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            max-height: 80vh;
            overflow: hidden;
        }
        .slider-sticky-inner .vision-section-newmox {
            display: none;
        }
        .onepager-slider-section .before-image,
        .onepager-slider-section .after-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            background: #fff;
        }
        .onepager-slider-section .after-image {
            clip-path: inset(0 50% 0 0);
        }
        .onepager-slider-section .slider-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--amg-white);
            transform: translateX(-50%);
            z-index: 10;
            cursor: grab;
        }
        .onepager-slider-section .slider-handle {
            position: absolute;
            top: 50%;
            left: 0;
            width: 92px;
            height: 92px;
            background: var(--amg-light-blue-grey);
            border: 8px solid #4B7CAC;
            border-radius: 10px;
            transform: translate(-50%, -50%);
            cursor: grab;
            z-index: 11;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            font-size: 22px;
            font-weight: 900;
            color: var(--amg-blue);
            font-family: var(--figtree);
            line-height: 1;
            letter-spacing: 0.02em;
        }
        .onepager-slider-section .slider-handle:hover {
            transform: translate(-50%, -50%) scale(1.08);
        }
        .onepager-slider-section .slider-handle::before {
            content: '→';
            font-size: 28px;
            font-weight: 900;
            color: #000;
            align-self: flex-end;
            margin-right: 6px;
            -webkit-text-stroke: 1px #000;
        }
        .onepager-slider-section .slider-handle::after {
            content: '←';
            font-size: 28px;
            font-weight: 900;
            color: #000;
            align-self: flex-start;
            margin-left: 6px;
            -webkit-text-stroke: 1px #000;
        }
        @media (max-width: 768px) {
            .onepager-slider-section .image-container {
                aspect-ratio: 16 / 9;
                min-height: 200px;
                max-height: 65vh;
            }
            .onepager-slider-section {
                border-width: 14px;
            }
        }


        /* Content Sections */
        .content-section {
            padding: 5rem 0;
            position: relative;
        }
        
        /* Kontakt-Inhalt: Light-Pillar + Karte (weißer Hintergrund, Pillar in CI-Farben) */
        .contact-content-section {
            overflow: hidden;
            background: var(--amg-white);
            min-height: 55vh;
            position: relative;
            padding-bottom: 0;
        }
        .contact-content-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: 
                linear-gradient(105deg, transparent 0%, rgba(34, 115, 186, 0.14) 25%, transparent 50%),
                linear-gradient(255deg, transparent 0%, rgba(33, 67, 150, 0.12) 30%, transparent 55%),
                linear-gradient(180deg, rgba(34, 115, 186, 0.08) 0%, transparent 40%, rgba(33, 67, 150, 0.1) 100%);
            pointer-events: none;
        }
        .contact-content-section .light-pillar-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        .contact-content-section .light-pillar-container canvas {
            display: block;
            width: 100% !important;
            height: 100% !important;
        }
        .contact-content-section .container {
            position: relative;
            z-index: 2;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* EGD-Hover-Sektion: Vollbild mit 3 vertikalen Hover-Zonen (wie Zones) */
        .egd-sticky-wrapper {
            height: 175vh;
        }
        .egd-hover-section {
            position: sticky;
            top: 0;
            z-index: 1;
            width: 100vw;
            height: 100vh;
            background: var(--amg-white);
            overflow: visible;
            left: 50%;
            margin-left: -50vw;
            /* Nach unten: Übergang zur nächsten weißen Sektion (weitere ~40 % enger) */
            margin-bottom: clamp(1.5rem, 4.2vw, 3.6rem);
        }
        /* Headline nach Dock: Teil der EGD-Fläche — top/left/width per JS (pixelgenau beim Übergang, kein Sprung) */
        .egd-hover-section > .interactive-egd-headline.interactive-egd-headline--in-egd {
            position: absolute;
            right: auto;
            max-width: 900px;
            padding: 0;
            margin: 0;
            flex: none;
            z-index: 70;
            pointer-events: none;
            transition: none;
        }
        .egd-hover-container {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: var(--amg-white);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .egd-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: left center;
            opacity: 0;
            transition: none;
            z-index: 0;
        }
        .egd-bg-img.egd-bg-active {
            opacity: 1;
        }
        .egd-zones-layer {
            position: relative;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 30% 8% 12% 10% 1fr;
            z-index: 1;
        }
        .egd-zone {
            background: transparent;
            box-sizing: border-box;
            cursor: pointer;
        }

        .egd-buttons {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            z-index: 20;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .egd-buttons-bottom {
            position: absolute;
            right: 1.5rem;
            bottom: 1.5rem;
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1rem;
        }
        .egd-btn {
            position: relative;
            overflow: hidden;
            padding: 1.22rem 3.49rem;
            font-family: var(--figtree);
            font-size: 29px;
            font-weight: 600;
            letter-spacing: 0.25px;
            color: #f6fbff;
            background:
                radial-gradient(120% 160% at 15% 0%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 48%),
                linear-gradient(145deg, rgba(77, 129, 176, 0.34), rgba(18, 43, 73, 0.4));
            border: 1px solid rgba(255, 255, 255, 0.34);
            border-radius: 100px;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            backdrop-filter: blur(22px) saturate(185%) contrast(108%);
            -webkit-backdrop-filter: blur(22px) saturate(185%) contrast(108%);
            box-shadow:
                0 10px 26px rgba(9, 24, 42, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.55),
                inset 0 -1px 0 rgba(255, 255, 255, 0.14);
            transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }
        .egd-btn::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.18));
            pointer-events: none;
            opacity: 0.72;
        }
        .egd-btn::after {
            content: '';
            position: absolute;
            width: 52%;
            height: 210%;
            top: -65%;
            left: -38%;
            border-radius: 50%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
            transform: rotate(20deg);
            pointer-events: none;
            opacity: 0.75;
        }
        .egd-btn:hover {
            background:
                radial-gradient(120% 160% at 12% 0%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 48%),
                linear-gradient(145deg, rgba(95, 151, 201, 0.38), rgba(22, 57, 95, 0.44));
            transform: translateY(-1px) scale(1.03);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow:
                0 12px 30px rgba(9, 24, 42, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.65),
                inset 0 -1px 0 rgba(255, 255, 255, 0.2);
        }

        .egd-pdf-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 10001;
            background: rgba(0,0,0,0.6);
            justify-content: center;
            align-items: center;
        }
        .egd-pdf-modal.active {
            display: flex;
        }
        .egd-pdf-modal-content {
            position: relative;
            width: 96vw;
            max-width: 1320px;
            aspect-ratio: 4 / 3;
            max-height: 96vh;
            background: transparent;
            border-radius: 10px;
            overflow: hidden;
        }
        .egd-pdf-modal-close {
            position: absolute;
            top: 0.5rem;
            right: 0.7rem;
            font-size: 1.8rem;
            color: #fff;
            background: rgba(0,0,0,0.45);
            border: none;
            cursor: pointer;
            z-index: 2;
            line-height: 1;
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .egd-pdf-modal-close:hover {
            background: rgba(0,0,0,0.7);
        }
        .egd-pdf-iframe-wrap {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .egd-video-box {
            position: absolute;
            bottom: 0rem;
            left: 8%;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            width: min(49.4rem, 61%);
            aspect-ratio: 16 / 9;
            box-sizing: content-box;
            border: 25px solid #9E9E9E;
            border-radius: 80px;
            overflow: hidden;
            background: var(--amg-white);
            z-index: 10;
        }
        .egd-vid {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .egd-vid-active {
            opacity: 1;
        }
        
        .section-title {
            font-size: 2.375rem;
            font-weight: 500;
            line-height: 1.18;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--amg-black);
            font-family: var(--figtree);
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 8px;
            border: 1px solid var(--amg-medium-grey);
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 16px rgba(34, 31, 31, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .glass-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(34, 31, 31, 0.15);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--amg-medium-grey);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 24px rgba(34, 31, 31, 0.15);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .feature-title {
            font-size: 1.4375rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--amg-black);
            font-family: var(--figtree);
        }
        
        .feature-description {
            color: var(--amg-dark-grey);
            line-height: 26px;
            font-family: var(--figtree);
            font-size: 17px;
        }
        
        /* Footer */
        .footer {
            position: relative;
            background: #ffffff;
            color: var(--amg-dark-grey);
            padding: 3.6rem 0 2.2rem;
            margin-top: 0;
            border-top: 1px solid rgba(33, 67, 150, 0.18);
            font-family: 'FuturaMDBT', 'Futura Md BT', 'Futura Md', 'Futura', 'Trebuchet MS', Arial, sans-serif !important;
        }
        
        .footer-content {
            width: 100%;
            margin: 0;
            padding: 0 2.4rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.25rem;
        }
        .footer-section {
            background: rgba(255, 255, 255, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(10px) saturate(130%);
            -webkit-backdrop-filter: blur(10px) saturate(130%);
            border-radius: 1rem;
            padding: 1.15rem 1.15rem 1rem;
            box-shadow: 0 8px 24px rgba(26, 45, 74, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
        }
        
        .footer-section h3 {
            font-size: 1.08rem;
            margin-bottom: 0.65rem;
            color: var(--amg-blue);
            font-family: 'FuturaMDBT', 'Futura Md BT', 'Futura Md', 'Futura', 'Trebuchet MS', Arial, sans-serif !important;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        
        .footer-section p,
        .footer-section a {
            color: var(--amg-dark-grey);
            text-decoration: none;
            line-height: 1.55;
            font-family: 'FuturaMDBT', 'Futura Md BT', 'Futura Md', 'Futura', 'Trebuchet MS', Arial, sans-serif !important;
            font-size: 0.98rem;
        }
        
        .footer-section a:hover {
            color: var(--amg-blue);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(211, 212, 217, 0.2);
            color: var(--amg-dark-grey);
            font-family: 'FuturaMDBT', 'Futura Md BT', 'Futura Md', 'Futura', 'Trebuchet MS', Arial, sans-serif !important;
            font-size: 14px;
            line-height: 21px;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
                
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.4rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .glass-card {
                padding: 1.5rem;
            }
        }

        /* Mobile: Mediengrößen vereinfachen und responsiv halten */
        @media (max-width: 900px) {
            .white-headline-section.headline-section-nuclear .headline-line,
            .white-headline-section.headline-section-wahrnehmung .headline-line {
                font-size: clamp(2rem, 9vw, 3.2rem);
            }

            .zones-section {
                min-height: min(100svh, 56.25vw);
                height: min(100svh, 56.25vw);
            }

            .scroll-video-section,
            .viewport-video-section,
            .change-video-wrapper,
            .interactive-info-section,
            .egd-hover-section,
            .duo-gallery6-section,
            .duo-images-section,
            .onepager-slider-section {
                min-height: 100svh;
                height: 100svh;
            }

            .zones-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .zones-bg-img {
                object-fit: contain;
            }

            .egd-bg-img {
                object-fit: cover;
            }

            .onepager-slider-section .slider-container {
                width: 92%;
            }

            .onepager-slider-section .image-container {
                aspect-ratio: 16 / 9;
                max-height: 70svh;
            }

            .onepager-slider-section .slider-handle {
                width: 52px;
                height: 52px;
                border-width: 2px;
                font-size: 11px;
                gap: 1px;
            }
            .onepager-slider-section .slider-handle::before,
            .onepager-slider-section .slider-handle::after {
                font-size: 12px;
                margin-left: 5px;
                margin-right: 5px;
            }

            .duo-gallery6-layout {
                width: 94vw;
                height: auto;
                transform: none;
                gap: 0.55rem;
            }

            .duo-gallery6-col {
                width: clamp(56px, 16vw, 78px);
                height: clamp(180px, 42vh, 280px);
                gap: 0.45rem;
            }

            .duo-gallery6-thumb {
                border-width: 3px;
                border-radius: 12px;
            }

            .duo-gallery6-main {
                width: min(58vw, 420px);
                border-width: 5px;
                border-radius: 14px;
            }

            .duo-images-wrapper {
                width: 94vw;
                height: auto;
                align-items: center;
            }

            .duo-image {
                width: 74%;
                border-width: 6px;
                border-radius: 18px;
            }

            .duo-image-left {
                margin-top: 0;
                margin-right: -7%;
            }

            .duo-image-right {
                margin-top: 8%;
            }

            .vision-text-image,
            .text-video-white {
                width: 92vw;
                height: auto;
            }

            #processModal .process-image-container {
                width: 94vw;
                max-height: 90svh;
            }
        }

        @media (max-width: 768px) {
            .zones-sticky-wrapper,
            .change-sticky-wrapper,
            .egd-sticky-wrapper,
            .duo-gallery6-sticky-wrapper,
            .duo-sticky-wrapper,
            .slider-sticky-wrapper {
                height: auto;
            }

            .zones-sticky-wrapper .zones-section,
            .change-sticky-wrapper .change-video-section,
            .egd-hover-section,
            .duo-gallery6-section,
            .duo-sticky-wrapper .duo-images-section,
            .slider-sticky-inner {
                position: relative;
                top: auto;
            }

            .slider-sticky-inner {
                height: auto;
                overflow: visible;
            }

            .hero-section {
                min-height: 80svh;
                height: 80svh;
            }

            .hero-intro-section {
                min-height: auto;
                height: auto;
                padding: 2rem 1rem;
            }

            .white-headline-section,
            .white-headline-section.headline-section-nuclear,
            .white-headline-section.headline-section-wahrnehmung {
                height: auto;
                min-height: auto;
                padding: 2rem 1rem;
            }

            .white-headline-section.headline-section-nuclear .reveal-text {
                white-space: normal;
            }

            .white-headline-section.headline-section-nuclear .headline-line {
                display: block;
                font-size: clamp(1.22rem, 6vw, 1.89rem);
                line-height: 1.08;
            }

            .vision-section-newmox {
                margin-top: 1.5rem !important;
                min-height: auto;
                padding: 1rem 0 1.5rem;
            }

            .change-video-wrapper::before,
            .onepager-slider-section::before {
                background-size: cover;
                background-position: center;
                opacity: 0.35;
            }

            .egd-buttons {
                top: 1rem;
                right: 1rem;
                gap: 0.55rem;
            }

            .egd-buttons-bottom {
                right: 1rem;
                bottom: 1rem;
                gap: 0.55rem;
            }

            .egd-btn {
                padding: 0.55rem 1.05rem;
                font-size: 16px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section,
            .scroll-video-section,
            .viewport-video-section,
            .change-video-wrapper,
            .interactive-info-section,
            .egd-hover-section,
            .duo-gallery6-section,
            .duo-images-section,
            .onepager-slider-section {
                min-height: 92svh;
                height: 92svh;
            }

            .zones-section {
                min-height: max(40svh, 56.25vw);
                height: max(40svh, 56.25vw);
            }

            .duo-gallery6-main {
                width: min(54vw, 320px);
            }

            .duo-image {
                width: 76%;
                border-width: 4px;
                border-radius: 12px;
            }

            .onepager-slider-section .image-container {
                aspect-ratio: 16 / 9;
                max-height: 60svh;
            }

            .onepager-slider-section .slider-line {
                width: 3px;
            }
        }

        /* Mobile Querformat (Landscape) */
        @media (max-width: 1024px) and (orientation: landscape) and (hover: none) {
            .hero-section,
            .scroll-video-section,
            .viewport-video-section,
            .change-video-wrapper,
            .interactive-info-section,
            .egd-hover-section,
            .duo-gallery6-section,
            .duo-images-section,
            .onepager-slider-section {
                min-height: 100svh;
                height: 100svh;
            }

            .zones-section {
                min-height: min(100svh, 56.25vw);
                height: min(100svh, 56.25vw);
            }

            .white-headline-section,
            .white-headline-section.headline-section-nuclear,
            .white-headline-section.headline-section-wahrnehmung {
                padding: 1.1rem 1rem;
            }

            .white-headline-section.headline-section-nuclear .reveal-text {
                white-space: normal;
            }

            .white-headline-section.headline-section-nuclear .headline-line {
                display: block;
                font-size: clamp(1rem, 4.2vw, 1.45rem);
                line-height: 1.05;
            }

            .onepager-slider-section .slider-container {
                width: 82%;
            }

            .onepager-slider-section .image-container {
                aspect-ratio: 16 / 9;
                max-height: 74svh;
            }

            .duo-gallery6-layout {
                transform: none;
                gap: 0.5rem;
            }

            .duo-gallery6-col {
                width: clamp(48px, 8vw, 72px);
                height: clamp(140px, 56vh, 240px);
            }

            .duo-gallery6-main {
                width: min(48vw, 520px);
            }

            .egd-btn {
                font-size: 14px;
                padding: 0.45rem 0.9rem;
            }
        }
