/* Enhanced Pricing Visual Appeal - Added at Bottom */

/* Popular Badges */
.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

.best-value-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Enhanced Card Hover */
.pricing-plan.enhanced {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-plan.enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px -12px rgba(155, 81, 224, 0.4),
        0 0 0 1px rgba(155, 81, 224, 0.1);
}

/* Popular Plan Highlight */
.pricing-plan.popular {
    border: 2px solid #FFD700;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.03), transparent);
}

/* Best Value Plan */
.pricing-plan.best-value {
    border: 2px solid #10B981;
}

/* Premium Button Gradient */
.btn-premium {
    background: linear-gradient(135deg, #9B51E0 0%, #00A8FF 100%);
    color: white;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(155, 81, 224, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(155, 81, 224, 0.5),
        0 0 0 3px rgba(155, 81, 224, 0.1);
    background: linear-gradient(135deg, #B371F5 0%, #00C4FF 100%);
}

/* Shimmer Effect for Featured Plans */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.pricing-plan.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(155, 81, 224, 0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-plan.featured:hover::after {
    opacity: 1;
}

/* Mobile optimizations */
@media (max-width: 768px) {

    .popular-badge,
    .best-value-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
        top: -12px;
        right: 15px;
    }
}