     @charset "UTF-8";
     :root {
            --primary: #0055a4;
            --primary-dark: #003d7a;
            --accent: #e8a000;
            --accent-light: #fff3cd;
            --green: #28a745;
            --red: #dc3545;
            --text: #2c2c2c;
            --text-light: #555;
            --bg-light: #f4f7fb;
            --bg-white: #ffffff;
            --border: #d0d9e8;
            --shadow: 0 2px 12px rgba(0,85,164,0.10);
            --radius: 8px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Cairo', 'Segoe UI', sans-serif;
            color: var(--text);
            background: #f0f4f9;
            font-size: 16px;
            line-height: 1.7;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            background: var(--bg-white);
            box-shadow: 0 0 40px rgba(0,0,0,0.08);
            
        }

        /* ── NAVIGATION ── */

header {
    background: #666666;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);    
    
    border-radius: 12px;      /* ← coins arrondis */
}
        nav ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0;
            padding: 0 20px;
        }
        nav ul li a {
            display: block;
            padding: 14px 18px;
            color: #fff;
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
            transition: background 0.2s;
        }
        nav ul li a:hover { background: var(--primary-dark); }

        /* ── HERO ── */
        #hero {
             background: white;
            color: #003d7a;;
            padding: 40px 30px 50px;
        }
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 100px;
            gap: 15px;
        }
        .logo-container img { max-height: 100px; height: auto; }
        .qr-code { text-align: center; }
        .qr-code img { border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); width: 70px; height: 70px; }
        .qr-code div { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; }

        #hero h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            font-family: 'Markazi Text', serif;
            letter-spacing: 0.3px;
        }

        .intro-logiciel-comptabilite h2 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: black;
        }
        .intro-logiciel-comptabilite p {
            margin-bottom: 14px;
            color: black;
            font-size: 0.97rem;
        }
        .intro-logiciel-comptabilite strong { color: black; }

        .features-highlight {
            background: rgba(255,255,255,0.10);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: var(--radius);
            padding: 22px 26px;
            margin: 22px 0;
        }
        .features-highlight h3 {
            font-size: 1.05rem;
            color: black;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .features-highlight ul { list-style: none; padding: 0; }
        .features-highlight ul li {
            padding: 5px 0 5px 22px;
            position: relative;
            color: black;
            font-size: 0.94rem;
        }
        .features-highlight ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #7ed957;
            font-weight: 700;
        }
        .features-highlight ul li strong { color: black; }

        .cta {
            display: inline-block;
            margin-top: 25px;
            background: var(--accent);
            color: #1a1a1a;
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 16px rgba(232,160,0,0.4);
        }
        .cta:hover { background: #d4900a; transform: translateY(-2px); }

        /* ── SECTIONS ── */
        section, .content-wrapper {
            padding: 40px 30px;
        }
        section:nth-child(even), .content-wrapper {
            background: var(--bg-light);
        }
        h2 {
            font-size: 1.45rem;
            color: var(--primary);
            margin-bottom: 18px;
            font-family: 'Markazi Text', serif;
            font-weight: 700;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 8px;
            display: inline-block;
        }
        h3 { font-size: 1.08rem; color: var(--primary-dark); margin-bottom: 10px; }
        p { margin-bottom: 14px; color: var(--text-light); }
        a { color: var(--primary); }
        a:hover { color: var(--accent); }
        

        /* ── AVANTAGES GRID ── */
        .avantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .avantage-item {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-left: 4px solid var(--primary);
            border-radius: var(--radius);
            padding: 20px 22px;
            box-shadow: var(--shadow);
        }
        .avantage-item h3 { color: var(--primary); font-size: 1rem; margin-bottom: 8px; }
        .avantage-item p { margin: 0; font-size: 0.93rem; }

        /* ── VERSIONS OVERVIEW ── */
        .overview {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 28px 0;
        }
        .version-card {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            border-radius: var(--radius);
            padding: 26px 22px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            transition: transform 0.2s;
        }
        .version-card:hover { transform: translateY(-4px); }
        .version-card.premium { background: linear-gradient(135deg, #003d7a, #0055a4); color: #fff; border-color: var(--accent); }
        .version-card.pro { background: linear-gradient(135deg, #1a5fa8, #2a7bc8); color: #fff; border-color: #90c5f0; }
        .version-card.essentiel { background: var(--bg-white); color: var(--text); border-color: var(--border); }
        .version-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; font-family: 'Markazi Text', serif; letter-spacing: 1px; }
        .version-price { font-size: 2rem; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
        .version-card.essentiel .version-price { color: var(--primary); }
        .version-detail { font-size: 0.88rem; padding: 3px 0; opacity: 0.9; }
        .version-card.essentiel .version-detail { color: var(--text-light); }

        /* ── TABLES ── */
        .table-container { overflow-x: auto; margin: 18px 0 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
        table { width: 100%; border-collapse: collapse; background: var(--bg-white); font-size: 0.91rem; }
        thead tr { background: var(--primary); color: #fff; }
        th { padding: 13px 16px; text-align: left; font-weight: 700; font-size: 0.92rem; }
        th.text-center { text-align: center; }
        td { padding: 11px 16px; border-bottom: 1px solid #e8eef5; }
        tr:last-child td { border-bottom: none; }
        tr:nth-child(even) td { background: #f7fafd; }
        .text-center { text-align: center; }
        .check { color: var(--green); font-weight: 700; font-size: 1.1rem; }
        .cross { color: #dc3545; font-size: 1.1rem; }

        /* ── FAQ ── */
        .faq-comptabilite { padding: 40px 30px; background: var(--bg-white); }
        .faq-item { margin-bottom: 22px; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; background: var(--bg-light); }
        .faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { margin: 0; font-size: 0.93rem; }

        /* ── NOTE IMPORTANTE ── */
        .note-box {
            background: #eef4fb;
            border: 1px solid #b8d0ea;
            border-radius: var(--radius);
            padding: 14px 18px;
            font-style: italic;
            font-size: 0.92rem;
            margin: 18px 0;
            color: var(--text);
        }

        /* ── RESSOURCES ── */
        .ressources-section {
            background: var(--bg-light);
            padding: 40px 30px;
            border-top: 3px solid var(--border);
        }
        .ressources-section h2 { text-align: center; display: block; border-bottom: none; }
        .ressources-intro { text-align: center; font-size: 1.05rem; margin-bottom: 30px; color: var(--text-light); }
        .ressources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
        .ressource-card { background: var(--bg-white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--primary); }
        .ressource-card h3 { margin-top: 0; font-size: 1.05rem; margin-bottom: 10px; }
        .ressource-card h3 a { text-decoration: none; color: var(--primary); }
        .ressource-card p { color: var(--text-light); margin-bottom: 14px; font-size: 0.92rem; }
        .ressource-card a.lien { color: var(--primary); font-weight: 700; text-decoration: none; }

        /* ── WHATSAPP ── */
        .whatsapp-button {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            background: #25d366;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(37,211,102,0.45);
            transition: transform 0.2s;
        }
        .whatsapp-button:hover { transform: scale(1.1); }
        .whatsapp-button img { width: 32px; height: 32px; }

        /* ── FOOTER ── */
        footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); padding: 36px 30px 24px; }
        .footer-content { display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 24px; }
        .colonne-adresse-liens, .logiciels { flex: 1; min-width: 220px; }
        .adresse { font-size: 0.9rem; line-height: 1.8; margin-bottom: 16px; }
        .liens p, .logiciels p { margin: 5px 0; }
        .liens a, .logiciels a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.88rem; }
        .liens a:hover, .logiciels a:hover { color: var(--accent); }
        .separator { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 10px 0; }
        .footer-seo { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 16px; }
        .footer-seo p { margin: 3px 0; color: inherit; }

        /* ── BADGE INTEGRATION ── */
        .integration-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-light);
            border: 1px solid #f0c040;
            border-radius: 50px;
            padding: 7px 18px;
            font-size: 0.88rem;
            font-weight: 600;
            color: #7a5000;
            margin-bottom: 22px;
        }

        #hero img {
    max-height: 100px;
}

        @media (max-width: 640px) {
            #hero h1 { font-size: 1.45rem; }
            .overview { flex-direction: column; align-items: center; }
            .version-card { max-width: 100%; }
            nav ul li a { padding: 10px 12px; font-size: 0.82rem; }
            section, .content-wrapper, .faq-comptabilite, .ressources-section { padding: 28px 16px; }
            footer { padding: 28px 16px 18px; }
        }
@media (max-width: 480px) {
    .logo-container {
        flex-direction: column; /* Place les logos l'un au-dessus de l'autre */
        align-items: center; /* Centre les logos */
    }

    .logo-left, .logo-right {
        margin-bottom: 10px; /* Ajoute un espace entre les logos */
    }

    #hero img {
        max-height: 60px; /* Réduit encore plus la taille des logos */
    }
}

.qr-code div {
    color: #666;  /* texte visible sur fond blanc */
}

.qr-code img {
    border: 1px solid #ddd;  /* bordure pour rendre visible le QR sur fond blanc */
}

/* ── RESSOURCES ── */
.ressources-section {
    background: var(--bg-light);
    padding: 40px 30px;
    border-top: 3px solid var(--border);
}
.ressources-section > h2 {
    text-align: center;
    display: block;
    border-bottom: none;
    margin-bottom: 8px;
}
.ressources-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 36px;
    color: var(--text-light);
}
.ressources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.ressource-card {
    background: var(--bg-white);
    padding: 20px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none !important;  /* pas de soulignement sur la carte */
    color: inherit;
}
.ressource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,85,164,0.15);
}
.ressource-card .rc-icon {
    font-size: 1.6rem;
    line-height: 1;
    text-decoration: none !important;
}
.ressource-card .rc-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.97rem;
    line-height: 1.4;
    text-decoration: none !important;  /* titre non souligné */
}
.ressource-card:hover .rc-title {
     text-decoration: underline !important;  /* soulignement uniquement au hover */
}
.ressource-card .rc-desc {
    font-size: 0.87rem;
    color: var(--text-light);
    flex-grow: 1;
    margin: 0;
    text-decoration: none;
    font-style: normal;
}
.ressource-card .rc-lien {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: 4px;
    text-decoration: none !important;
}
.ressource-card:hover .rc-lien {
     text-decoration: underline !important;
}