﻿/* =========================================================================
   Flowria — Landing / vitrine
   Direction : moderne épuré clair, éditorial-tech. Papier chaud + encre,
   accent émeraude (finance/confiance), micro-accent or.
   Typos : Fraunces (titres) + Hanken Grotesk (texte).
   ========================================================================= */

:root {
    --paper: #FAF8F3;
    --paper-2: #F3F0E8;
    --card: #FFFFFF;
    --ink: #141611;
    --ink-soft: #55584E;
    --ink-faint: #8A8C82;
    --line: #E7E3D8;
    --line-strong: #D8D3C5;

    --emerald: #0F7A54;
    --emerald-strong: #0B5E40;
    --emerald-tint: #E7F1EB;
    --gold: #B07D25;
    --gold-tint: #F6EEDC;

    --r-lg: 20px;
    --r-md: 14px;
    --r-sm: 10px;
    --pill: 999px;

    --shadow-sm: 0 1px 2px rgba(20, 22, 17, .04), 0 1px 3px rgba(20, 22, 17, .06);
    --shadow-md: 0 6px 16px -6px rgba(20, 22, 17, .12), 0 12px 40px -12px rgba(20, 22, 17, .10);
    --shadow-lg: 0 20px 50px -20px rgba(11, 94, 64, .28), 0 8px 24px -12px rgba(20, 22, 17, .14);

    --container: 1140px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.lp {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.lp a { color: inherit; text-decoration: none; }
.lp img { max-width: 100%; display: block; }

.lp-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Typographie ---- */
.lp h1, .lp h2, .lp h3 {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.08;
    margin: 0;
    color: var(--ink);
}
.lp h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.lp h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: 0; }
.lp p { margin: 0; }

.lp .eyebrow {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--emerald);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lp .eyebrow::before {
    content: ""; width: 22px; height: 1.5px; background: var(--emerald); display: inline-block;
}

/* ---- Boutons ---- */
.lp .btn {
    --_bg: var(--ink); --_fg: #fff; --_bd: var(--ink);
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: inherit; font-size: .98rem; font-weight: 600;
    padding: 12px 22px; border-radius: var(--r-sm);
    background: var(--_bg); color: var(--_fg); border: 1.5px solid var(--_bd);
    cursor: pointer; transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s;
    white-space: nowrap;
}
.lp .btn:hover { transform: translateY(-2px); }
.lp .btn-primary { --_bg: var(--emerald); --_fg: #fff; --_bd: var(--emerald); box-shadow: var(--shadow-md); }
.lp .btn-primary:hover { --_bg: var(--emerald-strong); --_bd: var(--emerald-strong); box-shadow: var(--shadow-lg); }
.lp .btn-ghost { --_bg: transparent; --_fg: var(--ink); --_bd: var(--line-strong); }
.lp .btn-ghost:hover { --_bd: var(--ink); background: #fff; }
.lp .btn-lg { padding: 15px 28px; font-size: 1.05rem; }

/* ---- Nav ---- */
.lp-nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    backdrop-filter: saturate(1.4) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s, background .3s;
}
.lp-nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.lp-nav__inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.lp-brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; }
.lp-brand__mark {
    width: 34px; height: 34px; border-radius: 9px;
    background: linear-gradient(150deg, var(--emerald), var(--emerald-strong));
    display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
    flex: none;
}
.lp-brand__mark svg { width: 19px; height: 19px; }
.lp-brand__img { width: 24px; height: 24px; object-fit: contain; display: block; }
.lp-brand b { font-weight: 800; }
.lp-brand span { color: var(--emerald); }
.lp-nav__links { display: flex; gap: 28px; margin-left: 12px; }
.lp-nav__links a { font-size: .96rem; color: var(--ink-soft); font-weight: 500; transition: color .18s; }
.lp-nav__links a:hover { color: var(--ink); }
.lp-nav__cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lp-nav__cta .login { font-weight: 600; font-size: .96rem; color: var(--ink-soft); }
.lp-nav__cta .login:hover { color: var(--ink); }
.lp-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.lp-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .25s; }

/* ---- Hero ---- */
.lp-hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.lp-hero__bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, rgba(20,22,17,.05) 1px, transparent 0);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 75%);
            mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 75%);
}
.lp-hero__halo {
    position: absolute; z-index: 0; width: 620px; height: 620px; right: -180px; top: -220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(15,122,84,.14), transparent 62%);
    pointer-events: none;
}
.lp-hero__grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.lp-hero__eyebrow { margin-bottom: 22px; }
.lp-hero h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); }
.lp-hero h1 em { font-style: italic; color: var(--emerald); }
.lp-hero__sub { margin-top: 22px; font-size: 1.2rem; color: var(--ink-soft); max-width: 34ch; }
.lp-hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.lp-hero__trust { margin-top: 26px; display: flex; align-items: center; gap: 18px; color: var(--ink-faint); font-size: .9rem; }
.lp-hero__trust b { color: var(--ink); font-weight: 700; }
.lp-hero__trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); animation: rise .8s var(--ease) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .15s; } .d3 { animation-delay: .25s; }
.d4 { animation-delay: .35s; } .d5 { animation-delay: .45s; }

