   *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0; /* Basis-Reset */
            padding: 0; /* Basis-Reset */
        }
        html {
            scroll-behavior: smooth;
        }
		body {
			margin: 0;
			padding: 0;
			font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
			background: linear-gradient(to right, #0c0c0f, #1a2a4f);
			color: #ffffff;
			overflow-x: hidden; /* Verhindert horizontales Scrollen */
		}

		.container { /* Diese Klasse wird aktuell nicht global genutzt, könnte aber für zukünftige Sektionen nützlich sein */
			max-width: 1200px; 
			margin: 0 auto;
			padding: 0 clamp(20px, 5vw, 80px); /* Globales responsives Padding für Container */
		}

		/* Navigation / Header */
		.header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 20px 0; /* Vertikales Padding angepasst */
			position: sticky;
			top: 0;
			background: linear-gradient(to right, #0c0c0f, #1a2a4f); /* Hintergrund für Sticky-Effekt */
			z-index: 1000;
			width: 100%;
            box-sizing: border-box; /* Stellt sicher, dass Padding die Breite nicht beeinflusst */
            padding-left: clamp(20px, 8vw, 120px); /* Dynamisches Padding links */
            padding-right: clamp(20px, 8vw, 120px); /* Dynamisches Padding rechts */
		}

		.logo-container {
			background-color: #87CEFA; /* Hellblau */
			padding: 10px 20px; /* Etwas mehr Padding für größeren Text */
			border-radius: 10px;
			position: relative;
			font-weight: bold;
			font-size: 1.8em; /* Größere Schrift für das Logo */
			color: #000; /* Dunkler Text für Kontrast auf hellem Blau */
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Hochwertigerer Font */
            letter-spacing: 1px; /* Etwas mehr Buchstabenabstand */
		}

		.logo-container::after {
			content: ''; /* Entfernt den Sprechblasen-Zacken */
		}

		.logo-container a {
			color: inherit;
			text-decoration: none;
			font: inherit;
			letter-spacing: inherit;
			font-weight: inherit;
			font-size: inherit;
			font-family: inherit;
			display: inline;
			cursor: pointer;
		}
		.logo-container a:hover, .logo-container a:active, .logo-container a:focus {
			color: inherit;
			text-decoration: none;
			outline: none;
		}

		.navigation nav ul {
			list-style: none;
			padding: 0;
			margin: 0;
			display: flex;
		}

		.navigation nav ul li {
			margin-left: 30px;
		}

		.navigation nav ul li a {
			text-decoration: none;
			color: #ffffff;
			font-size: 1em;
		}

		.header-right a {
			text-decoration: none;
			color: #ffffff;
			margin-left: 20px;
			font-size: 1em;
		}

		.cta-button {
			background-color: #ffffff;
			color: #1a2a4f; /* Dunkle Farbe für Text, passend zum Hintergrund */
			padding: 10px 20px;
			border-radius: 5px;
			text-decoration: none;
			font-weight: bold;
			border: 1px solid #1a2a4f; /* Dunkler Rand */
			display: inline-flex;
			align-items: center;
		}

		.cta-button .arrow {
			margin-left: 8px;
		}

		/* Above the Fold Sektion */
		.above-the-fold {
			display: flex;
			align-items: center; 
			min-height: calc(100vh - 80px); 
            width: 100%; 
			padding-top: 40px; 
            padding-bottom: clamp(40px, 8vh, 80px); 
            padding-left: clamp(20px, 8vw, 120px); /* Wiederhergestellt */
            padding-right: clamp(20px, 8vw, 120px); /* Wiederhergestellt */
            box-sizing: border-box;
            position: static; /* Zurückgesetzt von relative */
            overflow: visible; /* Zurückgesetzt von hidden */
		}

		.left-column {
			flex: 0 0 48%;
			min-width: 0;
			max-width: none;
			padding-right: 4%; /* Ursprüngliches Padding */
            padding-left: 0; /* Kein separates linkes Padding mehr hier, wird von .above-the-fold abgedeckt */
            /* padding-right: clamp(20px, 4vw, 60px); */ /* Entfernt */
            position: static; /* Zurückgesetzt */
            z-index: auto; /* Zurückgesetzt */
            box-sizing: border-box;
		}

		.main-headline {
			font-size: clamp(2rem, 1rem + 6vw, 4.5rem); /* Beispiel: skaliert zw. 2rem (ca. 320px) und 4.5rem (ca. 1200px+) */
			font-weight: bold;
			line-height: 1.2;
			margin-bottom: 20px;
		}

		.sub-headline {
			font-size: clamp(0.9rem, 0.7rem + 1vw, 1.2rem);
			color: #cccccc; /* Grauweiß */
			line-height: 1.6;
			margin-bottom: 30px;
            max-width: 500px; /* Begrenzt die Breite für bessere Lesbarkeit */
		}

		.input-cta-container {
			display: flex;
			align-items: stretch;
			gap: 20px;
			min-width: 220px;
		}

		.input-field-container {
			background-color: #2a2a3a;
			border-radius: 7px 0 0 7px;
			margin-right: 0;
			flex-grow: 1;
			max-width: 420px;
			height: 56px;
			display: flex;
			align-items: stretch;
			padding: 0;
			min-width: 220px;
			max-width: 400px;
		}

		.input-field-container .ai-icon {
			margin-right: 10px;
            /* Hier könnte ein SVG oder Font-Icon für AI stehen */
            font-style: italic;
            color: #87CEFA;
		}

		.input-field-container input {
			background: transparent;
			border: none;
			color: #ffffff;
			font-size: 1.15em;
			outline: none;
			width: 100%;
			height: 100%;
			padding: 0 16px;
			border-radius: 7px 0 0 7px;
			display: block;
		}
        .input-field-container input::placeholder {
            color: #a0a0a0;
        }

		.try-ontext-button {
			background-color: #87CEFA;
			color: #1a2a4f;
			height: 56px;
			padding: 0 36px;
			font-size: 1.15em;
			border-radius: 0 7px 7px 0;
			display: inline-flex;
			align-items: center;
			box-shadow: 0 2px 12px rgba(135,206,250,0.10);
			margin-bottom: 10px;
			font-weight: bold;
			border: none;
			text-decoration: none;
			white-space: nowrap;
			transition: background 0.2s, box-shadow 0.2s;
			cursor: pointer;
		}
		.try-ontext-button:hover {
			background-color: #5ca6d6;
			color: #1a2a4f;
			box-shadow: 0 4px 18px rgba(135,206,250,0.18);
		}

		/* Stil für den Benachrichtigungstext über dem E-Mail-Feld */
		.email-notification-info {
			margin-bottom: 15px; /* Abstand zum E-Mail-Feld */
			font-size: 0.9em;
			color: #e0e0e0; /* Etwas helleres Grau als die Subheadline */
		}
		.email-notification-info p {
			margin-bottom: 5px; /* Kleinerer Abstand, falls der Text umbricht */
		}

		.right-column {
			/* flex-grow: 1; */ /* Entfernt */
			flex: 0 0 52%; /* Ursprüngliche Breite wiederhergestellt */
			display: flex;
			justify-content: center;
			align-items: center;
			position: relative; /* Kann für interne Elemente nützlich bleiben, aber nicht für das Bild selbst */
		}

		.hero-visual-placeholder {
			position: static; /* Zurückgesetzt von absolute */
            /* top: 15vh; */ /* Entfernt */
            /* height: 70vh; */ /* Entfernt */
            /* width: 45%;  */ /* Entfernt */
            /* left: auto;  */ /* Entfernt */
            /* right: 0;    */ /* Entfernt */
            width: 100%; /* Volle Breite der .right-column */
            height: auto; /* Höhe passt sich dem Inhalt/Bild an */
            min-height: 400px; /* Mindesthöhe beibehalten oder anpassen */
            z-index: auto; 
			border-radius: 10px; /* Radius wieder aktiv */
			display: flex; 
			justify-content: center;
			align-items: center;
            overflow: hidden; /* Um sicherzustellen, dass das Bild im Radius bleibt */
            background-color: rgba(255, 255, 255, 0.05); /* Optional: Leichter Hintergrund */
		}

        /* Entferne die Fade Pseudo-Elemente komplett */
        /* .hero-visual-placeholder::before, 
        .hero-visual-placeholder::after { ... } */

        .hero-visual-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            /* object-position: center right; */ /* Kann entfernt oder auf center gesetzt werden */
            object-position: center; 
            border-radius: 10px; 
            display: block; 
        }


		/* .speech-bubble {...} Regel sollte bereits entfernt/auskommentiert sein */


		/* Responsive Anpassungen */
		@media (max-width: 992px) { /* Tablet und kleiner */
			.above-the-fold {
				flex-direction: column;
				text-align: center;
                padding-top: 20px;
                padding-left: clamp(20px, 5vw, 40px); /* Konsistentes Padding */
                padding-right: clamp(20px, 5vw, 40px);
                min-height: auto; 
			}
			.left-column, .right-column {
				flex: 1 1 100%; 
				padding-right: 0;
                max-width: 100%;
			}
            .right-column {
                /* height: auto; */ /* Höhe des .hero-visual-placeholder steuert dies */
                min-height: 300px; /* Mindesthöhe für das Bild auf Mobilgeräten */
            }
            .hero-visual-placeholder {
                min-height: 300px; /* Synchron zur .right-column */
                 /* height: 60vh; */ /* Ggf. Höhe anpassen für Mobile */
            }
            .main-headline {
                font-size: clamp(2rem, 1rem + 6vw, 4.5rem); /* Beispiel: skaliert zw. 2rem (ca. 320px) und 4.5rem (ca. 1200px+) */
            }
            .sub-headline {
                margin-left: auto;
                margin-right: auto;
            }
            .input-cta-container {
                justify-content: center;
                flex-direction: column;
                gap: 15px; /* Abstand zwischen Input und Button */
            }
            .input-field-container {
                margin-right: 0;
                width: 100%;
                max-width: 400px; /* Etwas breiter auf Mobilgeräten */
            }
            .header {
                padding-left: 20px;
                padding-right: 20px;
                flex-wrap: wrap; /* Erlaubt Umbruch bei Bedarf */
                justify-content: space-between; /* Logo links, Rest rechts (inkl. Hamburger) */
                align-items: center; 
            }
            /* .navigation ursprüngliche Regeln werden hier überschrieben */
            .navigation {
                display: none; /* Hauptnavigation standardmäßig ausblenden */
                width: 100%;
                order: 3; /* Unter Logo und header-right anordnen */
                margin-top: 15px;
                background-color: rgba(18, 26, 50, 0.95); /* Hintergrund für das mobile Menü, leicht transparent */
                padding: 10px 0;
                box-shadow: 0 4px 8px rgba(0,0,0,0.2);
                border-radius: 8px;
            }

            .navigation.nav-active { /* Klasse, die per JS gesetzt wird */
                display: block; /* Sichtbar machen, wenn aktiv */
            }

            .navigation nav ul {
                flex-direction: column; /* Links untereinander */
                align-items: center;
                width: 100%;
            }

            .navigation nav ul li {
                margin: 10px 0; /* Vertikaler Abstand zwischen Links */
                width: 100%;
                text-align: center;
            }
            .navigation nav ul li a {
                padding: 12px 0; /* Größerer Klickbereich */
                display: block; /* Damit der Klickbereich die volle Breite hat */
                color: #ffffff;
                font-size: 1.1em;
            }
             .navigation nav ul li a:hover {
                background-color: rgba(135, 206, 250, 0.1); /* Leichter Hover-Effekt */
            }

            .hamburger-menu {
                display: flex !important;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 32px;
                height: 32px;
                cursor: pointer;
                background: none;
                position: relative;
                z-index: 1100;
                padding: 0;
            }

            .hamburger-menu span {
                display: block;
                width: 24px;
                height: 3px;
                background: #fff;
                border-radius: 2px;
                margin: 4px 0;
                transition: all 0.3s;
            }

            .hamburger-menu.active span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            .hamburger-menu.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger-menu.active span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
             .header-right {
                display: none; /* Auf Mobilgeräten ausblenden, um Platz für Hamburger zu schaffen */
                /* order: 2; */ /* Ordnung nicht mehr so relevant, wenn ausgeblendet */
                /* margin-top: 0; */
            }
            .cta-button {
                padding: 8px 15px; /* Kleinere Buttons auf Mobil */
                font-size: 0.9em;
            }
		}

        @media (max-width: 480px) { /* Sehr kleine Bildschirme */
            .logo-container {
                font-size: 1.2em;
                padding: 8px 12px;
            }
            .main-headline {
                font-size: clamp(2rem, 1rem + 6vw, 4.5rem); /* Beispiel: skaliert zw. 2rem (ca. 320px) und 4.5rem (ca. 1200px+) */
            }
            .sub-headline {
                font-size: clamp(0.9rem, 0.7rem + 1vw, 1.2rem);
            }
            .input-field-container input {
                font-size: 0.9em;
            }
            .try-ontext-button {
                padding: 10px 20px; /* Button-Größe leicht reduziert */
            }
            .header-right a:not(.cta-button) {
                font-size: 0.9em; /* Login-Text kleiner */
            }
            .navigation nav ul li a {
                font-size: 0.9em; /* Nav-Links kleiner */
            }
            /* Cover Slider Mobile */
            .cover-card {
                flex: 0 0 98vw;
                max-width: 420px;
                padding: 18px 4px;
                margin-right: 12px;
            }
             /* Testimonial Slider Mobile */
            .testimonial-card {
                flex: 0 0 80vw; /* Eine Karte nimmt fast die volle Breite ein */
            }
            .sticky-card h2 {
                font-size: clamp(1.5em, 5vw, 2em);
            }
            .card-icon-placeholder {
                flex: 0 0 80px;
                height: 80px;
            }
            .card-icon-placeholder svg {
                width: 45%; height: 45%;
            }
            .pricing-cards-container {
                gap: 20px;
            }
            .faq-question {
                font-size: clamp(1em, 4vw, 1.15em);
                padding: 15px 20px;
            }
            .faq-answer {
                font-size: clamp(0.9em, 3.5vw, 1em);
            }
            .faq-item.active .faq-answer {
                padding: 0 20px 15px 20px;
            }
        }

		/* Cover Beispiele Sektion */
		.cover-examples-section {
			padding-top: clamp(40px, 8vh, 80px);
			padding-bottom: clamp(40px, 8vh, 100px);
			text-align: center;
			background-color: #0F1115; /* Dunklerer, passenderer Hintergrund */
			overflow: hidden; /* Wichtig für den Slider-Container, falls dieser direkt die Sektion ist */
		}

		.cover-examples-section h2 {
			font-size: clamp(2em, 4vw, 3.5em);
			margin-bottom: 15px;
			color: #ffffff;
			margin-right: auto;
		}

		.cover-examples-section .section-subtitle {
			font-size: clamp(0.9rem, 0.7rem + 1vw, 1.2rem);
			color: #cccccc;
			margin-bottom: clamp(30px, 5vh, 60px);
			max-width: 700px;
			margin-left: auto;
			margin-right: auto;
		}

		.slider-container { /* Neuer Container für den Slider-Effekt */
			width: 100%;
			overflow: hidden;
			margin-top: clamp(30px, 5vh, 60px);
            padding-left: clamp(20px, 8vw, 120px); /* Padding hier, um Text oben zentriert zu halten */
            padding-right: clamp(20px, 8vw, 120px);
            box-sizing: border-box;
            cursor: grab; /* Zeigt an, dass der Bereich verschiebbar ist */
		}

		.cover-gallery {
			display: flex; /* Ändern zu Flexbox für horizontales Scrolling */
			width: calc(12 * (280px + 30px)); /* (Anzahl Originale + Duplikate) * (Kartenbreite + Gap) - Wird ggf. von JS überschrieben */
			/* animation: scrollAnimation 120s linear infinite; */ /* Entfernt für JS-Steuerung */
            position: relative; /* Für absolute Positionierung beim Loop-Reset */
            user-select: none; /* Verhindert Textauswahl beim Ziehen */
		}

		/* .slider-container:hover .cover-gallery { */ /* Entfernt, da JS Hover behandelt */
			/* animation-play-state: paused; */
		/* } */

		/* @keyframes scrollAnimation { */ /* Entfernt für JS-Steuerung */
			/* 0% {
				transform: translateX(0);
			}
			100% {
				transform: translateX(calc(-6 * (280px + 30px)));
			} */
		/* } */


		.cover-card {
			background-color: #181A21; /* Dunklerer Kartenhintergrund */
			border-radius: 10px;
			padding: 20px;
			text-align: left;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Etwas stärkerer Schatten für dunklen Hintergrund */
			color: #e0e0e0; /* Hellerer Text für dunkle Karten */
			flex: 0 0 280px; /* Feste Breite für Slider-Elemente */
			margin-right: 30px; /* Abstand zwischen den Karten */
            height: auto; /* Höhe automatisch anpassen */
		}

		.cover-card img {
			width: 100%;
			border-radius: 8px;
			margin-bottom: 15px;
			aspect-ratio: 2 / 3; /* Typisches Buchcover-Verhältnis */
			object-fit: cover;
			cursor: pointer; /* Zeigt an, dass das Bild klickbar ist */
            user-select: none; /* Verhindert Bildauswahl beim Ziehen */
            -webkit-user-drag: none; /* Verhindert Standard-Bild-Drag in Webkit */
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-drag: none;
		}

		.cover-card .genre {
			font-size: 1.1em;
			font-weight: bold;
			margin-bottom: 8px;
			color: #ffffff; /* Sicherstellen, dass Genre-Text weiß ist */
		}

		.cover-card .ai-notice {
			font-size: 0.9em;
			color: #b0b0b0; /* Hellgrau für den AI-Hinweis */
			display: flex;
			align-items: center;
		}

		.cover-card .ai-notice::before {
			content: '✨'; /* Funkel-Emoji */
			margin-right: 8px;
			font-size: 1.1em;
            color: #007bff; /* Passend zum Button-Blau */
		}

		/* Lightbox Stile */
		.lightbox {
			display: none; /* Standardmäßig versteckt */
			position: fixed; /* Wichtig für Overlay */
			top: 0;
			left: 0;
			width: 100vw; /* Volle Viewport-Breite */
			height: 100vh; /* Volle Viewport-Höhe */
			background-color: rgba(0, 0, 0, 0.88); /* Dunkleres Overlay, leicht höhere Deckkraft */
			z-index: 2000; /* Über allem anderen */
			display: flex; /* Wird von JS auf 'flex' gesetzt zum Anzeigen, hier schon mal als Zielzustand */
			justify-content: center;
			align-items: center;
			padding: 20px;
            box-sizing: border-box;
            opacity: 0; /* Für Fade-In-Effekt */
            visibility: hidden; /* Für Fade-In-Effekt und Zugänglichkeit */
            transition: opacity 0.3s ease, visibility 0.3s ease; /* Fade-In Transition */
		}

        .lightbox.active {
            display: flex; /* Sicherstellen, dass es angezeigt wird, wenn aktiv */
            opacity: 1;
            visibility: visible;
        }

		.lightbox img {
			max-width: 90%;
			max-height: 90%;
			border-radius: 5px;
			box-shadow: 0 0 35px rgba(0,0,0,0.6);
            transform: scale(0.8); /* Start für Skalierungs-Effekt */
            transition: transform 0.3s ease; /* Skalierungs-Transition */
		}

        .lightbox.active img {
            transform: scale(1);
        }

		.lightbox .close-lightbox {
			position: absolute;
			top: 20px;
			right: 20px;
			font-size: 2em;
			color: #ffffff;
			background: none;
			border: none;
			padding: 0;
			cursor: pointer;
		}

		/* Sticky Stack Section */
		.sticky-stack-section {
			padding: clamp(40px, 10vh, 100px) clamp(20px, 8vw, 120px);
			/* background-color: #08090c; */ /* Optional: leicht anderer Hintergrund für diese Sektion */
            /* overflow: hidden; */ /* Kann nötig sein, wenn Ränder der Karten Probleme machen */
		}

		.sticky-stack-container {
			position: relative; /* Bezugspunkt für z-index der Karten, falls nicht body */
            /* min-height: 200vh; */ /* Muss hoch genug sein, damit alle Sticky-Effekte greifen können, abhängig von Kartenanzahl und top-Offset */
		}

		.sticky-card {
			position: sticky;
			top: 8rem; 
			min-height: 60vh; 
			padding: clamp(30px, 4vw, 50px); /* Etwas mehr Padding */
            /* background-color: rgba(30, 35, 50, 0.7); */ /* Alt */
            background: 
                radial-gradient(ellipse at 30% 40%, rgba(80, 90, 120, 0.45) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 60%, rgba(60, 70, 100, 0.35) 0%, transparent 70%),
                rgba(28, 32, 48, 0.85); /* Grundfarbe + zwei subtile radiale Highlights */
			border-radius: 20px; /* Größerer Radius */
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(80, 120, 200, 0.15) inset; /* Angepasster Schatten, innerer Schein */
			backdrop-filter: blur(12px); 
			-webkit-backdrop-filter: blur(12px);
			margin-bottom: 10vh; /* Abstand, der bestimmt, wann die nächste Karte die aktuelle überlappt */
            /* transform: scale(0.95); */ /* Start-Skalierung für nicht-oberste Karten */
            /* transition: transform 0.3s ease-out, opacity 0.3s ease-out; */
            /* opacity: 0.8; */
            color: #e0e0e0;
            will-change: transform; /* Performance-Hinweis */
		}

        /* Spezifische z-index und optionale Skalierung beim "aktiv" werden (oberste Karte) */
        .sticky-card:nth-child(1) { z-index: 1; }
        .sticky-card:nth-child(2) { z-index: 2; top: calc(8rem + 2vh); /* Leicht versetzt, um Stapel zu zeigen */}
        .sticky-card:nth-child(3) { z-index: 3; top: calc(8rem + 4vh); }
        /* Fügen Sie hier weitere Regeln für mehr Karten hinzu */

        /* Wenn eine Karte "aktiv" wird (z.B. durch Scroll-Trigger JS, hier vereinfacht) */
        /* .sticky-card.is-active {
            transform: scale(1);
            opacity: 1;
        } */

		.sticky-card h2 {
			font-size: clamp(1.8em, 3vw, 2.8em);
			color: #ffffff;
			margin-bottom: 15px;
            text-align: left; /* Oder center */
		}

		.sticky-card hr {
			border: 0;
			height: 1px;
			background-color: rgba(255, 255, 255, 0.1); /* Noch dezenter */
			margin-bottom: 30px;
            width: 80%; /* Nicht volle Breite */
            margin-left: auto; /* Zentrieren, falls text-align: center für h2 verwendet wird */
            margin-right: auto;
		}

		.card-content-grid {
			display: flex;
			align-items: center; /* Vertikal zentrieren für besseren Look mit großem Icon */
			gap: clamp(30px, 5vw, 50px); /* Größerer Gap */
		}

		.card-icon-placeholder {
			flex: 0 0 clamp(120px, 20vw, 220px); /* Deutlich größer, responsiv */
			height: clamp(120px, 20vw, 220px);
			/* background-color: rgba(135, 206, 250, 0.15); */ /* Entfernt, da Icon direkt platziert wird */
			border-radius: 25px; /* Passend zum größeren Icon, falls doch ein Rahmen gewünscht ist */
			display: flex;
			justify-content: center;
			align-items: center;
			color: #d0eaff; /* Helleres Blau für SVG Stroke */
            /* box-shadow: 0 0 20px rgba(135, 206, 250, 0.25); */ /* Entfernt oder angepasst */
            padding: 15px; /* Innenabstand, damit SVG nicht an den Rand stößt, falls BG-Farbe wieder aktiv */
            box-sizing: border-box;
		}

        .card-icon-placeholder svg {
            width: 100%; /* SVG füllt den vergrößerten Placeholder */
            height: 100%;
            stroke-width: 1; /* Noch dünnere Linien für größeren Maßstab */
        }

		.card-description {
			flex: 1;
			font-size: clamp(0.9em, 1.2vw, 1.05em); /* Leicht angepasste Schriftgröße */
			line-height: 1.75; /* Etwas mehr Zeilenabstand */
		}

        .card-description ul {
            list-style-type: none; /* Standard-Listenpunkte entfernen */
            padding-left: 0; /* Einrückung entfernen */
            margin-top: 15px;
        }

        .card-description ul li {
            padding-left: 1.8em; /* Platz für Custom Bullet */
            position: relative;
            margin-bottom: 10px; /* Abstand zwischen Listenelementen */
        }

        .card-description ul li::before {
            content: '✨'; /* Funkel-Emoji als Bullet Point */
            position: absolute;
            left: 0;
            top: -2px; /* Feinjustierung der vertikalen Position */
            color: #87CEFA; /* Hellblau, passend zum Icon-Schein */
            font-size: 1.1em;
        }

		/* Responsive Anpassungen für Sticky Stack */
		@media (max-width: 768px) {
			.sticky-card {
				top: 6rem; /* Kleinerer Top-Abstand auf Mobilgeräten */
                margin-bottom: 5vh;
                padding: clamp(20px, 3vw, 30px);
			}
            .sticky-card:nth-child(2) { top: calc(6rem + 1.5vh); } /* Reduzierter Versatz */
            .sticky-card:nth-child(3) { top: calc(6rem + 3vh); } /* Reduzierter Versatz */

			.card-content-grid {
				flex-direction: column;
				align-items: center;
                text-align: center;
			}
            .sticky-card h2 {
                text-align: center;
                font-size: clamp(1.6em, 4vw, 2.4em);
            }
            .card-icon-placeholder {
                margin-bottom: 20px;
                flex: 0 0 90px; /* Leicht angepasst */
                height: 90px;
            }
            /* Slider Cards Anpassungen für Tablet */
            .cover-card {
                flex: 0 0 40vw; /* Mehrere Karten sichtbar, aber breiter als Desktop-Minimum */
            }
            .testimonial-card {
                flex: 0 0 clamp(280px, 60vw, 320px);
            }
            /* Pricing Card Titel kleiner */
            .pricing-card h3 {
                font-size: clamp(1.3em, 2vw, 1.8em);
            }
            .pricing-card .price {
                font-size: clamp(2em, 4vw, 3em);
            }
		}

		/* Testimonial Section */
		.testimonial-section {
			padding: clamp(60px, 12vh, 120px) 0; /* Oben/Unten Padding, kein seitliches, da Slider volle Breite nutzen kann */
			text-align: center;
			background-color: #0B0D12; /* Etwas dunklerer Ton als der Sticky Stack Sektionshintergrund */
			overflow: hidden; /* Wichtig für den Slider */
		}

		.testimonial-section .section-title {
			font-size: clamp(2em, 4vw, 3.2em);
			margin-bottom: 10px;
			color: #ffffff;
		}
        .testimonial-section .section-title .highlight {
            color: #87CEFA; /* Passend zum Logo-Akzent */
        }

		.testimonial-section .section-subtitle {
			font-size: clamp(1em, 1.5vw, 1.2em);
			color: #b0b8c0;
			margin-bottom: clamp(40px, 6vh, 70px);
			max-width: 650px;
			margin-left: auto;
			margin-right: auto;
            padding: 0 20px; /* Kleines Padding für den Untertitel auf schmalen Screens */
		}

		.testimonial-slider-container {
			width: 100%;
			overflow: hidden;
            cursor: grab;
		}

		.testimonial-gallery {
			display: flex;
            position: relative; 
            user-select: none; 
		}

		.testimonial-card {
			flex: 0 0 clamp(300px, 80vw, 380px); /* Breite der Karten, responsiv */
			min-height: 280px; /* Mindesthöhe */
			background: linear-gradient(145deg, rgba(35, 40, 60, 0.8), rgba(25, 30, 45, 0.9));
			border: 1px solid rgba(255, 255, 255, 0.08);
			border-radius: 18px;
			padding: 30px clamp(25px, 4vw, 35px);
			margin-right: 30px; /* Abstand zwischen den Karten */
			box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.05);
			color: #c5d0e0;
			text-align: left;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
            transition: transform 0.3s ease-out;
		}
        .testimonial-slider-container:hover .testimonial-card:hover {
            transform: translateY(-5px) scale(1.02);
        }


		.testimonial-card .quote-icon {
			display: block;
			font-size: 3.5em;
			color: #607090; /* Dezente Akzentfarbe */
			line-height: 1;
			margin-bottom: 15px;
            font-family: Georgia, serif; /* Serif für klassisches Zitat-Feeling */
		}

		.testimonial-card .quote {
			font-size: clamp(1em, 1.5vw, 1.1em);
			line-height: 1.65;
			margin-bottom: 20px;
			font-style: italic;
			flex-grow: 1; /* Nimmt verfügbaren Platz ein */
		}

		.testimonial-card .author {
			font-size: 1.05em;
			font-weight: bold;
			color: #e0e8f0;
			margin-bottom: 3px;
		}

		.testimonial-card .role {
			font-size: 0.85em;
			color: #8090a8;
		}

		/* Pricing Section */
		.pricing-section {
			padding: clamp(60px, 12vh, 120px) clamp(20px, 5vw, 80px);
			text-align: center;
			/* background-color: #0F1115; */ /* Kann gleiche Farbe wie Testimonials haben oder leicht variieren */
		}

		.pricing-section .section-title {
			font-size: clamp(2em, 4vw, 3.2em);
			margin-bottom: 10px;
			color: #ffffff;
		}

		.pricing-section .section-title .highlight {
			color: #87CEFA; 
		}

		.pricing-section .section-subtitle {
			font-size: clamp(1em, 1.5vw, 1.2em);
			color: #b0b8c0;
			margin-bottom: clamp(50px, 8vh, 80px);
			max-width: 700px;
			margin-left: auto;
			margin-right: auto;
		}

		.pricing-cards-container {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: clamp(25px, 4vw, 40px);
			align-items: stretch; /* Sorgt dafür, dass Karten gleiche Höhe haben, wenn gewünscht */
		}

		.pricing-card {
			background: linear-gradient(145deg, rgba(38, 45, 68, 0.85), rgba(28, 32, 50, 0.95));
			border: 1px solid rgba(255, 255, 255, 0.1);
			border-radius: 18px;
			padding: 35px clamp(25px, 4vw, 40px);
			box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.1);
			text-align: left;
			display: flex;
			flex-direction: column;
            transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
            position: relative; /* Für das Badge */
            overflow: hidden; /* Für das Badge */
		}

		.pricing-card:hover {
			transform: translateY(-8px) scale(1.03);
			box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 3px 8px rgba(0,0,0,0.15);
		}

		.pricing-card.popular {
			border-color: #87CEFA;
			box-shadow: 0 10px 35px rgba(135, 206, 250, 0.2), 0 0 20px rgba(135, 206, 250, 0.1);
		}
        .pricing-card.popular:hover {
            box-shadow: 0 15px 45px rgba(135, 206, 250, 0.3), 0 0 30px rgba(135, 206, 250, 0.2);
        }

        .pricing-card .badge {
            position: absolute;
            top: -1px; 
            right: -1px;
            background-color: #87CEFA;
            color: #0c0c0f;
            padding: 6px 15px;
            font-size: 0.8em;
            font-weight: bold;
            border-top-right-radius: 18px;
            border-bottom-left-radius: 18px;
            z-index: 1; /* Damit es über dem Rand der Karte liegt, falls überlappend */
        }

		.pricing-card h3 {
			font-size: clamp(1.5em, 2.5vw, 2em);
			color: #ffffff;
			margin-bottom: 15px;
		}

		.pricing-card .price-container {
			margin-bottom: 32px;
		}

		.pricing-card .original-price {
			display: block;
			font-size: clamp(1em, 1.8vw, 1.3em);
			color: #708090; /* Schiefergrau */
			text-decoration: line-through;
			margin-bottom: -10px; /* Näher an den rabattierten Preis rücken */
            opacity: 0.8;
		}

		.pricing-card .price {
			font-size: clamp(2.2em, 5vw, 3.5em);
			font-weight: bold;
			color: #ffffff;
			display: flex;
			align-items: baseline;
			gap: 0.35em;
			line-height: 1.1;
		}

		.pricing-card .price .currency {
			font-size: 0.5em;
			font-weight: normal;
			color: #a0b0c0;
			vertical-align: super;
			margin-left: 6px;
			margin-right: 10px;
		}
        .pricing-card .price .price-tag {
            font-size: 0.32em;
            font-weight: normal;
            color: #87CEFA;
            text-transform: uppercase;
            display: block;
            margin-top: 0.2em;
            margin-left: 8px;
            letter-spacing: 0.04em;
        }

		.features-list {
			list-style: none;
			padding: 0;
			margin: 0 0 25px 0;
			/* flex-grow: 1; */ /* Nicht mehr unbedingt nötig, wenn Buttons weg sind, aber schadet nicht */
		}

		.features-list li {
			margin-bottom: 12px;
			font-size: clamp(0.9em, 1.2vw, 1em);
			color: #c5d0e0;
			display: flex;
			align-items: flex-start; /* Für mehrzeilige Listenelemente */
		}

		.features-list .icon {
			margin-right: 10px;
			font-size: 1.1em;
			line-height: 1.3; /* Passt vertikale Ausrichtung an Text an */
		}

		.pricing-card .ideal-for {
			font-size: 0.85em;
			color: #90a0b0;
			margin-bottom: 25px;
			font-style: italic;
		}

		.cta-button-pricing {
			display: block;
			width: 100%;
			padding: 14px 20px;
			text-align: center;
			text-decoration: none;
			border-radius: 8px;
			font-weight: bold;
			font-size: 1em;
			color: #ffffff;
			background-color: #007bff;
			border: 1px solid #007bff;
            transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
            margin-top: auto; /* Wichtig, um Button nach unten zu drücken, wenn flex-grow auf features-list wirkt */
		}
        .cta-button-pricing:hover {
            background-color: #0056b3;
            border-color: #0056b3;
            transform: scale(1.02);
        }

        .pricing-card.popular .cta-button-pricing.primary {
            background-color: #87CEFA;
            border-color: #87CEFA;
            color: #0c0c0f;
        }
        .pricing-card.popular .cta-button-pricing.primary:hover {
            background-color: #6cb2d8;
            border-color: #6cb2d8;
        }

		.central-cta-container {
			margin-top: clamp(30px, 5vh, 50px);
			text-align: center; /* Zentriert den Button, falls er nicht volle Breite hat */
		}

		.cta-button-pricing.central {
			display: inline-block; /* Damit text-align vom Container greift */
			width: auto; /* Breite passt sich dem Inhalt an */
			max-width: 450px; /* Maximale Breite, um nicht zu riesig zu werden */
			padding: 16px 35px; /* Etwas größeres Padding für mehr Präsenz */
			font-size: 1.1em;
			/* Erbt die meisten Stile von .cta-button-pricing, aber spezifische Anpassungen hier */
            background-color: #87CEFA; /* Helleres Blau, passend zum Popular-Paket-Akzent */
            border-color: #87CEFA;
            color: #0c0c0f; /* Dunkler Text für Kontrast */
		}
        .cta-button-pricing.central:hover {
            background-color: #6cb2d8;
            border-color: #6cb2d8;
            color: #0c0c0f;
        }

		/* FAQ Section */
		.faq-section {
			padding: clamp(60px, 12vh, 120px) clamp(20px, 8vw, 120px);
			/* background-color: #0F1115; */ /* Ähnlich wie Pricing oder leicht anders */
		}

		.faq-section .section-title {
			text-align: center;
			font-size: clamp(2em, 4vw, 3.2em);
			margin-bottom: clamp(30px, 6vh, 60px);
			color: #ffffff;
		}
        .faq-section .section-title .highlight {
            color: #87CEFA;
        }

		.faq-container {
			max-width: 800px; /* Begrenzt die Breite der FAQ-Liste */
			margin: 0 auto;
		}

		.faq-item {
			background-color: rgba(30, 35, 50, 0.6);
			border: 1px solid rgba(255, 255, 255, 0.08);
			border-radius: 10px;
			margin-bottom: 15px;
			overflow: hidden; /* Wichtig für max-height Transition */
		}

		.faq-question {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			padding: 20px 25px;
			text-align: left;
			background-color: transparent; /* Oder leichte Akzentfarbe beim Hovern */
			border: none;
			color: #e0e8f0;
			font-size: clamp(1.1em, 1.6vw, 1.3em);
			font-weight: 600;
			cursor: pointer;
            transition: background-color 0.2s ease;
		}

        .faq-question:hover {
            background-color: rgba(40, 45, 65, 0.8);
        }

		.faq-icon {
			display: inline-block;
			width: 12px;
			height: 12px;
			border-left: 2px solid #87CEFA;
			border-bottom: 2px solid #87CEFA;
			transform: rotate(-45deg);
			transition: transform 0.3s ease;
            margin-left: 15px;
		}

		.faq-item.active .faq-icon {
			transform: rotate(135deg);
            margin-top: -5px; /* Kleine Korrektur für gedrehtes Icon */
		}

		.faq-answer {
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.4s ease-out, padding 0.3s ease-out; /* Sanfter Übergang */
			color: #b0b8c0;
			font-size: clamp(0.95em, 1.3vw, 1.05em);
			line-height: 1.7;
		}

		.faq-item.active .faq-answer {
			max-height: 500px; /* Ausreichend Höhe für den Inhalt, ggf. anpassen */
            padding: 0px 25px 20px 25px; /* Padding nur wenn aktiv */
		}

        .faq-answer p {
            margin: 0;
        }

        img, picture, video, canvas, svg {
            display: block;
            max-width: 100%;
        }
        /* Entferne Basis-Resets von spezifischeren Elementen, falls sie dort explizit anders sein sollen */
        /* z.B. wenn ul/li doch margin/padding haben sollen, muss das später wieder gesetzt werden */
        ul, ol {
            list-style: none; /* Standard Listenpunkte entfernen, da wir oft custom machen */
        }

        .hamburger-menu {
            display: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1002; /* Über dem Header-Hintergrund, aber unter mobilem Menü, falls es sich überlappt */
        }
        .hamburger-menu .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
        }

		.logo-container {
			background-color: #87CEFA; /* Hellblau */
        }

        .site-footer {
            background: #10131a;
            border-top: 1px solid rgba(255,255,255,0.07);
            padding: 32px 0 24px 0;
            margin-top: 60px;
            text-align: center;
        }
        .footer-container {
            max-width: 100vw;
            margin: 0 auto;
            color: #e0e4ef;
            font-size: 1em;
            letter-spacing: 0.02em;
        }
        .site-footer a {
            color: #87CEFA;
            text-decoration: none;
            margin: 0 12px;
            transition: color 0.2s;
            font-weight: 500;
        }
        .site-footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .site-footer {
                padding: 22px 0 16px 0;
                font-size: 0.95em;
            }
            .footer-container {
                font-size: 0.95em;
            }
            .pricing-card .original-price {
                margin-bottom: 8px;
                display: block;
            }
            .pricing-card .price-container {
                margin-bottom: 36px;
            }
        }

        @media (max-width: 700px) {
            .input-cta-container {
                flex-direction: column;
                align-items: stretch;
                gap: 14px;
            }
            .input-field-container,
            .try-ontext-button {
                max-width: 100%;
                width: 100%;
                border-radius: 7px;
            }
            .try-ontext-button {
                border-radius: 7px;
            }
        }

        @media (max-width: 1200px) {
            .left-column {
                min-width: 0;
                max-width: 100%;
            }
            .input-field-container {
                min-width: 220px;
            }
        }

