/* Adiman — site public (accueil, tarifs, devis, contact, pages légales).
   Feuille indépendante de adiman.css : la plateforme a sa propre identité, distincte de
   celle des boutiques qu'elle héberge. Aucune ressource externe (polices embarquées). */

@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 500 800;
    font-stretch: 100%;
    font-display: swap;
    src: url('../assets/fonts/bricolagegrotesque-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 500 800;
    font-stretch: 100%;
    font-display: swap;
    src: url('../assets/fonts/bricolagegrotesque-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* Palette */
    --lp-indigo: #0E2A6E;
    --lp-indigo-deep: #071C4F;
    --lp-indigo-soft: #E5ECF8;
    --lp-saffron: #FF8A00;
    --lp-saffron-deep: #B35A06;
    --lp-jade: #0B8F63;
    --lp-paper: #F4F6FA;
    --lp-white: #FFFFFF;
    --lp-slate: #33405A;
    --lp-muted: #5E6A85;
    --lp-line: #DAE1EE;

    /* Statuts de commande (mêmes libellés que dans l'application) */
    --lp-st-attente: #5E6A85;
    --lp-st-confirmee: #3949AB;
    --lp-st-expediee: #B26A00;
    --lp-st-livree: #0B8F63;
    --lp-st-relancer: #C2410C;

    /* Typographie */
    --lp-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    --lp-text: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --lp-radius: 14px;
    --lp-radius-small: 8px;
    --lp-gutter: clamp(1rem, 4vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.lp {
    margin: 0;
    font-family: var(--lp-text);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--lp-slate);
    background: var(--lp-white);
    -webkit-font-smoothing: antialiased;
}

.lp img { max-width: 100%; display: block; }

.lp h1, .lp h2, .lp h3 {
    font-family: var(--lp-display);
    color: var(--lp-indigo);
    margin: 0;
    font-optical-sizing: auto;
}
.lp h1 {
    font-size: clamp(2.3rem, 5.2vw, 3.9rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.025em;
}
.lp h2 {
    font-size: clamp(1.75rem, 3.4vw, 2.6rem);
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.lp h3 {
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.lp p { margin: 0; }

.lp a { color: inherit; }
.lp :focus-visible {
    outline: 3px solid var(--lp-saffron);
    outline-offset: 3px;
    border-radius: 4px;
}

.lp-wrap {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: var(--lp-gutter);
}

.lp-skip {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 100;
    padding: .5rem 1rem;
    background: var(--lp-indigo);
    color: var(--lp-white);
    border-radius: var(--lp-radius-small);
}
.lp-skip:focus { top: 1rem; }

/* ─── Boutons ─── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 3rem;
    padding: .7rem 1.4rem;
    border: 2px solid var(--lp-saffron);
    border-radius: 999px;
    background: var(--lp-saffron);
    color: var(--lp-indigo-deep) !important;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease;
}
.lp-btn:hover { background: #FFA333; border-color: #FFA333; }
.lp-btn--small { min-height: 2.5rem; padding: .45rem 1rem; font-size: .95rem; }
.lp-btn--ghost {
    background: transparent;
    border-color: var(--lp-indigo);
    color: var(--lp-indigo) !important;
}
.lp-btn--ghost:hover { background: var(--lp-indigo-soft); border-color: var(--lp-indigo); }
.lp-btn--outline {
    background: var(--lp-white);
    border-color: var(--lp-indigo);
    color: var(--lp-indigo) !important;
}
.lp-btn--outline:hover { background: var(--lp-indigo-soft); border-color: var(--lp-indigo); }
.lp-btn--light { background: var(--lp-white); border-color: var(--lp-white); }
.lp-btn--light:hover { background: var(--lp-paper); border-color: var(--lp-paper); }
/* Discussion WhatsApp : vert assombri pour un contraste suffisant sur blanc. */
.lp-btn--whatsapp { background: var(--lp-white); border-color: #0A7A55; color: #0A7A55 !important; }
.lp-btn--whatsapp:hover { background: #E7F5EF; border-color: #0A7A55; }
.lp-btn--whatsapp .bi { font-size: 1.1em; }

.lp-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--lp-indigo);
}
.lp-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ─── En-tête ─── */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--lp-line);
}
.lp-header__row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 4.25rem;
}
.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    font-family: var(--lp-display);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    color: var(--lp-indigo) !important;
}
.lp-brand img { border-radius: 9px; }
.lp-brand .lp-brand__logo { display: block; height: 40px; width: auto; border-radius: 0; }
@media (max-width: 480px) { .lp-brand .lp-brand__logo { height: 34px; } }

/* Menu : panneau déroulant sur mobile, ligne unique à partir de 900 px. */
.lp-menu-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 2.6rem;
    padding: .4rem .9rem;
    border: 1.5px solid var(--lp-line);
    border-radius: 999px;
    background: var(--lp-white);
    color: var(--lp-indigo);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.lp-menu-toggle i { font-size: 1.3rem; line-height: 1; }
.lp-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem var(--lp-gutter) 1.5rem;
    background: var(--lp-white);
    border-bottom: 1px solid var(--lp-line);
    box-shadow: 0 20px 30px -20px rgba(7, 28, 79, .35);
}
.lp-menu.is-open { display: block; }
.lp-nav { display: grid; }
.lp-nav a {
    padding: .75rem 0;
    border-bottom: 1px solid var(--lp-line);
    text-decoration: none;
    font-weight: 500;
    color: var(--lp-slate);
}
.lp-nav a:hover, .lp-nav a[aria-current="page"] { color: var(--lp-indigo); }
.lp-nav a[aria-current="page"] { font-weight: 700; }
.lp-header__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    margin-top: 1.1rem;
}
@media (min-width: 900px) {
    .lp-menu-toggle { display: none; }
    .lp-menu {
        position: static;
        display: flex;
        flex: 1;
        align-items: center;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }
    .lp-nav { display: flex; gap: 1.6rem; margin-left: 1.5rem; }
    .lp-nav a { padding: .3rem 0; border: 0; border-bottom: 2px solid transparent; }
    .lp-nav a[aria-current="page"] { border-bottom-color: var(--lp-saffron); }
    .lp-header__actions { margin: 0 0 0 auto; flex-wrap: nowrap; }
}
@media (max-width: 480px) { .lp-brand { font-size: 1.25rem; } }

