/* Home5 — refonte product-led premium (brief 26/08/2026). Scopé sous .landing-home5.
   Règle CTA : couleur de texte TOUJOURS explicite (jamais d'héritage global). */

.landing-home5 {
    --h5-bg: #fbfbfa;
    --h5-bg-alt: #f4f5f7;
    --h5-white: #ffffff;
    --h5-ink: #0d1526;
    --h5-muted: #55606f;
    --h5-line: rgba(13, 21, 38, 0.09);
    --h5-navy: #0f172a;
    --h5-blue: #1d4ed8;
    --h5-blue-2: #1e40af;
    --h5-gold: #c4a035;
    --h5-gold-2: #e2c36a;
    --h5-dark-bg: #0a0f1d;
    --h5-dark-ink: #f2f5fa;
    --h5-dark-muted: rgba(214, 222, 235, 0.64);
    --h5-dark-line: rgba(255, 255, 255, 0.09);
    --h5-radius: 22px;
    --h5-max: 1220px;
    --h5-font: "Inter", system-ui, sans-serif;
    --h5-display: "Instrument Sans", "Inter", system-ui, sans-serif;

    margin: 0;
    font-family: var(--h5-font);
    color: var(--h5-ink);
    background: var(--h5-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.landing-home5 *,
.landing-home5 *::before,
.landing-home5 *::after { box-sizing: border-box; }

.landing-home5 img { max-width: 100%; display: block; }
.landing-home5 a { color: inherit; }

.h5-wrap {
    width: min(var(--h5-max), calc(100% - 48px));
    margin: 0 auto;
    position: relative;
}

/* ── Preview banner ── */
.h5-preview-banner {
    background: var(--h5-navy);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 16px;
}
.h5-preview-banner strong { color: #fff; font-weight: 600; }
.h5-preview-banner a { color: var(--h5-gold-2) !important; text-decoration: underline; }

/* ── Header ── */
.h5-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(251, 251, 250, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.h5-header.scrolled {
    background: rgba(251, 251, 250, 0.94);
    border-bottom-color: var(--h5-line);
    box-shadow: 0 8px 28px rgba(13, 21, 38, 0.05);
}
.h5-header-inner {
    width: min(var(--h5-max), calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 0;
}
.h5-logo img { height: 38px; width: auto; max-width: none; }
.h5-nav { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.h5-nav-link {
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--h5-muted) !important;
    padding: 9px 14px;
    border-radius: 999px;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.15s ease, background 0.15s ease;
}
.h5-nav-link:hover { color: var(--h5-ink) !important; background: rgba(13, 21, 38, 0.05); }
.h5-has-dropdown { position: relative; }
.h5-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--h5-line);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(13, 21, 38, 0.12);
    padding: 8px;
    display: none;
    flex-direction: column;
}
.h5-has-dropdown.open .h5-dropdown { display: flex; }
.h5-dropdown a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--h5-ink) !important;
    padding: 10px 12px;
    border-radius: 10px;
}
.h5-dropdown a:hover { background: var(--h5-bg-alt); }
.h5-header-actions { display: flex; align-items: center; gap: 10px; }
.h5-burger {
    display: none;
    width: 42px; height: 42px;
    border: 1px solid var(--h5-line);
    border-radius: 12px;
    background: #fff;
    color: var(--h5-ink);
    cursor: pointer;
    place-items: center;
}
.h5-burger svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.h5-mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 8px 24px 18px;
    background: #fff;
    border-bottom: 1px solid var(--h5-line);
}
.h5-mobile-menu[hidden] { display: none; }
.h5-mobile-menu a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--h5-ink) !important;
    padding: 13px 4px;
    border-bottom: 1px solid var(--h5-line);
}
.h5-mobile-menu a:last-child { border-bottom: 0; }

/* ── Boutons — couleurs TOUJOURS explicites ── */
.landing-home5 a.h5-btn,
.landing-home5 button.h5-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 13px 24px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.landing-home5 a.h5-btn:hover,
.landing-home5 button.h5-btn:hover { transform: translateY(-1px); }
.landing-home5 a.h5-btn:focus-visible,
.landing-home5 button.h5-btn:focus-visible {
    outline: 3px solid rgba(29, 78, 216, 0.4);
    outline-offset: 2px;
}

