/* Section Formules */
.section-formules {
    position: relative;
    background: #1a1d21;
    overflow: hidden;
    color: white;
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.formules-container {
    position: relative;
    z-index: 2;
}

.formule-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.formule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 1rem;
}

.formule-header {
    text-align: center;
    margin-bottom: 2rem;
}

.formule-header h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #0066ff;
    margin: 1.5rem 0;
}

.formule-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    margin-right: 1rem;
    color: #0066ff;
}

.feature-text {
    font-size: 1rem;
}

.btn-gradient {
    background: linear-gradient(45deg, #0066ff, #5c9dff);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #0052cc, #4785e5);
    transform: translateY(-2px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-tag i {
    font-size: 0.8rem;
    color: #FFD700;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #0066ff, #5c9dff);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 50%;
}

@media (max-width: 768px) {
    .formule-card {
        margin-bottom: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .formule-header h3 {
        font-size: 1.75rem;
    }
}

/* Section Services - Améliorations */
.section-services {
    background: linear-gradient(180deg, #1a1d21 0%, #151719 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-services::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: visible;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-content {
    text-align: center;
}

.service-content h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.service-features li:hover {
    color: white;
}

.service-features li i {
    color: #0066ff;
    margin-right: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066ff;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-price {
        font-size: 1.25rem;
    }
}

/* Section Statistiques */
.stats-section {
    background: linear-gradient(180deg, #1a1d21 0%, #151719 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-wrapper {
    position: relative;
    z-index: 2;
}

.stats-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 102, 255, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    color: white;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #0066ff, #5c9dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 5px;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: #0066ff;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }

    .stat-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-plus {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}
