/* ============================================
   PREMIUM UPGRADE CTA CARD
   ============================================ */

.premium-upgrade-cta {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.premium-cta-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    text-align: center;
}

.premium-cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-cta-badge i {
    font-size: 0.9rem;
    color: #ffd700;
}

.premium-cta-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.premium-cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.premium-cta-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.premium-cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.premium-cta-benefit i {
    color: #4ade80;
    font-size: 1rem;
    flex-shrink: 0;
}

.premium-cta-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.premium-cta-price-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.premium-cta-price-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.premium-cta-price-period {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.premium-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: white;
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.premium-cta-button::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.5s ease;
}

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

.premium-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

.premium-cta-button i:first-child {
    color: #ffd700;
}

.premium-cta-button i:last-child {
    transition: transform 0.3s ease;
}

.premium-cta-button:hover i:last-child {
    transform: translateX(4px);
}

.premium-cta-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-upgrade-cta {
        padding: 0 1rem;
        margin: 2rem auto 1rem;
    }

    .premium-cta-content {
        padding: 2rem 1.5rem;
    }

    .premium-cta-title {
        font-size: 1.5rem;
    }

    .premium-cta-benefits {
        grid-template-columns: 1fr;
    }

    .premium-cta-price-value {
        font-size: 2.5rem;
    }

    .premium-cta-button {
        font-size: 1.1rem;
        padding: 18px 32px;
    }
}