/* Focus clavier visible sur tous les interactifs (nav, chips, FAQ, tags, summary, footer…) */
.landing-home5 a:focus-visible,
.landing-home5 button:focus-visible,
.landing-home5 summary:focus-visible {
    outline: 3px solid rgba(29, 78, 216, 0.4);
    outline-offset: 2px;
    border-radius: 8px;
}
.h5-dark a:focus-visible,
.h5-dark button:focus-visible,
.h5-dark summary:focus-visible,
.h5-final a:focus-visible { outline-color: rgba(226, 195, 106, 0.55); }

/* Primaire : bleu, texte blanc */
.landing-home5 a.h5-btn-primary,
.landing-home5 button.h5-btn-primary {
    background: var(--h5-blue);
    color: #ffffff !important;
    box-shadow: 0 10px 26px rgba(29, 78, 216, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.landing-home5 a.h5-btn-primary:hover,
.landing-home5 button.h5-btn-primary:hover {
    background: var(--h5-blue-2);
    color: #ffffff !important;
    box-shadow: 0 14px 34px rgba(29, 78, 216, 0.38);
}

/* Secondaire : fond clair — texte navy, bordure visible */
.landing-home5 a.h5-btn-secondary,
.landing-home5 button.h5-btn-secondary {
    background: #ffffff;
    color: var(--h5-navy) !important;
    border-color: rgba(13, 21, 38, 0.2);
}
.landing-home5 a.h5-btn-secondary:hover,
.landing-home5 button.h5-btn-secondary:hover {
    background: #f6f8fb;
    color: var(--h5-navy) !important;
    border-color: rgba(13, 21, 38, 0.36);
}

/* Ghost : lien discret */
.landing-home5 a.h5-btn-ghost,
.landing-home5 button.h5-btn-ghost {
    background: transparent;
    color: var(--h5-ink) !important;
    border-color: transparent;
}
.landing-home5 a.h5-btn-ghost:hover,
.landing-home5 button.h5-btn-ghost:hover {
    background: rgba(13, 21, 38, 0.05);
    color: var(--h5-ink) !important;
}

/* White : contexte fond SOMBRE — fond blanc, texte navy */
.landing-home5 a.h5-btn-white,
.landing-home5 button.h5-btn-white {
    background: #ffffff;
    color: var(--h5-navy) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.landing-home5 a.h5-btn-white:hover,
.landing-home5 button.h5-btn-white:hover {
    background: #eef2ff;
    color: var(--h5-navy) !important;
}

/* Outline : contexte fond SOMBRE — texte blanc, bordure blanche */
.landing-home5 a.h5-btn-outline,
.landing-home5 button.h5-btn-outline {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.32);
}
.landing-home5 a.h5-btn-outline:hover,
.landing-home5 button.h5-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.landing-home5 .h5-btn-lg { padding: 16px 32px; font-size: 1.04rem; }
.landing-home5 .h5-btn-sm { padding: 10px 18px; font-size: 0.92rem; }

/* ── Sections ── */
.h5-section { padding: 110px 0; position: relative; }
.h5-section-alt { background: var(--h5-bg-alt); }
.h5-dark { background: var(--h5-dark-bg); color: var(--h5-dark-ink); }

.h5-eyebrow {
    font-family: var(--h5-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--h5-blue);
    margin: 0 0 16px;
}
.h5-eyebrow-dark { color: var(--h5-gold-2); }

.h5-title {
    font-family: var(--h5-display);
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--h5-ink);
    margin: 0 0 18px;
    max-width: 760px;
}
.h5-dark .h5-title { color: var(--h5-dark-ink); }

.h5-sub {
    font-size: 1.1rem;
    color: var(--h5-muted);
    max-width: 620px;
    margin: 0 0 40px;
    line-height: 1.7;
}
.h5-dark .h5-sub { color: var(--h5-dark-muted); }

/* ── Hero ── */
.h5-hero {
    position: relative;
    padding: 96px 0 0;
    background:
        radial-gradient(1000px 480px at 88% -10%, rgba(29, 78, 216, 0.07), transparent 60%),
        radial-gradient(800px 420px at -10% 30%, rgba(196, 160, 53, 0.06), transparent 55%),
        var(--h5-bg);
    overflow: hidden;
}
.h5-hero-inner { text-align: center; max-width: 880px; }
.h5-hero .h5-eyebrow { color: var(--h5-muted); }
.h5-hero h1 {
    font-family: var(--h5-display);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
    color: var(--h5-ink);
    margin: 0 auto 24px;
    max-width: 15ch;
    overflow-wrap: break-word;
}
.h5-hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--h5-muted);
    max-width: 40rem;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.h5-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}
