@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes revealUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseBorder {
    0%, 100% { box-shadow: 0 0 0 0 rgba(57,166,74,0.16); }
    50% { box-shadow: 0 0 0 20px rgba(57,166,74,0.04); }
}
.hero-blobs, .banner-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-blobs::before,
.hero-blobs::after,
.banner-blobs::before,
.banner-blobs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.82;
}
.hero-blobs::before {
    width: 320px;
    height: 320px;
    background: rgba(57,166,74,0.18);
    top: -6rem;
    left: -3rem;
    animation: float 8s ease-in-out infinite;
}
.hero-blobs::after {
    width: 280px;
    height: 280px;
    background: rgba(49,95,148,0.18);
    bottom: -4rem;
    right: 1rem;
    animation: float 10s ease-in-out infinite reverse;
}
.banner-blobs::before {
    width: 260px;
    height: 260px;
    background: rgba(145,169,199,0.14);
    top: -4rem;
    right: 1rem;
}
.banner-blobs::after {
    width: 200px;
    height: 200px;
    background: rgba(57,166,74,0.12);
    bottom: -3rem;
    left: 2rem;
}
.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp 0.9s ease forwards;
}
.reveal-up:nth-of-type(1) { animation-delay: 0.1s; }
.reveal-up:nth-of-type(2) { animation-delay: 0.15s; }
.reveal-up:nth-of-type(3) { animation-delay: 0.2s; }
.reveal-up:nth-of-type(4) { animation-delay: 0.25s; }
.reveal-up:nth-of-type(5) { animation-delay: 0.3s; }
.button-primary:hover {
    box-shadow: 0 24px 60px rgba(49,95,148,0.22);
}
.button-outline:hover {
    box-shadow: 0 16px 40px rgba(49,95,148,0.12);
}
.lightbox.active {
    animation: revealUp 0.4s ease forwards;
}
.cookie-banner {
    animation: revealUp 0.5s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
    .hero-blobs::before,
    .hero-blobs::after,
    .banner-blobs::before,
    .banner-blobs::after,
    .button-magnetic::before,
    .reveal-up,
    .lightbox.active,
    .page-loader {
        animation: none !important;
        transition: none !important;
    }
}
