/* ============================================
   SECTIONS-CARDS.CSS - קטעים וכרטיסי זכוכית
   ============================================ */

/* General Sections - Netflix Dark Theme */
.section {
    padding: 3rem 0;
    position: relative;
    background: #141414;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #b3b3b3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    animation: float 3s ease-in-out infinite;
}

/* Glass Cards */
.glass-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;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(42, 42, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Cards Grid Layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: #A00032;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.card-description {
    color: #b3b3b3;
    line-height: 1.6;
}

/* Process Section - Netflix Style */
.process-netflix {
    background: #000;
    color: #fff;
    padding: 5rem 0;
    font-family: 'Heebo', sans-serif;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e50914;
}

.process-header p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    position: relative;
    padding-right: 3rem;
    border-right: 3px solid transparent;
    border-image: linear-gradient(135deg, #818cf8, #22d3ee) 1;
}

.step-content {
    position: relative;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(97, 143, 227, 0.15);
}

.step-number {
    position: absolute;
    right: -1.7rem;
    top: 0;
    background: linear-gradient(135deg, var(--primary-400), var(--cyan-400));
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.step-desc {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
}

/* CTA Box */
.cta-box {
    text-align: center;
    margin-top: 4rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: #bbb;
}

.cta-button {
    background: #e50914;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #f40612;
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
    transform: translateY(-2px);
}

/* LG Partnership Styling */
.lg-partnership {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .step {
        padding-right: 2rem;
    }
    
    .step-number {
        right: -1.2rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}