
    /* ================= 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 {
        --primary: #1e40af;      /* tiefes Blau */
        --primary: #969696;
        --primary-dark: #1e3a8a;
        --accent: #60a5fa;
        --bg: #f8fafc;
        --text: #0f172a;
        --text: #64748b;
        --gray: #64748b;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', system-ui, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
    }

    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%);
        color: white;
        text-align: center;
        padding: 8rem 1rem 6rem;
    }

    .XX_hero h1 {
        font-size: clamp(2.8rem, 8vw, 5.5rem);
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 10vw, 5.5rem);
        hyphens: auto;
        -webkit-hyphens: auto;
        overflow-wrap: anywhere;
        line-height: 1.1;
        letter-spacing: -0.02em;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        font-size: 1.4rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        opacity: 0.95;
    }

    .cta-btn {
        display: inline-block;
        background: white;
        color: var(--primary);
        font-size: 1.3rem;
        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;
    }

    .cards {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        margin-top: 3rem;
    }

    .card {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        opacity: 1;
        transform: translateY(0);
    }

    .card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .xxxcard:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .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;
    }

    .card h3 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: var(--primary);
    }

    @media (min-width: 900px) {
        .card {
            display: flex;
            align-items: center;
            text-align: left;
        }

        .card .marquee-section {
            flex: 1;
            border-bottom: none;
            border-right: 1px solid #e2e8f0;
        }

        .card .marquee-section h3 {
            padding-left: 1rem;
        }

        .card .card-content {
            flex: 0 0 350px;
            padding: 3rem;
        }

        .card:nth-child(even) {
            flex-direction: row-reverse;
        }

        .card:nth-child(even) .marquee-section {
            border-right: none;
            border-left: 1px solid #e2e8f0;
        }
    }

    /* ================= BENEFITS ================= */

    .benefits {
        background: white;
        padding: 5rem 0;
        text-align: center;
    }

    .benefits ul {
        list-style: none;
        max-width: 800px;
        margin: 2.5rem auto;
        font-size: 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%);
    }

    /* ================= FORM ================= */

    .subscribe {
        background: var(--primary);
        color: white;
        padding: 6rem 1rem;
        text-align: center;
    }

    #subscribe {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }

    .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);
    }

    button:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    /* ================= MARQUEE ================= */

    .marquee-section {
        background: #fff;
        padding: 2rem 0;
        overflow: hidden;
        border-bottom: 1px solid #e2e8f0;
    }

    .marquee-wrapper {
        position: relative;
        width: 100%;
        cursor: grab;
        user-select: none;
        touch-action: pan-y;
        overflow: hidden;
    }

    .marquee-wrapper:active {
        cursor: grabbing;
    }

    .marquee-track {
        display: flex;
        animation: scroll 35s linear infinite;
        width: max-content;
    }

    .marquee-wrapper:hover .marquee-track,
    .is-dragging .marquee-track {
        animation-play-state: paused !important;
    }

    .marquee-item {
        flex: 0 0 auto;
        width: 180px;
        margin: 0 1rem;
        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: all 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);
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ================= FOOTER ================= */

    footer {
        text-align: center;
        padding: 3rem 1rem;
        color: var(--gray);
        font-size: 0.95rem;
    }

