.problem-section {
    background: #fff;
}

.problem-timeline {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* gemeinsame Layouts */

.problem-row,
.solution-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Problem: Text links, Bild rechts */

.problem-content h3,
.solution-content h3 {
    margin: 18px 0 24px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.15;
}

.problem-content p,
.solution-content p {
    margin: 0 0 20px;
    line-height: 1.9;
    color: var(--color-muted);
}

/* Eyebrows */

.problem-label {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Problem rot */

.problem-row .problem-label {
    background: #fdf1ef;
    color: #b6483f;
    border: 1px solid #efc6c2;
}

/* Lösung grün */

.solution-card .problem-label {
    background: #eef8f1;
    color: #2f8a55;
    border: 1px solid #b8dec5;
}

/* Bilder exakt gleich groß */

.problem-image,
.solution-image {
    width: 100%;
    height: 560px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 18px 45px rgba(0,0,0,.08),
        0 36px 90px rgba(0,0,0,.10);
}

.problem-image img,
.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pfeile */

.problem-arrow {
    text-align: center;
    font-size: 46px;
    line-height: 1;
    color: #b69973;
}

/* Vorteile */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.benefit-card {
    background: #fbfaf7;
    border: 1px solid rgba(182,163,136,.25);
    border-radius: 22px;
    padding: 34px;
    transition: .3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.benefit-number {
    font-size: 3rem;
    line-height: 1;
    color: #b69973;
    font-weight: 800;
    margin-bottom: 22px;
}

.benefit-card h4 {
    margin: 0 0 14px;
    font-size: 1.45rem;
    line-height: 1.25;
}

.benefit-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--color-muted);
}

/* Responsive */

@media (max-width: 1000px) {

    .problem-row,
    .solution-card {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .problem-image,
    .solution-image {
        height: 460px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .problem-timeline {
        gap: 48px;
    }

    .problem-image,
    .solution-image {
        height: 320px;
        border-radius: 20px;
    }

    .problem-content h3,
    .solution-content h3 {
        font-size: 2.1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 28px;
    }

}

@media (max-width: 1000px) {

    .solution-card .solution-content {
        order: 1;
    }

    .solution-card .solution-image {
        order: 2;
    }

}

@media (max-width: 700px) {

    .benefits-grid {
        display: flex;
        gap: 18px;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 22px 14px 0;
        margin-right: calc(var(--container-padding, 20px) * -1);

        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;

        -webkit-overflow-scrolling: touch;
    }

    .benefit-card {
        flex: 0 0 76%;
        max-width: 76%;

        scroll-snap-align: start;

        padding: 28px;
    }

    .benefits-grid::-webkit-scrollbar {
        height: 4px;
    }

    .benefits-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .benefits-grid::-webkit-scrollbar-thumb {
        background: rgba(182, 153, 115, .55);
        border-radius: 999px;
    }

}