/* ─── Haut de page ─── */
.lp-hero {
    position: relative;
    padding-block: clamp(2.5rem, 7vw, 5.5rem) clamp(3rem, 7vw, 6rem);
    background: var(--lp-paper);
    overflow: hidden;
}
/* Pan indigo derrière l'aperçu : il ancre le cahier du jour dans la composition. */
.lp-hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 0;
    width: 38%;
    background: var(--lp-indigo);
    border-top-left-radius: 48px;
    display: none;
}
.lp-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}
.lp-hero__text { max-width: 36rem; }
.lp-lead {
    margin-top: 1.4rem !important;
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 34rem;
}
.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}
.lp-assurances {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: .55rem;
    font-size: .98rem;
}
.lp-assurances li { display: flex; align-items: center; gap: .6rem; }
.lp-assurances i { color: var(--lp-jade); font-size: 1.1rem; }

@media (min-width: 960px) {
    .lp-hero::after { display: block; }
    .lp-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
}

/* ─── Aperçu : cahier du jour ─── */
.lp-ledger {
    position: relative;
    margin: 0;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-line);
    box-shadow: 0 30px 60px -30px rgba(7, 28, 79, .45);
    font-size: .95rem;
    width: 100%;
    max-width: 520px;
    justify-self: center;
}
.lp-ledger__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--lp-line);
}
.lp-ledger__title {
    font-family: var(--lp-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--lp-indigo);
}
.lp-ledger__date { color: var(--lp-muted); font-size: .88rem; }
.lp-ledger__rows { list-style: none; margin: 0; padding: .35rem 0; }
.lp-row {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto auto;
    align-items: center;
    gap: .75rem;
    padding: .7rem 1.25rem;
    transition: background-color .6s ease;
}
.lp-row + .lp-row { border-top: 1px dashed var(--lp-line); }
.lp-row.is-updated { background: #FFF8EB; }
.lp-row__num {
    color: var(--lp-muted);
    font-variant-numeric: tabular-nums;
    font-size: .88rem;
}
.lp-row__num::before { content: '#'; }
.lp-row__client { font-weight: 600; color: var(--lp-indigo); line-height: 1.25; min-width: 0; }
.lp-row__client small {
    display: block;
    font-weight: 400;
    color: var(--lp-muted);
    font-size: .8rem;
}
.lp-row__amount {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    white-space: nowrap;
}
.lp-status {
    display: inline-block;
    min-width: 6.6rem;
    text-align: center;
    padding: .22rem .6rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1.5px solid currentColor;
    transition: color .3s ease, background-color .3s ease;
}
.lp-status--attente { color: var(--lp-st-attente); }
.lp-status--confirmee { color: var(--lp-st-confirmee); }
.lp-status--expediee { color: var(--lp-st-expediee); }
.lp-status--livree { color: var(--lp-white); background: var(--lp-st-livree); border-color: var(--lp-st-livree); }
.lp-status--relancer { color: var(--lp-st-relancer); }
.lp-ledger__foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--lp-line);
    background: var(--lp-paper);
    border-radius: 0 0 var(--lp-radius) var(--lp-radius);
}
.lp-ledger__foot strong {
    font-family: var(--lp-display);
    font-size: 1.45rem;
    color: var(--lp-jade);
    font-variant-numeric: tabular-nums;
}
/* Sous la carte, décalée vers la gauche : elle ne masque aucune ligne du cahier. */
.lp-ledger { margin-bottom: 3.25rem; }
.lp-toast {
    position: absolute;
    left: -1.25rem;
    top: calc(100% + .85rem);
    display: flex;
    align-items: center;
    gap: .75rem;
    max-width: 19rem;
    padding: .75rem 1rem;
    background: var(--lp-indigo-deep);
    color: var(--lp-white);
    border-radius: var(--lp-radius-small);
    box-shadow: 0 18px 30px -15px rgba(7, 28, 79, .6);
    font-size: .88rem;
    line-height: 1.35;
    transition: opacity .5s ease, transform .5s ease;
}
.lp-toast i { color: var(--lp-saffron); font-size: 1.35rem; }
.lp-toast strong { display: block; font-weight: 700; }
.lp-toast.is-waiting { opacity: 0; transform: translateY(10px); }

