.campaign-stats {
    background: #fff;
    padding: 80px 0 70px;
}

.campaign-stats .stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.campaign-stats-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    transition: opacity 0.3s ease;
}

.campaign-stats-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #3051E6;
    margin: 0 0 14px;
    font-family: 'Space Grotesk', sans-serif;
}

.campaign-stats-header .stats-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #000022;
    margin: 0 0 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.campaign-stats-header .key-findings-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #3051E6;
    font-family: 'Space Grotesk', sans-serif;
}

/* Carousel — flex row: [arrow-prev] [track] [arrow-next] */
.campaign-stats-carousel-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 20px; /* space between orange arrows and blue circles */
}

.campaign-stats-track-outer {
    flex: 1;
    min-width: 0;
    padding: 20px 0;
}

.campaign-stats-track {
    display: flex;
    gap: 20px;
}

/* Always 4 circles: each takes an equal flex share */
.stat-bubble {
    flex: 1;
    min-width: 0;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(180deg, #212f74 0%, #2000f0 100%);
    /* background: #3051E6; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Inner wrapper — this is what slides in/out on navigation */
.stat-bubble-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.stat-bubble .stat-number {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-bubble p {
    font-size: 13px;
    line-height: 1.55;
    color: #fff;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

/* Mobile: all slides stacked — hidden on desktop */
[id^="statsMobileAll"] {
    display: none;
}

/* Carousel arrows — D-shaped half-circles; height/width synced to bubble height via JS */
.carousel-arrow {
    flex-shrink: 0;
    width: 80px;
    height: 160px;
    background: #FF551A;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
    transition: background 0.15s;
}

.carousel-arrow:hover {
    background: #e04510;
}

.carousel-arrow.arrow-prev {
    border-radius: 0 9999px 9999px 0;
}

.carousel-arrow.arrow-next {
    border-radius: 9999px 0 0 9999px;
}

.carousel-arrow img {
    width: 28px;
    height: 28px;
    display: block;
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cdd0de;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.carousel-dot.is-active {
    background: #FF551A;
}
@media only screen and (max-width: 960px) {
    .stat-bubble .stat-number {
        font-size: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .campaign-stats-header,
    .campaign-stats-carousel-wrapper,
    .campaign-stats-static,
    .carousel-dots {
        display: none;
    }
    [id^="statsMobileAll"] {
        display: block;
        padding: 0 20px;
    }
    .stats-mobile-slide {
        margin-bottom: 48px;
    }
    .stats-mobile-slide + .stats-mobile-slide {
        border-top: 1px solid #e8eaf0;
        padding-top: 40px;
    }
    .stats-mobile-slide-header {
        text-align: center;
        margin: 0 auto 28px;
    }
    .stats-mobile-slide-header h3 {
        font-size: 22px;
        font-weight: 700;
        color: #3051E6;
        margin: 0 0 10px;
        font-family: 'Space Grotesk', sans-serif;
    }
    .stats-mobile-slide-header .stats-intro {
        font-size: 15px;
        line-height: 1.6;
        color: #000022;
        margin: 0 0 10px;
        font-family: 'Space Grotesk', sans-serif;
    }
    .stats-mobile-slide-header .key-findings-label {
        font-size: 15px;
        font-weight: 600;
        color: #3051E6;
        font-family: 'Space Grotesk', sans-serif;
    }
    .stats-mobile-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
    .stat-mobile-item .stat-number {
        display: block;
        background: linear-gradient(180deg, #212f74 0%, #2000f0 100%);
        /* background: #3051E6; */
        border-radius: 50px;
        padding: 6px 20px;
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        font-family: 'Space Grotesk', sans-serif;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .stat-mobile-item p {
        color: #000022;
        font-size: 14px;
        line-height: 1.55;
        margin: 0;
        font-family: 'Space Grotesk', sans-serif;
    }
    .campaign-stats {
        padding: 80px 0 20px;
    }
}