.elementor-431 .elementor-element.elementor-element-34fd75c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-431 .elementor-element.elementor-element-5213d8a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c1a3ca0 *//* -------------------------- */
/*          HERO SECTION      */
/* -------------------------- */

.fonctionnement-hero {
    padding: 140px 20px 100px;
    text-align: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dégradé sombre élégant */
.fonctionnement-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(20, 21, 26, 0.85), 
        rgba(28, 29, 35, 0.85)
    );
    z-index: 0;
}

/* Remet le contenu devant */
.fonctionnement-hero .container {
    position: relative;
    z-index: 1;
}

.fonctionnement-hero h1 {
            font-size: clamp(36px, 6vw, 56px);
            margin-bottom: 30px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--gold);
        }

.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 30px;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(15px, 2.5vw, 18px);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}


        /* Steps Section */
        .steps-section {
            padding: 100px 20px;
            background: var(--bg-primary);
        }

        .steps-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .steps-intro h2 {
            font-size: clamp(28px, 5vw, 38px);
            margin-bottom: 20px;
            color: var(--gold-light);
        }

        /* Timeline Container */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Ligne verticale */
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, 
                transparent,
                var(--gold) 10%,
                var(--gold) 90%,
                transparent
            );
            transform: translateX(-50%);
        }

        /* Step Item */
        .step-item {
            position: relative;
            margin-bottom: 80px;
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            align-items: center;
            gap: 40px;
        }

        .step-item:last-child {
            margin-bottom: 0;
        }

        /* Alternance gauche/droite - Items impairs (1, 3, 5...) */
        .step-item:nth-child(odd) .step-content {
            grid-column: 1;
            grid-row: 1;
        }

        .step-item:nth-child(odd) .step-number {
            grid-column: 2;
            grid-row: 1;
        }

        .step-item:nth-child(odd) .step-spacer {
            grid-column: 3;
            grid-row: 1;
        }

        /* Alternance gauche/droite - Items pairs (2, 4, 6...) */
        .step-item:nth-child(even) .step-spacer {
            grid-column: 1;
            grid-row: 1;
        }

        .step-item:nth-child(even) .step-number {
            grid-column: 2;
            grid-row: 1;
        }

        .step-item:nth-child(even) .step-content {
            grid-column: 3;
            grid-row: 1;
        }

        /* Numéro central */
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--bg-primary);
            box-shadow: 0 0 30px rgba(206, 175, 131, 0.5);
            z-index: 2;
            justify-self: center;
        }

        /* Contenu de l'étape */
        .step-content {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 35px;
            transition: var(--transition);
        }

        .step-content:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .step-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(206, 175, 131, 0.1);
            border-radius: 50%;
            color: var(--gold);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--gold-light);
        }

        .step-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .step-list {
            list-style: none;
            margin-top: 15px;
        }

        .step-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 15px;
            color: var(--text-secondary);
        }

        .step-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }

        /* Spacer pour alternance */
        .step-spacer {
            flex: 1;
        }


        /* Responsive */
     @media (max-width: 768px) {

    /* On enlève totalement le grid sur mobile */
    .step-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
        position: relative;
        padding-left: 40px; /* espace pour la timeline */
    }

    /* Ligne verticale propre */
    .timeline::before {
        left: 20px;
        width: 2px;
    }

    /* Le numéro centré sur la ligne */
    .step-number {
        position: absolute;
        left: 20px;
        transform: translate(-50%, 0);
        top: 0;
        margin: 0;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Le contenu devient full-width */
    .step-content {
        width: 100%;
        padding: 25px;
    }

    /* On supprime l'alternance */
    .step-spacer {
        display: none !important;
    }
}

            .step-title {
                font-size: 20px;
            }

            .step-description {
                font-size: 15px;
            }

            .final-message {
                padding: 60px 20px;
            }

            .highlight-box {
                padding: 25px 20px;
            }

            .highlight-box p {
                font-size: 18px;
            }

           

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ba637ad */.cta-section {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            padding: 100px 20px;
            text-align: center;
        }
        .cta-section h2 {
            font-size: clamp(32px, 5vw, 48px);
            color: var(--bg-primary);
            margin-bottom: 20px;
            font-weight: 800;
        }
        .cta-section p {
            font-size: 20px;
            color: rgba(20, 21, 26, 0.8);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 48px;
            background: var(--bg-primary);
            color: var(--gold);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            text-decoration: none;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(20, 21, 26, 0.5);
        }
        
        .cta-button-outline {
            border: 2px solid var(--bg-primary);
        }
        .cta-button-outline:hover {
            background: var(--bg-primary);
            color: var(--gold);
        }/* End custom CSS */