@media (max-width: 520px) {
    .lp-row { grid-template-columns: minmax(0, 1fr) auto; row-gap: .3rem; }
    .lp-row__num { display: none; }
    .lp-row__amount { grid-column: 1; grid-row: 2; font-size: .9rem; }
    .lp-status { grid-column: 2; grid-row: 1 / span 2; min-width: 0; }
    .lp-toast { left: .75rem; right: .75rem; max-width: none; }
    .lp-ledger { margin-bottom: 4.5rem; }
}

/* ─── Sections ─── */
.lp-section { padding-block: clamp(3.5rem, 8vw, 6rem); }

.lp-checks {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: .55rem;
}
.lp-checks li {
    position: relative;
    padding-left: 1.7rem;
}
.lp-checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .42em;
    width: 1rem;
    height: .55rem;
    border-left: 2.5px solid var(--lp-jade);
    border-bottom: 2.5px solid var(--lp-jade);
    transform: rotate(-45deg);
}
.lp-checks li.lp-checks__lead { padding-left: 0; font-weight: 600; color: var(--lp-indigo); }
.lp-checks li.lp-checks__lead::before { display: none; }

/* Deux outils */
.lp-duo__grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.lp-duo__item {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: var(--lp-radius);
    background: var(--lp-paper);
}
.lp-duo__item:last-child { background: var(--lp-indigo); color: #D3DDF0; }
.lp-duo__item:last-child h3 { color: var(--lp-white); }
.lp-duo__item:last-child .lp-checks li::before { border-color: var(--lp-saffron); }
.lp-duo__icon {
    display: block;
    font-size: 1.9rem;
    color: var(--lp-saffron-deep);
    margin-bottom: 1rem;
}
.lp-duo__item:last-child .lp-duo__icon { color: var(--lp-saffron); }
.lp-duo__item > p { margin-top: .6rem; max-width: 34rem; }
@media (min-width: 820px) { .lp-duo__grid { grid-template-columns: 1fr 1fr; } }

/* Fonctionnalités : titre collé à gauche, groupes en deux colonnes */
.lp-features { background: var(--lp-paper); }
.lp-features__grid { display: grid; gap: 2.5rem; }
.lp-features__intro p { margin-top: 1rem; max-width: 30rem; }
.lp-features__groups {
    display: grid;
    gap: 2.25rem 2.5rem;
}
.lp-group h3 {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding-bottom: .7rem;
    border-bottom: 2px solid var(--lp-indigo);
}
.lp-group h3 i { color: var(--lp-saffron-deep); font-size: 1.15rem; }
.lp-group ul {
    list-style: none;
    padding: 0;
    margin: .9rem 0 0;
    display: grid;
    gap: .6rem;
}
.lp-group li { padding-left: 1rem; border-left: 2px solid var(--lp-line); line-height: 1.45; }
@media (min-width: 700px) { .lp-features__groups { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) {
    .lp-features__grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr); gap: 4rem; }
    .lp-features__intro { position: sticky; top: 6.5rem; align-self: start; }
}

/* Étapes : une vraie séquence, d'où la numérotation */
.lp-steps__list {
    list-style: none;
    counter-reset: etape;
    padding: 0;
    margin: 2.5rem 0 0;
    display: grid;
    gap: 2rem;
}
.lp-steps__list li {
    counter-increment: etape;
    position: relative;
    padding-top: 3.9rem;
}
.lp-steps__list li::before {
    content: counter(etape);
    position: absolute;
    top: 0;
    left: 0;
    width: 2.9rem;
    height: 2.9rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lp-indigo);
    color: var(--lp-saffron);
    font-family: var(--lp-display);
    font-weight: 800;
    font-size: 1.3rem;
}
.lp-steps__list p { margin-top: .5rem; max-width: 22rem; }
@media (min-width: 820px) {
    .lp-steps__list { grid-template-columns: repeat(3, 1fr); }
    .lp-steps__list li:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 1.45rem;
        left: 3.9rem;
        right: 1rem;
        border-top: 2px dashed var(--lp-line);
    }
}

