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

:root {
    --brand:       #0b4f6c;
    --brand-dark:  #06384d;
    --brand-light: #e3f2fd;
    --accent:      #00b4d8;
    --text:        #1a2b35;
    --muted:       #5a7080;
    --bg:          #f4f8fb;
    --white:       #ffffff;
    --radius:      14px;
    --green:       #2e7d32;
    --green-light: #e8f5e9;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

/* ── Topbar ── */
.lp-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    background: var(--brand-dark);
    color: rgba(255,255,255,.88);
    text-align: center;
    font-size: .82rem;
    font-weight: 500;
    padding: 8px 16px;
    letter-spacing: .01em;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lp-topbar a { color: #7de3f7; font-weight: 700; text-decoration: none; transition: color .15s; }
.lp-topbar a:hover { color: #fff; }

/* ── Nav ── */
.lp-nav {
    position: fixed;
    top: 37px; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    box-sizing: border-box;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(11,79,108,.1);
    transition: box-shadow .2s, transform .3s ease;
}
.lp-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.lp-nav.hidden   { transform: translateY(-100%); }

.lp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-logo img   { height: 36px; width: auto; }
.lp-logo span  { font-size: 1.15rem; font-weight: 700; color: var(--brand); }

.lp-nav-links  { display: flex; align-items: center; gap: 30px; list-style: none; }
.lp-nav-links a {
    font-size: .88rem; font-weight: 500; color: var(--text);
    text-decoration: none; opacity: .65; transition: opacity .15s;
}
.lp-nav-links a:hover { opacity: 1; }

.lp-nav-right { display: flex; align-items: center; gap: 12px; }

.lp-nav-cta {
    display: inline-block;
    padding: 9px 22px;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    transition: background .15s, transform .15s;
}
.lp-nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

.lp-nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 9px;
    border: 0; background: none; cursor: pointer;
}
.lp-nav-burger span {
    display: block; height: 2px; width: 100%;
    background: var(--brand); border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.lp-nav.lp-nav-menu-open .lp-nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav.lp-nav-menu-open .lp-nav-burger span:nth-child(2) { opacity: 0; }
.lp-nav.lp-nav-menu-open .lp-nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Container ── */
.lp-container { max-width: 1200px; margin: 0 auto; }

/* ── Labels / titres section ── */
.lp-section-label {
    font-size: .78rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 10px; display: block;
}
.lp-section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800; color: var(--brand-dark);
    margin-bottom: 14px; line-height: 1.2;
}
.lp-section-sub {
    font-size: 1.05rem; color: var(--muted);
    max-width: 580px; margin-left: auto; margin-right: auto;
}
.lp-demo-text .lp-section-sub,
.lp-contact-pitch .lp-section-sub { margin-left: 0; margin-right: 0; }

/* ── Sections communes ── */
section { padding: 88px 24px; }

/* ── Hero ── */
.lp-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 158px 24px 80px;
    overflow-x: clip;
}
.lp-hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(6,56,77,.72) 0%, rgba(6,56,77,.55) 60%, rgba(6,56,77,.8) 100%),
        url('/assets/img/splash/splash_0.1.webp') center/cover no-repeat;
    background-attachment: fixed;
    transform: scale(1.05);
}
.lp-hero-content { position: relative; z-index: 1; max-width: 760px; }
.lp-badge {
    display: inline-block; padding: 5px 14px;
    background: rgba(0,180,216,.2); border: 1px solid rgba(0,180,216,.4);
    border-radius: 999px; color: #7de3f7;
    font-size: .8rem; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; margin-bottom: 20px;
}
.lp-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800;
    color: #fff; line-height: 1.12; margin-bottom: 22px;
}
.lp-hero h1 em { font-style: normal; color: #7de3f7; }
.lp-hero p {
    font-size: 1.15rem; color: rgba(255,255,255,.82);
    margin-bottom: 38px; max-width: 560px;
    margin-left: auto; margin-right: auto;
}
.lp-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lp-btn-primary {
    padding: 14px 32px; background: var(--accent);
    color: var(--brand-dark); border-radius: 999px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: transform .15s, box-shadow .15s;
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,.4); }
.lp-btn-outline {
    padding: 13px 28px; border: 2px solid rgba(255,255,255,.5);
    color: #fff; border-radius: 999px; text-decoration: none;
    font-weight: 600; font-size: 1rem;
    transition: border-color .15s, background .15s;
}
.lp-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.lp-scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.5); display: flex; flex-direction: column;
    align-items: center; gap: 6px; animation: bounce 2s infinite;
}
.lp-scroll-hint svg { opacity: .6; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Features ── */
.lp-features { background: var(--bg); }
.lp-features-header { margin-bottom: 56px; }
.lp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.lp-feature-card {
    background: var(--white); border-radius: var(--radius);
    padding: 28px 24px; border: 1px solid rgba(11,79,108,.08);
    transition: transform .15s, box-shadow .15s;
}
.lp-feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(11,79,108,.1); }
.lp-feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--brand-light); display: flex;
    align-items: center; justify-content: center; margin-bottom: 16px;
}
.lp-feature-icon svg { color: var(--brand); }
.lp-feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.lp-feature-card p  { font-size: .92rem; color: var(--muted); line-height: 1.6; }

