.cta-banner-section {
    width: 100%;
    position: relative;
    /* Extra height for scroll duration - Restored to 130vh for decent reversible feel */
    height: 130vh;
    margin: 128px 0;
    /* Clean */
}

/* Sticky Container - Restored */
.cta-banner-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background - Starts full Width */
.cta-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform, border-radius, opacity;
    /* Initial state for JS to animate from if needed */
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

.cta-banner-background.is-visible {
    opacity: 1;
}

/* Video Background */
.cta-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: opacity 1.5s ease;
    /* Smooth fade */
    opacity: 1;
}

.cta-bg-video.fading-out {
    opacity: 0;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Slightly darkened for text readability */
    z-index: 1;
}

.cta-scroll-track {
    width: 100%;
    height: auto;
}

.cta-banner-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass through if needed, but text needs events */
}

.cta-banner-container {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    pointer-events: auto;
    /* Re-enable events for content */
}

/* Content */
.cta-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    /* Gap between elements */
    padding: 64px 32px;
}

.cta-title {
    margin: 0;
    text-align: center;
    width: 100%;
}

.cta-big-percentage {
    display: block;
    width: fit-content;
    margin: 0 auto 0 auto;
    position: relative;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
}

.cta-percent-sign {
    position: absolute;
    top: 18px;
    left: 100%;
    font-size: 36px;
    line-height: 1;
}

@media (max-width: 768px) {
    .cta-big-percentage {
        font-size: 80px;
    }

    .cta-percent-sign {
        top: 12px;
        font-size: 24px;
    }
}

.cta-title-text {
    display: block;
    margin-top: 16px;
}

.cta-subtitle {
    margin: 0 auto;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.cta-label {
    text-align: center;
    display: block;
}





/* Responsive */
@media (max-width: 1024px) {
    .cta-banner-container {
        border-radius: 32px;
        min-height: 480px;
        margin: 0 24px;
    }


}

@media (max-width: 768px) {
    .cta-banner-section {
        padding: 24px 0;
        height: auto;
        margin: 64px 0;
    }

    /* Disable Sticky on Mobile */
    .cta-banner-sticky {
        position: relative;
        height: auto;
        top: auto;
        overflow: visible;
        display: block;
    }

    .cta-banner-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .cta-banner-container {
        border-radius: 24px;
        min-height: auto;
        margin: 0 16px;
        padding: 48px 24px;
        /* Ensure background is visible immediately if JS fails or delays */
        opacity: 1;
    }

    .cta-banner-background {
        opacity: 1 !important;
        /* Force visible on mobile */
        border-radius: 24px;
    }
}

/* Percentage Odometer Animation */
.percentage-counter {
    display: inline-flex;
    height: 1.1em;
    /* Tweak to fit line-height */
    line-height: 1;
    overflow: hidden;
    vertical-align: text-bottom;
}

.counter-digit {
    display: inline-block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.counter-reel {
    display: flex;
    flex-direction: column;
    transition: transform 2.5s cubic-bezier(0.1, 0.9, 0.2, 1);
    /* Very smooth ease */
    will-change: transform;
}

.counter-num {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 1em;
    /* Make each number full height of container */
    flex: 0 0 100%;
}