#aboveTheFoldEmailForm {
    scroll-margin-top: 200px;
}

.hamburger-menu {
    display: none;
    /* restliche Styles bleiben */
}

@media (max-width: 992px) {
    .hamburger-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        cursor: pointer;
        background: none;
        position: relative;
        z-index: 1100;
        padding: 0;
    }
    .hamburger-menu span {
        display: block;
        width: 24px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        margin: 4px 0;
        transition: all 0.3s;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Vergleichstabelle CSS */
.vergleich-section {
    padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 80px);
    text-align: center;
}

.vergleich-section .section-title {
    font-size: clamp(2em, 4vw, 3.2em);
    margin-bottom: clamp(40px, 6vh, 70px);
    color: #ffffff;
}

.vergleich-table-wrapper {
    max-width: 1100px; /* Increased width */
    margin: 0 auto;
    overflow-x: auto;
    background: linear-gradient(145deg, rgba(38, 45, 68, 0.5), rgba(28, 32, 50, 0.7)); /* Lighter gradient background */
    border-radius: 12px;
    padding: 10px; /* Add some padding around the table itself */
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.vergleich-table {
    width: 100%;
    border-collapse: separate; /* Changed for modern look, allows border-spacing */
    border-spacing: 0; /* Reset spacing, control with padding */
    color: #c5d0e0;
    text-align: left;
}

.vergleich-table th,
.vergleich-table td {
    padding: 20px 25px; /* Increased padding for more space */
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vergleich-table th {
    background-color: transparent;
    font-size: clamp(1em, 1.4vw, 1.2em); /* Slightly larger header font */
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom-width: 2px;
    border-bottom-color: rgba(135, 206, 250, 0.5); /* Accent color for header bottom border */
}

.vergleich-table td {
    font-size: clamp(0.9em, 1.2vw, 1.05em); /* Slightly larger cell font */
}

/* Styling for indicators */
.vorteil,
.nachteil,
.neutral {
    margin-right: 8px;
    font-weight: bold;
}

.vorteil {
    color: #77dd77; /* Green for benefits */
}

.nachteil {
    color: #ff6961; /* Red for drawbacks */
}

.neutral {
    color: #d3d3d3; /* Light grey for neutral/conditional */
}

/* First column - Feature names */
.vergleich-table td:first-child {
    font-weight: 500;
    color: #e0e8f0;
}

/* Subsequent columns - Values */
.vergleich-table td:not(:first-child) {
    text-align: center;
    color: #b0b8c0;
}

/* Highlight Illustruno column (2nd data column) */
.vergleich-table th:nth-child(2),
.vergleich-table td:nth-child(2) {
    background-color: rgba(135, 206, 250, 0.05); /* Very subtle blueish background */
    /* border-left: 2px solid rgba(135, 206, 250, 0.2); */ /* Optional side border */
    /* border-right: 2px solid rgba(135, 206, 250, 0.2); */
}
.vergleich-table td:nth-child(2) .vorteil {
    color: #87CEFA; /* Brighter blue for Illustruno benefits */
}
.vergleich-table td:nth-child(2) {
    color: #d0eaff; /* Brighter text for Illustruno values */
    font-weight: 500;
}

.vergleich-table tbody tr:last-child td {
    border-bottom: none;
}

.vergleich-table tbody tr:hover {
    background-color: transparent; /* Keep hover minimal */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vergleich-section .section-title {
        font-size: clamp(1.6em, 5vw, 2.4em);
    }
    .vergleich-table th,
    .vergleich-table td {
        padding: 15px 10px;
        font-size: 0.9em;
    }
    .vergleich-table th {
        font-size: 0.95em;
    }
    .vergleich-table-wrapper {
        border-radius: 8px;
        background: rgba(28, 32, 50, 0.7); /* Slightly darker on mobile if needed */
        padding: 5px;
    }
}

/* Sticky Opt-In Footer */
.sticky-optin-footer {
    position: fixed;
    bottom: -100px; /* Start outside viewport for slide-in animation */
    left: 0;
    width: 100%;
    height: auto; /* Auto height based on content, min-height will be set */
    min-height: 65px;
    background-color: #1a2a4f; /* Match header gradient start or a subtle dark color */
    border-top: 1px solid rgba(135, 206, 250, 0.2);
    box-shadow: 0 -2px 15px rgba(0,0,0,0.25);
    padding: 10px clamp(20px, 5vw, 80px);
    display: flex;
    justify-content: center; /* Changed from space-between */
    align-items: center;
    gap: 30px; /* Added gap for spacing between text and form */
    z-index: 999; /* Below header but above most content */
    opacity: 0;
    visibility: hidden;
    transition: bottom 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s ease-out; /* Smooth transitions */
    box-sizing: border-box;
}

.sticky-optin-footer.visible {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.sticky-footer-text {
    color: #e0e4ef;
    font-size: clamp(0.85em, 1.5vw, 1em);
    margin-right: 0; /* Removed margin-right, gap will handle spacing */
    text-align: right; /* Align text to the right of its container */
}

.sticky-footer-form {
    display: flex;
    align-items: center;
    gap: 10px;
    /* flex-shrink: 0; Ensure form does not shrink excessively */
}

.sticky-footer-form input[type="email"] {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 5px;
    font-size: 0.9em;
    min-width: 220px;
    outline: none;
    transition: background-color 0.2s, border-color 0.2s;
}

.sticky-footer-form input[type="email"]::placeholder {
    color: #a0a0b0;
}

.sticky-footer-form input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #87CEFA;
}

.sticky-footer-button {
    padding: 10px 20px;
    background-color: #87CEFA;
    color: #0c0c0f;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.sticky-footer-button:hover {
    background-color: #6cb2d8;
}

/* Responsive adjustments for Sticky Footer */
@media (max-width: 768px) {
    .sticky-optin-footer {
        display: grid; /* Use Grid for mobile layout */
        grid-template-columns: 1fr auto; /* Text takes space, X is auto */
        grid-template-rows: auto auto auto; /* Rows for Text+X, Form, Counter */
        grid-template-areas:
            "text close"
            "form form"
            "counter counter";
        padding: 8px 12px; /* Reduced padding */
        gap: 6px 10px; /* row-gap column-gap */
        align-items: center;
        min-height: 0; /* Allow height to shrink with content */
    }

    .close-sticky-footer {
        grid-area: close;
        position: static; /* Override absolute positioning */
        font-size: 18px; /* Smaller X */
        padding: 0;
        margin: 0;
        align-self: center; /* Vertically center X with text */
    }

    .sticky-footer-text {
        grid-area: text;
        margin-bottom: 0; /* Gap handles spacing */
        font-size: clamp(0.7em, 1.8vw, 0.8em); /* Slightly larger font */
        padding: 0; /* Reset padding from previous rules */
        text-align: center; /* Centered text */
    }

    .sticky-footer-form {
        grid-area: form;
        display: flex;
        flex-direction: row; /* Field and button side-by-side */
        width: 100%;
        gap: 8px; /* Space between field and button */
        margin-bottom: 0; /* Gap handles spacing */
    }

    .sticky-footer-form input[type="email"] {
        flex-grow: 1; /* Input field takes available space */
        min-width: 0; /* Allow shrinking */
        padding: 7px 10px; /* Smaller padding */
        font-size: 0.75em; /* Smaller font */
        margin-bottom: 0;
    }

    .sticky-footer-button {
        flex-shrink: 0; /* Prevent button from shrinking */
        padding: 7px 12px; /* Smaller padding */
        font-size: 0.75em; /* Smaller font */
        width: auto; /* Adjust width to content */
    }

    .sticky-optin-footer .optin-counter {
        grid-area: counter;
        font-size: 0.6em;
        margin-top: 0; /* Gap handles spacing */
        text-align: center; /* Center counter text */
        padding-bottom: 10px; /* Tiny padding at the bottom */
		margin-bottom: 20px;
    }
}

#aboveTheFoldCounter {
	margin-bottom: 20px;
}

/* Opt-In Counter Text */
.optin-counter {
    margin-top: 15px; /* Erhöhter Abstand zum Formular */
    font-size: 0.75em; /* Kleinere Schrift */
    color: #a0b0c0;   /* Dezente Farbe */
    text-align: left; /* Standard Ausrichtung, wird ggf. von Elternelementen beeinflusst */
}

.sticky-optin-footer .optin-counter {
    text-align: center; /* Im Sticky Footer zentriert unter dem Formular auf Mobile */
    width: 100%; /* Volle Breite im Mobile Layout des Footers */
    margin-top: 5px; /* Weniger Abstand im Sticky Footer */
    font-size: 0.7em;
}

@media (min-width: 769px) { /* Für Desktop-Layout des Sticky Footers */
    .sticky-optin-footer .optin-counter {
        text-align: right; /* Rechtsbündig neben dem Formular */
        width: auto; /* Breite automatisch anpassen */
        margin-top: 0;
        margin-left: 15px; /* Abstand zum Formular */
    }
}

/* --- Sticky Stack Modern Section --- */
.sticky-stack-modern-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  background: linear-gradient(90deg, #1a2a4f 0%, #232946 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(20,30,60,0.18);
  margin: 60px auto 60px auto;
  max-width: 1200px;
  padding: 48px 32px;
  position: relative;
}
.sticky-stack-modern-box {
  flex: 1 1 0;
  background: rgba(255,255,255,0.04);
  border-radius: 1.2rem;
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(20,30,60,0.08);
  min-width: 0;
}
.sticky-stack-modern-left {
  border: 2px solid #87CEFA;
  box-shadow: 0 4px 24px rgba(135,206,250,0.08);
}
.sticky-stack-modern-right {
  border: 2px solid #f7c873;
  box-shadow: 0 4px 24px rgba(247,200,115,0.08);
}
.sticky-stack-modern-divider {
  width: 3px;
  background: linear-gradient(180deg, #87CEFA 0%, #f7c873 100%);
  border-radius: 2px;
  margin: 0 24px;
}
.modern-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sticky-stack-modern-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.01em;
}
.modern-lead {
  font-size: 1.15rem;
  color: #e0e6f7;
  margin-bottom: 22px;
  font-weight: 400;
  line-height: 1.5;
}
.modern-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.modern-feature {
  background: rgba(255,255,255,0.07);
  border-radius: 0.7rem;
  padding: 12px 18px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(20,30,60,0.04);
}
.sticky-stack-modern-left .modern-feature strong {
  color: #87CEFA;
}
.sticky-stack-modern-right .modern-feature {
  border-left: 4px solid #f7c873;
}
.sticky-stack-modern-left .modern-feature {
  border-left: 4px solid #87CEFA;
}
.sticky-stack-modern-right .modern-feature strong {
  color: #f7c873;
}
@media (max-width: 900px) {
  .sticky-stack-modern-container {
    flex-direction: column;
    gap: 32px;
    padding: 32px 8px;
  }
  .sticky-stack-modern-divider {
    width: 100%;
    height: 3px;
    margin: 32px 0;
    background: linear-gradient(90deg, #87CEFA 0%, #f7c873 100%);
  }
}
@media (max-width: 600px) {
  .sticky-stack-modern-container {
    padding: 16px 0;
    border-radius: 0.7rem;
  }
  .sticky-stack-modern-box {
    padding: 18px 8px 18px 8px;
    border-radius: 0.7rem;
  }
  .sticky-stack-modern-box h2 {
    font-size: 1.2rem;
  }
  .modern-lead {
    font-size: 1rem;
  }
  .modern-feature {
    font-size: 0.98rem;
    padding: 10px 10px;
  }
}