.bbx-trust-stats-banner {
    container-type: inline-size;
    font-family: 'Montserrat', Robot, sans-serif;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;

    strong {
        color: #FF6B35;
        font-weight: 800;
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    }

    .bbx-trust-stats-banner-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
    }

    .bbx-trust-stats-banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, #2878C8 0%, #195DA6 50%, #0D4785 100%);
        opacity: 0.9;
    }

    .bbx-trust-stats-banner-content {
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin: 0 auto;
        padding: 24px 16px 32px;
        @container (min-width: 768px) {
            padding: 40px 24px 48px;
        }

        .bbx-trust-stats-banner-title {
            animation: bbxTrustStatsBannerFadeInUp 0.5s ease-out both;
            text-align: center;
            margin-bottom: 32px;

            h2 {
                color: #ffffff;
                font-weight: 700;
                margin: 0;
                letter-spacing: -0.5px;
                display: inline-block;
                padding-bottom: 16px;
                border-bottom: 2px solid rgba(255, 255, 255, 0.3);
                font-size: 20px;
                @container (min-width: 768px) {
                    font-size: 28px;
                }
            }
        }

        .bbx-trust-stats-banner-stats {
            @container (max-width: 767px) {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                background: rgba(255, 255, 255, 0.08);
                border-radius: 12px;
                padding: 4px 0;
                backdrop-filter: blur(8px);
                border: 1px solid rgba(255, 255, 255, 0.12);
            }

            @container (min-width: 768px) {
                display: flex;
                justify-content: center;
                align-items: flex-start;
            }

            .bbx-trust-stats-banner-stat-item {
                @container (max-width: 767px) {
                    flex: none;
                    max-width: 100%;
                    padding: 14px 18px;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    text-align: left;
                    gap: 20px;
                }

                @container (min-width: 768px) {
                    text-align: center;
                    flex: 1;
                    max-width: 260px;
                    padding: 0 20px;
                }

                &#first {
                    animation: bbxTrustStatsBannerFadeInUp 0.5s ease-out 0.15s both;
                }

                &#second {
                    animation: bbxTrustStatsBannerFadeInUp 0.5s ease-out 0.25s both;
                }

                &#last {
                    animation: bbxTrustStatsBannerFadeInUp 0.5s ease-out 0.35s both;
                }

                .bbx-trust-stats-banner-stat-value {
                    font-size: 24px;
                    margin-bottom: 0;
                    min-width: auto;
                    flex-shrink: 0;
                    font-weight: 800;
                    color: #ffffff;
                    line-height: 1.1;
                    letter-spacing: -0.5px;
                    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
                    display: inline-block;

                    @container (max-width: 767px) {
                        text-align: left;
                    }

                    @container (min-width: 768px) {
                        min-width: 120px;
                        margin-bottom: 8px;
                        font-size: 40px;
                    }
                }

                .bbx-trust-stats-banner-stat-label {
                    font-size: 13px;
                    font-weight: 400;
                    color: rgba(255, 255, 255, 0.85);
                    line-height: 1.45;

                    @container (max-width: 767px) {
                        text-align: right;
                        flex: 1;
                    }

                    @container (min-width: 768px) {
                        font-size: 14px;
                    }
                }
            }

            .bbx-trust-stats-banner-divider {
                width: calc(100% - 36px);
                height: 1px;
                margin: 0 auto;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 1px;
                flex-shrink: 0;
                align-self: center;

                @container (min-width: 768px) {
                    width: 2px;
                    height: 60px;
                    background: rgba(255, 255, 255, 0.35);
                }

                &#first {
                    animation: bbxTrustStatsBannerFadeInUp 0.4s ease-out 0.2s both;
                }

                &#last {
                    animation: bbxTrustStatsBannerScaleIn 0.4s ease-out 0.3s both;
                    transform-origin: center;
                }
            }
        }
    }
}

/* Animations */
@keyframes bbxTrustStatsBannerFadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bbxTrustStatsBannerScaleIn {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}