@keyframes banner-shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
@keyframes wheel-spin-cta {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.cta-banner {
    background: linear-gradient(105deg, #0d5ae8 0%, #1a6bff 25%, #3a83ff 50%, #1a6bff 75%, #0d5ae8 100%);
    width: 100%;
    background-size: 300% auto;
    animation: banner-shimmer 8s linear infinite;
    padding: 48px var(--pad);
    position: relative;
    overflow: hidden;
}

.cta-banner__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-banner__link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-banner__text {
    font-family: var(--f-display);
    font-size: clamp(22px, 2.8vw, 40px);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--c-white);
    line-height: 1.3;
    transition: letter-spacing .3s ease;
}

.cta-banner__arrow {
    font-family: var(--f-display);
    font-size: clamp(22px, 2.8vw, 40px);
    color: var(--c-white);
    line-height: 1.3;
    flex-shrink: 0;
    display: inline-block;
    transition: transform .3s ease;
}

@media screen and (hover: hover) and (min-width: 400px) {
    .cta-banner:hover .cta-banner__text {
        letter-spacing: .03em;
    }
    .cta-banner__link:hover .cta-banner__arrow { 
        transform: translateX(10px); 
    }
}

.cta-banner__particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.cta-banner__wheel {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 260px;
    opacity: 0.1;
    filter: brightness(0) invert(1);
    pointer-events: none;
    z-index: 0;
}
.cta-banner__wheel-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: wheel-spin-cta 22s linear infinite;
}

@media (max-width: 767px) {
    .cta-banner { padding: 36px var(--pad-sm); }
    .cta-banner__link { flex-direction: column; gap: 12px; text-align: center; }
    .cta-banner__text { text-align: center; }
    .cta-banner__arrow {
        display: none;
    }
}

@media (max-width: 390px) {
    .cta-banner { padding: 28px 16px; }
    .cta-banner__text { font-size: 20px; }
}