/* Formules */
.lp-plans { background: var(--lp-paper); }
.lp-plans__head { max-width: 40rem; }
.lp-plans__head p { margin-top: 1rem; }
.lp-plans__grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.75rem;
    align-items: stretch;
}
.lp-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.6rem 1.75rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
}
.lp-plan--featured {
    background: var(--lp-indigo);
    border-color: var(--lp-indigo);
    color: #D3DDF0;
}
.lp-plan--featured h3,
.lp-plan--featured .lp-plan__amount { color: var(--lp-white); }
.lp-plan--featured .lp-checks li::before { border-color: var(--lp-saffron); }
.lp-plan--featured .lp-checks li.lp-checks__lead { color: var(--lp-white); }
.lp-plan__flag {
    position: absolute;
    top: -.8rem;
    left: 1.6rem;
    padding: .15rem .75rem;
    border-radius: 999px;
    background: var(--lp-saffron);
    color: var(--lp-indigo-deep);
    font-size: .82rem;
    font-weight: 700;
}
.lp-plan__audience { margin-top: .4rem !important; font-size: .95rem; min-height: 3em; }
.lp-plan__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: 1.4rem !important;
}
.lp-plan__amount {
    font-family: var(--lp-display);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-indigo);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.lp-plan__amount--quote { font-size: 2.1rem; letter-spacing: -0.02em; }
.lp-plan__unit { font-size: .95rem; }
.lp-plan__yearly { margin-top: .35rem !important; font-size: .88rem; opacity: .85; }
.lp-plan__limits {
    list-style: none;
    padding: .9rem 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.25rem;
    border-block: 1px solid var(--lp-line);
    font-weight: 600;
    font-size: .95rem;
}
.lp-plan--featured .lp-plan__limits { border-color: rgba(255, 255, 255, .18); color: var(--lp-white); }
.lp-plan .lp-checks { margin-bottom: 1.75rem; font-size: .96rem; }
.lp-plan .lp-btn { margin-top: auto; }
.lp-plans__pay {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.75rem !important;
    font-size: .95rem;
}
.lp-plans__pay i { color: var(--lp-indigo); font-size: 1.2rem; }
@media (min-width: 900px) { .lp-plans__grid { grid-template-columns: repeat(3, 1fr); } }

/* Boutique en exemple */
.lp-showcase { padding-block: clamp(2.5rem, 6vw, 3.5rem); border-bottom: 1px solid var(--lp-line); }
.lp-showcase__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 3rem;
}
.lp-showcase h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.lp-showcase p { margin-top: .5rem; max-width: 38rem; }

/* Questions */
.lp-faq__grid { display: grid; gap: 2rem; }
.lp-faq__list { border-top: 1px solid var(--lp-line); }
.lp-faq details { border-bottom: 1px solid var(--lp-line); }
.lp-faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 0;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--lp-indigo);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: '';
    flex: none;
    width: .6rem;
    height: .6rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
    transition: transform .2s ease;
}
.lp-faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.lp-faq details p { padding-bottom: 1.2rem; max-width: 44rem; }
@media (min-width: 900px) { .lp-faq__grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr); gap: 4rem; } }

/* Bandeau d'appel à l'action (fin de page) */
.lp-cta {
    padding-block: clamp(3rem, 7vw, 4.5rem);
    background: var(--lp-indigo);
    color: #D3DDF0;
}
.lp-cta h2 { color: var(--lp-white); }
.lp-cta__row { display: grid; gap: 1.75rem; align-items: center; }
.lp-cta__row p { margin-top: .8rem; max-width: 36rem; }
.lp-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.lp-btn--ghost-light { background: transparent; border-color: rgba(255, 255, 255, .55); color: var(--lp-white) !important; }
.lp-btn--ghost-light:hover { background: rgba(255, 255, 255, .1); border-color: var(--lp-white); }
@media (min-width: 900px) {
    .lp-cta__row { grid-template-columns: 1fr auto; gap: 3rem; }
    .lp-cta__actions { justify-content: flex-end; }
}

/* Pour qui */
.lp-audience { padding-block: 1.6rem; border-bottom: 1px solid var(--lp-line); }
.lp-audience__row { display: grid; gap: .9rem; align-items: center; }
.lp-audience p { font-weight: 600; color: var(--lp-indigo); }
.lp-audience ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.6rem;
    font-size: .98rem;
}
.lp-audience li { display: inline-flex; align-items: center; gap: .45rem; }
.lp-audience i { color: var(--lp-saffron-deep); }
@media (min-width: 1020px) { .lp-audience__row { grid-template-columns: auto 1fr; gap: 2rem; } }

