    /* ================= INTER ================= */

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ================= PLAYFAIR ================= */

@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: light;
    /* Deine gewünschten Farben für den Verlauf */
    --primary-blue: #1e40af;   /* Das ursprüngliche Blau */
    --primary: #969696;        /* Dein gewünschtes Grau (überschreibt Blau dort, wo nur --primary steht) */

	--primary-blue: #1e40af;
	--primary: #0f766e;

    --primary-dark: #1e3a8a;
    --accent: #60a5fa;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;       /* Sehr helles Blau-Grau */
    --bg-alt: #f1f5f9;         /* Etwas dunkler für Zebra-Effekt */
    
    --text: #0f172a;
    --gray: #64748b;
}

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

html {
    font-size: 13px; /* War 16px → jetzt ca. 20% kleiner */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}



body {
    -webkit-text-size-adjust: 100%; 
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;	   
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;	
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
} /* <--- Diese Klammer hat gefehlt! */

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

    /* ================= HERO ================= */

    header.hero {
	/*
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
		background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary) 100%); 

	*/


background: radial-gradient(ellipse at 50% 40%,
        #60a5fa 0%,
        #3b82f6 30%,
        #1e40af 55%,
        #1e293b 80%,
        #0f172a 100%
    );

		

        color: white;
        text-align: center;
        padding: 8rem 1rem 6rem;
    }

    .hero-v1 h1 {
        font-size: clamp(2.8rem, 8vw, 5.5rem);
        margin-bottom: 1rem;
    }

    .hero h1 {
		/* Brave-stabilisierte Größe
			font-size: clamp(2.2rem, calc(1rem + 7vw), 5.5rem);  
		*/
		font-size: clamp(1.8rem, 5vw + 0.5rem, 4.4rem); /* War 2.2rem bis 5.5rem */
		line-height: 1.1;
		hyphens: auto;
        -webkit-hyphens: auto;
        overflow-wrap: anywhere;
        line-height: 1.1;
        letter-spacing: -0.02em;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
		max-height: 999999px; /* Verhindert Font-Boosting */
    }
	
	.hero h2 {
		font-size: clamp(1.2rem, 3vw + 0.5rem, 2.4rem); /* Neu: H2 kleiner als H1 */
		line-height: 1.2;
		margin-bottom: 1rem;
		margin-top: 1rem;
		font-weight: 600;
	}
	


    .hero p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        opacity: 0.95;
    }

    .cta-btn {
        display: inline-block;
        background: white;
        color: var(--primary);
        font-size: 1.05rem;
        font-weight: 600;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        transition: all 0.3s ease;
    }

    .cta-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

    /* ================= TIMELINE ================= */

    section.timeline {
        padding: 5rem 0;
        text-align: center;
    }

	.timeline-title {
		font-size: clamp(1.2rem, 3vw + 0.5rem, 2.4rem); /* Neu: H2 kleiner als H1 */
		line-height: 1.2;

		margin-bottom: 1rem;
	}

	.timeline-intro {
		font-size: clamp(0.95rem, 2vw + 0.3rem, 1.1rem); /* Jetzt auch responsiv */
		color: var(--gray);
		max-width: 700px;
		margin: 0 auto 3rem;
	}

    .cards {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        margin-top: 3rem;
		background-color: var(--bg-light);
    }

	.card {
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		background: white; 
		background-color: var(--bg-light);
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sanfter Schatten für Tiefe */
		transition: transform 0.3s ease;
	}

    .card.visible {
        opacity: 1;
        transform: translateY(0);
    }



    .card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .card:hover img {
        transform: scale(1.08);
    }

    .card-content {
        padding: 2rem 1.8rem;
		background-color: var(--bg-light);
    }

    .card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
		margin-left: 1rem;
        color: var(--primary);
    }

