/* Clients Page Styles */

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.stats-section .stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.3px;
}

/* Clients Main Section */
.clients-main-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 48px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 48px 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.client-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: none;
}

.client-card:hover {
    transform: scale(1.1);
}

.client-logo {
    text-align: center;
    width: 100%;
}

.client-logo img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo img {
    transform: scale(1.05);
}

.client-name-fallback {
    display: none;
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    font-family: var(--font-heading);
}

/* Why Companies Section */
.why-companies-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
}

.section-title-white {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section-clients {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta-section-clients h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.cta-section-clients p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .clients-main-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 32px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 20px;
    }
    
    .client-card {
        min-height: 60px;
    }
    
    .client-logo img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .why-companies-section {
        padding: 60px 0;
    }
    
    .section-title-white {
        font-size: 26px;
        margin-bottom: 32px;
    }
    
    .cta-section-clients {
        padding: 60px 0;
    }
    
    .cta-section-clients h2 {
        font-size: 28px;
    }
}
