/* Animations */
@keyframes sbc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes sbc-fade-up {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sbc-scale-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes sbc-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes sbc-pulse-ring {
    0% { transform: scale(0.9); opacity: 0.6; }
    70% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}

@keyframes sbc-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sbc-animate-float { animation: sbc-float 5s ease-in-out infinite; }
.sbc-animate-fade-up { animation: sbc-fade-up 0.7s ease-out both; }

[data-aos] { pointer-events: auto; }

/* Stagger children */
.sbc-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.sbc-stagger > *:nth-child(2) { animation-delay: 0.12s; }
.sbc-stagger > *:nth-child(3) { animation-delay: 0.19s; }
.sbc-stagger > *:nth-child(4) { animation-delay: 0.26s; }
.sbc-stagger > *:nth-child(5) { animation-delay: 0.33s; }
.sbc-stagger > *:nth-child(6) { animation-delay: 0.4s; }