.h5-hero-reassurance {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--h5-muted);
    margin: 0 0 64px;
}

/* ── Captures produit (cadre navigateur discret) ── */
.h5-hero-shot-wrap { margin-top: -8px; }
.h5-hero-shot-wrap::before {
    content: "";
    position: absolute;
    left: 50%; top: 6%;
    transform: translateX(-50%);
    width: 76%; height: 86%;
    background: radial-gradient(ellipse at center, rgba(29, 78, 216, 0.13), rgba(196, 160, 53, 0.06) 55%, transparent 75%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}
.h5-hero-shot-wrap .h5-shot { position: relative; z-index: 1; }
.h5-shot {
    margin: 0;
    background: #fff;
    border: 1px solid var(--h5-line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(13, 21, 38, 0.12), 0 4px 16px rgba(13, 21, 38, 0.05);
}
.h5-shot-hero {
    border-radius: 24px;
    box-shadow: 0 50px 120px rgba(13, 21, 38, 0.18), 0 8px 28px rgba(13, 21, 38, 0.07);
}
.h5-shot-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 16px;
    background: #f6f7f9;
    border-bottom: 1px solid var(--h5-line);
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--h5-muted);
}
.h5-shot-bar i {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(13, 21, 38, 0.12);
    display: block;
}
.h5-shot-bar i:first-child { background: rgba(196, 160, 53, 0.5); }
.h5-shot-bar span { margin-left: 8px; }
.h5-shot img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; background: #eef1f5; }
/* Héro : visuel réduit ~18 % dans la fenêtre + ratio 16/9 natif (pas de crop cover) */
.h5-shot-hero img {
    width: 82%;
    aspect-ratio: auto;
    margin: 20px auto 22px;
    border: 1px solid var(--h5-line);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(13, 21, 38, 0.08);
}

/* ── Preuve sociale (chiffres réels uniquement) ── */
.h5-proof {
    margin: 0 0 14px;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--h5-muted);
}
.h5-proof strong { color: var(--h5-ink); font-weight: 700; }

/* ── Steps ── */
.h5-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
}
.h5-step {
    background: #fff;
    border: 1px solid var(--h5-line);
    border-radius: var(--h5-radius);
    padding: 30px 28px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.h5-step:hover { border-color: rgba(29, 78, 216, 0.22); box-shadow: 0 14px 36px rgba(13, 21, 38, 0.06); }
.h5-step-ico {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, #16213e, var(--h5-navy));
    border: 1px solid rgba(196, 160, 53, 0.28);
    color: var(--h5-gold-2);
    margin-bottom: 18px;
}
.h5-step-ico svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.h5-step h3 {
    font-family: var(--h5-display);
    font-size: 1.14rem;
    margin: 0 0 6px;
    color: var(--h5-ink);
    letter-spacing: -0.02em;
}
.h5-step p { margin: 0; color: var(--h5-muted); font-size: 0.95rem; }

/* ── Splits (texte + capture) ── */
.h5-split {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: center;
}
.h5-split-rev { grid-template-columns: 3fr 2fr; }
.h5-split-copy .h5-sub { margin-bottom: 28px; }
.h5-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.h5-cta-center { justify-content: center; }
.h5-checklist {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}
.h5-checklist li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: var(--h5-muted);
    font-size: 0.98rem;
}
.h5-checklist li strong { color: var(--h5-ink); font-weight: 600; }
.h5-checklist li::before {
    content: "";
    position: absolute;
    left: 0; top: 13px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.14);
}

