#sec-3,
#sec-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(3rem, 5vw, 5rem);
    min-height: 60svh;
    padding: clamp(4rem, 8vw, 6rem) clamp(3rem, 10vw, 14rem);
}

#sec-3 {
    background: linear-gradient(180deg, #3a3a3a 0%, #2f2f2f 100%);
}

#sec-4 {
    background: linear-gradient(180deg, #2f2f2f 0%, #1e1e1e 100%);
}

#sec-3-content,
#sec-4-content {
    max-width: 42rem;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Kicker über Team-Namen */
#sec-3-content::before,
#sec-4-content::before {
    content: "Team";
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.4rem;
    display: block;
}

#sec-3-content h2,
#sec-4-content h2 {
    font: bold clamp(1.6rem, 3vw, 2.2rem)/1.2 var(--font-fam);
    margin: 0 0 1.2rem;
}

#sec-3-content p,
#sec-4-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 0.75rem;
}

#sec-3-img,
#sec-4-img {
    flex-shrink: 0;
    width: clamp(14rem, 24vw, 26rem);
}

#sec-3-img img,
#sec-4-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    display: block;
}

/* CTA Section — bg-img-container, nahtlos ab sec-4 Ende (#1e1e1e) */
#sec-cta {
    min-height: 50svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* sec-4 endet bei #1e1e1e → sec-cta startet dort, Bild zeigt in Mitte, dunkel unten */
#sec-cta .bg-overlay {
    background: linear-gradient(
        rgb(30, 30, 30) 0%,
        rgba(20, 20, 20, 0.82) 25%,
        rgba(15, 15, 15, 0.80) 50%,
        rgba(10, 10, 10, 0.88) 75%,
        rgb(10, 10, 10) 100%
    );
}

#sec-cta-content {
    padding: clamp(4rem, 8vw, 6rem) 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

#sec-cta-content::before {
    content: "Nächster Schritt";
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

#sec-cta-content h2 {
    font: bold clamp(1.6rem, 4vw, 2.4rem)/1.2 var(--font-fam);
    margin: 0;
    color: white;
}

#sec-cta-content p {
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

#sec-cta-content .filled-btn {
    padding: 0.95rem 2.4rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#sec-cta-content .filled-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 65px rgba(227, 30, 36, 0.38);
}

@media (max-width: 900px) {
    #sec-3 {
        flex-direction: column;
    }
    #sec-4 {
        flex-direction: column-reverse;
    }
    #sec-3,
    #sec-4 {
        text-align: center;
        min-height: auto;
        padding: clamp(3.5rem, 7vw, 5rem) 1.5rem;
    }

    #sec-3-content,
    #sec-4-content {
        align-items: center;
        max-width: 44ch;
    }

    #sec-3-img,
    #sec-4-img {
        width: clamp(10rem, 55vw, 16rem);
    }
}

@media (max-width: 480px) {
    #sec-3-img,
    #sec-4-img {
        width: clamp(9rem, 60vw, 14rem);
    }
}
