@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(118, 9, 145, 0.4); }
    50% { box-shadow: 0 0 30px rgba(118, 9, 145, 0.6); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.btn-explore {
    background: transparent;
    border: 2px solid #a432c0;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #a432c0;
    color: #fff;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: #760991;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #8a0bab;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(118, 9, 145, 0.4);
}

.freemium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(118, 9, 145, 0.2);
    border: 1px solid rgba(164, 50, 192, 0.4);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: #d4a5e0;
    margin-bottom: 1.5rem;
}

.freemium-badge i {
    color: #a432c0;
}

.list-inline-item a {
    transition: all 0.3s ease;
}

.list-inline-item a:hover {
    color: #a432c0 !important;
    transform: translateY(-3px);
}

.list-inline-item a svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 0 transparent);
}

.list-inline-item a:hover svg {
    filter: drop-shadow(0 0 8px rgba(164, 50, 192, 0.6));
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(118, 9, 145, 0.3);
}

.feature-icon-wrap {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrap {
    transform: scale(1.1);
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.nav-cta-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

@media (max-width: 767px) {
    .nav-cta-group {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    .nav-cta-group .btn {
        width: 100%;
    }
}

.promo-top-bar a.btn:hover {
    background: #c026d3 !important;
    color: white !important;
}