/* ── Vidéo ── */
.h5-video-wrap { text-align: center; }
.h5-video-wrap .h5-title,
.h5-video-wrap .h5-sub { margin-left: auto; margin-right: auto; }
.h5-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    max-width: 820px;
    margin: 8px auto 0;
    padding: 0;
    border: 1px solid var(--h5-line);
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 30px 80px rgba(13, 21, 38, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.h5-video-thumb:hover { transform: translateY(-2px); box-shadow: 0 40px 100px rgba(13, 21, 38, 0.2); }
.h5-video-thumb img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; opacity: 0.92; }
.h5-video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
}
.h5-video-play svg {
    width: 76px; height: 76px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
    transition: transform 0.2s ease;
}
.h5-video-play svg circle { fill: rgba(255, 255, 255, 0.96); }
.h5-video-play svg polygon { fill: #0d1526; }
.h5-video-thumb:hover .h5-video-play svg { transform: scale(1.06); }

.h5-video-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.h5-video-modal[hidden] { display: none; }
.h5-video-modal-backdrop { position: absolute; inset: 0; background: rgba(5, 8, 15, 0.82); backdrop-filter: blur(6px); }
.h5-video-modal-box {
    position: relative;
    width: min(960px, 100%);
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 50px 140px rgba(0, 0, 0, 0.6);
}
.h5-video-modal-frame { aspect-ratio: 16 / 9; }
.h5-video-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.h5-video-modal-close {
    position: absolute;
    top: -46px; right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
}
.h5-video-modal-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── Sources (dark) ── */
.h5-dark .h5-title,
.h5-dark .h5-sub { margin-left: auto; margin-right: auto; text-align: center; }
.h5-dark .h5-eyebrow { text-align: center; }

.h5-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 48px auto 56px;
    padding: 0;
    list-style: none;
    counter-reset: pipe;
}
.h5-pipe-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--h5-dark-ink);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--h5-dark-line);
    padding: 11px 18px;
    border-radius: 999px;
}
.h5-pipe-ico { display: grid; place-items: center; color: var(--h5-gold-2); }
.h5-pipe-ico svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.h5-pipe-arrow { display: grid; place-items: center; color: rgba(214, 222, 235, 0.4); }
.h5-pipe-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.h5-funds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.h5-fund {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--h5-dark-line);
    border-radius: 18px;
    padding: 22px 18px;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.h5-fund:hover { border-color: rgba(196, 160, 53, 0.32); background: rgba(255, 255, 255, 0.05); }
.h5-fund-ico {
    width: 38px; height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(196, 160, 53, 0.1);
    border: 1px solid rgba(196, 160, 53, 0.24);
    color: var(--h5-gold-2);
    margin-bottom: 14px;
}
.h5-fund-ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.h5-fund h3 { margin: 0 0 6px; font-size: 0.95rem; color: #fff; font-weight: 600; letter-spacing: -0.01em; }
.h5-fund p { margin: 0; font-size: 0.8rem; color: rgba(214, 222, 235, 0.56); line-height: 1.55; }
.h5-funds-note {
    text-align: center;
    margin: 34px auto 0;
    font-size: 0.88rem;
    color: var(--h5-dark-muted);
    max-width: 560px;
}

/* Expandeur « Voir toutes les sources » — details/summary natif : contenu dans le HTML (crawlable) */
.h5-funds-more { margin-top: 14px; text-align: center; }
.h5-funds-more summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--h5-dark-ink);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--h5-dark-line);
    border-radius: 999px;
    padding: 12px 22px;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.h5-funds-more summary::-webkit-details-marker { display: none; }
