:root {
            --rose-poudre: #c9a5a0;
            --rose-fonce: #a67b7b;
            --rose-tres-clair: #f5ebe8;
            --lavande: #b8a9c9;
            --creme: #faf6f3;
            --blanc: #ffffff;
            --texte-principal: #2d3748;
            --texte-secondaire: #5a6a7a;
            --bleu-ardoise: #4a5568;
            --vert-succes: #2f855a;
            --gradient-accent: linear-gradient(135deg, var(--rose-poudre) 0%, var(--lavande) 100%);
        }
* { margin: 0; padding: 0; box-sizing: border-box; }
.skip-link{position:absolute;left:-9999px;top:0;background:var(--bleu-ardoise,#4a5568);color:#fff;padding:.6rem 1rem;border-radius:0 0 8px 0;z-index:1000;}
.skip-link:focus{left:0;}
:focus-visible{outline:3px solid var(--lavande,#b8a9c9);outline-offset:2px;}
body {
            font-family: 'Inter', sans-serif;
            background: var(--creme);
            color: var(--texte-principal);
            line-height: 1.7;
        }
.header {
            background: var(--gradient-accent);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
.logo {
            display: flex; align-items: center; gap: 0.5rem;
            text-decoration: none; color: var(--blanc);
            font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
        }
.logo-icon {
            width: 40px; height: 40px; background: var(--blanc); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
        }
.logo-icon svg { width: 24px; height: 24px; color: var(--rose-fonce); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: var(--blanc); text-decoration: none; font-weight: 500; }
.breadcrumb { padding: 1rem 2rem; font-size: 0.9rem; color: var(--texte-secondaire); }
.breadcrumb a { color: var(--rose-fonce); text-decoration: none; }
.hero {
            padding: 4rem 2rem; text-align: center;
            background: linear-gradient(135deg, var(--rose-tres-clair) 0%, var(--creme) 100%);
        }
.hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; color: var(--texte-secondaire); max-width: 760px; margin: 0 auto; }
.hero__badge {
            display: inline-block; background: var(--gradient-accent); color: var(--blanc);
            padding: 0.35rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
            margin-bottom: 1.25rem; letter-spacing: 0.5px;
        }
.section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.section h2 {
            font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; margin-bottom: 0.75rem;
            display: flex; align-items: center; gap: 0.75rem;
        }
.section h2 .icon, .icon {
            width: 48px; height: 48px; background: var(--gradient-accent); border-radius: 12px;
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
        }
.icon svg.ico { width: 26px; height: 26px; color: #fff; }
.flag { width: 1.25em; height: auto; border-radius: 2px; vertical-align: -0.15em; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.section__subtitle { color: var(--texte-secondaire); font-size: 1.05rem; margin-bottom: 2rem; max-width: 800px; }
.feature-detail {
            background: var(--blanc); padding: 2rem; border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 1.5rem;
        }
.feature-detail h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--rose-fonce); }
.feature-detail p { color: var(--texte-secondaire); }
.feature-detail ul { margin-top: 1rem; padding-left: 1.5rem; color: var(--texte-secondaire); }
.feature-detail li { margin-bottom: 0.5rem; }
.screenshot { margin-top: 2rem; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); }
.screenshot img { width: 100%; height: auto; display: block; }
.screenshot__caption { font-size: 0.82rem; color: var(--texte-secondaire); text-align: center; margin-top: 0.6rem; font-style: italic; }
/* Split layout */
        .split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-bottom: 2rem; }
.split-layout--reverse .split-layout__text { order: 2; }
.split-layout--reverse .split-layout__media { order: 1; }
/* CTA + Footer */
        .cta-section { background: var(--gradient-accent); padding: 4rem 2rem; text-align: center; color: var(--blanc); }
.cta-section h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; margin-bottom: 1rem; justify-content: center; }
.cta-section p { max-width: 640px; margin: 0 auto 2rem; opacity: 0.9; }
.btn {
            display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 12px;
            text-decoration: none; font-weight: 600; background: var(--blanc); color: var(--texte-principal); transition: transform 0.3s;
        }
.btn:hover { transform: translateY(-2px); }
.cta-section small { display: block; margin-top: 1rem; opacity: 0.85; font-size: 0.85rem; }
.footer { background: var(--texte-principal); color: var(--blanc); padding: 2rem; text-align: center; }
.footer a { color: var(--rose-poudre); }
body { overflow-x: hidden; }
@media (max-width: 768px) {
            .split-layout { grid-template-columns: 1fr; }
.split-layout--reverse .split-layout__text { order: 1; }
.split-layout--reverse .split-layout__media { order: 2; }
.header { padding: 0.75rem 1rem; flex-wrap: wrap; row-gap: 0.55rem; }
.nav-links { gap: 0.5rem 0.9rem; flex-wrap: wrap; justify-content: center; width: 100%; }
.nav-links a { font-size: 0.85rem; padding: 0.25rem 0; }
.hero { padding: 3rem 1.5rem; }
.hero h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
.hero p { font-size: 1rem; }
.section { padding: 3rem 1.5rem; }
.section h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
            .header { justify-content: center; }
.nav-links { gap: 0.5rem; font-size: 0.8rem; }
.logo { font-size: 0.9rem; }
.logo-icon { width: 32px; height: 32px; }
.logo-icon svg { width: 20px; height: 20px; }
.breadcrumb { padding: 0.75rem 1rem; font-size: 0.8rem; }
.hero { padding: 2rem 1rem; }
.hero h1 { font-size: 1.4rem; }
.hero p { font-size: 0.95rem; }
.hero__badge { font-size: 0.75rem; padding: 0.3rem 0.75rem; }
.section { padding: 2rem 1rem; }
.section h2 { font-size: 1.3rem; }
.feature-detail { padding: 1.25rem; }
.cta-section { padding: 2rem 1rem; }
.cta-section h2 { font-size: clamp(1.3rem, 4vw, 2rem); }
.cta-section p { font-size: 0.9rem; }
.btn { width: 100%; justify-content: center; min-height: 48px; }
.footer { padding: 1.5rem 1rem; }
.footer p { font-size: 0.85rem; }
}
.header__brand{display:flex;align-items:center;gap:.85rem;}
.made-in-be{display:inline-flex;align-items:center;gap:.4rem;padding:.28rem .6rem .28rem .45rem;border-radius:999px;font-family:'Inter',sans-serif;white-space:nowrap;}
.made-in-be__flag{width:19px;height:14px;border-radius:2.5px;box-shadow:0 0 0 1px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.18);display:block;flex-shrink:0;}
.made-in-be__text{font-size:.72rem;font-weight:700;letter-spacing:.02em;}
.made-in-be--on-dark{background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.28);}
.made-in-be--on-dark .made-in-be__text{color:#fff;}
@media(max-width:560px){.made-in-be__text{display:none;}.made-in-be{padding:.28rem .4rem;}}
/* ===== Additions GEO : tableaux, FAQ, blocs faits, encadres ===== */
.section > p, .section > ul, .section > ol { max-width: 900px; }
.lede {
    font-size: 1.08rem; line-height: 1.75; color: var(--texte-secondaire);
    max-width: 900px; margin-bottom: 1.5rem;
}
.lede strong { color: var(--texte-principal); }

.table-wrap { overflow-x: auto; margin: 1.5rem 0; -webkit-overflow-scrolling: touch; }
table.data {
    width: 100%; border-collapse: collapse; background: var(--blanc);
    border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(45,55,72,.06);
    font-size: .95rem; min-width: 640px;
}
table.data caption {
    caption-side: top; text-align: left; font-size: .85rem; color: var(--texte-secondaire);
    padding: 0 0 .6rem; font-style: italic;
}
table.data th, table.data td { padding: .8rem 1rem; text-align: left; vertical-align: top; }
table.data thead th {
    background: var(--rose-tres-clair); color: var(--texte-principal);
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .88rem;
}
table.data tbody tr + tr { border-top: 1px solid var(--rose-tres-clair); }
table.data tbody th { font-weight: 600; color: var(--texte-principal); white-space: nowrap; }
table.data td { color: var(--texte-secondaire); }
table.data .yes { color: var(--vert-succes); font-weight: 600; }
table.data .no { color: #a94442; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.fact { background: var(--blanc); border-radius: 14px; padding: 1.4rem; box-shadow: 0 2px 10px rgba(45,55,72,.06); }
.fact__value {
    display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem;
    font-weight: 800; color: var(--rose-fonce); line-height: 1.1;
}
.fact__label { display: block; margin-top: .4rem; font-size: .9rem; color: var(--texte-secondaire); }
.fact__src { display: block; margin-top: .5rem; font-size: .75rem; color: var(--texte-secondaire); opacity: .8; }
.fact__src a { color: var(--rose-fonce); }

.callout {
    background: var(--blanc); border-left: 4px solid var(--rose-poudre); border-radius: 10px;
    padding: 1.1rem 1.3rem; margin: 1.5rem 0; max-width: 900px;
    font-size: .96rem; line-height: 1.7; color: var(--texte-secondaire);
}
.callout strong { color: var(--texte-principal); }
.callout--warn { border-left-color: #d69e2e; }

.faq { max-width: 900px; }
.faq__item { background: var(--blanc); border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: .9rem; box-shadow: 0 2px 8px rgba(45,55,72,.05); }
.faq__q { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.02rem; font-weight: 700; margin-bottom: .5rem; color: var(--texte-principal); }
.faq__a { font-size: .95rem; line-height: 1.7; color: var(--texte-secondaire); }
.faq__a p + p { margin-top: .6rem; }

.steps { counter-reset: step; list-style: none; max-width: 900px; padding: 0; }
.steps li { position: relative; padding-left: 3rem; margin-bottom: 1.4rem; }
.steps li::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 0; top: .1rem; width: 2rem; height: 2rem; border-radius: 50%;
    background: var(--gradient-accent); color: #fff; font-weight: 700;
    display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.steps li strong { display: block; color: var(--texte-principal); margin-bottom: .2rem; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.card { background: var(--blanc); border-radius: 16px; padding: 1.6rem; box-shadow: 0 2px 10px rgba(45,55,72,.06); border: 1px solid transparent; transition: all .3s; }
.card:hover { border-color: var(--rose-poudre); transform: translateY(-3px); }
.card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; margin-bottom: .5rem; }
.card p { font-size: .92rem; color: var(--texte-secondaire); line-height: 1.65; }
.card__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-fonce); background: var(--rose-tres-clair); border-radius: 999px; padding: .22rem .65rem; margin-bottom: .7rem; }

.section h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.2rem; margin: 2rem 0 .6rem; }
.updated { font-size: .82rem; color: var(--texte-secondaire); opacity: .85; margin-top: .5rem; }
.srcnote { font-size: .82rem; color: var(--texte-secondaire); margin-top: .8rem; }
.srcnote a { color: var(--rose-fonce); }
@media (max-width: 700px) { .section { padding: 2.5rem 1.25rem; } }

/* La nav porte 7 entrees : elle doit se replier plutot que deborder sur petit ecran. */
.header { flex-wrap: wrap; gap: .75rem 1rem; }
.nav-links { flex-wrap: wrap; row-gap: .35rem; }
@media (max-width: 820px) {
    .header { justify-content: center; text-align: center; }
    .nav-links { justify-content: center; font-size: .92rem; gap: .5rem 1rem; }
}
