.elementor-12 .elementor-element.elementor-element-53df71a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ac0dc14 *//* --- Hero Section Styles (MISE À JOUR) --- */
.hero-section {
    /* RÉDUCTION DE LA HAUTEUR */
    padding: 60px 40px 90px; 
    color: #1e3c72;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.05) 0%, rgba(42, 82, 152, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

/* Conteneur Flex pour aligner texte et image */
.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; 
    align-items: center;
    justify-content: space-between;
    padding-top: 30px; /* Réduction de l'espace supérieur */
    position: relative;
    z-index: 2;
}

/* Conteneur pour le texte */
.hero-text {
    flex: 1;
    max-width: 50%;
    padding-right: 30px;
    text-align: left;
}

/* Conteneur pour l'image (RÉDUCTION) */
.hero-image {
    flex: 1;
    max-width: 40%; /* L'image prend moins de place que le texte */
    text-align: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-image img {
    /* RÉDUCTION DE L'IMAGE elle-même */
    max-width: 90%; 
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.2);
}

/* ... Autres styles de texte inchangés ... */

/* Responsive: passage en mode colonne sur les petits écrans (AJUSTEMENTS) */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
    }

    .hero-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px; /* Réduction de l'espace */
        text-align: center;
    }

    .hero-image {
        max-width: 70%; /* Ajustement sur mobile */
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px 70px; /* Réduction supplémentaire sur très petits écrans */
    }
    .hero-section h1 {
        font-size: 36px;
    }
    .hero-section p {
        font-size: 18px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d6727c9 */<style>
/* --- Services Section Styles --- */
.services-section {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Animations de fond dynamiques */
.services-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 60, 114, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
    box-shadow: 0 0 80px rgba(30, 60, 114, 0.3);
}

.services-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 82, 152, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    animation: float 15s ease-in-out infinite reverse;
    box-shadow: 0 0 80px rgba(42, 82, 152, 0.3);
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 60, 114, 0.25) 0%, rgba(42, 82, 152, 0.15) 50%, transparent 70%);
    animation: float 25s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(30, 60, 114, 0.3);
}

.circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 30%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 18s;
}

.circle:nth-child(3) {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.circle:nth-child(4) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-title {
    text-align: center;
    font-size: 48px;
    color: #1e3c72;
    margin-bottom: 60px;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.service-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 32px;
    color: #1e3c72;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2a5298;
    animation: fadeInUp 0.8s ease;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.software-cards {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.card-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.card-header h4 {
    font-size: 22px;
    color: #1e3c72;
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
    font-size: 18px;
}

.service-list li:hover {
    padding-left: 35px;
    color: #1e3c72;
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 15px;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 24px;
    }

    .service-cards,
    .software-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }
}
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a74b61a *//* --- Pricing Section Styles (Tarifs) --- */

.tarifs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
}

.tarifs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.header-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.header-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    padding: 60px 40px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.8;
}

.process-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: #f8fafc;
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 5px solid #2563eb;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-description {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.advantages-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.advantages-title {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.advantage-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-icon {
    width: 30px;
    height: 30px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.advantage-text {
    color: #374151;
    line-height: 1.6;
    font-size: 1.05rem;
}

.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: #1f2937;
    border-radius: 15px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(37, 99, 235, 0.3),
        rgba(37, 99, 235, 0.5),
        rgba(37, 99, 235, 0.3),
        transparent
    );
    animation: shine 2.5s infinite;
    filter: blur(8px);
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.cta-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    color: white;
}

.cta-text {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header-section h1 {
        font-size: 2rem;
    }

    .header-section p {
        font-size: 1rem;
    }

    .content-section {
        padding: 40px 25px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .process-title {
        font-size: 1.5rem;
    }
}/* End custom CSS */