@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.hw-vorteile-section-2309 {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 15px;
    font-family: 'PT Sans', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.hw-vorteile-container-2309 {
    max-width: 880px;
    margin: 0 auto;
}

.hw-vorteile-header-2309 {
    text-align: center;
    margin-bottom: 40px;
}

.hw-vorteile-h2-2309 {
    color: #002c77;
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 16px 0;
}

.hw-vorteile-subhead-2309 {
    color: rgba(0, 44, 119, 0.75);
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.hw-vorteile-list-2309 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hw-vorteile-item-2309 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateX(-16px);
}

.hw-vorteile-item-2309.hw-is-visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.hw-vorteile-icon-wrap-2309 {
    flex-shrink: 0;
}

.hw-vorteile-icon-2309 {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 88, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
}

.hw-vorteile-icon-2309 svg {
    width: 18px;
    height: 18px;
    stroke: #ff5800;
}

.hw-vorteile-item-2309.hw-is-visible .hw-vorteile-icon-2309 {
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hw-vorteile-titel-2309 {
    color: #002c77;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.hw-vorteile-body-2309 {
    color: #002c77;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.hw-vorteile-claim-2309 {
    background-color: #fafbfc;
    border-top: 2px solid #fdc82f;
    border-bottom: 2px solid #fdc82f;
    padding: 32px 24px;
    margin: 56px auto 0 auto;
    max-width: 720px;
    text-align: center;
    color: #002c77;
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    opacity: 0;
    box-shadow: 0 0 0 rgba(253, 200, 47, 0);
}

.hw-vorteile-claim-2309.hw-claim-visible {
    opacity: 1;
    transition: opacity 0.6s ease-out;
}

@keyframes hw-glow-loop-2309 {
    0% { box-shadow: 0 0 0 rgba(253, 200, 47, 0); }
    50% { box-shadow: 0 0 24px rgba(253, 200, 47, 0.2); }
    100% { box-shadow: 0 0 0 rgba(253, 200, 47, 0); }
}

.hw-vorteile-claim-2309.hw-glow-active {
    animation: hw-glow-loop-2309 4s ease-in-out infinite;
}

/* Mobile */
@media (max-width: 767px) {
    .hw-vorteile-section-2309 {
        padding: 60px 15px;
    }
    .hw-vorteile-h2-2309 {
        font-size: 22px;
    }
    .hw-vorteile-icon-2309 {
        width: 32px;
        height: 32px;
    }
    .hw-vorteile-icon-2309 svg {
        width: 16px;
        height: 16px;
    }
    .hw-vorteile-claim-2309 {
        font-size: 18px;
        padding: 24px 20px;
        margin-top: 48px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hw-vorteile-item-2309 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hw-vorteile-icon-2309 {
        transform: scale(1) !important;
        transition: none !important;
    }
    .hw-vorteile-claim-2309 {
        opacity: 1 !important;
        transition: none !important;
        animation: none !important;
    }
}