/* For Clients Page Styles */

/* Hero Section */
.clients-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.clients-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.clients-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.clients-hero .hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.clients-hero .hero-description {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-lg);
    min-width: 200px;
}

/* Benefits Section */
.benefits-section {
    padding: var(--space-6xl) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin: var(--space-2xl) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.benefits-section .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-4xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--space-3xl);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.benefit-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.benefit-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--space-6xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    margin: var(--space-2xl) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.how-it-works-section .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-4xl);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3xl);
}

.step-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--space-3xl);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.step-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: var(--space-6xl) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin: var(--space-2xl) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.features-section .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-4xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--space-3xl);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.feature-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.clients-cta {
    padding: var(--space-6xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: var(--space-2xl) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.clients-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>');
    z-index: 1;
}

.clients-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-2xl);
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--space-2xl);
    }
    
    .benefit-card,
    .feature-card,
    .step-card {
        padding: var(--space-2xl);
    }
    
    .benefit-icon,
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i,
    .feature-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .clients-hero {
        padding: 100px 0 60px;
        margin-bottom: var(--space-xl);
    }
    
    .clients-hero .hero-title {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
    }
    
    .clients-hero .hero-description {
        font-size: clamp(1rem, 3.5vw, 1.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .benefits-section,
    .how-it-works-section,
    .features-section,
    .clients-cta {
        padding: var(--space-4xl) 0;
        margin: var(--space-xl) 0;
    }
    
    .benefits-section .section-title,
    .how-it-works-section .section-title,
    .features-section .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .benefit-card,
    .feature-card,
    .step-card {
        padding: var(--space-xl);
    }
    
    .benefit-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-lg);
    }
    
    .benefit-icon i,
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .clients-hero {
        padding: 80px 0 40px;
        margin-bottom: var(--space-md);
        border-radius: 12px;
    }
    
    .clients-hero .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .clients-hero .hero-description {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }
    
    .benefits-section,
    .how-it-works-section,
    .features-section,
    .clients-cta {
        padding: var(--space-3xl) 0;
        margin: var(--space-md) 0;
        border-radius: 12px;
    }
    
    .benefits-section .section-title,
    .how-it-works-section .section-title,
    .features-section .section-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .benefit-card,
    .feature-card,
    .step-card {
        padding: var(--space-lg);
        border-radius: 12px;
    }
    
    .benefit-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: var(--space-md);
    }
    
    .benefit-icon i,
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
    
    .cta-description {
        font-size: var(--font-size-sm);
    }
}
