/* ============================================
   PRICING BADGES - EXPERT UI/UX DESIGN
   ============================================ */

/* Header Badge Container - Integrated at top */
.pricing-header-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 10px;
}

/* Plan Duration Badge - Basic Plan */
.plan-duration-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Premium Header - Special styling */
.premium-header {
    margin-bottom: 15px;
}

.popular-plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.popular-plan-badge i {
    font-size: 14px;
    animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.popular-plan-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Gold Header - Best Value */
.gold-header {
    margin-bottom: 15px;
}

.best-value-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}

.best-value-badge i {
    font-size: 14px;
    color: #92400e;
}

.best-value-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

/* Plan Subtitle - Better typography */
.plan-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.5;
}

/* Social Proof Badge - Integrated Design */
.social-proof-badge-integrated {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(37, 63, 233, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border: 1px solid rgba(37, 63, 233, 0.25);
    border-radius: 12px;
    margin: 15px 0;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(37, 63, 233, 0.1);
    transition: all 0.3s ease;
}

.social-proof-badge-integrated:hover {
    background: linear-gradient(135deg, rgba(37, 63, 233, 0.18) 0%, rgba(139, 92, 246, 0.18) 100%);
    border-color: rgba(37, 63, 233, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 63, 233, 0.15);
}

.social-proof-badge-integrated i {
    font-size: 18px;
    color: #6366f1;
    flex-shrink: 0;
}

.social-proof-badge-integrated span {
    font-size: 13px;
    color: var(--text-primary, #f8fafc);
    font-weight: 500;
    line-height: 1.4;
}

.social-proof-badge-integrated strong {
    color: #6366f1;
    font-weight: 700;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-header-badge {
        margin-bottom: 15px;
    }
    
    .plan-duration-badge,
    .popular-plan-badge,
    .best-value-badge {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .plan-subtitle {
        font-size: 14px;
    }
    
    .social-proof-badge-integrated {
        padding: 10px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .social-proof-badge-integrated span {
        font-size: 12px;
    }
}

/* Dark Theme Compatibility */
@media (prefers-color-scheme: dark) {
    .best-value-badge {
        color: #1f2937;
    }
    
    .best-value-badge i {
        color: #92400e;
    }
}