.h5-funds-more summary:hover { border-color: rgba(196, 160, 53, 0.4); background: rgba(255, 255, 255, 0.07); }
.h5-funds-chevron { display: grid; place-items: center; color: var(--h5-gold-2); transition: transform 0.2s ease; }
.h5-funds-chevron svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.h5-funds-more[open] .h5-funds-chevron { transform: rotate(180deg); }
.h5-funds-more .h5-funds { margin-top: 14px; text-align: left; }
.h5-funds-secondary { grid-template-columns: repeat(4, 1fr); }
.h5-funds-more[open] .h5-funds-secondary { animation: h5FadeUp 0.3s ease; }

/* ── vs ── */
.h5-vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 44px;
}
.h5-vs-col {
    border-radius: 22px;
    padding: 32px;
    border: 1px solid var(--h5-line);
}
.h5-vs-bad { background: #f1f3f6; }
.h5-vs-good {
    background: #fff;
    box-shadow: 0 20px 56px rgba(13, 21, 38, 0.09);
    border-color: rgba(29, 78, 216, 0.2);
}
.h5-vs-col h3 {
    font-family: var(--h5-display);
    margin: 0 0 18px;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}
.h5-vs-bad h3 { color: #475069; }
.h5-vs-good h3 { color: var(--h5-navy); }
.h5-vs-col ul { margin: 0; padding: 0; list-style: none; }
.h5-vs-col li {
    position: relative;
    padding: 11px 0 11px 30px;
    font-size: 0.95rem;
    border-top: 1px solid var(--h5-line);
}
.h5-vs-col li:first-of-type { border-top: 0; }
.h5-vs-bad li { color: #6b7482; }
.h5-vs-bad li::before { content: "–"; position: absolute; left: 2px; color: #9aa3b2; font-weight: 700; }
.h5-vs-good li { color: #2b3547; }
.h5-vs-good li::before {
    content: "";
    position: absolute;
    left: 0; top: 16px;
    width: 15px; height: 15px;
    border-radius: 50%;
    background: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.14);
}

/* ── Pour qui (chips) ── */
.h5-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 36px 0 26px;
}
.h5-chip {
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--h5-muted);
    background: #fff;
    border: 1px solid var(--h5-line);
    padding: 11px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.16s ease;
}
.h5-chip:hover { border-color: rgba(29, 78, 216, 0.4); color: var(--h5-ink); }
.h5-chip.active {
    background: var(--h5-navy);
    color: #fff;
    border-color: var(--h5-navy);
}
.h5-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.h5-panel li {
    background: #fff;
    border: 1px solid var(--h5-line);
    border-radius: 16px;
    padding: 18px 20px;
    font-size: 0.95rem;
    color: var(--h5-ink);
    transition: border-color 0.18s ease;
}
.h5-panel li:hover { border-color: rgba(29, 78, 216, 0.25); }

/* ── Offres ── */
.h5-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.h5-offer {
    border-radius: 26px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
}
.h5-offer-free {
    background: var(--h5-navy);
    color: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}
.h5-offer-free h3 { color: #fff; }
.h5-offer-free ul { color: rgba(226, 232, 240, 0.85); }
.h5-offer-free .h5-btn { margin-top: auto; }
.h5-offer-paid {
    background: #fff;
    border: 1px solid var(--h5-line);
    color: var(--h5-ink);
}
.h5-offer h3 {
    font-family: var(--h5-display);
    font-size: 1.4rem;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.h5-offer-paid > p { color: var(--h5-muted); margin: 0 0 16px; font-size: 0.96rem; }
.h5-offer ul {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}
.h5-offer ul li {
    position: relative;
    padding: 7px 0 7px 26px;
    font-size: 0.96rem;
}
.h5-offer ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 12px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #059669;
}
.h5-offer-paid ul li { color: #2b3547; }
.h5-offer-price { font-size: 0.98rem; color: var(--h5-ink); margin: 0 0 22px; }
.h5-offer-price strong { font-size: 1.3rem; }

/* ── Privacy (dark) ── */
.h5-privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 44px;
}
.h5-privacy-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--h5-dark-line);
    border-radius: 20px;
    padding: 28px 22px;
    transition: border-color 0.18s ease;
}
.h5-privacy-item:hover { border-color: rgba(196, 160, 53, 0.3); }
.h5-privacy-item h3 { margin: 0 0 8px; font-size: 1rem; color: #f2f5fa; font-weight: 600; }
.h5-privacy-item p { margin: 0; font-size: 0.86rem; color: var(--h5-dark-muted); }
.h5-privacy-foot { text-align: center; margin-top: 30px; font-size: 0.92rem; }
.h5-privacy-foot a { color: var(--h5-gold-2) !important; font-weight: 600; text-decoration: none; }
.h5-privacy-foot a:hover { text-decoration: underline; }

/* ── Éditorial SEO ── */
.h5-editorial .h5-title { margin-bottom: 44px; }
.h5-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 56px;
    max-width: 980px;
}
.h5-editorial-grid h3 {
    font-family: var(--h5-display);
    font-size: 1.12rem;
    margin: 0 0 8px;
    color: var(--h5-ink);
    letter-spacing: -0.02em;
}
.h5-editorial-grid p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--h5-muted);
    line-height: 1.75;
}
.h5-editorial-grid strong { color: var(--h5-ink); }