/* Invoice mockup */
.lp-invoice {
    position: relative; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 26px 26px 22px;
    animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.lp-invoice::before {
    content: "PAYÉE"; position: absolute; top: 20px; right: -8px;
    background: var(--emerald); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .12em;
    padding: 6px 14px; border-radius: 6px; box-shadow: var(--shadow-md); transform: rotate(3deg);
}
.lp-invoice__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.lp-invoice__title { font-family: "Fraunces", serif; font-size: 1.3rem; font-weight: 600; }
.lp-invoice__meta { font-size: .82rem; color: var(--ink-faint); }
.lp-invoice__party { font-size: .86rem; color: var(--ink-soft); margin-bottom: 16px; }
.lp-invoice__party b { color: var(--ink); display: block; font-size: .95rem; }
.lp-invoice__rows { border-top: 1px dashed var(--line-strong); margin-top: 6px; }
.lp-invoice__row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.lp-invoice__row span:first-child { color: var(--ink-soft); }
.lp-invoice__row span:last-child { font-variant-numeric: tabular-nums; font-weight: 600; }
.lp-invoice__total { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 2px solid var(--ink); }
.lp-invoice__total .lbl { font-weight: 700; }
.lp-invoice__total .amt { font-family: "Fraunces", serif; font-size: 1.7rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.lp-chip {
    position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--pill);
    box-shadow: var(--shadow-md); font-size: .82rem; font-weight: 600; padding: 8px 14px; display: flex; align-items: center; gap: 8px;
}
.lp-chip .ic { color: var(--emerald); display: grid; place-items: center; }
.lp-chip--tva { left: -34px; bottom: 46px; animation: float 6s ease-in-out infinite .5s; }
.lp-chip--pdf { right: -22px; bottom: -18px; animation: float 8s ease-in-out infinite 1s; }

/* ---- Sections génériques ---- */
.lp-section { padding: clamp(64px, 9vw, 108px) 0; }
.lp-section--alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.lp-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.lp-head .eyebrow::before { display: none; }
.lp-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.12rem; }

/* Logos bar */
.lp-logos { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; opacity: .72; }
.lp-logos span { font-weight: 700; letter-spacing: .04em; color: var(--ink-faint); font-size: 1.05rem; }