.lp-plans__more { margin-top: 1.25rem !important; }
.lp-plans--page { background: var(--lp-white); padding-top: clamp(2.25rem, 4vw, 2.75rem); }

/* Pied de page */
.lp-footer {
    padding-block: 3rem 2rem;
    background: var(--lp-indigo-deep);
    color: #A9B7D3;
    font-size: .95rem;
}
.lp-footer__grid { display: grid; gap: 2rem; }
.lp-footer__about p { margin-top: .75rem; max-width: 22rem; }
.lp-brand--footer { color: var(--lp-white) !important; font-size: 1.25rem; }
.lp-footer__col { display: grid; gap: .55rem; align-content: start; }
.lp-footer .lp-footer__col h2 {
    font-family: var(--lp-text);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #8595B8;
    margin-bottom: .25rem;
}
.lp-footer__col a { color: var(--lp-white); text-decoration: none; }
.lp-footer__col a:hover { text-decoration: underline; text-underline-offset: 3px; }
.lp-footer__col .lp-footer__whatsapp { display: inline-flex; align-items: center; gap: .4rem; }
.lp-footer__copy {
    margin-top: 2.5rem !important;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .88rem;
}
@media (min-width: 700px) { .lp-footer__grid { grid-template-columns: 1.6fr repeat(3, 1fr); } }

/* Éditeur du produit */
.lp-maker { margin: 0 0 1rem; font-size: .92rem; }
.lp-maker a { color: inherit; font-weight: 700; text-underline-offset: 3px; }
.lp-footer .lp-maker--footer { margin-top: .5rem; }
.lp-footer .lp-maker--footer a { color: var(--lp-white); }

/* ─── Pages intérieures ─── */
.lp-page-head {
    padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
    background: var(--lp-paper);
    border-bottom: 1px solid var(--lp-line);
}
.lp-page-head .lp-lead { margin-top: 1rem !important; max-width: 44rem; }
.lp-section--form { padding-block: clamp(2rem, 5vw, 3.5rem) clamp(3.5rem, 8vw, 5rem); }