@media (min-width: 900px) {
    .card {
        display: flex;
        flex-direction: row; /* Standard: Bilder links, Text rechts */
        align-items: center;
        text-align: left;
        background-color: var(--bg-light);
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 4rem;
    }

    .card .marquee-section {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid #e2e8f0;
    }

    .card .card-content {
        flex: 0 0 350px;
        padding: 3rem;
    }

    /* Wir flippen nur Gestern und Morgen (Zick-Zack), 
       aber HEUTE lassen wir auf 'row' (Bilder links) */
    
    .card-flip {
        flex-direction: row-reverse !important;
    }
    
    .card-flip .marquee-section {
        border-right: none;
        border-left: 1px solid #e2e8f0;
    }
}
    /* ================= BENEFITS ================= */

    .benefits {

        padding: 5rem 0;
        text-align: center;
		background: var(--bg-light); 
		box-shadow: 0 2px 10px rgba(0,0,0,0.03);		
    }

    .benefits ul {
        list-style: none;
        max-width: 800px;
        margin: 2.5rem auto;
        font-size: 1rem; /* War 1.25rem */
        overflow: hidden;
    }

    .benefits li {
        margin: 1.5rem 0;
        padding: 1.2rem 1.5rem 1.2rem 3.5rem;
        position: relative;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .benefits li:nth-child(odd) {
        transform: translateX(-100px);
    }

    .benefits li:nth-child(even) {
        transform: translateX(100px);
    }

    .benefits li.slide-in {
        opacity: 1;
        transform: translateX(0);
    }

    .benefits li::before {
        content: "→";
        color: var(--primary);
        position: absolute;
        left: 1.2rem;
        font-weight: bold;
        font-size: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
	
	.benefits-highlight {
		font-size: 1.1rem;
		font-weight: 600;
		margin: 2rem 0;
	}

	.cta-btn-primary {
		background: var(--primary);
		color: white;
	}

	.preview-image {
		margin: 0;
	}

	.preview-image img {
		width: 30%;
		height: auto;
		max-width: 500px;
	}
	

    /* ================= FORM ================= */
	.form-privacy {
		font-size: 0.9rem;
		margin-top: 1.8rem;
		opacity: 0.85;
		text-align: center;
	}

	.form-privacy a {
		color: white;
		text-decoration: underline;
	}
    .subscribe {
        background: var(--primary);
        color: white;
        padding: 6rem 1rem;
        text-align: center;
    }

    #subscribe {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
background: #244ebb;
    }

    .form-box {
        max-width: 580px;
        margin: 0 auto;
        background: rgba(255,255,255,0.1);
        padding: 2.5rem;
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }

    .form-group {
        margin-bottom: 1.6rem;
        text-align: left;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255,255,255,0.9);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem 1.2rem;
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 8px;
        background: rgba(255,255,255,0.08);
        color: white;
        font-size: 1.05rem;
        font-family: inherit;
        transition: all 0.25s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255,255,255,0.5);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent);
        background: rgba(255,255,255,0.12);
        box-shadow: 0 0 0 3px rgba(96,165,250,0.25);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
        line-height: 1.5;
    }

    button {
        width: 100%;
        max-width: 320px;
        margin: 1.5rem auto 0;
        display: block;
        padding: 1.1rem 2rem;
        font-size: 1.15rem;
        font-weight: 600;
        background: white;
        color: var(--primary);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
	
	.insider-button {
			background:#00cc00;
	}
	.insider-button a {
		color:white;
	}
    button:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

/* ================= MARQUEE (OPTIMIERT & BEREINIGT) ================= */

.marquee-section {
    background: #fff;
    padding: 2rem 0;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.marquee-wrapper {
    touch-action: pan-y; 
    overflow: hidden; /* Wichtig: Versteckt den Überhang */
    width: 100%;
    position: relative;
    cursor: grab;
    /* Verhindert Flackern in Chrome/Edge */
    backface-visibility: hidden;
}

.marquee-wrapper:active {
    cursor: grabbing;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform; /* Aktiviert Grafikkarte für flüssige Bewegung */
    
    /* Animation für alle Browser */
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
}

/* Pausieren bei Hover (Maus drüber) ODER während des Ziehens (is-dragging) */
.marquee-wrapper:hover .marquee-track,
.is-dragging .marquee-track {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 1.5rem; /* Etwas mehr Abstand zwischen den Patenten */
    text-align: center;
}

.marquee-item img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.05) saturate(1.1);
    box-shadow: 0 0 30px rgba(30, 64, 175, 0.3);
}

/* --- ANIMATION DEFINITIONEN --- */

/* Standard */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Apple / Safari Präfix */
@-webkit-keyframes scroll {
    0% { -webkit-transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); }
}


footer {
	    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.15);

}