/* ── Q/R publiques ── */
#questions .h5-title, #questions .h5-sub { text-align: center; margin-left: auto; margin-right: auto; }
.h5-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 34px;
}
.h5-tag {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--h5-blue) !important;
    background: #fff;
    border: 1px solid rgba(29, 78, 216, 0.16);
    padding: 11px 18px;
    border-radius: 999px;
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.h5-tag:hover { box-shadow: 0 8px 22px rgba(13, 21, 38, 0.08); border-color: rgba(29, 78, 216, 0.34); }

/* ── Témoignages ── */
#avis .h5-title, #avis .h5-eyebrow { text-align: center; margin-left: auto; margin-right: auto; }
.h5-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.h5-quote {
    background: #fff;
    border: 1px solid var(--h5-line);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 40px rgba(13, 21, 38, 0.05);
}
.h5-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--h5-gold); }
.h5-stars svg { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.h5-star-off { opacity: 0.25; }
.h5-quote p {
    margin: 0 0 20px;
    font-size: 0.96rem;
    color: #334155;
    line-height: 1.7;
    flex: 1;
}
.h5-quote footer { font-size: 0.84rem; color: var(--h5-muted); }
.h5-quote footer strong { color: var(--h5-ink); display: block; }

/* ── FAQ ── */
.h5-faq-wrap .h5-title { text-align: center; margin-left: auto; margin-right: auto; }
.h5-faq { max-width: 760px; margin: 40px auto 0; }
.h5-faq-item { border-bottom: 1px solid var(--h5-line); }
.h5-faq-item button {
    width: 100%;
    background: none;
    border: 0;
    font: 600 1.04rem/1.45 var(--h5-font);
    text-align: left;
    padding: 22px 40px 22px 0;
    cursor: pointer;
    color: var(--h5-ink);
    position: relative;
    transition: color 0.15s ease;
}
.h5-faq-item button:hover { color: var(--h5-blue); }
.h5-faq-item button::after {
    content: "+";
    position: absolute;
    right: 4px; top: 22px;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--h5-muted);
}
.h5-faq-item.active button::after { content: "–"; }
.h5-faq-item .h5-faq-a {
    display: none;
    padding: 0 0 22px;
    color: var(--h5-muted);
    font-size: 0.97rem;
    line-height: 1.7;
}
.h5-faq-item.active .h5-faq-a { display: block; animation: h5FadeUp 0.25s ease; }
@keyframes h5FadeUp { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.h5-faq-a a { color: var(--h5-blue) !important; font-weight: 600; }

/* ── CTA final (dark) ── */
.h5-final {
    text-align: center;
    padding: 110px 24px;
    background:
        radial-gradient(800px 360px at 50% -20%, rgba(196, 160, 53, 0.12), transparent 60%),
        radial-gradient(700px 400px at 50% 120%, rgba(29, 78, 216, 0.18), transparent 60%),
        var(--h5-dark-bg);
    color: var(--h5-dark-ink);
}
.h5-final h2 {
    font-family: var(--h5-display);
    margin: 0 auto 14px;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    letter-spacing: -0.035em;
    color: #fff;
    max-width: 640px;
}
.h5-final p { margin: 0 0 34px; color: var(--h5-dark-muted); font-size: 1.08rem; }

/* ── Footer ── */
.h5-footer {
    padding: 44px 24px 56px;
    border-top: 1px solid var(--h5-line);
    background: #fff;
    text-align: center;
    font-size: 0.88rem;
    color: var(--h5-muted);
}
.h5-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.h5-footer a { text-decoration: none; color: var(--h5-muted) !important; }
.h5-footer a:hover { color: var(--h5-blue) !important; text-decoration: underline; }
.h5-footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}
.h5-footer-social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--h5-bg-alt);
    border: 1px solid var(--h5-line);
    color: var(--h5-muted) !important;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}
