.lfs--benefits-section {
    margin: 2rem 0;
    color: #07152f;
}

.lfs--benefits-section,
.lfs--benefits-section * {
    box-sizing: border-box;
}

.lfs--benefits-section__inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: clamp(1rem, 2vw, 1.75rem);
    background: #fafafa;
    box-shadow: none;
}

/* Dezente moderne Hintergrund-Akzente */
.lfs--benefits-section__inner::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(45, 83, 160, 0.07);
    pointer-events: none;
}

.lfs--benefits-section__inner::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(254, 119, 37, 0.06);
    pointer-events: none;
}

.lfs--benefits-section__header,
.lfs--benefits-section__grid,
.lfs--benefits-note {
    position: relative;
    z-index: 1;
}

/* Header linksbündig */
.lfs--benefits-section__header {
    width: 100%;
    max-width: none;
    margin: 0 0 1.4rem;
    text-align: left;
}

.lfs--benefits-section__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.32rem 0.72rem;
    border-radius: 7px;
    background: rgba(254, 119, 37, 0.12);
    color: #fe7725;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
}

.lfs--benefits-section__title {
    width: 100%;
    max-width: none;
    margin: 0;
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    line-height: 1.15;
    font-weight: 800;
    color: #07152f;
}

.lfs--benefits-section__intro {
    width: 100%;
    max-width: none;
    margin: 0.85rem 0 0;
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    line-height: 1.65;
    color: rgba(7, 21, 47, 0.78);
}

/* Grid */
.lfs--benefits-section__grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

/* Moderne Vorteilskarten */
.lfs--benefit-card {
    min-height: 100%;
    padding: 1.35rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(7, 21, 47, 0.035);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.lfs--benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45, 83, 160, 0.28);
    box-shadow: 0 12px 26px rgba(7, 21, 47, 0.07);
}

.lfs--benefit-card__icon {
    display: grid;
    place-items: center;
    width: 2.65rem;
    height: 2.65rem;
    margin: 0 auto 0.85rem;
    border-radius: 14px;
    background: rgba(45, 83, 160, 0.1);
    color: #2d53a0;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1;
}

.lfs--benefit-card__content {
    min-width: 0;
}

.lfs--benefit-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #07152f;
}

.lfs--benefit-card__text {
    margin: 0.65rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(7, 21, 47, 0.72);
}

/* Hinweis unten */
.lfs--benefits-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(45, 83, 160, 0.16);
    border-radius: 14px;
    background: rgba(45, 83, 160, 0.055);
}

.lfs--benefits-note__icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #2d53a0;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
}

.lfs--benefits-note__content {
    min-width: 0;
}

.lfs--benefits-note__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    color: #07152f;
}

.lfs--benefits-note__text {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(7, 21, 47, 0.76);
}

/* Responsive */
@media (max-width: 1199px) {
    .lfs--benefits-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .lfs--benefits-section {
        margin: 1.5rem 0;
    }

    .lfs--benefits-section__inner {
        padding: 1rem;
    }

    .lfs--benefits-section__grid {
        display: flex;
        width: 100%;
        gap: 0.8rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 0 0.35rem;
    }

    .lfs--benefits-section__grid::-webkit-scrollbar {
        display: none;
    }

    .lfs--benefit-card {
        flex: 0 0 84%;
        min-height: auto;
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        text-align: left;
        padding: 1rem;
        scroll-snap-align: start;
    }

    .lfs--benefit-card:last-child {
        margin-right: 0.35rem;
    }

    .lfs--benefit-card:hover {
        transform: none;
    }

    .lfs--benefit-card__icon {
        flex: 0 0 auto;
        margin: 0;
    }

    .lfs--benefits-note {
        padding: 0.95rem;
    }
}