.lp-alert {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin: 1.25rem 0;
    padding: 1rem 1.2rem;
    border-radius: var(--lp-radius-small);
    border: 1px solid;
}
.lp-alert i { font-size: 1.25rem; line-height: 1.3; }
.lp-alert p + p { margin-top: .25rem; }
.lp-alert--error { background: #FDF1EC; border-color: #F2C3AE; color: #8A2F0B; }
.lp-alert--success { background: #E9F6F0; border-color: #A8DCC4; color: #075C40; }
.lp-error-summary { display: block; margin-top: 0; }
.lp-error-summary:focus { outline: 3px solid #C2410C; outline-offset: 2px; }
.lp-error-summary ul { margin: .5rem 0 0; padding-left: 1.2rem; }
.lp-error-summary a { color: inherit; font-weight: 600; }

/* ─── Formulaires ─── */
.lp-form-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 980px) {
    .lp-form-layout { grid-template-columns: minmax(0, 1fr) 20rem; gap: 3.5rem; }
    .lp-form-layout--contact { grid-template-columns: 20rem minmax(0, 1fr); }
    .lp-aside { position: sticky; top: 6rem; }
}
.lp-form { max-width: 46rem; }
/* .lp préfixé : sans lui, la règle générale « .lp h2 » (plus spécifique) l'emporte. */
.lp .lp-form__title { font-size: 1.5rem; margin-bottom: 1.25rem; }
.lp-fieldset {
    margin: 0 0 1.75rem;
    padding: 1.5rem clamp(1rem, 3vw, 1.75rem) .5rem;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-white);
}
.lp-fieldset legend {
    padding: 0 .5rem;
    margin-left: -.5rem;
    font-family: var(--lp-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--lp-indigo);
}
.lp-grid-2 { display: grid; gap: 0 1.25rem; }
@media (min-width: 640px) { .lp-grid-2 { grid-template-columns: 1fr 1fr; } }
.lp-field { margin-bottom: 1.25rem; }
.lp-field > label, .lp-field__label {
    display: block;
    margin-bottom: .4rem !important;
    font-weight: 600;
    color: var(--lp-indigo);
}
.lp-optional { font-weight: 400; color: var(--lp-muted); }
.lp-field__hint { margin: -.2rem 0 .45rem !important; font-size: .9rem; color: var(--lp-muted); }
.lp-field__hint--block { margin: 0 0 .75rem !important; }
.lp-field select + .lp-field__hint { margin: .5rem 0 0 !important; }
.lp-field input[type="text"],
.lp-field input[type="email"],
.lp-field input[type="tel"],
.lp-field select,
.lp-field textarea {
    display: block;
    width: 100%;
    min-height: 3rem;
    padding: .65rem .9rem;
    border: 1.5px solid #C6D0E0;
    border-radius: var(--lp-radius-small);
    background: var(--lp-white);
    color: var(--lp-slate);
    font: inherit;
    font-size: 1rem;
}
.lp-field textarea { resize: vertical; min-height: 7rem; line-height: 1.5; }
.lp-field select {
    appearance: none;
    padding-right: 2.5rem;
    background-image: linear-gradient(45deg, transparent 50%, var(--lp-indigo) 50%), linear-gradient(135deg, var(--lp-indigo) 50%, transparent 50%);
    background-position: calc(100% - 1.15rem) 1.3rem, calc(100% - .8rem) 1.3rem;
    background-size: .35rem .35rem;
    background-repeat: no-repeat;
}
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
    outline: none;
    border-color: var(--lp-indigo);
    box-shadow: 0 0 0 3px rgba(255, 138, 0, .45);
}
.lp-field ::placeholder { color: #95A0B8; }
.lp-field.has-error input,
.lp-field.has-error select,
.lp-field.has-error textarea { border-color: #C2410C; }
.lp-field__error {
    display: flex;
    gap: .4rem;
    align-items: baseline;
    margin-top: .4rem !important;
    font-size: .92rem;
    font-weight: 600;
    color: #B93A08;
}

/* Choix exclusifs présentés en pastilles : plus faciles à toucher qu'une liste. */
.lp-choices { display: flex; flex-wrap: wrap; gap: .5rem; }
.lp-choice { position: relative; cursor: pointer; }
.lp-choice input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.lp-choice span {
    display: inline-block;
    padding: .55rem 1rem;
    border: 1.5px solid #C6D0E0;
    border-radius: 999px;
    background: var(--lp-white);
    font-size: .95rem;
    transition: border-color .15s ease, background-color .15s ease;
}
.lp-choice:hover span { border-color: var(--lp-indigo); }
.lp-choice input:checked + span {
    border-color: var(--lp-indigo);
    background: var(--lp-indigo);
    color: var(--lp-white);
    font-weight: 600;
}
.lp-choice input:focus-visible + span { outline: 3px solid var(--lp-saffron); outline-offset: 2px; }
.lp-field.has-error .lp-choice span { border-color: #E3A58A; }

.lp-checkboxes { display: grid; gap: .5rem 1.25rem; }
@media (min-width: 640px) { .lp-checkboxes { grid-template-columns: 1fr 1fr; } }
.lp-checkbox { display: flex; gap: .65rem; align-items: flex-start; cursor: pointer; line-height: 1.45; }
.lp-checkbox input {
    flex: none;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: .15rem;
    accent-color: var(--lp-indigo);
    cursor: pointer;
}
.lp-checkbox--consent { font-size: .95rem; }
.lp-form--narrow { max-width: 34rem; }
.lp-form__aside-text { margin-top: 1.5rem !important; font-size: .95rem; }
/* Champ précédé d'un préfixe fixe (adiman.test/…) : le préfixe fait partie du cadre. */
.lp-input-prefix {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #C6D0E0;
    border-radius: var(--lp-radius-small);
    background: var(--lp-white);
    overflow: hidden;
}
.lp-input-prefix span {
    display: flex;
    align-items: center;
    padding: 0 .1rem 0 .9rem;
    color: var(--lp-muted);
    white-space: nowrap;
}
.lp-field .lp-input-prefix input { border: 0; min-width: 0; padding-left: .1rem; }
.lp-field .lp-input-prefix input:focus { box-shadow: none; }
.lp-input-prefix:focus-within { border-color: var(--lp-indigo); box-shadow: 0 0 0 3px rgba(255, 138, 0, .45); }
.lp-field.has-error .lp-input-prefix { border-color: #C2410C; }
.lp-form__submit { width: 100%; min-height: 3.4rem; font-size: 1.05rem; }
@media (min-width: 640px) { .lp-form__submit { width: auto; padding-inline: 2rem; } }

/* Le champ leurre de SpamGuard reste hors écran : jamais visible, jamais tabulable. */
.spam-guard { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Colonne d'accompagnement des formulaires */
.lp-aside h2 { font-size: 1.35rem; }
.lp-aside__steps {
    list-style: none;
    counter-reset: suite;
    padding: 0;
    margin: 1.1rem 0 0;
    display: grid;
    gap: 1rem;
}
.lp-aside__steps li { counter-increment: suite; position: relative; padding-left: 2.6rem; line-height: 1.5; }
.lp-aside__steps li::before {
    content: counter(suite);
    position: absolute;
    left: 0;
    top: -.1rem;
    width: 1.9rem;
    height: 1.9rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lp-indigo);
    color: var(--lp-saffron);
    font-family: var(--lp-display);
    font-weight: 800;
}
.lp-aside__box {
    margin-top: 1.5rem;
    padding: 1.2rem 1.25rem;
    border-radius: var(--lp-radius);
    background: var(--lp-paper);
}
.lp-aside__box h3 { font-size: 1.05rem; }
.lp-aside__box p { margin: .4rem 0 .6rem; font-size: .95rem; }

.lp-channels { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: .75rem; }
.lp-channels li {
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    column-gap: .6rem;
    align-items: center;
    padding: .85rem 1rem;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-small);
    color: var(--lp-indigo);
    font-weight: 600;
}
.lp-channels i { grid-row: 1 / span 2; font-size: 1.3rem; color: var(--lp-saffron-deep); }
.lp-channels span { font-size: .82rem; font-weight: 500; color: var(--lp-muted); }
.lp-channels a { color: var(--lp-indigo); }
.lp-channels__pending { margin-top: 1rem !important; font-size: .95rem; }

/* Confirmation */
.lp-thanks__box { max-width: 42rem; text-align: left; }
.lp-thanks__icon { display: block; font-size: 3rem; color: var(--lp-jade); margin-bottom: .75rem; }
.lp-thanks .lp-lead { margin-top: 1rem !important; }
.lp-reference {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border: 1.5px dashed var(--lp-indigo);
    border-radius: var(--lp-radius);
    background: var(--lp-paper);
}
.lp-reference span { display: block; font-size: .9rem; color: var(--lp-muted); }
.lp-reference strong {
    display: block;
    margin: .2rem 0 .4rem;
    font-family: var(--lp-display);
    font-size: 1.8rem;
    letter-spacing: .04em;
    color: var(--lp-indigo);
}
.lp-reference p { font-size: .95rem; }
.lp-thanks__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2rem; }

/* Tableau comparatif */
.lp-table-wrap {
    /* position: relative indispensable : sans lui, les libellés .lp-sr (position absolue)
       des cellules se calent sur la fenêtre, échappent au défilement du tableau et
       élargissent toute la page sur mobile. */
    position: relative;
    margin-top: 2rem;
    overflow-x: auto;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
}
.lp-compare { width: 100%; min-width: 40rem; border-collapse: collapse; font-size: .96rem; }
.lp-compare th, .lp-compare td { padding: .8rem 1rem; border-bottom: 1px solid var(--lp-line); text-align: center; }
.lp-compare thead th {
    position: sticky;
    top: 0;
    background: var(--lp-white);
    font-family: var(--lp-display);
    font-size: 1.1rem;
    color: var(--lp-indigo);
    vertical-align: bottom;
}
.lp-compare thead small { display: block; font-family: var(--lp-text); font-size: .82rem; font-weight: 500; color: var(--lp-muted); }
.lp-compare tbody th[scope="row"] { text-align: left; font-weight: 500; color: var(--lp-slate); }
.lp-compare__group th {
    text-align: left !important;
    background: var(--lp-paper);
    font-weight: 700;
    color: var(--lp-indigo);
}
.lp-compare .is-featured { background: #EEF2FA; }
.lp-compare thead .is-featured { background: var(--lp-indigo); color: var(--lp-white); }
.lp-compare thead .is-featured small { color: #C3D0E8; }
.lp-compare__yes { font-size: 1.3rem; color: var(--lp-jade); }
.lp-compare__no { color: #B0BACD; }
.lp-compare tbody:last-child tr:last-child > * { border-bottom: 0; }

.lp-sr {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Pages de texte (mentions légales, confidentialité) */
.lp-prose { max-width: 46rem; }
.lp-prose h2 { font-size: 1.45rem; margin: 2.25rem 0 .75rem !important; }
.lp-prose h2:first-child { margin-top: 0 !important; }
.lp-prose p + p, .lp-prose ul + p { margin-top: .8rem; }
.lp-prose ul { padding-left: 1.2rem; margin: .5rem 0 0; display: grid; gap: .4rem; }
.lp-prose a { color: var(--lp-indigo); font-weight: 600; }
.lp-prose__date { margin-top: 2.5rem !important; font-size: .92rem; color: var(--lp-muted); }
.lp-dl { display: grid; grid-template-columns: max-content 1fr; gap: .45rem 1.5rem; margin: 1rem 0 0; }
.lp-dl dt { color: var(--lp-muted); }
.lp-dl dd { margin: 0; font-weight: 600; color: var(--lp-indigo); }
@media (max-width: 560px) { .lp-dl { grid-template-columns: 1fr; } .lp-dl dd { margin-bottom: .5rem; } }
.lp-brand--footer .lp-brand__logo { height: 34px; }

/* ─── Symbole et logotype de la marque (charte Adiman) ─── */
/* Caddie blanc en filigrane dans le pan marine du haut de page, sous l'aperçu. */
.lp-hero__mark { display: none; }
@media (min-width: 960px) {
    .lp-hero__mark {
        display: block;
        position: absolute;
        right: 3%;
        bottom: 5%;
        width: min(28vw, 400px);
        height: auto;
        opacity: .1;
        z-index: 1;
        pointer-events: none;
    }
    .lp-hero .lp-hero__grid { z-index: 2; }
}
.lp-cta__mark { display: block; width: 72px; height: auto; margin-bottom: 1.1rem; }
.lp-form__mark { display: block; width: 96px; height: auto; margin: 0 0 1.5rem; }
.lp-error__brand { display: inline-block; margin-bottom: 2.25rem; }
.lp-error__brand img { display: block; height: 36px; width: auto; }
/* Vitrine d'une boutique suspendue (shop/unavailable). */
.lp-unavailable__logo { display: block; width: 72px; height: 72px; object-fit: contain; border-radius: 16px; margin-bottom: 1.5rem; }
.lp-unavailable__powered { display: flex; align-items: center; gap: .5rem; margin-top: 2.5rem !important; font-size: .9rem; color: var(--lp-muted); }
.lp-unavailable__powered img { display: block; height: 18px; width: auto; }
/* Page de remerciement du devis : reçu, suite des étapes, récapitulatif */
.lp-reference__download { margin-top: 1rem; }
.lp-thanks__title { font-size: 1.35rem; margin-top: 2.75rem; }
.lp-thanks__steps { margin-top: 1rem; }
.lp-recap { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--lp-line); }
.lp-recap summary { cursor: pointer; font-weight: 600; color: var(--lp-indigo); }
.lp-recap dl { display: grid; grid-template-columns: minmax(8rem, 13rem) 1fr; gap: .55rem 1.25rem; margin: 1.1rem 0 0; }
.lp-recap dt { color: var(--lp-muted); }
.lp-recap dd { margin: 0; overflow-wrap: anywhere; white-space: pre-line; }
.lp-thanks__help { margin-top: 2rem; }
@media (max-width: 540px) {
    .lp-recap dl { grid-template-columns: 1fr; gap: .1rem; }
    .lp-recap dd { margin-bottom: .6rem; }
}

/* Formulaire de devis : points rassurants sous le titre, note sous le bouton */
.lp-assurances { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; padding: 0; margin: 1.25rem 0 0; }
.lp-assurances li { display: flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--lp-indigo); }
.lp-assurances i { color: var(--lp-jade); font-size: 1.1rem; }
.lp-form__note { margin: .75rem 0 0; font-size: .92rem; color: var(--lp-muted); }
.lp-form__submit[disabled] { opacity: .7; cursor: progress; }

/* ─── Bannière d'accueil (diapositives photo ou vidéo gérées en console) ─── */
.lp-banner { padding-top: clamp(1.5rem, 4vw, 3rem); }
.lp-banner__frame {
    position: relative;
    height: clamp(14rem, 45vw, 32rem);
    border-radius: var(--lp-radius);
    overflow: hidden;
    background: var(--lp-indigo-deep);
    isolation: isolate;
}
.lp-banner__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility 0s linear .6s;
}
.lp-banner__slide.is-active { opacity: 1; visibility: visible; transition: opacity .6s ease; }
.lp-banner__media { display: block; width: 100%; height: 100%; object-fit: cover; }
.lp-banner__caption {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    padding: 3.5rem clamp(1rem, 4vw, 2.5rem) clamp(3.5rem, 6vw, 4rem);
    background: linear-gradient(to top, rgba(7, 28, 79, .88), rgba(7, 28, 79, 0));
    color: var(--lp-white);
}
.lp-banner__title { font-size: clamp(1.15rem, 2.6vw, 1.75rem); line-height: 1.2; max-width: 32ch; }
.lp-banner__text {
    max-width: 55ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-banner__caption .lp-btn { margin-top: .4rem; }
.lp-banner__controls {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .15rem;
    padding: .2rem;
    border-radius: 999px;
    background: rgba(7, 28, 79, .6);
}
.lp-banner__btn,
.lp-banner__dot {
    display: grid;
    place-items: center;
    height: 2.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--lp-white);
    cursor: pointer;
}
.lp-banner__btn { width: 2.25rem; border-radius: 50%; font-size: 1.1rem; }
.lp-banner__btn:hover { background: rgba(255, 255, 255, .16); }
.lp-banner__dots { display: flex; }
.lp-banner__dot { width: 1.4rem; }
.lp-banner__dot::before {
    content: '';
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    transition: width .2s ease;
}
.lp-banner__dot[aria-current="true"]::before { width: 1.1rem; background: var(--lp-saffron); }
.lp-banner button:focus-visible { outline: 2px solid var(--lp-saffron); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
    .lp-banner__slide, .lp-banner__slide.is-active, .lp-banner__dot::before { transition: none; }
}
@media (max-width: 640px) {
    /* Petit écran : titre et bouton seulement, l'image reste visible. */
    .lp-banner__text { display: none; }
    .lp-banner__caption { padding-top: 2.5rem; }
}