/* ── Bureau ── */
.lp-bureau { background: var(--white); }
.lp-bureau-header { text-align: center; margin-bottom: 60px; }
.lp-bureau-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; border: 1px solid rgba(11,79,108,.1);
    border-radius: 20px; overflow: hidden;
}
.lp-bureau-item {
    padding: 36px 32px;
    border-right: 1px solid rgba(11,79,108,.08);
    border-bottom: 1px solid rgba(11,79,108,.08);
    transition: background .2s;
}
.lp-bureau-item:hover { background: var(--bg); }
.lp-bureau-item:nth-child(3n) { border-right: none; }
.lp-bureau-item:nth-child(4),
.lp-bureau-item:nth-child(5),
.lp-bureau-item:nth-child(6) { border-bottom: none; }
.lp-bureau-icon {
    width: 44px; height: 44px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.lp-bureau-icon svg { width: 22px; height: 22px; }
.lp-bureau-icon.blue   { background: #e3f2fd; color: var(--brand); }
.lp-bureau-icon.green  { background: var(--green-light); color: var(--green); }
.lp-bureau-icon.purple { background: #f3e5f5; color: #6a1b9a; }
.lp-bureau-icon.amber  { background: #fff3e0; color: #e65100; }
.lp-bureau-icon.teal   { background: #e0f2f1; color: #00695c; }
.lp-bureau-icon.red    { background: #fdecea; color: #b71c1c; }
.lp-bureau-item h3 { font-size: 1rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.lp-bureau-item p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Responsable SAV ── */
.lp-sav { background: var(--brand-light); }
.lp-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
}
.lp-duo-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 28px;
    border: 1px solid rgba(11,79,108,.1);
}
.lp-duo-tag {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
@media (max-width: 820px) {
    .lp-duo { grid-template-columns: 1fr; }
}

/* ── Demo ── */
.lp-demo { background: var(--white); }
.lp-demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.lp-demo-img-center { display: flex; align-items: center; justify-content: center; }
.lp-demo-list-spaced { margin-top: 20px; }
.lp-demo-text .lp-section-sub { margin-bottom: 28px; }
.lp-demo-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lp-demo-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .95rem; color: var(--muted);
}
.lp-demo-list li::before {
    content: ''; flex-shrink: 0; width: 20px; height: 20px;
    border-radius: 50%; margin-top: 2px;
    background: #e3f2fd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230b4f6c' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
/* ── Demo : bascule bureau / mobile + cadres d'appareils ── */
.lp-demo-img { text-align: center; }
.lp-device-toggle {
    display: inline-flex;
    margin: 0 auto 26px;
    border: 1px solid rgba(11,79,108,.2);
    border-radius: 999px;
    overflow: hidden;
    background: var(--white);
}
.lp-device-btn {
    border: 0;
    background: none;
    padding: 9px 22px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: background .15s, color .15s;
}
.lp-device-btn.active { background: var(--brand); color: #fff; }
.lp-device { display: none; }
.lp-device.active { display: block; }

.lp-browser {
    max-width: 640px;
    margin: 0 auto;
    border: 1px solid rgba(11,79,108,.18);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 40px rgba(11,79,108,.16);
}
.lp-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: #eef3f6;
    border-bottom: 1px solid rgba(11,79,108,.1);
}
.lp-browser-dot { width: 10px; height: 10px; border-radius: 50%; background: #cdd8de; }
.lp-browser-dot:nth-child(1) { background: #ff5f57; }
.lp-browser-dot:nth-child(2) { background: #febc2e; }
.lp-browser-dot:nth-child(3) { background: #28c840; }
.lp-browser-url {
    flex: 1;
    margin-left: 8px;
    background: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .78rem;
    color: var(--muted);
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-phone {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    border: 10px solid #1a1a1a;
    border-radius: 38px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 14px 44px rgba(11,79,108,.22);
}
.lp-phone-notch {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}
.lp-browser .lp-carousel,
.lp-phone .lp-carousel {
    max-width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.lp-carousel {
    position: relative; overflow: hidden; border-radius: 18px;
    border: 1px solid #151515; box-shadow: 2px 2px 5px rgba(0,0,0,.48);
    max-width: 480px; margin: 0 auto;
}
.lp-carousel-track { display: flex; transition: transform .5s ease; }
.lp-carousel-track img { width: 100%; flex-shrink: 0; min-width: 100%; border-radius: 0; height: auto; max-height: 70vh; object-fit: contain; display: block; }
.lp-carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(11,79,108,.65); border: none; border-radius: 50%;
    width: 38px; height: 38px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; z-index: 2; transition: background .2s;
}
.lp-carousel-btn:hover { background: rgba(11,79,108,.9); }
.lp-carousel-btn.prev { left: 10px; }
.lp-carousel-btn.next { right: 10px; }
.lp-carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.lp-carousel-dots span {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.5); cursor: pointer; transition: background .2s;
}
.lp-carousel-dots span.active { background: #fff; }

/* ── Parallax ── */
.lp-parallax {
    position: relative; min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 88px 24px; overflow: hidden;
}
.lp-parallax-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(6,56,77,.88) 0%, rgba(6,56,77,.7) 100%),
        url('/assets/img/splash/splash2.webp') center/cover no-repeat;
    background-attachment: fixed;
}
.lp-parallax-content { position: relative; z-index: 1; max-width: 640px; }
.lp-parallax-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
    color: #fff; margin-bottom: 16px; line-height: 1.2;
}
.lp-parallax-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }

/* ── Stats ── */
.lp-stats { background: var(--bg); }
.lp-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.lp-stat-item { padding: 8px; }
.lp-stat-num { font-size: 2.6rem; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 6px; }
.lp-stat-desc { font-size: .9rem; color: var(--muted); }

/* ── CERFA ── */
.lp-cerfa { background: var(--bg); }
.lp-cerfa-visual {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 20px; padding: 40px 36px;
    max-width: 380px; width: 100%; box-shadow: 0 24px 60px rgba(11,79,108,.25);
}
.lp-cerfa-visual-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px; padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.lp-cerfa-logo {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
}
.lp-cerfa-logo svg { color: #fff; }
.lp-cerfa-title    { color: #fff; font-size: .95rem; font-weight: 700; }
.lp-cerfa-subtitle { color: rgba(255,255,255,.5); font-size: .76rem; }
.lp-cerfa-rows { display: flex; flex-direction: column; gap: 10px; }
.lp-cerfa-row {
    background: rgba(255,255,255,.08); border-radius: 10px;
    padding: 12px 16px; display: flex; align-items: center; gap: 12px;
}
.lp-cerfa-row-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(0,180,216,.25); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.lp-cerfa-row-check svg { width: 11px; height: 11px; stroke: var(--accent); stroke-width: 3; fill: none; }
.lp-cerfa-row span { font-size: .83rem; color: rgba(255,255,255,.82); }
.lp-cerfa-badge {
    margin-top: 20px; background: rgba(0,180,216,.15);
    border: 1px solid rgba(0,180,216,.3); border-radius: 8px;
    padding: 10px 16px; display: flex; align-items: center; gap: 10px;
}
.lp-cerfa-badge svg    { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.lp-cerfa-badge span   { font-size: .8rem; color: rgba(255,255,255,.7); }
.lp-cerfa-badge strong { color: var(--accent); }

/* ── Fluides ── */
.lp-fluides { background: var(--white); }
.lp-fluides-visual {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    border-radius: 20px; padding: 36px 32px;
    max-width: 380px; width: 100%; box-shadow: 0 24px 60px rgba(27,94,32,.22);
}
.lp-fluides-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.lp-fluides-header-title { color: #fff; font-size: .9rem; font-weight: 700; }
.lp-fluides-bilan { background: rgba(255,255,255,.1); border-radius: 6px; padding: 4px 10px; font-size: .72rem; color: rgba(255,255,255,.7); font-weight: 600; }
.lp-fluides-rows { display: flex; flex-direction: column; gap: 10px; }
.lp-fluide-row { background: rgba(255,255,255,.1); border-radius: 10px; padding: 14px 16px; }
.lp-fluide-row-label { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.lp-fluide-row-label.r410 { color: #80deea; }
.lp-fluide-row-label.r32  { color: #90caf9; }
.lp-fluide-row-label.r404 { color: #ce93d8; }
.lp-fluide-row-meta { display: flex; justify-content: space-between; align-items: center; }
.lp-fluide-row-qty { font-size: .82rem; color: rgba(255,255,255,.75); }
.lp-fluide-row-co2 { font-size: .75rem; font-weight: 700; background: rgba(255,255,255,.15); border-radius: 4px; padding: 2px 8px; color: #fff; }
.lp-fluides-total { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; }
.lp-fluides-total-label { font-size: .8rem; color: rgba(255,255,255,.55); }
.lp-fluides-total-val   { font-size: 1.1rem; font-weight: 800; color: #fff; }

/* ── Pricing ── */
.lp-pricing { background: var(--bg); }
.lp-pricing-header { text-align: center; margin-bottom: 56px; }
.lp-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; margin-bottom: 36px; }
.lp-plan-card {
    background: var(--white); border: 1.5px solid rgba(11,79,108,.12);
    border-radius: var(--radius); padding: 32px 28px;
    position: relative; transition: transform .2s, box-shadow .2s;
}
.lp-plan-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(11,79,108,.1); }
.lp-plan-card.featured {
    background: var(--brand-dark); border-color: var(--brand);
    box-shadow: 0 12px 40px rgba(11,79,108,.22); transform: translateY(-6px);
}
.lp-plan-card.featured:hover { transform: translateY(-10px); box-shadow: 0 18px 50px rgba(11,79,108,.3); }
.lp-plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.lp-plan-name { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.lp-plan-card.featured .lp-plan-name { color: rgba(255,255,255,.55); }
.lp-plan-price { font-size: 2.4rem; font-weight: 800; color: var(--brand-dark); line-height: 1; margin-bottom: 4px; }
.lp-plan-card.featured .lp-plan-price { color: #fff; }
.lp-plan-price sup { font-size: 1.1rem; font-weight: 600; vertical-align: super; }
.lp-plan-period { font-size: .82rem; font-weight: 400; color: var(--muted); }
.lp-plan-card.featured .lp-plan-period { color: rgba(255,255,255,.45); }
.lp-plan-annual { font-size: .82rem; font-weight: 600; color: var(--brand-dark); margin: 0 0 4px; }
.lp-plan-card.featured .lp-plan-annual { color: rgba(255,255,255,.85); }
.lp-plan-desc { font-size: .85rem; color: var(--muted); margin: 12px 0 22px; line-height: 1.55; }
.lp-plan-card.featured .lp-plan-desc { color: rgba(255,255,255,.6); }
.lp-plan-divider { border: none; border-top: 1px solid rgba(11,79,108,.08); margin-bottom: 20px; }
.lp-plan-card.featured .lp-plan-divider { border-color: rgba(255,255,255,.1); }
.lp-plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.lp-plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; color: var(--text); }
.lp-plan-card.featured .lp-plan-features li { color: rgba(255,255,255,.8); }
.lp-plan-features li .pf-check { width: 17px; height: 17px; border-radius: 50%; background: rgba(0,180,216,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.lp-plan-card.featured .lp-plan-features li .pf-check { background: rgba(255,255,255,.12); }
.lp-plan-features li .pf-check svg { width: 9px; height: 9px; stroke: var(--accent); stroke-width: 3; fill: none; }
.lp-plan-card.featured .lp-plan-features li .pf-check svg { stroke: #7de3f7; }
.lp-plan-features li .pf-na { color: rgba(11,79,108,.22); }
.lp-plan-card.featured .lp-plan-features li .pf-na { color: rgba(255,255,255,.18); }
.lp-plan-cta { display: block; width: 100%; text-align: center; padding: 12px; border-radius: 9px; font-size: .9rem; font-weight: 700; text-decoration: none; transition: background .15s, color .15s; }
.lp-plan-cta-solid { background: var(--brand); color: #fff; }
.lp-plan-cta-solid:hover { background: var(--brand-dark); }
.lp-plan-cta-outline { background: transparent; border: 1.5px solid rgba(11,79,108,.2); color: var(--brand); }
.lp-plan-cta-outline:hover { border-color: var(--brand); background: var(--brand-light); }
.lp-plan-price-devis { font-size: 1.7rem; line-height: 1.3; }
.lp-hero-btns-center { justify-content: center; }
.lp-plan-card.featured .lp-plan-cta-solid { background: var(--accent); color: var(--brand-dark); }
.lp-plan-card.featured .lp-plan-cta-solid:hover { background: #009bbf; }
.lp-pricing-more { text-align: center; }
.lp-pricing-more a { font-size: .88rem; color: var(--brand); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid rgba(11,79,108,.25); padding-bottom: 1px; transition: border-color .15s; }
.lp-pricing-more a:hover { border-color: var(--brand); }

/* ── CTA final ── */
.lp-cta { background: var(--brand-dark); text-align: center; padding: 88px 24px; }
.lp-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.lp-cta p  { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Contact ── */
.lp-contact { background: var(--bg); }
.lp-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.lp-contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(11,79,108,.1); }
.lp-contact-form h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 24px; }
.lp-form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lp-form-group label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.lp-form-group input,
.lp-form-group textarea,
.lp-form-group select {
    padding: 11px 14px; border: 1.5px solid #d0dde6; border-radius: 10px;
    font-size: .95rem; font-family: inherit; color: var(--text);
    background: #f8fbfd; transition: border-color .15s; outline: none;
}
.lp-form-group input:focus,
.lp-form-group textarea:focus,
.lp-form-group select:focus { border-color: var(--accent); background: #fff; }
.lp-form-group textarea { resize: vertical; min-height: 90px; }
.lp-form-submit { width: 100%; padding: 13px; background: var(--brand); color: #fff; border: none; border-radius: 999px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .15s, transform .15s; }
.lp-form-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
.lp-form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: .9rem; display: none; }
.lp-form-msg.ok  { background: #e6f9f0; color: #1a7c4a; display: block; }
.lp-form-msg.err { background: #fdecea; color: #b71c1c; display: block; }
.lp-contact-pitch { padding-top: 8px; }
.lp-contact-pitch p { color: var(--muted); margin-bottom: 24px; font-size: 1.02rem; }
.lp-contact-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.lp-contact-perks li { display: flex; align-items: flex-start; gap: 12px; font-size: .97rem; color: var(--text); }
.lp-contact-perks li .perk-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--brand-light); display: flex; align-items: center; justify-content: center; }
.lp-contact-perks li .perk-icon svg { width: 16px; height: 16px; color: var(--brand); }

/* ── FAQ ── */
.lp-faq { background: var(--bg-alt, #f4f8fb); padding: 96px 24px; }
.lp-faq-header { text-align: center; margin-bottom: 56px; }
.lp-faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.lp-faq-item { border-bottom: 1px solid rgba(11,79,108,.12); }
.lp-faq-item:first-child { border-top: 1px solid rgba(11,79,108,.12); }
.lp-faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-size: 1.02rem; font-weight: 600; color: var(--brand-dark); text-align: left; cursor: pointer; }
.lp-faq-q:hover { color: var(--brand); }
.lp-faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s ease; }
.lp-faq-item.open .lp-faq-chevron { transform: rotate(180deg); }
.lp-faq-a { display: none; padding: 0 4px 20px; }
.lp-faq-item.open .lp-faq-a { display: block; }
.lp-faq-a p { color: var(--muted, #5a7080); line-height: 1.7; font-size: .97rem; margin: 0; }

/* ── Footer ── */
.lp-footer { background: #04252f; padding: 28px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.lp-footer p { font-size: .82rem; color: rgba(255,255,255,.35); }
.lp-footer-links { display: flex; gap: 24px; }
.lp-footer a { font-size: .82rem; color: rgba(255,255,255,.45); text-decoration: none; }
.lp-footer a:hover { color: rgba(255,255,255,.75); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive 960px ── */
@media (max-width: 960px) {
    .lp-bureau-grid { grid-template-columns: 1fr 1fr; }
    .lp-bureau-item:nth-child(3n) { border-right: 1px solid rgba(11,79,108,.08); }
    .lp-bureau-item:nth-child(2n) { border-right: none; }
    .lp-bureau-item:nth-child(5),
    .lp-bureau-item:nth-child(6) { border-bottom: none; }
    .lp-bureau-item:nth-child(4) { border-bottom: 1px solid rgba(11,79,108,.08); }
    .lp-plans-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .lp-plan-card.featured { transform: none; }
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
    .lp-topbar { font-size: .76rem; padding: 7px 12px; white-space: normal; }
    .lp-nav { padding: 20px 16px 10px; gap: 8px; flex-wrap: wrap; }
    .lp-nav-burger { display: flex; }
    .lp-nav-links {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 8px;
    }
    .lp-nav.lp-nav-menu-open .lp-nav-links { display: flex; }
    .lp-nav-links li { width: 100%; }
    .lp-nav-links a {
        display: block;
        width: 100%;
        padding: 13px 4px;
        opacity: 1;
        border-top: 1px solid rgba(11,79,108,.1);
    }
    .lp-nav-cta { padding: 7px 14px; font-size: .82rem; }
    .lp-logo span { font-size: .95rem; }
    .lp-logo img { height: 28px; }
    .lp-container { width: 100%; box-sizing: border-box; }
    section { padding: 60px 16px; }
    .lp-hero { padding: 140px 16px 60px; }
    .lp-hero-btns { flex-direction: column; align-items: center; }
    .lp-demo-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-demo-img { width: 100%; min-width: 0; }
    .lp-carousel { max-width: 100%; width: 100%; }
    .lp-contact-inner { grid-template-columns: 1fr; gap: 36px; }
    .lp-form-row { grid-template-columns: 1fr; }
    .lp-bureau-grid { grid-template-columns: 1fr; border: none; gap: 1px; }
    .lp-bureau-item { border: 1px solid rgba(11,79,108,.1); border-radius: 12px; }
    .lp-bureau-item:nth-child(n) { border-right: 1px solid rgba(11,79,108,.1); border-bottom: 1px solid rgba(11,79,108,.1); }
    .lp-parallax-bg, .lp-hero-bg { background-attachment: scroll; }
    .lp-footer { padding: 20px 16px; justify-content: center; text-align: center; }
    .lp-footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .lp-contact-form { padding: 24px 16px; }
    .lp-cerfa-visual, .lp-fluides-visual { max-width: 100%; }
    .lp-stats-grid { grid-template-columns: 1fr 1fr; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-plans-grid { max-width: 100%; }
}

/* ══════════════════════════════════════
   PAGE TARIFS (ressources/pricing.php)
   ══════════════════════════════════════ */

/* ── Hero pricing ── */
.pricing-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--brand-light) 0%, var(--white) 100%);
}
.pricing-hero .lp-section-label {
    display: inline-block;
    background: rgba(0,180,216,.1);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 18px;
}
.pricing-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: 18px;
}
.pricing-hero h1 em { font-style: normal; color: var(--accent); }
.pricing-hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 36px;
}

/* ── Toggle billing ── */
.billing-toggle {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-bottom: 56px;
    font-size: .9rem; font-weight: 500; color: var(--muted);
}
.billing-toggle .toggle-track {
    position: relative; width: 48px; height: 26px;
    background: var(--brand); border-radius: 99px;
    cursor: pointer; transition: background .2s;
}
.billing-toggle .toggle-thumb {
    position: absolute; top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: #fff; border-radius: 50%; transition: transform .2s;
}
.billing-toggle.annual .toggle-thumb { transform: translateX(22px); }
.billing-toggle .badge-save {
    font-size: .72rem; font-weight: 700;
    background: #d4edda; color: #1a7a35;
    border-radius: 20px; padding: 2px 8px;
}

/* ── Plans grid ── */
.pricing-plans { padding: 0 0 96px; }
.plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: start;
}
.plan-card {
    border: 1.5px solid rgba(11,79,108,.12);
    border-radius: var(--radius); padding: 36px 32px;
    background: var(--white); position: relative;
    transition: box-shadow .2s, transform .2s;
}
.plan-card:hover { box-shadow: 0 8px 32px rgba(11,79,108,.1); transform: translateY(-3px); }
.plan-card.featured {
    border-color: var(--brand); background: var(--brand-dark);
    color: #fff; box-shadow: 0 12px 40px rgba(11,79,108,.25);
    transform: translateY(-8px);
}
.plan-card.featured:hover { transform: translateY(-12px); box-shadow: 0 18px 50px rgba(11,79,108,.3); }
.plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; padding: 4px 16px;
    border-radius: 20px; white-space: nowrap;
}
.plan-name {
    font-size: .8rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.plan-card.featured .plan-name { color: rgba(255,255,255,.65); }
.plan-price {
    font-size: 2.6rem; font-weight: 800; line-height: 1;
    color: var(--brand-dark); margin-bottom: 4px;
}
.plan-price-devis { font-size: 1.9rem; line-height: 1.2; padding-top: 4px; }
.plan-card.featured .plan-price { color: #fff; }
.plan-price sup { font-size: 1.2rem; font-weight: 600; vertical-align: super; }
.plan-price .period { font-size: .85rem; font-weight: 400; color: var(--muted); }
.plan-card.featured .plan-price .period { color: rgba(255,255,255,.55); }
.plan-price-monthly { font-size: .85rem; font-weight: 600; color: var(--brand); margin: 2px 0 4px; }
.plan-card.featured .plan-price-monthly { color: rgba(255,255,255,.85); }
.plan-desc { font-size: .88rem; color: var(--muted); margin: 12px 0 28px; line-height: 1.5; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,.65); }
.plan-divider { border: none; border-top: 1px solid rgba(11,79,108,.1); margin-bottom: 24px; }
.plan-card.featured .plan-divider { border-color: rgba(255,255,255,.12); }
.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,.85); }
.plan-features li .check {
    width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
    background: rgba(0,180,216,.12); display: flex;
    align-items: center; justify-content: center; margin-top: 2px;
}
.plan-card.featured .plan-features li .check { background: rgba(255,255,255,.15); }
.plan-features li .check svg { width: 10px; height: 10px; stroke: var(--accent); stroke-width: 3; fill: none; }
.plan-card.featured .plan-features li .check svg { stroke: #7de3f7; }
.plan-features li .na { color: rgba(11,79,108,.25); }
.plan-card.featured .plan-features li .na { color: rgba(255,255,255,.2); }
.plan-cta {
    display: block; width: 100%; text-align: center; padding: 13px;
    border-radius: 9px; font-size: .92rem; font-weight: 700;
    text-decoration: none; transition: background .15s, color .15s;
}
.plan-cta-inline { display: inline-block; width: auto; padding: 9px 20px; }
.plan-cta-primary { background: var(--brand); color: #fff; }
.plan-cta-primary:hover { background: var(--brand-dark); }
.plan-cta-outline { background: transparent; border: 1.5px solid rgba(11,79,108,.2); color: var(--brand); }
.plan-cta-outline:hover { border-color: var(--brand); background: var(--brand-light); }
.plan-card.featured .plan-cta-primary { background: var(--accent); }
.plan-card.featured .plan-cta-primary:hover { background: #009bbf; }

/* ── Comparison table ── */
.pricing-compare { padding: 0 24px 96px; }
.pricing-compare h2 { font-size: 1.7rem; font-weight: 800; color: var(--brand-dark); text-align: center; margin-bottom: 40px; }
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    width: 100%;
}
.compare-table {
    border-collapse: collapse;
    font-size: .9rem;
    table-layout: fixed;
    width: 100%;
    min-width: 480px;
    word-break: break-word;
}
.compare-table col.col-label  { width: 40%; }
.compare-table col.col-plan   { width: 20%; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid rgba(11,79,108,.07); vertical-align: middle; }
.compare-table th:first-child,
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table col.col-label  { width: 40%; }
.compare-table col.col-plan   { width: 20%; }
.compare-table thead th { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); padding-bottom: 18px; }
.compare-table thead th.col-featured { color: var(--brand); background: var(--brand-light); border-radius: var(--radius) var(--radius) 0 0; }
.compare-table tbody tr:hover td { background: var(--bg); }
.compare-table tbody td.col-featured { background: rgba(227,242,253,.4); }
.compare-cta-row { display: flex; justify-content: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.compare-icon-yes { color: var(--accent); font-weight: 700; font-size: 1rem; }
.compare-icon-no  { color: rgba(11,79,108,.2); font-size: 1rem; }
.compare-section-header td { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--bg); padding: 10px 20px; }

/* ── FAQ ── */
.pricing-faq-section { padding: 0 24px 96px; }
.pricing-faq { max-width: 740px; margin: 0 auto; }
.pricing-faq h2 { font-size: 1.7rem; font-weight: 800; color: var(--brand-dark); text-align: center; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid rgba(11,79,108,.1); }
.faq-question {
    width: 100%; background: none; border: none; padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    text-align: left; font-size: .97rem; font-weight: 600; color: var(--text); cursor: pointer;
}
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--muted); fill: none; stroke-width: 2; transition: transform .25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { font-size: .9rem; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ── CTA final pricing ── */
.pricing-cta { background: var(--brand-dark); padding: 80px 24px; text-align: center; color: #fff; }
.pricing-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.pricing-cta p { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { display: inline-block; padding: 13px 32px; background: #fff; color: var(--brand-dark); border-radius: 9px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: opacity .15s; }
.btn-white:hover { opacity: .92; }
.btn-ghost { display: inline-block; padding: 13px 32px; border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); border-radius: 9px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: border-color .15s, color .15s; }
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* ── Nav link active (page courante) ── */
.lp-nav-link-active { opacity: 1 !important; color: var(--brand) !important; font-weight: 700 !important; }

/* ── Responsive pricing ── */
@media (max-width: 900px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .plan-card.featured { transform: none; }
    .pricing-compare { padding: 0 8px 60px; }
    .compare-table-wrap { width: 100%; overflow-x: visible; }
    .compare-table { font-size: .68rem; min-width: 0; width: 100%; table-layout: fixed; }
    .compare-table col.col-label { width: 38%; }
    .compare-table col.col-plan  { width: 20.7%; }
    .compare-table th,
    .compare-table td { padding: 6px 4px; word-break: break-word; overflow-wrap: break-word; white-space: normal; }
    .compare-section-header td { padding: 6px 4px; }
}
@media (max-width: 768px) {
    .pricing-hero { padding: 120px 16px 60px; }
    .pricing-faq-section { padding: 0 16px 60px; }
}

/* ── Page indépendants / TPE ── */
.lp-plans-grid-single { max-width: 420px; margin: 0 auto; grid-template-columns: 1fr; }
.lp-plans-grid-duo { max-width: 880px; margin: 0 auto; grid-template-columns: 1fr 1fr; }
.lp-faq-lite { padding: 72px 0; }
.lp-faq-lite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px 40px;
    margin-top: 32px;
}
.lp-faq-lite-grid h3 { font-size: 1.05rem; color: var(--brand-dark); margin-bottom: 6px; }
.lp-faq-lite-grid p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.lp-cta-band { padding: 72px 0; text-align: center; }
.lp-cta-band h2 { font-size: 1.8rem; color: var(--brand-dark); margin-bottom: 10px; }
.lp-cta-band p { color: var(--muted); margin-bottom: 24px; }


/* ────────────────────────  Bande indépendants (index)  ─────────────────────── */
.lp-indie { padding: 0 24px 96px; background: var(--bg); }
.lp-indie-band {
    display: flex; align-items: center; gap: 48px;
    background: var(--white);
    border: 1.5px solid rgba(11,79,108,.12);
    border-radius: var(--radius);
    padding: 44px 48px;
}
.lp-indie-text { flex: 1 1 auto; }
.lp-indie-desc { color: var(--muted); max-width: 640px; }
.lp-indie-points { list-style: none; margin: 18px 0 0; padding: 0; }
.lp-indie-points li { position: relative; padding-left: 26px; margin: 8px 0; }
.lp-indie-points li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--green-light); border: 2px solid var(--green);
}
.lp-indie-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; flex: 0 0 auto; }
.lp-indie-cta .lp-btn-primary { white-space: nowrap; }
.lp-indie-link { color: var(--brand); font-weight: 600; text-decoration: none; }
.lp-indie-link:hover { text-decoration: underline; }
@media (max-width: 860px) {
    .lp-indie-band { flex-direction: column; align-items: flex-start; padding: 28px 22px; gap: 24px; }
    .lp-indie-cta { width: 100%; align-items: stretch; text-align: center; }
}
