/* ============================================
   PRICING.CSS - קטע מחירים
   ============================================ */

/* Pricing Section - Netflix Style */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(42, 42, 42, 0.9);
    border-color: #e50914;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.pricing-card.featured {
    border-color: #e50914;
    background: rgba(229, 9, 20, 0.1);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-size {
    font-size: 2rem;
    font-weight: 800;
    color: #e50914;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
}

.pricing-period {
    color: #b3b3b3;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: #e5e5e5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Pricing CTA Button */
.pricing-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #e50914;
    border: none;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-cta:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-name {
        font-size: 1.2rem;
    }
    
    .pricing-size {
        font-size: 1.8rem;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
}