/* ---- Features ---- */
.lp-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-feature {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.lp-feature__ic {
    width: 46px; height: 46px; border-radius: 12px; background: var(--emerald-tint); color: var(--emerald);
    display: grid; place-items: center; margin-bottom: 18px;
}
.lp-feature__ic svg { width: 23px; height: 23px; }
.lp-feature h3 { margin-bottom: 8px; }
.lp-feature p { color: var(--ink-soft); font-size: .98rem; }
.lp-feature--wide { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; background: linear-gradient(140deg, var(--ink) 0%, #23271d 100%); color: #fff; border: 0; }
.lp-feature--wide h3 { color: #fff; font-size: 1.6rem; font-family: "Fraunces", serif; }
.lp-feature--wide p { color: rgba(255,255,255,.72); }
.lp-feature--wide .lp-feature__ic { background: rgba(255,255,255,.1); color: #fff; }
.lp-feature--wide .kpis { display: flex; gap: 30px; margin-top: 6px; }
.lp-feature--wide .kpis b { font-family: "Fraunces", serif; font-size: 2rem; color: #fff; display: block; }
.lp-feature--wide .kpis span { color: rgba(255,255,255,.6); font-size: .86rem; }

/* ---- Workflow textile ---- */
.lp-workflow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.lp-workflow div {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
}
.lp-workflow b {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--emerald-tint);
    color: var(--emerald);
    font-weight: 800;
    margin-bottom: 14px;
}
.lp-workflow span {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--ink);
    margin-bottom: 8px;
}
.lp-workflow p {
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.45;
}

/* ---- Cibles textile ---- */
.lp-targets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lp-targets article {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.lp-targets article > span {
    display: inline-flex;
    color: var(--emerald);
    background: var(--emerald-tint);
    border-radius: var(--pill);
    padding: 4px 10px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}
.lp-targets h3 { margin-bottom: 10px; }
.lp-targets p { color: var(--ink-soft); font-size: .98rem; }

/* ---- Accompagnement ---- */
.lp-accompagnement {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 46px;
    align-items: center;
}
.lp-accompagnement p {
    color: var(--ink-soft);
    margin-top: 18px;
    font-size: 1.06rem;
}
.lp-accompagnement__card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}
.lp-accompagnement__card p {
    margin-top: 10px;
    font-size: .98rem;
}
.lp-accompagnement__card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-accompagnement__card li {
    display: flex;
    gap: 10px;
    color: var(--ink-soft);
    font-size: .94rem;
}
.lp-accompagnement__card li svg {
    width: 17px;
    height: 17px;
    color: var(--emerald);
    flex: none;
    margin-top: 4px;
}

/* ---- Pricing ---- */
.lp-billing-toggle { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 40px; font-weight: 600; color: var(--ink-soft); }
.lp-switch { position: relative; width: 54px; height: 30px; border-radius: var(--pill); background: var(--line-strong); border: 0; cursor: pointer; transition: background .25s; flex: none; }
.lp-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.lp-switch.on { background: var(--emerald); }
.lp-switch.on::after { transform: translateX(24px); }
.lp-billing-toggle .save { color: var(--emerald); background: var(--emerald-tint); padding: 3px 10px; border-radius: var(--pill); font-size: .8rem; }
.lp-billing-toggle .muted { color: var(--ink-faint); font-weight: 500; }
.lp-billing-toggle .active-lbl { color: var(--ink); }

.lp-pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.lp-plan {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 22px;
    display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    position: relative;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-plan--featured { border-color: var(--emerald); box-shadow: var(--shadow-lg); }
.lp-plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--emerald); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--pill); }
.lp-plan__name { font-family: "Fraunces", serif; font-size: 1.35rem; font-weight: 600; }
.lp-plan__desc { color: var(--ink-soft); font-size: .9rem; min-height: 40px; margin-top: 4px; }
.lp-plan__price { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.lp-plan__price .amt { font-family: "Fraunces", serif; font-size: 2.6rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.lp-plan__price .per { color: var(--ink-faint); font-size: .9rem; }
.lp-plan__price .free { font-family: "Fraunces", serif; font-size: 2.6rem; font-weight: 600; }
.lp-plan__cta { margin: 18px 0; }
.lp-plan__cta .btn { width: 100%; }
.lp-plan__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.lp-plan__features li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-soft); align-items: flex-start; }
.lp-plan__features li svg { width: 17px; height: 17px; color: var(--emerald); flex: none; margin-top: 3px; }
.lp-plan__features li.off { color: var(--ink-faint); }
.lp-plan__features li.off svg { color: var(--line-strong); }

/* ---- Testimonials ---- */
.lp-tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-tst {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; display: flex; flex-direction: column; gap: 18px;
}
.lp-tst__stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.lp-tst__quote { font-family: "Fraunces", serif; font-size: 1.12rem; line-height: 1.5; color: var(--ink); }
.lp-tst__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.lp-tst__av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--emerald), var(--emerald-strong)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.lp-tst__who b { display: block; font-size: .95rem; }
.lp-tst__who span { color: var(--ink-faint); font-size: .85rem; }

/* ---- FAQ ---- */
.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq__item { border-bottom: 1px solid var(--line); }
.lp-faq__q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: inherit; font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.lp-faq__q .plus { flex: none; width: 26px; height: 26px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; transition: transform .3s var(--ease), background .2s, color .2s, border-color .2s; }
.lp-faq__item.open .lp-faq__q .plus { transform: rotate(45deg); background: var(--emerald); color: #fff; border-color: var(--emerald); }
.lp-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.lp-faq__a p { padding: 0 0 22px; color: var(--ink-soft); }

/* ---- About ---- */
.lp-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
/* Seul bloc de la page qu'AUCUN palier responsive ne rattrapait. `1fr` vaut
   `minmax(auto, 1fr)` : son minimum est le contenu, donc les 4 cartes refusaient
   de descendre sous 386 px alors qu'un téléphone de 375 px n'en offre que 327.
   Le conteneur parent était poussé hors de l'écran et TOUTE la page défilait
   horizontalement. `minmax(0, 1fr)` autorise le rétrécissement tout en gardant
   la grille 2×2 voulue par la maquette — `auto-fit` la cassait en 3+1 sur grand
   écran. */
.lp-about__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.lp-about__stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.lp-about__stat b { font-family: "Fraunces", serif; font-size: 2.2rem; color: var(--emerald); display: block; }
.lp-about__stat span { color: var(--ink-soft); font-size: .92rem; }
.lp-about p { color: var(--ink-soft); margin-top: 18px; font-size: 1.05rem; }
.lp-about p + p { margin-top: 14px; }

/* ---- CTA band ---- */
.lp-cta {
    position: relative; overflow: hidden; text-align: center; color: #fff;
    background: radial-gradient(120% 140% at 50% 0%, #167a57 0%, #0b5e40 55%, #093f2d 100%);
    border-radius: var(--r-lg); padding: clamp(48px, 7vw, 84px) 24px; box-shadow: var(--shadow-lg);
}
.lp-cta::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0); background-size: 24px 24px; opacity: .5; }
.lp-cta h2 { color: #fff; position: relative; font-size: clamp(2rem, 4vw, 3rem); }
.lp-cta p { position: relative; color: rgba(255,255,255,.8); margin: 16px auto 30px; max-width: 44ch; font-size: 1.12rem; }
.lp-cta .btn { position: relative; }
.lp-cta .btn-primary { --_bg: #fff; --_fg: var(--emerald-strong); --_bd: #fff; }
.lp-cta .btn-primary:hover { --_bg: #fff; --_fg: var(--emerald-strong); }
.lp-cta .btn-ghost { --_fg: #fff; --_bd: rgba(255,255,255,.4); }
.lp-cta .btn-ghost:hover { --_bd: #fff; background: rgba(255,255,255,.08); }
.lp-cta__note { position: relative; margin-top: 18px; font-size: .88rem; color: rgba(255,255,255,.7); }

/* ---- Contact ---- */
.lp-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lp-contact__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px; box-shadow: var(--shadow-sm); }
.lp-contact__row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.lp-contact__row:last-child { border-bottom: 0; }
.lp-contact__row .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--emerald-tint); color: var(--emerald); display: grid; place-items: center; flex: none; }
.lp-contact__row b { display: block; }
.lp-contact__row span { color: var(--ink-soft); font-size: .92rem; }

/* ---- Footer ---- */
.lp-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.lp-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.lp-footer__brand .lp-brand { color: #fff; margin-bottom: 14px; }
.lp-footer__brand p { color: rgba(255,255,255,.55); font-size: .92rem; max-width: 30ch; }
.lp-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; font-family: "Hanken Grotesk", sans-serif; font-weight: 700; }
.lp-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.lp-footer ul a { color: rgba(255,255,255,.65); font-size: .93rem; transition: color .18s; }
.lp-footer ul a:hover { color: #fff; }
.lp-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .86rem; color: rgba(255,255,255,.45); gap: 16px; flex-wrap: wrap; }
.lp-footer__bottom a { color: rgba(255,255,255,.6); }

/* ---- Cookie banner ---- */
.lp-cookie {
    position: fixed; left: 24px; bottom: 24px; z-index: 80; max-width: 380px;
    background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
    padding: 20px; display: none;
}
.lp-cookie.show { display: block; animation: rise .5s var(--ease); }
.lp-cookie p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 14px; }
.lp-cookie p b { color: var(--ink); }
.lp-cookie__actions { display: flex; gap: 10px; }
.lp-cookie__actions .btn { padding: 9px 16px; font-size: .88rem; flex: 1; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
    .lp-hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-hero__visual { max-width: 420px; margin: 0 auto; width: 100%; }
    .lp-features__grid, .lp-tst__grid { grid-template-columns: 1fr 1fr; }
    .lp-workflow { grid-template-columns: repeat(3, 1fr); }
    .lp-targets, .lp-accompagnement { grid-template-columns: 1fr; }
    .lp-feature--wide, .lp-feature--wide { grid-column: span 2; grid-template-columns: 1fr; }
    .lp-pricing__grid { grid-template-columns: 1fr 1fr; }
    .lp-about__grid, .lp-contact__grid { grid-template-columns: 1fr; gap: 34px; }
    .lp-footer__top { grid-template-columns: 1fr 1fr; }

    /* Bascule en menu burger dès 940 px : entre 620 et 940 les liens de
       navigation et le bouton d'essai ne tenaient plus sur une ligne, et la
       barre sortait de l'écran (bouton mesuré à 1014 px dans 753 px). */
    .lp-nav__links { display: none; }
    .lp-burger { display: block; }
    .lp-nav__cta .login { display: none; }
    .lp-nav__links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--paper); border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 8px; }
    /* L'écart de 32 px entre logo et actions ne laissait pas assez de place au
       bouton d'essai + burger : la barre dépassait de l'écran et entraînait
       toute la page en défilement horizontal. */
    .lp-nav__inner { gap: 12px; }
}
@media (max-width: 620px) {
    body.lp { font-size: 16px; }
    .lp-features__grid, .lp-tst__grid, .lp-pricing__grid { grid-template-columns: 1fr; }
    .lp-workflow { grid-template-columns: 1fr; }
    .lp-feature--wide { grid-column: span 1; }
    .lp-footer__top { grid-template-columns: 1fr 1fr; }
    .lp-chip--tva { left: -8px; } .lp-chip--pdf { right: -4px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp *, .lp *::before, .lp *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