.h5-footer-social a:hover { background: rgba(29, 78, 216, 0.08); color: var(--h5-blue) !important; }
.h5-footer-social svg { width: 18px; height: 18px; }
.h5-sep { opacity: 0.3; }

/* ── Sticky CTA mobile ── */
.h5-sticky-cta {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 90;
    padding: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--h5-line);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(13, 21, 38, 0.18);
}
.h5-sticky-cta .h5-btn { width: 100%; }
.h5-sticky-cta[hidden] { display: none; }

/* ── Reveal animations ── */
.h5-reveal { opacity: 0; transform: translateY(16px); }
.h5-reveal.h5-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

@media (prefers-reduced-motion: reduce) {
    .landing-home5 * { transition: none !important; animation: none !important; }
    .h5-reveal { opacity: 1; transform: none; }
}

/* ── Responsive ── */
.h5-cta-short { display: none; }
@media (max-width: 1020px) {
    .h5-nav { display: none; }
    .h5-header-actions { margin-left: auto; }
    .h5-burger { display: grid; }
    .h5-split, .h5-split-rev { grid-template-columns: 1fr; gap: 40px; }
    .h5-split-rev .h5-shot { order: 2; }
    .h5-split-rev .h5-split-copy { order: 1; }
    .h5-steps { grid-template-columns: 1fr; }
    .h5-funds { grid-template-columns: repeat(2, 1fr); }
    .h5-privacy-grid { grid-template-columns: 1fr 1fr; }
    .h5-quotes { grid-template-columns: 1fr; }
    .h5-panel ul { grid-template-columns: 1fr; }
    .h5-editorial-grid { grid-template-columns: 1fr; gap: 28px; }
    .h5-section { padding: 76px 0; }
}
@media (max-width: 760px) {
    .h5-header-inner { width: calc(100% - 32px); gap: 8px; }
    .h5-logo img { height: 30px; }
    .h5-header-actions { gap: 8px; }
    .landing-home5 .h5-header-actions a.h5-btn-primary { display: none; }
    .landing-home5 .h5-header-actions a.h5-btn-ghost { display: inline-flex; padding: 8px 14px; font-size: 0.85rem; white-space: nowrap; }
    .h5-wrap { width: calc(100% - 32px); }
    .h5-hero { padding-top: 64px; }
    .h5-hero h1 { font-size: clamp(1.9rem, 8.2vw, 2.6rem); max-width: 100%; }
    .h5-hero-cta { flex-direction: column; }
    .h5-hero-cta .h5-btn { width: 100%; }
    .h5-hero-reassurance { margin-bottom: 44px; }
    .h5-vs, .h5-offers { grid-template-columns: 1fr; }
    .h5-funds { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .h5-fund { padding: 16px 14px; border-radius: 14px; }
    .h5-fund-ico { width: 32px; height: 32px; margin-bottom: 10px; }
    .h5-fund p { font-size: 0.76rem; }
    .h5-privacy-grid { grid-template-columns: 1fr; }
    .h5-pipeline { flex-direction: column; gap: 6px; }
    .h5-pipe-arrow { transform: rotate(90deg); }
    .h5-offer { padding: 30px 24px; }
    .h5-final { padding: 80px 20px; }
    .h5-final .h5-hero-cta .h5-btn { width: 100%; }
}
