    /* --- 1. Réinitialisation et Variables de Base --- */
    :root {
        --color-primary: #007bff;
        /* Bleu Royal - Couleur d'accent FullCalendar/Tech */
        --color-secondary: #0056b3;
        /* Bleu plus foncé */
        --color-accent-bg: #f5f8ff;
        /* Bleu très pâle pour les sections */
        --color-text-dark: #333;
        --color-text-light: #555;
        --font-family-primary: 'Inter', sans-serif;
        --padding-section: 80px 0;
        --border-radius-base: 8px;
    }

    /********************************************************************/
    .boxTemoignage {
        padding: 1.5rem;
        --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        border-radius: 10px;
        border: 1px solid rgb(229 231 235 / var(--tw-border-opacity, 1));
        background-clip: padding-box;
        margin-bottom: 20px;
        background-color: #fff;
        opacity: 0.9;
    }

    .grid {
        display: flex;
        margin-bottom: 20px;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .grid .stat-item {
        background-color: white;
        border-radius: 0.75rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
        padding: 1rem;
        box-sizing: border-box;
        border-width: 0;
        border-style: solid;
        border-color: #e5e7eb;
        min-width: 250px;
        height: 150px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 20px;
    }

    .social-proof {
        background-color: #f7fafc;
        padding-top: 4rem;
        padding-bottom: 7px;
    }

    .border-green-500 {
        --tw-border-opacity: 1;
        border-color: rgb(34 197 94 / var(--tw-border-opacity, 1)) !important;
    }

    .border-blue-500 {
        --tw-border-opacity: 1;
        border-color: rgb(56 83 164 / var(--tw-border-opacity, 1)) !important;
    }

    .border-red-500 {
        --tw-border-opacity: 1;
        border-color: rgb(239 29 38 / var(--tw-border-opacity, 1)) !important;
    }

    .text-green-600 {
        --tw-text-opacity: 1;
        color: rgb(22 163 74 / var(--tw-text-opacity, 1));
    }

    .text-gray-600 {
        --tw-text-opacity: 1;
        color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    }

    .text-green-700 {
        --tw-text-opacity: 1;
        color: rgb(21 128 61 / var(--tw-text-opacity, 1));
    }

    .font-semibold {
        font-weight: 600;
    }

    .text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

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

    .mb-10 {
        margin-bottom: 2.5rem;
    }

    .font-extrabold {
        font-weight: 800;
    }

    .text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .mb-4 {
        margin-bottom: 1rem;
    }

    .shadow-2xl {
        --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

    .p-6 {
        padding: 1.5rem;
    }

    .bg-white {
        --tw-bg-opacity: 1;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    }

    .gap-8 {
        gap: 2rem;
    }

    .text-yellow-400 {
        --tw-text-opacity: 1;
        color: rgb(250 204 21 / var(--tw-text-opacity, 1));
    }

    .border-green-500 {
        --tw-border-opacity: 1;
        border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
    }

    .rounded-xl {
        border-radius: 0.75rem;
    }

    .border-t-4 {
        border: 0px solid;
        border-top-width: 4px;
    }

    .text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .mb-8 {
        margin-bottom: 2rem;
    }

    .border-t-4 {
        border-top-width: 4px;
    }

    .italic {
        font-style: italic;
    }

    /********************************************************************/
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }



    body {
        font-family: var(--font-family-primary);
        line-height: 1.6;
        color: var(--color-text-light);
        background-color: #fff;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    h1,
    h2,
    h3 {
        color: var(--color-text-dark);
        line-height: 1.2;
    }

    h2 {
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .centered-title {
        text-align: center;
        margin-bottom: 60px;
    }

    /* --- 2. Boutons (CTA) --- */
    .btn {
        display: inline-block;
        padding: 14px 30px;
        font-size: 1em;
        font-weight: 600;
        text-decoration: none;
        border-radius: var(--border-radius-base);
        transition: background-color 0.3s, transform 0.2s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
    }

    .btn-primary {
        background-color: var(--color-primary);
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--color-secondary);
        transform: translateY(-2px);
    }

    .btn-secondary {
        background-color: #eee;
        color: var(--color-primary);
        border: 2px solid #ddd;
    }

    .btn-secondary:hover {
        background-color: #ddd;
    }

    .btn-tertiary {
        background-color: transparent;
        color: var(--color-primary);
        border: 2px solid var(--color-primary);
        padding: 12px 28px;
        margin-left: 20px;
    }

    .btn-tertiary:hover {
        background-color: var(--color-primary);
        color: #fff;
    }

    .btn.large {
        padding: 16px 35px;
        font-size: 1.1em;
    }

    /* --- 3. Section Héro --- */
    .hero {
        padding: 100px 0 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.2em;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.4em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        margin-bottom: 50px;
    }

    .micro-text {
        font-size: 0.9em;
        color: var(--color-text-light);
        margin-top: 10px;
        opacity: 0.8;
    }

    /* Maquette du Logiciel (Effet Professionnel) */
    .mockup-container {
        width: 100%;
        max-width: 1000px;
        margin: 40px auto 0;
        background-color: #f7f7f7;
        border-radius: var(--border-radius-base);
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid #eee;
    }

    .mockup-screen {
        height: 500px;
        /* Placeholder pour la capture d'écran */
        background-color: #fff;
        /*border: 1px solid #ccc;*/
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5em;
        color: #999;
        border-radius: 4px;
        /* Lorsque vous intégrez l'image, remplacez les styles ci-dessus par: 
    background-image: url('path/to/your/screenshot.jpg');
    background-size: cover;
    background-position: top center;
    */
    }

    /* --- 4. Section Fonctionnalités (Features) --- */
    .features {
        padding: var(--padding-section);
        background-color: var(--color-accent-bg);
        /* Utilisation d'un fond léger pour la distinction */
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background-color: #fff;
        padding: 30px;
        border-radius: var(--border-radius-base);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-card .icon {
        font-size: 2.5em;
        display: block;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
        color: var(--color-primary);
    }

    /* --- 5. Preuve de Performance (Back-Office) --- */
    .backend-proof {
        padding: var(--padding-section);
    }

    .proof-list-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    .proof-list-container ul {
        list-style: none;
        flex: 1;
        font-size: 1.1em;
    }

    .proof-list-container ul li {
        margin-bottom: 20px;
        padding-left: 30px;
        position: relative;
        color: var(--color-text-dark);
    }

    .proof-list-container ul li::before {
        content: '✅';
        /* Utilisation d'un emoji pour la clarté */
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: 700;
    }

    .proof-image {
        flex: 1;
        height: 350px;
        background-color: var(--color-accent-bg);
        /* Placeholder pour le graphique */
        border-radius: var(--border-radius-base);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    /* --- 6. Section Pricing --- */
    .pricing {
        padding: var(--padding-section);
        background-color: var(--color-accent-bg);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .price-card {
        background-color: #fff;
        padding: 30px;
        border-radius: var(--border-radius-base);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
    }

    .price-card.featured {
        border: 3px solid var(--color-primary);
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .price-card h3 {
        font-size: 1.8em;
        margin-bottom: 5px;
    }

    .price-card .subtitle {
        color: var(--color-primary);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .price-card .description {
        min-height: 70px;
        /* Assure que les cartes ont la même hauteur */
        margin-bottom: 20px;
    }

    /* --- 7. Dernier CTA --- */
    .final-cta {
        padding: 60px 0;
        background-color: var(--color-primary);
        color: #fff;
        text-align: center;
    }

    .final-cta h2 {
        color: #fff;
        margin-bottom: 15px;
    }

    .final-cta p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .cta-group .btn-primary {
        background-color: #fff;
        color: var(--color-primary);
    }

    .cta-group .btn-primary:hover {
        background-color: #eee;
    }

    .cta-group .btn-tertiary {
        background-color: transparent;
        color: #fff;
        border-color: #fff;
        margin-left: 20px;
    }

    .cta-group .btn-tertiary:hover {
        background-color: #fff;
        color: var(--color-primary);
    }


    /* --- 8. Pied de Page --- */
    .footer {
        padding: 30px 0;
        background-color: #2c3e50;
        color: #ccc;
        font-size: 0.9em;
        text-align: center;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        margin: 0 15px;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--color-primary);
    }

    .contact-info {
        margin: 10px 0;
        font-weight: 600;
    }

    .imgWhatsApp {
        width: 25px;
        height: 25px;
        margin-left: 10px;
    }

    .img {
        height: 100%;
        width: 100%;
        border-radius: var(--border-radius-base);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }

    .imgSmall {
        width: 100%;
        height: 170px;
        border-radius: var(--border-radius-base);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }

    img:hover,
    imgSmall:hover {
        transform: scale(1.05);
    }

    /* --- 9. Responsivité (Mobile First) --- */

    @media (max-width: 900px) {
        .hero-title {
            font-size: 2.5em;
        }

        .img {
            max-height: 250px;
        }

        .mockup-screen {
            height: auto !important;
        }

        .proof-list-container {
            flex-direction: column;
            gap: 30px;
        }

        .proof-image {
            width: 100%;
            height: 300px;
        }

        .cta-group {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cta-group .btn-tertiary {
            margin-left: 0;
            margin-top: 15px;
        }

        .price-card.featured {
            transform: scale(1.03);
            /* Moins d'effet pour le mobile */
        }
    }

    @media (max-width: 500px) {
        h2 {
            font-size: 2em;
        }

        .hero-title {
            font-size: 2em;
        }

        .hero-subtitle {
            font-size: 1.1em;
        }

        .btn {
            width: 100%;
            display: block;
        }

        .btn-tertiary {
            margin-top: 15px;
            margin-left: 0;
        }
    }

    .honeypot {
        position: absolute;
        left: -9999px;
        top: -9999px;
        visibility: hidden;
    }

    /* --- Styles de la Modale (Pop-up Formulaire) --- */

    .modal {
        display: none;
        /* Caché par défaut */
        position: fixed;
        z-index: 1000;
        /* Assurez-vous qu'il est au-dessus de tout */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);
        /* Fond noir semi-transparent */
        backdrop-filter: blur(5px);
        /* Effet moderne */
    }

    .modal-content {
        background-color: #fefefe;
        margin: 1% auto;
        /* Centrage vertical et horizontal */
        padding: 30px;
        border: 1px solid #888;
        width: 90%;
        max-width: 500px;
        /* Taille idéale pour un formulaire */
        border-radius: var(--border-radius-base);
        position: relative;
        animation: fadeIn 0.3s ease-out;
    }

    .modal-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .modal-header-v2 {
        display: block !important;
    }
    .modal-header-v2 p {
        font-size: 0.8em;
        color: var(--color-text-light);
        text-align: center;
        font-style:italic;
    }
    .modal-header h3
     {
        color: var(--color-primary);
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    .modal-header-v2 h3 {
        color: var(--color-primary);
        font-size: 1.5em;
        margin-bottom: 8px;
        text-align: center;
    }

    .modal-header p{
        font-size: 1.1em;
        color: var(--color-text-light);
    }

    /* Bouton de Fermeture (x) */
    .close-btn {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        top: 10px;
        right: 20px;
        cursor: pointer;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: var(--color-secondary);
        text-decoration: none;
    }

    /* Styles du Formulaire */
    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--color-text-dark);
    }

    .form-group input[type="email"],
    .form-group input[type="text"],
    .form-group input[type="tel"] {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 1em;
        transition: border-color 0.3s;
    }

    .form-group input:focus {
        border-color: var(--color-primary);
        outline: none;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
    }

    .btn.full-width {
        width: 100%;
        margin-top: 10px;
    }

    .form-footer-text {
        text-align: center;
        margin-top: 20px;
        font-style: italic;
        font-size: 0.85em;
        color: #888;
    }

    /* Animation d'entrée */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsivité du Pop-up */
    @media (max-width: 600px) {
        .modal-content {
            margin: 5% auto;
            padding: 20px;
        }

        .modal-header h3 {
            font-size: 1.5em;
        }
    }

    /*************************************/
    .rating-stars {
        direction: rtl;
        display: inline-block;
        font-size: 2rem;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }

    .rating-stars input[type="radio"] {
        /* Masque les boutons radio réels */
        display: none;
    }

    .rating-stars label {
        color: #ccc;
        cursor: pointer;
        transition: color 0.2s;
    }

    .rating-stars label:hover,
    .rating-stars label:hover~label {
        color: orange;
    }

    .rating-stars input[type="radio"]:checked~label {
        color: orange;
    }