/* ==========================================================================
   ORKEST ORDER — Feuille de styles
   Desktop de référence : 1440px. Breakpoints : 1024 / 768 / 430 / 390.
   Sommaire :
     1. Variables & reset
     2. Composants (container, boutons, labels, cartes, statuts, glass)
     3. Header
     4. Hero (+ maquette applicative)
     5. Problème / étapes
     6. Démo
     7. Intégrations
     8. Tarifs
     9. Preuve sociale
    10. CTA final & footer
    11. Modal & formulaire
    12. Animations
    13. Responsive
   ========================================================================== */

/* 1. VARIABLES & RESET ==================================================== */
:root {
    --orkest-black: #0a0a0b;
    --orkest-dark: #111314;
    --orkest-grey: #1f2428;
    --orkest-green: #22e79a;
    --orkest-white: #f7f7f5;
    --orkest-light: #e4e7ea;

    --bg-light: #f1efed;          /* fond "papier" des sections claires */
    --bg-card: #f5f4f2;
    --line-light: #e3e0dd;
    --text: #111314;
    --text-soft: #5f6266;
    --text-muted: #8a8c8f;
    --on-dark-soft: rgba(255, 255, 255, .72);
    --on-dark-muted: rgba(255, 255, 255, .5);

    --container: 1320px;          /* largeur utile du contenu (61 → 1380px à 1440) */
    --gutter: 60px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --font-sans: "Satoshi", "Inter", "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Libre Caslon Text", "Times New Roman", Georgia, serif;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, p, ul, figure, blockquote { margin: 0; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
svg { width: 16px; height: 16px; flex-shrink: 0; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
:focus-visible { outline: 2px solid var(--orkest-green); outline-offset: 3px; }

/* 2. COMPOSANTS =========================================================== */
.container {
    width: 100%;
    max-width: calc(var(--container) + var(--gutter) * 2);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.section { position: relative; }
.section-light { background: var(--bg-light); color: var(--text); }
.section-dark { background: var(--orkest-black); color: #fff; }

.label {
    font-size: 12.7px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--text-soft);
}
.section-dark .label { color: rgba(255, 255, 255, .7); }

.h2-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 45px;
    line-height: 52px;
    letter-spacing: -.005em;
    color: #0c0c0d;
}
.h2-sans {
    font-weight: 400;
    font-size: 51.5px;
    line-height: 52px;
    letter-spacing: -.02em;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(2px); }
.btn:active { transform: scale(.98); }
.btn-pill { border-radius: 999px; }
.btn-lg { height: 60px; padding: 0 30px; border-radius: 12px; }
.btn-xl { height: 66px; padding: 0 34px; border-radius: 16px; gap: 22px; }
.btn-light, .btn-primary { background: #fff; color: #0a0a0b; }
.btn-light:hover, .btn-primary:hover { background: #ecebe8; }
.btn-dark { background: #050505; color: #fff; }
.btn-dark:hover { background: #1f2428; }
.btn-ghost, .btn-secondary { color: #fff; border: 1px solid rgba(255, 255, 255, .22); background: rgba(10, 10, 11, .35); }
.btn-ghost:hover, .btn-secondary:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .35); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line-light); }
.btn-outline:hover { background: #fff; border-color: #d7d4d0; }

/* Cartes / glass / statuts */
.card {
    background: var(--bg-card);
    border: 1px solid #e9e6e3;
    border-radius: var(--radius-md);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(0, 0, 0, .25); }

.glass {
    background: rgba(24, 26, 29, .55);
    border: 1px solid rgba(255, 255, 255, .12);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    backdrop-filter: blur(18px) saturate(120%);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 26px;
    padding: 0 14px 0 9px;
    border-radius: 7px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
}
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid currentColor; }
.status-success { background: rgba(34, 190, 135, .32); color: #6fe7b8; }
.status-warning { background: rgba(214, 140, 55, .62); color: #ffe0b4; }

.link-arrow { display: inline-flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; }
.link-arrow span, .link-arrow { text-decoration: underline; text-underline-offset: 6px; text-decoration-color: #c9c6c2; }
.link-arrow svg { width: 15px; height: 15px; }

/* 3. HEADER =============================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    transition: background-color .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
    background: rgba(10, 10, 11, .85);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.header-inner {
    display: flex;
    align-items: center;
    height: 81px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px 0 58px;
    color: #fff;
}
.logo {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .34em;
    line-height: 1;
    margin-right: -.34em;
    color: #fff;
}
.logo-dark { color: #111; }
.main-nav { display: flex; gap: 36px; margin-left: 63px; }
.main-nav a { font-weight: 500; font-size: 16px; color: rgba(255, 255, 255, .88); transition: color .2s; }
.main-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; margin-left: auto; }
.lang { display: inline-flex; align-items: center; gap: 6px; font-size: 16px; color: rgba(255, 255, 255, .85); margin-right: 32px; }
.lang svg { width: 13px; height: 13px; opacity: .7; transition: transform .25s var(--ease); }
.lang[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Sélecteur de langue (généré par tools/build.php) */
.lang-switch { position: relative; margin-right: 32px; }
.lang-switch .lang { margin-right: 0; }
.lang-menu {
    position: absolute; top: calc(100% + 14px); right: -12px; z-index: 60;
    display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 2px;
    width: max-content; max-height: min(70vh, 520px); overflow-y: auto;
    padding: 8px;
    border-radius: 14px;
    background: rgba(17, 19, 20, .96);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .7);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    animation: fadeIn .2s var(--ease);
}
.lang-menu[hidden] { display: none; }
.lang-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px; border-radius: 8px;
    font-size: 14px; color: rgba(255, 255, 255, .82);
    transition: background-color .2s, color .2s;
}
.lang-menu a b { width: 22px; font-size: 11px; font-weight: 500; letter-spacing: .06em; color: rgba(255, 255, 255, .45); }
.lang-menu a:hover { background: rgba(255, 255, 255, .07); color: #fff; }
.lang-menu a[aria-current] { color: #fff; background: rgba(255, 255, 255, .05); }
.lang-menu a[aria-current] b { color: var(--orkest-green); }
.lang-switch-up .lang-menu { top: auto; bottom: calc(100% + 12px); }
.mobile-langs { display: none; }
.site-header .btn-pill { height: 48px; padding: 0 24px 0 25px; gap: 18px; font-size: 13.5px; }
.burger { display: none; }
.mobile-menu { display: none; }

/* 4. HERO ================================================================= */
.hero {
    position: relative;
    height: 990px;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; }
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #010102 0%, rgba(1, 1, 2, .96) 28%, rgba(1, 1, 2, .55) 46%, rgba(1, 1, 2, 0) 62%),
        linear-gradient(0deg, rgba(1, 1, 2, .55) 0%, rgba(1, 1, 2, 0) 18%);
}
.hero-inner { position: relative; z-index: 2; height: 100%; pointer-events: none; }
.hero-inner a, .hero-inner button { pointer-events: auto; }
.hero-content { padding-top: 186px; }
.hero .label { color: rgba(255, 255, 255, .72); font-size: 15px; letter-spacing: .2em; }
.hero-title {
    margin-top: 20px;
    font-size: 61.5px;
    line-height: 63px;
    font-weight: 400;
    letter-spacing: -.004em;
    color: #fff;
}
.hero-title .muted { color: #b9babc; letter-spacing: -.04em; }
.hero-text {
    margin-top: 25px;
    font-size: 22.5px;
    line-height: 30px;
    color: rgba(255, 255, 255, .9);
}
.hero-ctas { display: flex; gap: 22px; margin-top: 29px; }
.hero-ctas .btn-light { min-width: 257px; gap: 20px; font-size: 16.5px; }
.hero-ctas .btn-ghost { min-width: 224px; gap: 14px; font-size: 16.5px; }
.ico-play { width: 16px; height: 16px; }

.hero-stats { display: flex; margin: 70px 0 0 -12px; }
.hero-stats li {
    display: flex;
    flex-direction: column;
    padding: 2px 10px 8px 19px;
    border-left: 1px solid rgba(255, 255, 255, .16);
}
.hero-stats li:nth-child(1) { width: 147px; }
.hero-stats li:nth-child(2) { width: 148px; }
.hero-stats li:nth-child(3) { width: 166px; }
.hero-stats strong { font-size: 32px; line-height: 34px; font-weight: 400; letter-spacing: -.02em; white-space: nowrap; }
.hero-stats span { margin-top: 5px; font-size: 15px; line-height: 22px; color: rgba(255, 255, 255, .72); }

.hero-tagline {
    position: absolute;
    top: 97px;
    left: calc(50% + 502px);
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    white-space: nowrap;
}

.hero-clients {
    position: absolute;
    left: 0; right: 0;
    bottom: 38px;
    display: flex;
    align-items: center;
}
.clients-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255, 255, 255, .6); font-weight: 500; white-space: nowrap; }
.clients-list { display: flex; align-items: center; justify-content: space-between; flex: 1; margin-left: 53px; color: #fff; }
.clients-list li { display: flex; flex-direction: column; align-items: center; line-height: 1; position: relative; opacity: .92; }
.clients-list small { font-size: 7px; letter-spacing: .1em; margin-top: 3px; opacity: .75; font-weight: 500; }
.cl-girard { font-family: var(--font-serif); font-size: 22px; letter-spacing: .02em; }
.cl-prodhys { font-size: 19px; font-weight: 700; letter-spacing: -.02em; padding-left: 20px; }
.cl-prodhys i { position: absolute; left: 0; top: 0; width: 17px; height: 17px; border-radius: 50%; background: #fff; }
.cl-prodhys i::after { content: ""; position: absolute; left: 5px; top: 4px; width: 7px; height: 7px; border-radius: 50%; background: #0a0a0b; }
.cl-ineo { font-size: 21px; letter-spacing: .28em; font-weight: 400; margin-right: -.28em; }
.cl-ineo small { letter-spacing: .38em; font-size: 7px; }
.cl-simplicicar { font-size: 13px; font-weight: 700; letter-spacing: .06em; transform: scaleY(.85); }
.cl-friol { font-size: 25px; font-weight: 700; font-style: italic; letter-spacing: -.02em; padding-left: 28px; }
.cl-friol i { position: absolute; left: 0; top: 2px; width: 22px; height: 20px; border-left: 2px solid #fff; transform: skewX(-25deg); }
.cl-friol i::after { content: ""; position: absolute; left: 3px; top: 8px; width: 16px; height: 2px; background: #fff; }
.cl-disprotech { font-size: 18px; font-weight: 500; letter-spacing: .01em; }
.cl-hamoud { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }

/* Maquette application (hero) */
.hero-mockup-wrap {
    position: absolute;
    top: 166px;
    left: calc(50% - 17px);
    width: 845px;
    height: 522px;
    perspective: 1500px;
    perspective-origin: 0% 100%;
    pointer-events: none;
}
.mockup-app {
    position: absolute;
    inset: 0;
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    transform-origin: 0% 100%;
    transform: translate3d(0, var(--py, 0px), 0) rotateY(16deg);
    background: rgba(22, 24, 27, .62);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .08);
    color: #e9eaeb;
    will-change: transform;
}
.app-side {
    width: 160px;
    flex-shrink: 0;
    padding: 36px 0 0 21px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    background: rgba(8, 10, 12, .35);
}
.app-logo { font-size: 14px; letter-spacing: .38em; font-weight: 500; padding-left: 14px; color: #fff; }
.app-menu { margin-top: 28px; }
.app-menu li {
    display: flex; align-items: center; gap: 9px;
    width: 134px; height: 36px; margin-bottom: 2px;
    padding-left: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .62);
    border-radius: 8px;
}
.app-menu li svg { width: 13px; height: 13px; opacity: .8; }
.app-menu li.is-active { background: rgba(255, 255, 255, .09); color: #fff; }
.app-main { flex: 1; padding: 36px 24px 0 26px; min-width: 0; }
.app-top { display: flex; align-items: center; justify-content: space-between; }
.app-search {
    display: flex; align-items: center; gap: 9px;
    width: 318px; height: 42px; padding: 0 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .06);
    font-size: 13px; color: rgba(255, 255, 255, .45);
    white-space: nowrap; overflow: hidden;
}
.app-search svg { width: 14px; height: 14px; }
.app-icons { display: flex; gap: 10px; }
.app-icons span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .6); }
.app-icons svg { width: 13px; height: 13px; }
.app-icons .avatar { border-radius: 50%; font-size: 9px; font-weight: 500; }
.app-head { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.app-head .app-title { font-size: 25px; font-weight: 500; letter-spacing: -.01em; color: #fff; }
.app-import { display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 16px; border-radius: 9px; background: #f4f4f3; color: #111; font-size: 13px; font-weight: 500; margin-top: 16px; }
.app-import svg { width: 12px; height: 12px; }
.app-tabs { display: flex; gap: 11px; margin-top: 0; }
.app-tabs span {
    display: inline-flex; align-items: center; gap: 7px;
    height: 30px; padding: 0 14px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .05);
}
.app-tabs span.is-active { background: #ececed; color: #111; font-weight: 500; }
.badge { display: grid; place-items: center; width: 13px; height: 13px; border-radius: 50%; font-size: 8px; font-style: normal; color: #fff; }
.badge-orange { background: #d7893a; }
.badge-red { background: #e0473c; }
.app-table {
    margin-top: 20px;
    border-radius: 12px;
    background: rgba(46, 50, 55, .45);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 4px 14px 6px;
}
.app-row {
    display: grid;
    grid-template-columns: 1.45fr 1.05fr .95fr .3fr;
    align-items: center;
    height: 45px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .82);
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.app-row-head { height: 36px; border-top: 0; font-size: 12px; color: rgba(255, 255, 255, .5); }
.app-row .src { display: flex; align-items: center; gap: 8px; min-width: 0; white-space: nowrap; overflow: hidden; }
.app-row .src small { font-size: 10px; white-space: normal; line-height: 1.15; }
.app-row .src svg { width: 15px; height: 15px; color: #e6e7e8; }
.app-row > span:last-child { padding-left: 10px; }

/* 5. PROBLÈME / ÉTAPES ==================================================== */
.problem { padding: 38px 0 28px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; }
.problem-head .label { margin-bottom: 18px; }
.section-intro {
    width: 470px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 27.5px;
    color: var(--text-soft);
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
    margin-top: 27px;
}
.step { position: relative; display: flex; flex-direction: column; min-height: 427px; padding: 0 26px 17px; overflow: visible; }
.step-media {
    margin: -1px -27px 0;
    height: 175px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    background: #d9d6d2;
}
.step-media img { width: 100%; height: 100%; object-fit: cover; }
.step-icon {
    position: absolute;
    top: 136px; left: 23px;
    display: grid; place-items: center;
    width: 58px; height: 58px;
    border-radius: 12px;
    background: #fff;
    color: #111;
    box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .25);
}
.step-icon svg { width: 24px; height: 24px; }
.step h3 { margin-top: 21px; font-size: 22px; line-height: 28px; font-weight: 500; letter-spacing: -.01em; }
.step p { margin-top: 16px; font-size: 18.5px; line-height: 26px; color: #8d8f92; }
.round-arrow {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    margin-top: auto;
    border-radius: 50%;
    border: 1px solid #dedbd8;
    background: #f1efed;
    transition: background-color .25s, transform .25s var(--ease);
}
.round-arrow svg { width: 14px; height: 14px; }
.step:hover .round-arrow { background: #fff; transform: translateX(2px); }
.step p { margin-bottom: 18px; }

.step-media-erp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: 25px 30px 25px 32px;
    background: #0d1216;
}
.erp-tile {
    display: grid; place-items: center;
    border-radius: 8px;
    background: #181d22;
    font-size: 22px;
    line-height: 1;
    text-align: center;
}
.t-dolibarr { color: #3aa6e8; font-weight: 700; font-size: 21px; letter-spacing: -.02em; text-shadow: 0 0 10px rgba(58, 166, 232, .4); }
.t-odoo { color: #a57a9f; font-size: 26px; font-weight: 500; }
.t-sage { color: #1ed760; font-size: 26px; font-weight: 500; }
.t-ms { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 10px; color: #d8d8d8; text-align: left; line-height: 1.15; }
.t-ms i { width: 15px; height: 15px; background: linear-gradient(135deg, #f7c948 0 50%, #e89a1d 50%); clip-path: polygon(0 100%, 40% 0, 100% 100%); }

/* 6. DÉMO ================================================================= */
.demo {
    padding: 40px 0 24px;
    background:
        radial-gradient(420px 360px at 32% 88%, rgba(60, 60, 58, .45), transparent 70%),
        linear-gradient(180deg, #050506 0%, #030304 100%);
    overflow: hidden;
}
.demo-inner { display: flex; align-items: center; justify-content: space-between; }
.demo-content { width: 470px; padding-top: 6px; }
.demo-text { max-width: 455px; }
.demo .h2-sans { margin-top: 26px; }
.demo-text { margin-top: 18px; font-size: 20.5px; line-height: 30px; color: rgba(255, 255, 255, .88); }
.play { display: inline-flex; align-items: center; gap: 22px; margin-top: 25px; font-size: 20.5px; color: #fff; }
.play-circle {
    display: grid; place-items: center;
    width: 84px; height: 84px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .7);
    transition: background-color .3s, transform .3s var(--ease);
}
.play-circle svg { width: 24px; height: 24px; margin-left: 3px; }
.play:hover .play-circle { background: rgba(255, 255, 255, .08); transform: scale(1.04); }

.demo-mockup {
    display: flex;
    width: 830px;
    height: 483px;
    margin-right: -22px;
    border-radius: 18px;
    background: #121518;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9);
    overflow: hidden;
}
.demo-paper-wrap { width: 458px; padding: 24px 22px 18px; perspective: 1400px; border-right: 1px solid rgba(255, 255, 255, .07); }
.paper {
    height: 100%;
    padding: 30px 31px 0;
    border-radius: 4px;
    background: linear-gradient(170deg, #f4f4f3 0%, #e9e9e8 100%);
    color: #111;
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .9);
    transform: rotateY(-2deg) rotateX(1deg);
}
.paper-head { display: flex; justify-content: space-between; }
.paper-title { font-size: 21px; line-height: 30px; font-weight: 700; letter-spacing: -.005em; }
.paper-client { display: flex; flex-direction: column; margin-top: 24px; font-size: 13.5px; line-height: 21px; }
.paper-client strong { font-weight: 500; font-size: 14px; }
.paper-client span:last-child { color: #555; }
.paper-logo { width: 85px; height: 75px; margin-top: 3px; background: #d6d6d5; }
.paper-table { width: 100%; margin-top: 26px; border-collapse: collapse; font-size: 13.5px; }
.paper-table th, .paper-table td { height: 34.5px; padding: 0 3px; text-align: left; border-bottom: 1px solid #c9c9c8; }
.paper-table th { font-weight: 500; height: 40px; border-top: 1px solid #c9c9c8; }
.paper-table th:nth-child(2), .paper-table td:nth-child(2) { padding-left: 11px; border-left: 1px solid #c9c9c8; }
.paper-table th:last-child, .paper-table td:last-child { text-align: right; padding-right: 10px; }
.paper-table tr:last-child td { border-bottom: 0; }

.demo-panel { flex: 1; padding: 30px 24px 24px; display: flex; flex-direction: column; }
.panel-title { font-size: 16px; letter-spacing: .28em; font-weight: 500; color: rgba(255, 255, 255, .85); }
.panel-box {
    margin-top: 20px;
    padding: 20px 22px 0 20px;
    height: 290px;
    border-radius: 12px;
    background: #16191c;
    border: 1px solid rgba(255, 255, 255, .05);
}
.checklist li {
    position: relative;
    display: flex; align-items: center; justify-content: space-between;
    height: 35px;
    padding-left: 20px;
    font-size: 15.5px;
    color: rgba(255, 255, 255, .8);
}
.checklist li::before { content: ""; position: absolute; left: 3px; width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, .5); }
.checklist svg { width: 15px; height: 15px; color: var(--orkest-green); transition: opacity .4s, transform .4s var(--ease); }
.timeline { display: flex; align-items: center; gap: 30px; margin-top: 26px; padding-left: 2px; font-size: 15px; color: rgba(255, 255, 255, .8); }
.track { position: relative; flex: 1; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .15); }
.track i { position: absolute; left: 0; top: 0; bottom: 0; width: 60%; border-radius: 3px; background: #fff; }
.track i::after { content: ""; position: absolute; right: -4px; top: -3px; width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .15); }
.panel-success {
    display: flex; align-items: center; gap: 15px;
    height: 82px;
    margin-top: auto;
    padding: 0 22px;
    border-radius: 12px;
    background: #0c3029;
    border: 1px solid rgba(34, 231, 154, .12);
    transition: opacity .5s, transform .5s var(--ease);
}
.panel-success p { font-size: 15.5px; line-height: 21px; color: #56e6ad; }
.success-ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #3ed89b; color: #0c3029; }
.success-ico svg { width: 18px; height: 18px; }
/* états animés (JS) */
.demo-mockup.is-playing .checklist svg { opacity: 0; transform: scale(.6); }
.demo-mockup.is-playing .checklist li.is-done svg { opacity: 1; transform: none; }
.demo-mockup.is-playing .panel-success { opacity: 0; transform: translateY(6px); }
.demo-mockup.is-playing .panel-success.is-visible { opacity: 1; transform: none; }

/* 7. INTÉGRATIONS ========================================================= */
.integrations { padding: 42px 0 0; }
.integrations .label { margin-bottom: 14px; }
.integrations .h2-serif { font-size: 41px; }
.integ-text { margin-top: 13px; font-size: 20.5px; line-height: 29px; color: var(--text-soft); }
.integ-head .link-arrow { margin-bottom: 7px; }
.integ-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
    margin-top: 25px;
}
.integ-card {
    display: flex; align-items: center; justify-content: center;
    position: relative;
    height: 101px;
    border-radius: 10px;
    background: #f5f4f3;
    border: 1px solid #e8e5e2;
    line-height: 1;
    transition: transform .3s var(--ease), background-color .3s;
}
.integ-card:hover { transform: translateY(-3px); background: #fff; }
.lg-dolibarr { font-size: 25px; font-weight: 700; color: #264a7d; letter-spacing: -.03em; }
.lg-dolibarr small { position: absolute; top: 34px; right: 26px; font-size: 5px; letter-spacing: .1em; color: #6d8bb3; }
.lg-odoo { font-size: 36px; font-weight: 500; color: #8f8f8f; letter-spacing: -.02em; }
.lg-odoo b { color: #875a7b; font-weight: 500; }
.lg-sage { font-size: 33px; font-weight: 500; color: #16c648; letter-spacing: -.02em; }
.lg-ms { gap: 5px; font-size: 14px; line-height: 1.05; color: #2459a9; font-weight: 500; }
.lg-ms i { width: 22px; height: 18px; background: linear-gradient(90deg, #1f4e9c, #2a6fcb); clip-path: polygon(0 100%, 30% 0, 50% 55%, 72% 10%, 100% 100%); }
.lg-sap { gap: 5px; }
.lg-sap b { display: grid; place-items: center; height: 26px; padding: 0 12px 0 7px; background: linear-gradient(180deg, #1f9ae0, #0e6fc4); color: #fff; font-size: 16px; font-weight: 700; clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%); }
.lg-sap span { display: flex; flex-direction: column; font-size: 16px; font-weight: 700; color: #f5a623; }
.lg-sap small { font-size: 9px; color: #9aa0a6; font-weight: 500; }
.lg-cegid { font-size: 33px; font-weight: 700; color: #1d56d8; letter-spacing: -.03em; }
.lg-exact { font-size: 27px; font-weight: 700; color: #e2131e; letter-spacing: -.03em; }
.lg-exact b { font-weight: 700; margin-right: 1px; }
.lg-api { flex-direction: column; gap: 7px; }
.lg-api span { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 500; color: #1c1c1c; }
.lg-api svg { width: 22px; height: 22px; }
.lg-api small { font-size: 15px; color: #7c7f83; padding-left: 12px; }

/* 8. TARIFS =============================================================== */
.pricing { padding: 86px 0 30px; }
.pricing .label { margin-bottom: 21px; }
.pricing-head { align-items: flex-end; }
.billing-toggle {
    display: flex; align-items: center;
    height: 44px; padding: 0;
    margin-bottom: 1px;
    border-radius: 999px;
    background: #e6e3e1;
}
.billing-toggle button {
    height: 44px; padding: 0 29px;
    border-radius: 999px;
    font-size: 16px;
    color: #222;
    transition: background-color .3s var(--ease), color .3s;
}
.billing-toggle button span { margin-left: 8px; }
.billing-toggle .is-active { background: #050505; color: #fff; }
.plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
    align-items: stretch;
}
.plan { position: relative; display: flex; flex-direction: column; padding: 33px 20px 21px 26px; min-height: 354px; background: #f6f5f4; }
.plan h3 { font-size: 19.5px; line-height: 24px; font-weight: 500; }
.price { display: flex; align-items: baseline; flex-wrap: wrap; margin-top: 20px; font-size: 45.5px; line-height: 1; letter-spacing: -.02em; }
.price strong { font-size: 46.5px; font-weight: 500; letter-spacing: -.03em; }
.price span { margin-left: 12px; font-size: 14.5px; letter-spacing: 0; color: var(--text-muted); }
.price-from { margin-top: 4px; }
.price-from small { flex-basis: 100%; font-size: 13.5px; letter-spacing: 0; color: var(--text-soft); margin-bottom: 7px; }
.plan-features { margin-top: 12px; margin-bottom: 14px; }
.plan-features li {
    position: relative;
    padding-left: 29px;
    font-size: 15.5px;
    letter-spacing: -.005em;
    line-height: 32px;
    color: var(--text-muted);
}
.plan-features li::before {
    content: "";
    position: absolute; left: 8px; top: 11px;
    width: 12px; height: 6px;
    border-left: 1.6px solid #1a1a1a;
    border-bottom: 1.6px solid #1a1a1a;
    transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; height: 54px; border-radius: 14px; font-weight: 500; gap: 8px; font-size: 16.5px; }
.plan .btn svg { width: 13px; height: 13px; }
.plan-featured { background: #0c1114; border-color: #0c1114; color: #fff; margin-top: -7px; padding-top: 34px; }
.plan-featured .plan-features li { color: rgba(255, 255, 255, .78); }
.plan-featured .plan-features li::before { border-color: #fff; }
.plan-featured .price span { color: rgba(255, 255, 255, .6); }
.plan-featured .btn { height: 54px; }
.plan-badge {
    position: absolute; top: 17px; right: 15px;
    height: 32px; padding: 0 16px;
    display: inline-flex; align-items: center;
    border-radius: 999px;
    background: #fff; color: #111;
    font-size: 14px; font-weight: 500;
}
.setup {
    display: flex; align-items: center;
    height: 103px;
    margin-top: 27px;
    padding: 0 84px 0 25px;
    border-radius: 14px;
    background: #e8e5e3;
}
.setup-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid #d5d1ce; background: #efedeb; }
.setup-ico svg { width: 24px; height: 24px; }
.setup-main { margin-left: 25px; font-size: 18px; line-height: 29px; color: #444; }
.setup-main strong { font-weight: 500; color: #111; }
.setup-side { margin-left: auto; font-size: 17px; color: #666; }

/* 9. PREUVE SOCIALE ======================================================= */
.social { height: 456px; overflow: hidden; background: #000; isolation: isolate; }
.social-bg { position: absolute; top: 0; bottom: 0; left: calc(50% - 120px); right: 0; z-index: -1; }
.social-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 0 50%; }
.social-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .75) 16%, rgba(0, 0, 0, .2) 38%, rgba(0, 0, 0, 0) 60%);
}
.social-inner { position: relative; height: 100%; display: flex; }
.social-content { width: 520px; padding-top: 48px; }
.h2-sm { margin-top: 15px; font-size: 39px; line-height: 42px; letter-spacing: -.015em; }
.testimonials { position: relative; margin-top: 17px; }
.testimonial { display: none; }
.testimonial.is-active { display: block; animation: fadeIn .5s var(--ease); }
.testimonial blockquote { font-size: 20.5px; line-height: 27.8px; color: rgba(255, 255, 255, .9); text-indent: -14px; padding-left: 10px; max-width: 470px; }
.testimonial figcaption { display: flex; align-items: center; gap: 16px; margin-top: 15px; }
.testimonial figcaption img, .avatar-ph { width: 63px; height: 63px; border-radius: 50%; object-fit: cover; }
.avatar-ph { display: grid; place-items: center; background: #1f2428; font-size: 17px; color: rgba(255, 255, 255, .7); }
.testimonial figcaption span { display: flex; flex-direction: column; font-size: 16px; line-height: 23px; color: rgba(255, 255, 255, .7); }
.testimonial figcaption strong { font-size: 17px; font-weight: 500; color: #fff; }
.carousel-nav { display: flex; align-items: center; gap: 11px; margin-top: 22px; font-size: 15px; color: rgba(255, 255, 255, .7); }
.carousel-nav button {
    display: grid; place-items: center;
    width: 43px; height: 43px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    transition: background-color .25s;
}
.carousel-nav button:hover { background: rgba(255, 255, 255, .14); }
.carousel-nav svg { width: 13px; height: 13px; }
.carousel-nav span { margin-left: 15px; }

.social-stats { position: absolute; top: 40px; left: calc(50% - 100px); width: 290px; display: flex; flex-direction: column; gap: 2px; }
.social-stats li { display: flex; flex-direction: column; padding: 20px 20px 22px 61px; border-radius: 12px; background: rgba(30, 30, 30, .42); }
.social-stats li:nth-child(1) { min-height: 136px; }
.social-stats li:nth-child(2) { min-height: 112px; }
.social-stats li:nth-child(3) { min-height: 118px; }
.social-stats strong { font-size: 45.5px; line-height: 46px; font-weight: 400; letter-spacing: -.02em; }
.social-stats span { margin-top: 8px; font-size: 16px; line-height: 22px; color: rgba(255, 255, 255, .85); }
.social-tagline {
    position: absolute; top: 175px; left: calc(50% + 258px);
    font-size: 17px; line-height: 33px; font-weight: 500;
    letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
}
.social-tagline::after { content: ""; display: block; width: 40px; height: 2px; margin-top: 14px; background: rgba(255, 255, 255, .6); }

/* 10. CTA & FOOTER ======================================================== */
.cta { padding: 38px 0 55px; border-bottom: 1px solid #e4e1de; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; }
.h2-cta { margin-top: 18px; font-size: 43.5px; line-height: 46px; letter-spacing: -.02em; color: #0c0c0d; }
.cta-sub { margin-top: 8px; font-size: 18px; line-height: 26px; color: #76787b; }
.cta .btn-xl { min-width: 288px; margin-top: 10px; font-size: 17px; }

.site-footer { background: var(--bg-light); padding: 34px 0 81px; }
.footer-inner { display: flex; align-items: center; }
.footer-inner .logo { font-size: 26px; }
.footer-nav { display: flex; gap: 34px; margin-left: 54px; }
.footer-nav a, .footer-right a { font-size: 16px; color: #222; transition: color .2s; }
.footer-nav a:hover, .footer-right a:hover { color: #000; }
.footer-right { display: flex; align-items: center; margin-left: auto; margin-right: 23px; }
.lang-dark { color: #222; margin-right: 0 !important; padding-right: 26px; border-right: 1px solid #dcd9d6; height: 28px; }
.footer-right a { margin-left: 32px; }

/* 11. MODAL & FORMULAIRE ================================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5, 6, 7, .7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: fadeIn .3s; }
.modal-dialog {
    position: relative;
    width: 100%; max-width: 520px; max-height: calc(100vh - 32px); overflow: auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--orkest-white);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
    animation: modalIn .45s var(--ease);
}
.modal-dialog h2 { margin-top: 14px; font-family: var(--font-serif); font-weight: 400; font-size: 34px; line-height: 40px; }
.modal-sub { margin-top: 8px; color: var(--text-soft); }
.modal-close { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-light); }
.form { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.form label { display: flex; flex-direction: column; gap: 7px; font-size: 15px; font-weight: 500; color: #333; }
.form input, .form select {
    height: 48px; padding: 0 14px;
    border: 1px solid #dcd9d5; border-radius: 10px;
    background: #fff; font: inherit; font-size: 17px; font-weight: 400; color: #111;
    transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus { outline: none; border-color: #111; box-shadow: 0 0 0 3px rgba(17, 17, 17, .08); }
.form .is-invalid { border-color: #d6453b; }
.dropzone {
    position: relative;
    flex-direction: row !important; align-items: center;
    gap: 14px !important;
    padding: 18px;
    border: 1px dashed #c9c5c1; border-radius: 12px;
    background: #fff; cursor: pointer;
    transition: border-color .2s, background-color .2s;
}
.dropzone:hover, .dropzone.is-over { border-color: #111; background: #fafaf9; }
.dropzone.is-invalid { border-color: #d6453b; }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; height: auto; }
.dropzone svg { width: 24px; height: 24px; }
.dropzone span { display: flex; flex-direction: column; font-weight: 400; font-size: 16px; }
.dropzone small { color: var(--text-muted); font-size: 13.5px; margin-top: 2px; }
.form .btn { margin-top: 6px; }
.form-msg { font-size: 16px; min-height: 20px; }
.form-msg.is-success { color: #0f8a5f; }
.form-msg.is-error { color: #c0392b; }

/* 12. ANIMATIONS ========================================================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }


/* Langues : ajustements
   - FR : lignes de tarifs sur une ligne comme la maquette
   - Grec / bulgare : polices couvrant ces alphabets */
html[lang="fr"] .plan-features li { white-space: nowrap; }
/* Autres langues : textes de longueur variable, on laisse le texte couler
   plutôt que d'imposer les retours à la ligne de la maquette FR */
html:not([lang="fr"]) .hero-title,
html:not([lang="fr"]) .hero-text { max-width: 630px; }
html:not([lang="fr"]) .step p br { display: none; }
html:not([lang="fr"]) .step p { font-size: 17.5px; }
html:not([lang="fr"]) .social-stats li { min-height: 0; padding-top: 18px; padding-bottom: 18px; }
html:not([lang="fr"]) .social { height: auto; min-height: 456px; }
html:not([lang="fr"]) .social-inner { min-height: 456px; }
html:not([lang="fr"]) .social-content { padding-bottom: 28px; }
html:not([lang="fr"]) .cta-inner { gap: 48px; }
html:not([lang="fr"]) .cta-inner > div { flex: 1; min-width: 0; }
/* Inter (grec, bulgare) est plus large que Satoshi */
html[lang="el"] .step h3, html[lang="bg"] .step h3 { font-size: 20px; }
html[lang="el"] .step p, html[lang="bg"] .step p { font-size: 16.5px; }
html[lang="el"] .social-stats span, html[lang="bg"] .social-stats span { font-size: 14.5px; }
html[lang="el"], html[lang="bg"] {
    --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Noto Serif", Georgia, serif;
}
.lang-dark + .lang-menu, .lang-switch-up .lang-menu { background: #fff; border-color: #e4e1de; box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .25); }
.lang-switch-up .lang-menu a { color: #333; }
.lang-switch-up .lang-menu a b { color: #999; }
.lang-switch-up .lang-menu a:hover, .lang-switch-up .lang-menu a[aria-current] { background: #f1efed; color: #000; }
.lang-switch-up .lang-menu a[aria-current] b { color: #0f8a5f; }
.footer-right .lang-switch { margin-right: 0; }

/* 13. RESPONSIVE ========================================================== */

/* ≤ 1280 : on resserre l'échelle du hero */
@media (max-width: 1280px) {
    :root { --gutter: 40px; }
    .header-inner { padding: 0 32px 0 40px; }
    .main-nav { gap: 28px; margin-left: 44px; }
    .hero-title { font-size: 52px; line-height: 57px; }
    .hero-mockup-wrap { left: calc(50% + 10px); width: 600px; height: 470px; }
    .app-search { width: 220px; }
    .hero-tagline { display: none; }
    .clients-list { margin-left: 32px; }
    .demo-mockup { width: 700px; margin-right: 0; }
    .demo-paper-wrap { width: 390px; }
    .plan { padding-left: 20px; padding-right: 20px; }
    .social-stats { left: calc(50% - 60px); }
    .social-tagline { left: calc(50% + 270px); font-size: 15px; }
}

/* ≤ 1024 : tablette paysage */
@media (max-width: 1024px) {
    :root { --gutter: 32px; }
    .main-nav, .site-header .lang-switch { display: none; }
    .mobile-menu { max-height: calc(100vh - 72px); overflow-y: auto; }
    .mobile-menu .mobile-langs { display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .mobile-menu .mobile-langs a {
        display: grid; place-items: center;
        min-width: 42px; height: 34px; padding: 0 8px;
        border-radius: 8px; border: 1px solid rgba(255, 255, 255, .12);
        font-size: 12px; letter-spacing: .06em; color: rgba(255, 255, 255, .7);
    }
    .mobile-menu .mobile-langs a[aria-current] { color: #0a0a0b; background: #fff; border-color: #fff; }
    .burger {
        display: grid; place-content: center; gap: 6px;
        width: 44px; height: 44px; margin-left: 12px;
        border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2);
    }
    .burger span { display: block; width: 16px; height: 1.5px; background: #fff; transition: transform .3s var(--ease); }
    .burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
    .burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
    .mobile-menu {
        display: flex; flex-direction: column; gap: 28px;
        padding: 16px var(--gutter) 32px;
        background: rgba(10, 10, 11, .96);
        -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    }
    .mobile-menu[hidden] { display: none; }
    .mobile-menu nav { display: flex; flex-direction: column; }
    .mobile-menu nav a { padding: 14px 0; font-size: 20px; color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .site-header.menu-open { background: rgba(10, 10, 11, .96); }

    .hero { height: auto; padding-bottom: 40px; }
    .hero-content { padding-top: 150px; }
    .hero-mockup-wrap {
        position: relative; top: auto; left: auto;
        width: calc(100% - var(--gutter) * 2); max-width: 760px; height: 500px;
        margin: 64px auto 0;
        perspective: none;
    }
    .mockup-app { transform: none; }
    .hero-clients { position: relative; bottom: auto; margin-top: 56px; flex-direction: column; align-items: flex-start; gap: 22px; }
    .clients-list { margin-left: 0; width: 100%; flex-wrap: wrap; gap: 26px 36px; justify-content: flex-start; }

    .section-head { flex-direction: column; align-items: flex-start; gap: 24px; }
    .section-intro { width: auto; max-width: 560px; margin-bottom: 0; }
    .steps { grid-template-columns: repeat(2, 1fr); }

    .demo { padding: 80px 0; }
    .demo-inner { flex-direction: column; align-items: flex-start; gap: 48px; }
    .demo-content { width: auto; }
    .demo-mockup { width: 100%; }

    .integrations { padding-top: 80px; }
    .integ-grid { grid-template-columns: repeat(4, 1fr); }

    .pricing { padding-top: 80px; padding-bottom: 60px; }
    .plans { grid-template-columns: repeat(2, 1fr); }
    .plan-featured { margin-top: 0; }
    .setup { height: auto; padding: 24px; flex-wrap: wrap; gap: 16px; }
    .setup-main { margin-left: 0; }
    .setup-side { margin-left: 0; flex-basis: 100%; }

    .social { height: auto; padding: 64px 0; }
    .social-bg { left: 30%; }
    .social-inner { flex-direction: column; gap: 40px; }
    .social-content { width: auto; max-width: 560px; padding-top: 0; }
    .social-stats { position: static; width: 100%; max-width: 560px; flex-direction: row; gap: 12px; }
    .social-stats li { flex: 1; height: auto !important; padding: 20px; }
    .social-tagline { position: static; }

    .cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .footer-inner { flex-wrap: wrap; gap: 24px; }
    .footer-nav { margin-left: auto; }
    .footer-right { margin-right: 0; }
}

/* ≤ 768 : tablette portrait */
@media (max-width: 768px) {
    :root { --gutter: 24px; }
    .header-inner { height: 72px; padding: 0 20px 0 24px; }
    .site-header .btn-pill { height: 42px; padding: 0 18px; gap: 10px; font-size: 13px; }
    .hero-title { font-size: 48px; line-height: 54px; }
    .hero-title br:first-of-type { display: none; }
    .hero-text { font-size: 17px; line-height: 28px; }
    .hero-text br { display: none; }
    .hero-stats { flex-wrap: wrap; margin-left: 0; row-gap: 24px; }
    .hero-stats li { width: 50% !important; }
    .hero-stats li:nth-child(odd) { border-left: 0; padding-left: 0; }
    .hero-mockup-wrap { height: 460px; }
    .app-side { width: 130px; padding-left: 14px; }
    .app-menu li { width: 106px; }
    .app-search { width: 180px; }

    .h2-serif, .h2-sans { font-size: 38px; line-height: 44px; }
    .h2-serif br, .h2-sans br { display: none; }

    /* Cartes : scroll horizontal avec snap */
    .steps {
        display: flex; gap: 16px;
        margin: 32px calc(var(--gutter) * -1) 0;
        padding: 0 var(--gutter) 8px;
        overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .steps::-webkit-scrollbar { display: none; }
    .step { flex: 0 0 min(78vw, 320px); scroll-snap-align: start; min-height: 420px; }

    .demo-mockup { flex-direction: column; height: auto; }
    .demo-paper-wrap { width: 100%; height: 470px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
    .panel-box { height: auto; padding-bottom: 20px; }
    .panel-success { margin-top: 16px; }

    .integ-head .link-arrow { margin-bottom: 0; }
    .integ-text br { display: none; }
    .integ-grid { gap: 12px; }
    .integ-card { height: 88px; }
    .lg-odoo, .lg-sage, .lg-cegid { font-size: 28px; }

    .billing-toggle button { padding: 0 20px; }
    .plans { grid-template-columns: 1fr; gap: 16px; }
    .plan { min-height: 0; }
    .plan .btn { margin-top: 8px; }

    .social-stats { flex-direction: column; }
    .h2-sm { font-size: 32px; line-height: 38px; }
    .h2-cta { font-size: 34px; line-height: 42px; }

    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-nav { margin-left: 0; flex-wrap: wrap; gap: 16px 28px; }
    .footer-right { margin-left: 0; }
    .site-footer { padding-bottom: 48px; }
}

/* ≤ 430 : mobile */
@media (max-width: 430px) {
    :root { --gutter: 20px; }
    .header-inner { padding: 0 16px 0 20px; }
    .logo { font-size: 17px; letter-spacing: .42em; }
    .site-header .btn-pill { display: none; }
    .mobile-menu .btn { width: 100%; }

    .hero-content { padding-top: 124px; }
    .hero .label { font-size: 11px; }
    .hero-title { font-size: 46px; line-height: 50px; letter-spacing: -.03em; }
    .hero-text { font-size: 16px; line-height: 26px; }
    .hero-ctas { flex-direction: column; gap: 12px; }
    .hero-ctas .btn { width: 100%; height: 56px; }
    .hero-stats { margin-top: 48px; }
    .hero-stats strong { font-size: 26px; white-space: normal; }

    .hero-mockup-wrap { height: 380px; margin-top: 48px; width: calc(100% - 40px); }
    .app-side { display: none; }
    .app-main { padding: 20px 14px 0; }
    .app-search { width: 100%; }
    .app-icons { display: none; }
    .app-head .app-title { font-size: 18px; }
    .app-import { height: 34px; margin-top: 0; }
    .app-tabs { gap: 6px; margin-top: 14px; overflow: hidden; }
    .app-tabs span { padding: 0 9px; }
    .app-table { padding: 4px 10px 6px; }
    .app-row { grid-template-columns: 1.3fr 1fr .3fr; height: 42px; }
    .app-row > span:nth-child(2) { display: none; }
    .app-row .src small { font-size: 10px; }
    .app-row { font-size: 12px; }
    .app-row .src { text-overflow: ellipsis; }

    .hero-clients { margin-top: 44px; }
    .clients-list { gap: 22px 28px; }
    .clients-list li { transform: scale(.9); transform-origin: left center; }

    .problem { padding: 56px 0 48px; }
    .h2-serif, .h2-sans { font-size: 34px; line-height: 40px; }
    .section-intro { font-size: 15px; line-height: 25px; }
    .step h3 { font-size: 19px; }

    .demo { padding: 64px 0; }
    .demo-text { font-size: 16px; line-height: 26px; }
    .play-circle { width: 68px; height: 68px; }
    .demo-paper-wrap { height: 450px; padding: 16px; }
    .paper { padding: 22px 18px 0; }
    .paper-logo { width: 60px; height: 54px; }
    .paper-table { font-size: 11px; }
    .demo-panel { padding: 22px 16px 16px; }
    .panel-box { padding: 14px 14px 18px; }
    .checklist li { font-size: 13px; }

    .integrations { padding-top: 64px; }
    .integ-text { font-size: 16px; line-height: 26px; }
    .integ-grid { grid-template-columns: repeat(2, 1fr); }

    .pricing { padding-top: 72px; }
    .billing-toggle { width: 100%; }
    .billing-toggle button { flex: 1; padding: 0 10px; font-size: 13px; }
    .billing-toggle button span { margin-left: 4px; }
    .setup { padding: 20px; }

    .social { padding: 56px 0; }
    .social-bg { left: 0; opacity: .45; }
    .testimonial blockquote { font-size: 16px; line-height: 26px; }
    .social-stats strong { font-size: 34px; line-height: 40px; }
    .social-tagline { font-size: 14px; line-height: 28px; }

    .cta { padding: 56px 0; }
    .h2-cta { font-size: 30px; line-height: 38px; }
    .cta .btn-xl { width: 100%; }

    .modal-dialog { padding: 28px 22px; }
    .modal-dialog h2 { font-size: 28px; line-height: 34px; }
}

/* ≤ 390 : petits mobiles */
@media (max-width: 390px) {
    .hero-title { font-size: 44px; line-height: 48px; }
    .h2-serif, .h2-sans { font-size: 31px; line-height: 37px; }
    .hero-stats li { padding-right: 12px; }
    .hero-stats span { font-size: 13px; }
    .step { flex-basis: 84vw; }
}

/* 14. PAGES SECONDAIRES =================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* En-tête sombre des pages intérieures */
.page-hero {
    position: relative;
    padding: 168px 0 96px;
    background:
        radial-gradient(700px 420px at 85% 10%, rgba(80, 78, 74, .28), transparent 70%),
        radial-gradient(520px 380px at 10% 100%, rgba(40, 44, 48, .5), transparent 70%),
        var(--orkest-black);
    overflow: hidden;
}
.page-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 64px; }
.page-hero-content { max-width: 680px; }
.page-hero-wide { max-width: 860px; }
.page-hero .label { margin-top: 26px; }
.page-title { margin-top: 20px; font-size: 56px; line-height: 62px; font-weight: 400; letter-spacing: -.02em; color: #fff; }
.page-lead { margin-top: 24px; max-width: 640px; font-size: 20px; line-height: 31px; color: rgba(255, 255, 255, .78); }
.page-meta { margin-top: 22px; font-size: 14px; color: rgba(255, 255, 255, .55); }
.page-hero .hero-ctas { margin-top: 34px; }
.page-hero-small { padding: 150px 0 64px; }
.page-hero-small .page-title { font-size: 46px; line-height: 54px; }
.page-hero-404 { min-height: 80vh; padding-top: 200px; }

.breadcrumb ol, .how-steps, .toc ol { list-style: none; padding: 0; margin: 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: rgba(255, 255, 255, .5); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.breadcrumb a { color: rgba(255, 255, 255, .72); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: rgba(255, 255, 255, .9); }

.page-section { padding: 96px 0; }
.page-section-tight { padding: 24px 0 96px; }
.page-section .section-head { margin-bottom: 40px; }
.h2-md { font-size: 40px; line-height: 48px; }
.h3-title { font-size: 24px; line-height: 32px; font-weight: 500; letter-spacing: -.01em; }
.page-text { margin-top: 16px; font-size: 18px; line-height: 29px; color: var(--text-soft); }
.section-dark .h2-md { color: #fff; }

/* Hub intégrations */
.erp-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.erp-card { display: flex; flex-direction: column; height: 100%; padding: 16px 16px 24px; }
.erp-card .integ-card { height: 120px; background: #fff; }
.erp-card h3 { margin: 22px 8px 0; font-size: 21px; font-weight: 500; }
.erp-card p { margin: 8px 8px 20px; font-size: 15.5px; line-height: 25px; color: var(--text-muted); }
.erp-card .link-arrow { margin: auto 8px 0; font-size: 15px; text-decoration: none; }
.erp-card:hover .link-arrow svg { transform: translateX(3px); }
.link-arrow svg { transition: transform .25s var(--ease); }

.api-block { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; padding: 48px; border-radius: var(--radius-lg); background: #e8e5e3; }
.api-block .label { margin-bottom: 16px; }
.api-list { display: grid; gap: 14px; }
.api-list li { display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; padding: 20px; border-radius: 14px; background: var(--bg-card); }
.api-list h3 { font-size: 17px; font-weight: 500; }
.api-list p { grid-column: 2; font-size: 15.5px; line-height: 24px; color: var(--text-muted); }
.api-ico { grid-row: span 2; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: #fff; }
.api-ico svg { width: 22px; height: 22px; }

/* Étapes (sections sombres) */
.how { background: var(--orkest-black); }
.how .h2-md { margin-top: 18px; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; counter-reset: s; }
.how-steps li { padding: 28px 26px 30px; border-radius: var(--radius-md); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); }
.how-steps span { font-size: 13px; letter-spacing: .14em; color: var(--orkest-green); }
.how-steps h3 { margin-top: 18px; font-size: 20px; font-weight: 500; color: #fff; }
.how-steps p { margin-top: 10px; font-size: 15.5px; line-height: 25px; color: rgba(255, 255, 255, .66); }

/* Page ERP */
.erp-visual { flex: 0 0 420px; }
.erp-visual .demo-panel { padding: 28px 24px 24px; border-radius: 20px; gap: 16px; }
.erp-visual .panel-title b { color: var(--orkest-green); font-weight: 500; margin: 0 4px; }
.erp-visual .panel-box { height: auto; padding-bottom: 12px; margin-top: 0; }
.erp-visual .panel-success { margin-top: 0; }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.feature-cards .card { position: relative; padding: 30px 28px 32px; }
.feature-cards .step-icon, .formats .step-icon { position: static; box-shadow: none; border: 1px solid #ebe8e5; }
.feature-cards h3 { margin-top: 22px; font-size: 20px; line-height: 28px; font-weight: 500; }
.feature-cards p { margin-top: 10px; font-size: 16px; line-height: 26px; color: var(--text-muted); }
.created { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.check-list { margin-top: 28px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 36px; font-size: 17px; line-height: 27px; color: #333; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: #e3f6ee; }
.check-list li::after { content: ""; position: absolute; left: 7px; top: 9px; width: 8px; height: 4px; border-left: 1.6px solid #0f8a5f; border-bottom: 1.6px solid #0f8a5f; transform: rotate(-45deg); }
.formats { padding: 30px 28px 32px; }
.formats h3 { margin-top: 20px; font-size: 20px; font-weight: 500; }
.formats p { margin: 10px 0 22px; font-size: 16px; line-height: 26px; color: var(--text-muted); }
.other-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.other-links a {
    display: inline-flex; align-items: center; gap: 10px;
    height: 44px; padding: 0 20px;
    border-radius: 999px; border: 1px solid #dedad6; background: var(--bg-card);
    font-size: 15px; transition: background-color .2s, border-color .2s;
}
.other-links a:hover { background: #fff; border-color: #cfcac5; }
.other-links svg { width: 14px; height: 14px; }
.other-links-dark { margin-top: 36px; }
.other-links-dark a { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .14); color: #fff; }
.other-links-dark a:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .24); }

/* FAQ */
.faq { padding: 96px 0; }
.faq.page-section-tight { padding-top: 24px; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-head .h2-serif { margin-top: 18px; }
.faq-intro { margin-top: 18px; font-size: 17px; line-height: 28px; color: var(--text-soft); }
.faq-list + .faq-list { margin-top: -1px; }
.faq-item { border-top: 1px solid #dedad6; }
.faq-list .faq-item:last-child { border-bottom: 1px solid #dedad6; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 19px; line-height: 28px; font-weight: 500; }
.faq-ico { position: relative; flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid #dedad6; transition: background-color .2s, transform .3s var(--ease); }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: #111; transform: translate(-50%, -50%); }
.faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }
.faq-item[open] .faq-ico { background: #111; }
.faq-item[open] .faq-ico::before, .faq-item[open] .faq-ico::after { background: #fff; }
.faq-item[open] .faq-ico::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item summary:hover .faq-ico { border-color: #111; }
.faq-a p { padding: 0 56px 26px 0; font-size: 16.5px; line-height: 27px; color: var(--text-soft); }
.page-home .faq { padding-top: 110px; }

/* Guide / pages de texte */
.article-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); gap: 80px; justify-content: center; }
.toc { position: sticky; top: 110px; align-self: start; }
.toc ol { margin-top: 18px; padding: 0; list-style: none; counter-reset: toc; display: grid; gap: 4px; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 12px; padding: 8px 0; font-size: 14.5px; line-height: 21px; color: var(--text-soft); transition: color .2s; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-size: 12px; color: #aaa; padding-top: 1px; }
.toc a:hover { color: #000; }
.prose { font-size: 18px; line-height: 31px; color: #2b2d30; overflow-wrap: break-word; hyphens: auto; }
.prose > * + * { margin-top: 20px; }
.prose h2 { margin-top: 56px; font-family: var(--font-serif); font-weight: 400; font-size: 34px; line-height: 42px; letter-spacing: -.005em; color: #0c0c0d; scroll-margin-top: 100px; }
.prose h2:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 24px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: 10px; }
.prose li::marker { color: #9a9794; }
.prose strong { font-weight: 500; color: #111; }
.prose a { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: #c9c6c2; }
.prose a:hover { text-decoration-color: #111; }
.prose .check-list { padding-left: 0; list-style: none; }
.prose .check-list li { font-size: 18px; line-height: 30px; }
.prose .lead { font-size: 20px; line-height: 32px; color: #444; }
.callout { padding: 22px 26px; border-left: 3px solid var(--orkest-green); border-radius: 0 12px 12px 0; background: #e8e5e3; }
.takeaway { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 48px !important; padding: 32px; border-radius: var(--radius-lg); background: #0c1114; color: #fff; }
.takeaway p { font-size: 20px; line-height: 30px; }
.takeaway .btn-dark { background: #fff; color: #0a0a0b; flex-shrink: 0; }
.takeaway .btn-dark:hover { background: #ecebe8; }
.prose-legal { max-width: 760px; }
.prose-legal h2 { font-size: 28px; line-height: 36px; margin-top: 44px; }

/* Comparatifs */
.compare-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.compare-card { display: flex; flex-direction: column; height: 100%; padding: 32px; }
.compare-vs { font-size: 26px; line-height: 34px; font-weight: 500; letter-spacing: -.01em; }
.compare-vs i { font-style: normal; font-family: var(--font-serif); color: var(--text-muted); padding: 0 4px; }
.compare-card p { margin: 14px 0 24px; font-size: 16.5px; line-height: 27px; color: var(--text-muted); }
.compare-card .link-arrow { margin-top: auto; text-decoration: none; }
.compare-card:hover .link-arrow svg { transform: translateX(3px); }
.verdict { margin-bottom: 64px; padding: 34px 38px; border-radius: var(--radius-lg); background: #0c1114; color: #fff; }
.verdict .label { color: var(--orkest-green); }
.verdict p:last-child { margin-top: 14px; font-size: 22px; line-height: 34px; }
.table-wrap { position: relative; margin-top: 32px; overflow-x: auto; border-radius: var(--radius-md); border: 1px solid #e3e0dd; background: var(--bg-card); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 15.5px; line-height: 23px; }
.compare-table th, .compare-table td { padding: 20px 24px; text-align: left; vertical-align: top; border-bottom: 1px solid #e8e5e2; }
.compare-table tbody tr:last-child > * { border-bottom: 0; }
.compare-table thead th { font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); background: #efedeb; }
.compare-table tbody th { width: 24%; font-weight: 500; color: #111; }
.compare-table td { color: #444; }
.compare-table:not(.compare-matrix) td > span:last-child { display: block; padding-left: 36px; margin-top: -24px; }
.compare-table .is-orkest { background: rgba(34, 231, 154, .06); }
.compare-table thead .is-orkest { color: #0f8a5f; background: #e5f3ec; }
.compare-matrix th, .compare-matrix td { text-align: center; }
.compare-matrix tbody th { text-align: left; }
.compare-matrix td > .mark { margin: 0 auto; }
.mark { position: relative; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; }
.mark svg { width: 13px; height: 13px; }
.mark-yes { background: #dff4ea; color: #0f8a5f; }
.mark-partial { background: #f6ecd9; color: #a0691c; }
.mark-no { background: #f5e1df; color: #b33a2e; }
.when-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.when { padding: 34px 32px; }
.when p { margin-top: 14px; font-size: 17px; line-height: 28px; color: var(--text-soft); }
.when .link-arrow { margin-top: 22px; text-decoration: none; }
.when-orkest { background: #fff; border-color: #cfe9dc; }

/* Footer : liens secondaires */
.footer-sub { display: flex; justify-content: space-between; gap: 24px; margin-top: 34px; padding-top: 20px; border-top: 1px solid #e4e1de; font-size: 13px; color: #8a8c8f; }
.footer-sub nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-sub a { color: #6d6f72; transition: color .2s; }
.footer-sub a:hover { color: #111; }
.site-footer { padding-bottom: 36px; }

@media (max-width: 1024px) {
    .page-hero { padding: 140px 0 72px; }
    .page-hero-inner { flex-direction: column; align-items: flex-start; }
    .erp-visual { flex: none; width: 100%; max-width: 480px; }
    .page-title { font-size: 46px; line-height: 52px; }
    .erp-cards, .how-steps { grid-template-columns: repeat(2, 1fr); }
    .api-block, .created, .faq-inner { grid-template-columns: 1fr; gap: 36px; }
    .faq-head { position: static; }
    .article-layout { grid-template-columns: 1fr; gap: 32px; }
    .toc { position: static; padding: 20px 24px; border-radius: var(--radius-md); background: #e8e5e3; }
    .feature-cards { grid-template-columns: 1fr; }
    .footer-sub { flex-direction: column; }
}
@media (max-width: 768px) {
    .page-section, .faq { padding: 64px 0; }
    .page-section-tight { padding: 8px 0 64px; }
    .page-title { font-size: 38px; line-height: 44px; }
    .page-title br { display: none; }
    .page-lead { font-size: 17px; line-height: 28px; }
    .h2-md { font-size: 32px; line-height: 38px; }
    .compare-cards, .when-grid { grid-template-columns: 1fr; }
    .api-block { padding: 28px 22px; }
    .takeaway { flex-direction: column; align-items: flex-start; }
    .verdict { padding: 26px 24px; margin-bottom: 44px; }
    .verdict p:last-child { font-size: 19px; line-height: 30px; }
    .compare-table { font-size: 14.5px; }
    .compare-table th, .compare-table td { padding: 16px; }
    .compare-table:not(.compare-matrix) { min-width: 620px; }
    .compare-matrix { min-width: 720px; }
    .prose { font-size: 17px; line-height: 29px; }
    .prose h2 { font-size: 28px; line-height: 35px; }
    .faq-a p { padding-right: 0; }
}
@media (max-width: 430px) {
    .erp-cards, .how-steps { grid-template-columns: 1fr; }
    .page-title { font-size: 34px; line-height: 40px; }
    .page-hero-small .page-title { font-size: 34px; line-height: 40px; }
}
.sources { margin-top: 18px; font-size: 13px; line-height: 21px; color: var(--text-muted); }
.sources a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: #cfcac5; }
.rival-table td { font-size: 15px; }
.rival-cards { margin-top: 32px; }

/* 15. PAGES ENTREPRISE, OUTILS & BLOG ===================================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.pad { padding: 34px 32px; }
.card-dark { border-radius: var(--radius-md); background: #0c1114; color: #fff; }
.card-dark p { color: rgba(255, 255, 255, .72); }
.card-dark .h3-title { color: #fff; }
.card.pad p, .card-dark.pad p { margin-top: 12px; font-size: 16.5px; line-height: 27px; }
.card-dark.pad .btn, .card.pad .btn { margin-top: 24px; }
.center-v { display: flex; align-items: center; justify-content: center; }
.center-v .btn { margin-top: 0; }
.statement { font-family: var(--font-serif); font-size: 30px; line-height: 42px; color: #111; }
.feature-cards-4 { grid-template-columns: repeat(4, 1fr); }
.feature-cards-4 h3 { margin-top: 0; }
.facts-title { margin-top: 72px; }
.facts, .figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 28px; }
.facts li, .figures li { display: flex; flex-direction: column; gap: 6px; padding: 26px 24px; border-radius: var(--radius-md); background: var(--bg-card); border: 1px solid #e9e6e3; }
.facts span, .figures span { font-size: 14px; color: var(--text-muted); }
.facts strong, .figures strong { font-size: 32px; line-height: 38px; font-weight: 400; letter-spacing: -.02em; }
.figures { margin-top: 48px; }
.figures li { flex-direction: column-reverse; }
.press-list { display: grid; gap: 10px; margin-top: 24px; }
.press-list a { display: flex; gap: 16px; padding: 18px 22px; border-radius: 12px; background: var(--bg-card); border: 1px solid #e9e6e3; }
.press-list span { color: var(--text-soft); }

/* Pourquoi Orkest */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; margin: 0; }
.reasons li { display: flex; flex-direction: column; padding: 32px 30px; }
.reasons span { font-size: 13px; letter-spacing: .14em; color: #0f8a5f; }
.reasons h2 { margin-top: 16px; font-size: 22px; line-height: 30px; font-weight: 500; letter-spacing: -.01em; }
.reasons p { margin-top: 12px; font-size: 16px; line-height: 26px; color: var(--text-muted); }
.reasons .link-arrow { margin-top: auto; padding-top: 20px; text-decoration: none; }

/* Clients */
.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.logo-wall li { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 120px; border-radius: var(--radius-md); background: #0c1114; color: #fff; line-height: 1; position: relative; }
.logo-wall small { font-size: 7px; letter-spacing: .1em; margin-top: 3px; opacity: .75; font-weight: 500; }
.logo-wall .cl-prodhys i { left: auto; top: auto; position: relative; display: inline-block; margin-bottom: 4px; }
.logo-wall .cl-prodhys, .logo-wall .cl-friol { padding-left: 0; }
.logo-wall .cl-friol i { display: none; }
.quote-block { max-width: 900px; }
.quote-block blockquote { margin-top: 24px; font-size: 30px; line-height: 42px; color: #fff; letter-spacing: -.01em; }
.quote-author { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.quote-author img { width: 63px; height: 63px; border-radius: 50%; }
.quote-author span { display: flex; flex-direction: column; font-size: 14px; line-height: 23px; color: rgba(255, 255, 255, .7); }
.quote-author strong { font-size: 15px; font-weight: 500; color: #fff; }
.reviews { display: flex; flex-wrap: wrap; gap: 16px; }
.review-badge { display: flex; flex-direction: column; gap: 4px; padding: 20px 26px; }
.review-badge strong { font-size: 26px; font-weight: 500; }
.review-badge span { font-size: 14px; color: var(--text-muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.contact-grid .form { margin-top: 0; }
.contact-side { display: grid; gap: 16px; }
.contact-side .card.pad p { margin-top: 10px; }
.contact-side a:not(.btn) { text-decoration: underline; text-underline-offset: 4px; }
.form textarea { padding: 12px 14px; border: 1px solid #dcd9d5; border-radius: 10px; background: #fff; font: inherit; font-size: 15px; font-weight: 400; color: #111; resize: vertical; transition: border-color .2s, box-shadow .2s; }
.form textarea:focus { outline: none; border-color: #111; box-shadow: 0 0 0 3px rgba(17, 17, 17, .08); }
.form textarea.is-invalid { border-color: #d6453b; }
.form-consent { font-size: 13px; color: var(--text-muted); }
.form-consent a { text-decoration: underline; }

/* Calculateur de ROI */
.roi { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: start; }
.roi-inputs { display: flex; flex-direction: column; gap: 18px; }
.roi-inputs label { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 500; color: #333; }
.roi-inputs label b { font-weight: 500; color: #0f8a5f; }
.roi-inputs input[type="number"] { height: 52px; padding: 0 16px; border: 1px solid #dcd9d5; border-radius: 10px; background: #fff; font: inherit; font-size: 18px; color: #111; }
.roi-inputs input:focus { outline: none; border-color: #111; }
.roi-inputs input[type="range"] { accent-color: #111; height: 24px; }
.roi-note { font-size: 13.5px; line-height: 21px; color: var(--text-muted); }
.roi-results dl { margin: 22px 0 0; display: grid; gap: 2px; }
.roi-results dl div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.roi-results dt { font-size: 15px; color: rgba(255, 255, 255, .7); }
.roi-results dd { margin: 0; font-size: 18px; font-weight: 500; text-align: right; white-space: nowrap; }
.roi-results .roi-hl dd { color: var(--orkest-green); }
.roi-results .roi-big { padding: 20px 0; }
.roi-results .roi-big dd { font-size: 34px; color: var(--orkest-green); letter-spacing: -.02em; }
.roi-negative { display: none; margin-top: 16px; font-size: 14px; color: #f0c48a !important; }
.roi.is-negative .roi-negative { display: block; }
.roi.is-negative .roi-big dd { color: #f0c48a; }
.roi-disclaimer { margin-top: 18px; font-size: 12.5px !important; line-height: 19px !important; color: rgba(255, 255, 255, .45) !important; }

/* Ressources & blog */
.res-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.res-card { display: flex; flex-direction: column; height: 100%; padding: 30px 28px; }
.res-card .step-icon { position: static; box-shadow: none; border: 1px solid #ebe8e5; }
.res-card h3 { margin-top: 20px; font-size: 20px; font-weight: 500; }
.res-card p { margin-top: 8px; font-size: 16px; line-height: 26px; color: var(--text-muted); }
.post-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.post-cards-all { margin-top: 0; }
.post-card { display: flex; flex-direction: column; height: 100%; padding: 30px 28px; }
.post-cat { align-self: flex-start; padding: 5px 12px; border-radius: 999px; background: #e5f3ec; color: #0f8a5f; font-size: 12px; font-weight: 500; letter-spacing: .04em; }
.post-card h3 { margin-top: 18px; font-size: 21px; line-height: 29px; font-weight: 500; letter-spacing: -.01em; }
.post-card p { margin: 12px 0 22px; font-size: 15.5px; line-height: 25px; color: var(--text-muted); }
.post-meta { margin-top: auto; font-size: 13px; color: var(--text-muted); }
.rss-link { margin-top: 32px; font-size: 14px; }
.rss-link a { text-decoration: underline; text-underline-offset: 4px; color: var(--text-soft); }
.article-single { grid-template-columns: minmax(0, 760px); }

/* FAQ (centre d'aide) */
.help-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 72px; }
.help-group + .help-group { margin-top: 56px; }
.help-group .h3-title { margin-bottom: 18px; scroll-margin-top: 100px; }
.help-group { scroll-margin-top: 100px; }
.help .toc a::before { content: none; }

/* Lexique */
.glossary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0; }
.glossary-item { padding: 26px 28px; border-radius: var(--radius-md); background: var(--bg-card); border: 1px solid #e9e6e3; scroll-margin-top: 100px; }
.glossary dt { font-size: 20px; font-weight: 500; }
.glossary dd { margin: 10px 0 0; font-size: 16px; line-height: 26px; color: var(--text-soft); }

/* Sécurité */
.site-note { margin-top: 24px; }

/* Footer : ligne entreprise */
.footer-sub { flex-wrap: wrap; }
.footer-company { flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 8px 22px; padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid #ebe8e5; }

@media (max-width: 1024px) {
    .two-col, .contact-grid, .roi, .help-layout { grid-template-columns: 1fr; gap: 20px; }
    .reasons, .res-cards, .post-cards { grid-template-columns: repeat(2, 1fr); }
    .feature-cards-4, .logo-wall { grid-template-columns: repeat(2, 1fr); }
    .help-layout .toc { position: static; }
    .statement { font-size: 24px; line-height: 34px; }
    .quote-block blockquote { font-size: 24px; line-height: 34px; }
}
@media (max-width: 768px) {
    .reasons, .res-cards, .post-cards, .glossary, .feature-cards-4 { grid-template-columns: 1fr; }
    .pad { padding: 26px 22px; }
    .roi-results .roi-big dd { font-size: 28px; }
}
.logo-wall .cl-simplicicar { transform: none; font-size: 12px; }
/* Mots longs (compositions allemandes, grec, slaves…) : jamais de débordement */
.post-cards > li, .res-cards > li, .contact-grid > *, .reasons > li, .glossary > div, .roi > * { min-width: 0; }
.page-title, .page-lead, .post-card h3, .post-card p, .breadcrumb, .page-meta, .contact-side, .glossary dt, .h3-title { overflow-wrap: break-word; }
.contact-side a { overflow-wrap: anywhere; }
@media (max-width: 768px) {
    .btn { white-space: normal; text-align: center; max-width: 100%; }
    .takeaway .btn, .card.pad .btn, .card-dark .btn { height: auto; min-height: 48px; padding-top: 12px; padding-bottom: 12px; line-height: 1.3; }
}

/* 16. DEMANDE DE DEVIS ==================================================== */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.quote-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; align-items: start; }
.quote-grid .form { margin-top: 0; }
.form-step { margin-top: 18px; padding-top: 22px; border-top: 1px solid #ebe8e5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label small { font-weight: 400; font-size: 12.5px; color: var(--text-muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 0; }
.chips legend { width: 100%; margin-bottom: 8px; font-size: 13px; font-weight: 500; color: #333; }
.form .chips label { flex-direction: row; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid #dcd9d5; border-radius: 999px; background: #fff; font-weight: 400; cursor: pointer; transition: border-color .2s, background-color .2s; }
.form .chips label:has(input:checked) { border-color: #111; background: #f1efed; }
.chips input { accent-color: #111; }
.form .consent { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; font-size: 13.5px; line-height: 20px; }
.consent input { margin-top: 3px; accent-color: #111; }
.consent input.is-invalid { outline: 2px solid #d6453b; }
.consent a { text-decoration: underline; }
.quote-side { position: sticky; top: 100px; display: grid; gap: 16px; }
.quote-preview dl { margin: 18px 0 0; }
.quote-preview dl div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.quote-preview dt { font-size: 15px; color: rgba(255, 255, 255, .7); }
.quote-preview dd { margin: 0; font-size: 18px; font-weight: 500; text-align: right; }
.quote-preview .roi-big dd { font-size: 30px; color: var(--orkest-green); }
.quote-volume { margin-top: 14px; font-size: 14px; color: #f0c48a !important; }
.quote-done .btn { margin-top: 20px; }
.roi-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.roi-ctas .btn { margin-top: 0; }
.btn[disabled] { opacity: .6; cursor: progress; }
@media (max-width: 1024px) {
    .quote-grid { grid-template-columns: 1fr; }
    .quote-side { position: static; order: -1; }
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form .chips input, .form .consent input { height: auto; padding: 0; width: auto; }
.form .chips label { height: 40px; padding: 0 14px; }

/* 17. DEMANDES DE DEVIS (fonctionnalité produit) ========================== */
.rfq-home { padding: 110px 0 70px; }
.rfq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.rfq-copy .h2-serif { margin-top: 18px; }
.rfq-copy .page-text { max-width: 540px; }
.rfq-copy .check-list { margin-top: 24px; }
.rfq-copy .link-arrow { margin-top: 28px; text-decoration: none; }
.rfq-mock { display: flex; flex-direction: column; gap: 14px; padding: 26px; border-radius: 20px; background: #0c1114; color: #fff; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .55); }
.rfq-mail { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.rfq-mail b { display: block; font-weight: 500; font-size: 15px; }
.rfq-mail small { font-size: 13px; color: rgba(255, 255, 255, .55); }
.rfq-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: #fff; color: #111; }
.rfq-ico svg { width: 20px; height: 20px; }
.rfq-lines { display: grid; gap: 8px; }
.rfq-lines li { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-radius: 12px; background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .06); font-size: 14px; }
.rfq-lines li span { flex: 1; min-width: 0; color: rgba(255, 255, 255, .88); }
.rfq-lines i { font-style: normal; color: rgba(255, 255, 255, .5); }
.rfq-mock .panel-success { height: auto; min-height: 74px; margin-top: 0; }
.page-hero .rfq-mock { background: rgba(22, 24, 27, .62); border: 1px solid rgba(255, 255, 255, .1); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.statement-sm { font-size: 24px; line-height: 36px; }
.static-icon { position: static !important; box-shadow: none !important; border: 1px solid #ebe8e5; margin-bottom: 20px; }
.rfq-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.rfq-band .btn { margin-top: 0; flex-shrink: 0; }
.rfq-band p { max-width: 700px; }
@media (max-width: 1024px) {
    .rfq-inner { grid-template-columns: 1fr; gap: 40px; }
    .rfq-band { flex-direction: column; align-items: flex-start; }
    .rfq-home { padding-top: 80px; }
}
@media (max-width: 560px) { .rfq-lines li { flex-wrap: wrap; } .rfq-lines li span { flex-basis: 100%; } }

/* 18. ANIMATIONS FLUIDES ================================================== */
:root { --ease-out: cubic-bezier(.16, 1, .3, 1); --ease-soft: cubic-bezier(.33, 1, .68, 1); }
html { scroll-padding-top: 96px; }

/* Transitions entre pages (navigateurs compatibles) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out .28s var(--ease-soft) both; }
::view-transition-new(root) { animation: vt-in .45s var(--ease-out) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } }

/* Apparition au scroll : fondu + montée + léger flou */
.js .reveal { opacity: 0; transform: translate3d(0, 26px, 0); filter: blur(6px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* Entrée du hero au chargement */
.js .hero .reveal { transition-duration: 1.1s; }
.js .hero-mockup-wrap .mockup-app { opacity: 0; transform: translate3d(60px, 20px, 0) rotateY(28deg); transition: opacity 1.2s var(--ease-out) .35s, transform 1.4s var(--ease-out) .35s; }
.js .hero.is-ready .hero-mockup-wrap .mockup-app { opacity: 1; transform: translate3d(0, var(--py, 0px), 0) rotateY(16deg); }
.js .hero.is-settled .hero-mockup-wrap .mockup-app { transition: opacity .2s, transform .15s linear; }
.js .hero-tagline { opacity: 0; transition: opacity 1.4s var(--ease-soft) .9s; }
.js .hero.is-ready .hero-tagline { opacity: 1; }
.js .app-row:not(.app-row-head) { opacity: 0; transform: translateX(14px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.js .hero.is-ready .app-row:not(.app-row-head) { opacity: 1; transform: none; }
.js .hero.is-ready .app-row:nth-child(2) { transition-delay: .9s; }
.js .hero.is-ready .app-row:nth-child(3) { transition-delay: 1.02s; }
.js .hero.is-ready .app-row:nth-child(4) { transition-delay: 1.14s; }
.js .hero.is-ready .app-row:nth-child(5) { transition-delay: 1.26s; }
.js .hero.is-ready .app-row:nth-child(6) { transition-delay: 1.38s; }
.js .hero-bg img { transform: scale(1.06); transition: transform 2.4s var(--ease-out); }
.js .hero.is-ready .hero-bg img { transform: scale(1); }
.js .clients-list li { opacity: 0; transform: translateY(10px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .hero.is-ready .clients-list li { opacity: .92; transform: none; }
.hero.is-ready .clients-list li:nth-child(1) { transition-delay: 1.1s; }
.hero.is-ready .clients-list li:nth-child(2) { transition-delay: 1.18s; }
.hero.is-ready .clients-list li:nth-child(3) { transition-delay: 1.26s; }
.hero.is-ready .clients-list li:nth-child(4) { transition-delay: 1.34s; }
.hero.is-ready .clients-list li:nth-child(5) { transition-delay: 1.42s; }
.hero.is-ready .clients-list li:nth-child(6) { transition-delay: 1.5s; }
.hero.is-ready .clients-list li:nth-child(7) { transition-delay: 1.58s; }
.clients-list li:hover { opacity: 1 !important; }

/* Images des cartes : léger zoom arrière à l'apparition, zoom au survol */
.step-media img { transform: scale(1.08); transition: transform 1.6s var(--ease-out); }
.step.is-visible .step-media img { transform: scale(1); }
.step:hover .step-media img { transform: scale(1.04); transition-duration: .8s; }
.card, .integ-card, .erp-card, .post-card, .res-card, .compare-card { transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background-color .3s, border-color .3s; }
.card:hover, .post-card:hover, .res-card:hover, .compare-card:hover, .erp-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(0, 0, 0, .28); }
.plan.plan-featured:hover { box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .55); }

/* Boutons : reflet discret au survol */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%); transform: translateX(-120%); transition: transform .8s var(--ease-out); pointer-events: none; }
.btn-light::after, .btn-outline::after { background: linear-gradient(110deg, transparent 30%, rgba(0, 0, 0, .06) 50%, transparent 70%); }
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.98); }

/* Header : se masque en descendant, réapparaît en remontant */
.site-header { transition: transform .5s var(--ease-out), background-color .35s var(--ease), backdrop-filter .35s, box-shadow .35s; }
.site-header.is-hidden { transform: translateY(-100%); }

/* FAQ : ouverture fluide (hauteur animée en JS) */
.faq-a { overflow: hidden; }
.faq-item summary h3 { transition: color .2s; }
.faq-item:hover summary h3 { color: #000; }

/* Maquette « demande de devis » : lignes analysées une à une */
.js .rfq-mock .rfq-lines li, .js .rfq-mock .panel-success { opacity: 0; transform: translateY(10px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.js .rfq-mock.is-visible .rfq-lines li, .js .rfq-mock.is-visible .panel-success { opacity: 1; transform: none; }
.js .rfq-mock.is-visible .rfq-lines li:nth-child(1) { transition-delay: .35s; }
.js .rfq-mock.is-visible .rfq-lines li:nth-child(2) { transition-delay: .6s; }
.js .rfq-mock.is-visible .rfq-lines li:nth-child(3) { transition-delay: .85s; }
.js .rfq-mock.is-visible .panel-success { transition-delay: 1.25s; }
.js .rfq-mock .status { transform: scale(.7); opacity: 0; transition: transform .5s var(--ease-out), opacity .5s; }
.js .rfq-mock.is-visible .status { transform: none; opacity: 1; transition-delay: inherit; }
.js .rfq-mock.is-visible li:nth-child(1) .status { transition-delay: .55s; }
.js .rfq-mock.is-visible li:nth-child(2) .status { transition-delay: .8s; }
.js .rfq-mock.is-visible li:nth-child(3) .status { transition-delay: 1.05s; }

/* Succès démo : petite pulsation */
.panel-success.is-visible .success-ico, .rfq-mock.is-visible .success-ico { animation: pop .7s var(--ease-out) both; }
.rfq-mock.is-visible .success-ico { animation-delay: 1.3s; }
@keyframes pop { 0% { transform: scale(.5); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }

/* Prix : transition au changement mensuel / annuel */
.js-price { display: inline-block; transition: opacity .25s, transform .35s var(--ease-out); }
.js-price.is-switching { opacity: 0; transform: translateY(-8px); }

/* Barre de progression de lecture (articles, guide) */
.read-progress { position: fixed; top: 0; left: 0; right: 0; z-index: 70; height: 2px; background: var(--orkest-green); transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; }



@media (max-width: 1024px) {
    .js .hero-mockup-wrap .mockup-app { transform: translate3d(0, 24px, 0); }
    .js .hero.is-ready .hero-mockup-wrap .mockup-app { transform: none; }
}

/* 19. ACCUEIL « DEMANDES CLIENTS » ======================================== */
.page-home .hero { height: 730px; }
.page-home .hero-content { padding-top: 150px; }
.page-home .hero-title { font-size: 52px; line-height: 58px; letter-spacing: -.02em; margin-top: 18px; }
.page-home .hero-title .muted { letter-spacing: -.02em; }
.page-home .hero-text { margin-top: 22px; font-size: 18px; line-height: 28px; max-width: 560px; }
.page-home .hero-text-2 { margin-top: 14px; color: rgba(255, 255, 255, .72); }
.page-home .hero-ctas { margin-top: 30px; }
.page-home .hero-ctas .btn-light { min-width: 0; }
.page-home .hero-ctas .btn-ghost { min-width: 0; }
.page-home .hero-bg::after { background: linear-gradient(90deg, #010102 0%, rgba(1, 1, 2, .95) 30%, rgba(1, 1, 2, .5) 50%, rgba(1, 1, 2, .15) 70%), linear-gradient(0deg, rgba(1, 1, 2, .8) 0%, rgba(1, 1, 2, 0) 30%); }
.page-home .hero-mockup-wrap { top: 100px; left: calc(50% - 50px); width: 800px; height: 480px; }
.page-home .mockup-app { transform: translate3d(0, var(--py, 0px), 0) rotateY(8deg); }
.js .page-home .hero.is-ready .hero-mockup-wrap .mockup-app { transform: translate3d(0, var(--py, 0px), 0) rotateY(8deg); }
.page-home .app-side { width: 190px; padding-top: 28px; }
.page-home .app-menu { margin-top: 22px; }
.page-home .app-menu li { width: 162px; height: 33px; font-size: 12.5px; }
.page-home .app-menu li b { margin-left: auto; margin-right: 10px; font-weight: 500; font-size: 11px; color: rgba(255, 255, 255, .5); }
.page-home .app-menu li.gap { margin-top: 18px; }
.page-home .app-main { padding: 26px 24px 0; }
.page-home .app-search { width: 340px; }
.page-home .app-title { margin-top: 20px; font-size: 22px; font-weight: 500; color: #fff; }
.page-home .app-tabs { margin-top: 14px; }
.page-home .app-tabs span { font-size: 12px; height: 28px; }
.inbox { margin-top: 18px; padding: 4px 12px; }
.inbox-row { display: grid; grid-template-columns: 18px 1fr auto 44px; align-items: center; gap: 12px; height: 56px; border-top: 1px solid rgba(255, 255, 255, .06); font-size: 12.5px; color: rgba(255, 255, 255, .85); }
.inbox-row:first-child { border-top: 0; }
.inbox-row svg { width: 15px; height: 15px; color: #e6e7e8; }
.inbox-row span { display: flex; flex-direction: column; min-width: 0; }
.inbox-row b { font-weight: 500; color: #fff; }
.inbox-row small { font-size: 11.5px; color: rgba(255, 255, 255, .55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-row time { font-size: 11px; color: rgba(255, 255, 255, .45); text-align: right; }
.tag { display: inline-flex; align-items: center; height: 24px; padding: 0 11px; border-radius: 7px; font-style: normal; font-size: 11.5px; font-weight: 500; }
.tag-order { background: rgba(34, 190, 135, .32); color: #6fe7b8; }
.tag-quote { background: rgba(90, 140, 230, .35); color: #b9d0ff; }
.tag-question { background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .85); }
.tag-price { background: rgba(214, 170, 90, .35); color: #f3d9a6; }

.hero-tiles { position: absolute; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255, 255, 255, .08); background: rgba(5, 6, 7, .55); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.hero-tiles ul { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-tiles li { display: flex; align-items: center; gap: 18px; padding: 26px 24px; color: #fff; }
.hero-tiles li + li { border-left: 1px solid rgba(255, 255, 255, .08); }
.hero-tiles li:first-child { padding-left: 0; }
.tile-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .16); flex-shrink: 0; }
.tile-ico svg { width: 20px; height: 20px; }
.hero-tiles li > span:last-child { display: flex; flex-direction: column; font-size: 13.5px; color: rgba(255, 255, 255, .6); }
.hero-tiles b { font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #fff; }

/* Demandes */
.requests { padding: 70px 0 60px; }
.requests .section-head, .process .section-head, .memory .section-head, .connect .section-head { margin-bottom: 36px; }
.req-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.req-card { display: flex; flex-direction: column; padding: 26px 22px 20px; min-height: 300px; }
.req-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; }
.req-ico svg { width: 20px; height: 20px; }
.ico-green { background: #dff4ea; color: #0f8a5f; }
.ico-blue { background: #e3ebfb; color: #2c5fc9; }
.ico-sand { background: #f4ebdc; color: #9a6a24; }
.ico-grey { background: #ecebe9; color: #333; }
.req-card h3 { margin-top: 22px; font-size: 19px; font-weight: 500; letter-spacing: -.01em; }
.req-quote { margin-top: 10px; font-size: 14.5px; line-height: 22px; color: var(--text-muted); }
.mini-checks { margin: 18px 0 20px; display: grid; gap: 8px; }
.mini-checks li { position: relative; padding-left: 22px; font-size: 14px; color: #333; }
.mini-checks li::before { content: ""; position: absolute; left: 1px; top: 5px; width: 9px; height: 5px; border-left: 1.6px solid #0f8a5f; border-bottom: 1.6px solid #0f8a5f; transform: rotate(-45deg); }
.req-card .round-arrow { margin-top: auto; width: 38px; height: 38px; }
.intent { display: flex; align-items: center; justify-content: center; gap: 36px; margin-top: 48px; text-align: center; font-size: 19px; line-height: 27px; font-weight: 500; }
.intent::before, .intent::after { content: ""; width: 90px; height: 1px; background: #1a1a1a; }

/* Processus */
.process { padding: 40px 0 90px; }
.proc-steps { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.proc-steps li { position: relative; display: flex; gap: 18px; padding: 28px 30px 30px 0; }
.proc-steps li + li { padding-left: 30px; border-left: 1px solid var(--line-light); }
.proc-steps li:not(:last-child)::after { content: "→"; position: absolute; right: 14px; top: 30px; font-size: 18px; color: #888; }
.proc-steps .num { font-size: 30px; line-height: 1; font-weight: 400; letter-spacing: -.02em; }
.proc-steps h3 { font-size: 16.5px; line-height: 23px; font-weight: 500; padding-right: 18px; }
.proc-steps p { margin-top: 8px; font-size: 14.5px; line-height: 22px; color: var(--text-muted); }

/* Démo : email → analyse → réponse */
.page-home .demo { padding: 90px 0; }
.page-home .demo-content { width: 400px; }
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 860px; margin-right: -22px; }
.flow-panel { padding: 22px; border-radius: 16px; background: #fff; color: #111; font-size: 13px; line-height: 20px; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8); }
.flow-panel.flow-analysis { background: #fbfaf9; }
.flow-title { margin: -22px -22px 18px; padding: 14px 22px; border-radius: 16px 16px 0 0; background: #151a1d; color: #fff; font-size: 14px; font-weight: 500; }
.flow-reply { background: #f7fbf9; }
.mail-head { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1px solid #ecebe9; font-size: 12px; }
.mail-head dt { color: var(--text-muted); }
.mail-head dd { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mail-body { color: #333; }
.flow-sub { margin-bottom: 8px; font-size: 11.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.chips-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.chips-row span { padding: 3px 10px; border-radius: 999px; background: #dff4ea; color: #0b6b49; font-size: 12px; font-weight: 500; }
.found { display: grid; grid-template-columns: auto 1fr; gap: 7px 14px; margin: 0; }
.found dt { color: var(--text-muted); }
.found dd { margin: 0; font-weight: 500; }
.confidence { display: inline-block; margin-top: 16px; padding: 4px 12px; border-radius: 8px; background: #0c3029; color: #56e6ad; font-size: 12.5px; font-weight: 500; }
.flow-action { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; height: 42px; border-radius: 10px; background: #0f8a5f; color: #fff; font-size: 13.5px; font-weight: 500; box-shadow: 0 0 0 4px rgba(34, 231, 154, .18); }
.flow-action svg { width: 13px; height: 13px; }
.js .flow .flow-panel { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .flow.is-visible .flow-panel { opacity: 1; transform: none; }
.js .flow.is-visible .flow-analysis { transition-delay: .45s; }
.js .flow.is-visible .flow-reply { transition-delay: .9s; }
.js .flow .chips-row span, .js .flow .confidence, .js .flow .flow-action { opacity: 0; transform: scale(.85); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.js .flow.is-visible .chips-row span, .js .flow.is-visible .confidence, .js .flow.is-visible .flow-action { opacity: 1; transform: none; }
.js .flow.is-visible .chips-row span:nth-child(1) { transition-delay: .8s; }
.js .flow.is-visible .chips-row span:nth-child(2) { transition-delay: .95s; }
.js .flow.is-visible .chips-row span:nth-child(3) { transition-delay: 1.1s; }
.js .flow.is-visible .confidence { transition-delay: 1.3s; }
.js .flow.is-visible .flow-action { transition-delay: 1.6s; }

/* Mémoire client */
.memory { padding: 90px 0 70px; }
.mem { display: grid; grid-template-columns: 210px 1fr 260px; gap: 20px; align-items: start; }
.mem-tabs { display: grid; gap: 4px; }
.mem-tabs li { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; font-size: 14px; color: var(--text-soft); }
.mem-tabs li.is-active { background: #dff4ea; color: #0b6b49; font-weight: 500; }
.mem-tabs svg { width: 15px; height: 15px; }
.mem-card { padding: 24px; border-radius: var(--radius-md); background: #fff; border: 1px solid #e9e6e3; box-shadow: 0 24px 50px -36px rgba(0, 0, 0, .3); }
.mem-client { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; }
.mem-client em { padding: 3px 10px; border-radius: 999px; background: #dff4ea; color: #0b6b49; font-size: 12px; font-style: normal; }
.mem-table { margin-top: 16px; }
.mem-row { display: grid; grid-template-columns: 1.2fr 1.3fr 90px; align-items: center; gap: 16px; padding: 11px 0; border-top: 1px solid #f0eeec; font-size: 13.5px; }
.mem-row::before { display: none; }
.mem-head { border-top: 0; font-size: 12px; color: var(--text-muted); }
.mem-row span:nth-child(2)::before { content: "→ "; color: #aaa; }
.mem-head span:nth-child(2)::before { content: ""; }
.mem-row em { justify-self: start; padding: 2px 9px; border-radius: 6px; background: #dff4ea; color: #0b6b49; font-size: 12px; font-style: normal; font-weight: 500; }
.mem-quote { align-self: center; padding: 28px 26px; border-radius: var(--radius-md); background: var(--bg-card); border: 1px solid #e9e6e3; font-size: 17px; line-height: 27px; color: #444; }
.mem-quote::after { content: ""; display: block; width: 30px; height: 1px; margin-top: 18px; background: #333; }
.js .mem .mem-row:not(.mem-head) { opacity: 0; transform: translateX(10px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.js .mem.is-visible .mem-row:not(.mem-head) { opacity: 1; transform: none; }
.js .mem.is-visible .mem-row:nth-child(2) { transition-delay: .3s; } .js .mem.is-visible .mem-row:nth-child(3) { transition-delay: .4s; }
.js .mem.is-visible .mem-row:nth-child(4) { transition-delay: .5s; } .js .mem.is-visible .mem-row:nth-child(5) { transition-delay: .6s; }
.js .mem.is-visible .mem-row:nth-child(6) { transition-delay: .7s; } .js .mem.is-visible .mem-row:nth-child(7) { transition-delay: .8s; }

/* Connexions */
.connect { padding: 40px 0 70px; }
.connect .section-intro .link-arrow { display: inline-flex; margin-top: 10px; }
.connect-flow { display: grid; grid-template-columns: 1fr 40px 200px 40px 1fr; align-items: center; gap: 12px; }
.connect-box { padding: 22px; }
.src-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.src-list li { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12.5px; color: #333; }
.src-list svg { width: 22px; height: 22px; }
.erp-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 14px; align-items: center; }
.erp-list a { display: flex; align-items: center; justify-content: center; gap: 4px; height: 34px; line-height: 1; white-space: nowrap; transition: transform .3s var(--ease-out); }
.erp-list a:hover { transform: translateY(-2px); }
.erp-list .lg-dolibarr { font-size: 17px; } .erp-list .lg-odoo, .erp-list .lg-sage, .erp-list .lg-cegid { font-size: 21px; } .erp-list .lg-exact { font-size: 17px; }
.erp-list .lg-ms { font-size: 9.5px; } .erp-list .lg-ms i { width: 14px; height: 12px; }
.erp-list .lg-sap b { height: 18px; font-size: 11px; padding: 0 8px 0 5px; } .erp-list .lg-sap span { font-size: 11px; } .erp-list .lg-sap small { font-size: 7px; }
.erp-list .lg-api { flex-direction: column; font-size: 14px; font-weight: 500; } .erp-list .lg-api small { font-size: 10px; color: var(--text-muted); padding: 0; }
.connect-arrow { display: grid; place-items: center; color: #555; }
.connect-arrow svg { width: 22px; height: 22px; }
.connect-core { display: grid; place-items: center; height: 96px; border-radius: 16px; background: #0a0a0b; color: #fff; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.core-logo { display: flex; align-items: center; gap: 12px; font-size: 17px; letter-spacing: .34em; }
.core-logo i { width: 18px; height: 18px; border: 2px solid #fff; border-radius: 50%; position: relative; }
.core-logo i::after { content: ""; position: absolute; right: -4px; top: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--orkest-green); }
.js .connect-flow .connect-arrow svg { opacity: .2; transition: opacity .6s .6s, transform .6s .6s var(--ease-out); transform: translateX(-6px); }
.js .connect-flow.is-visible .connect-arrow svg { opacity: 1; transform: none; }

/* Secteurs */
.sectors { padding: 40px 0 70px; }
.sectors .h2-serif { margin-top: 18px; }
.sector-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 30px; }
.sector-cards li { padding: 22px 20px; }
.sector-cards svg { width: 24px; height: 24px; }
.sector-cards h3 { margin-top: 16px; font-size: 16px; font-weight: 500; }
.sector-cards p { margin-top: 4px; font-size: 13.5px; line-height: 20px; color: var(--text-muted); }

.page-home .pricing { padding: 40px 0 90px; }

/* CTA final : bandeau sombre */
.cta { position: relative; padding: 70px 0; border-bottom: 0; background: #050606 url("../images/testimonial-bg.webp") right center / cover no-repeat; color: #fff; isolation: isolate; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, #050606 0%, rgba(5, 6, 6, .92) 45%, rgba(5, 6, 6, .55) 100%); }
.cta .label { color: rgba(255, 255, 255, .7); }
.cta .h2-cta { color: #fff; }
.cta .cta-sub { color: rgba(255, 255, 255, .72); max-width: 620px; }
.cta .btn-dark { background: #fff; color: #0a0a0b; }
.cta .btn-dark:hover { background: #ecebe8; }
.cta .btn-xl { min-width: 240px; height: 58px; border-radius: 14px; }

@media (max-width: 1280px) {
    .page-home .hero-mockup-wrap { left: calc(50% - 10px); width: 640px; }
    .page-home .app-side { width: 150px; } .page-home .app-menu li { width: 124px; }
    .page-home .app-search { width: 220px; }
    .req-cards { grid-template-columns: repeat(3, 1fr); }
    .flow { width: 700px; margin-right: 0; }
    .mem { grid-template-columns: 180px 1fr; } .mem-quote { grid-column: 1 / -1; }
    .sector-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .page-home .hero { height: auto; padding-bottom: 0; }
    .page-home .hero-content { padding-top: 130px; }
    .page-home .hero-mockup-wrap { position: relative; top: auto; left: auto; width: calc(100% - var(--gutter) * 2); max-width: 760px; height: 470px; margin: 56px auto 0; }
    .page-home .mockup-app, .js .page-home .hero.is-ready .hero-mockup-wrap .mockup-app { transform: none; }
    .hero-tiles { position: relative; margin-top: 48px; }
    .hero-tiles ul { grid-template-columns: repeat(2, 1fr); }
    .hero-tiles li:nth-child(3) { padding-left: 0; border-left: 0; }
    .hero-tiles li:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .08); }
    .proc-steps { grid-template-columns: repeat(2, 1fr); }
    .proc-steps li:nth-child(3) { padding-left: 0; border-left: 0; }
    .proc-steps li:nth-child(n+3) { border-top: 1px solid var(--line-light); }
    .proc-steps li:nth-child(2)::after { display: none; }
    .flow { width: 100%; }
    .connect-flow { grid-template-columns: 1fr; }
    .connect-arrow { transform: rotate(90deg); }
    .connect-core { height: 80px; }
}
@media (max-width: 768px) {
    .page-home .hero-title { font-size: 42px; line-height: 48px; }
    .page-home .hero-title br { display: inline; }
    .req-cards, .flow { grid-template-columns: 1fr; }
    .req-cards { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) 6px; scrollbar-width: none; }
    .req-cards::-webkit-scrollbar { display: none; }
    .req-card { flex: 0 0 min(74vw, 280px); scroll-snap-align: start; min-height: 0; }
    .intent { gap: 16px; font-size: 17px; } .intent::before, .intent::after { width: 30px; }
    .mem { grid-template-columns: 1fr; }
    .mem-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
    .mem-tabs li { white-space: nowrap; }
    .mem-row { grid-template-columns: 1fr 1fr 56px; gap: 10px; font-size: 12.5px; }
    .src-list { grid-template-columns: repeat(3, 1fr); row-gap: 14px; }
    .sector-cards { grid-template-columns: repeat(2, 1fr); }
    .cta { padding: 60px 0; }
}
@media (max-width: 430px) {
    .page-home .hero-title { font-size: 38px; line-height: 44px; }
    .page-home .hero-mockup-wrap { height: 400px; width: calc(100% - 40px); }
    .hero-tiles ul { grid-template-columns: 1fr; }
    .hero-tiles li { padding-left: 0 !important; border-left: 0 !important; border-top: 1px solid rgba(255, 255, 255, .08); }
    .hero-tiles li:first-child { border-top: 0; }
    .proc-steps { grid-template-columns: 1fr; }
    .proc-steps li { padding-left: 0 !important; border-left: 0 !important; border-top: 1px solid var(--line-light); }
    .proc-steps li::after { display: none; }
    .page-home .app-main .inbox-row time { display: none; }
    .inbox-row { grid-template-columns: 18px 1fr auto; }
}
/* Accueil : titres sans-serif compacts, rythme resserré (maquette « demandes clients ») */
.page-home main .h2-serif { font-family: var(--font-sans); font-size: 37px; line-height: 43px; letter-spacing: -.02em; font-weight: 400; }
.page-home .hero-text { max-width: 480px; }
.page-home .requests { padding: 44px 0 44px; }
.page-home .process { padding: 36px 0 70px; }
.page-home .demo { padding: 70px 0; }
.page-home .memory { padding: 64px 0 44px; }
.page-home .connect { padding: 36px 0 50px; }
.page-home .sectors { padding: 30px 0 50px; }
.page-home .pricing { padding: 30px 0 70px; }
.page-home .section-intro { width: 400px; font-size: 14.5px; line-height: 24px; }
.page-home .requests .section-head, .page-home .process .section-head, .page-home .memory .section-head, .page-home .connect .section-head { margin-bottom: 26px; }
.page-home .intent { margin-top: 36px; }
.page-home .demo .h2-sans { font-size: 38px; line-height: 44px; }
.page-home .sector-cards { margin-top: 22px; }
.page-home .req-card { min-height: 0; padding: 22px 20px 18px; }
.page-home .req-quote { color: #6b6e72; }
.page-home .mini-checks li { color: #222; }
.page-home .section-intro, .page-home .proc-steps p, .page-home .sector-cards p { color: #5f6266; }
.page-home .plan-features li { line-height: 29px; }
.page-home .plan { min-height: 0; }
.page-home .demo { padding: 60px 0; }
@media (max-width: 1024px) { .page-home .section-intro { width: auto; max-width: 560px; } }
@media (max-width: 560px) {
    .page-home .app-tabs { flex-wrap: nowrap; overflow: hidden; }
    .page-home .app-tabs span { white-space: nowrap; flex-shrink: 0; }
    .page-home .app-tabs span:nth-child(n+4) { display: none; }
}
/* Accueil : hero extensible (langues longues) et titre dégagé de la maquette */
.page-home .hero { height: auto; min-height: 730px; padding-bottom: 150px; }
.page-home .hero-inner { height: auto; }
.page-home .hero-title { font-size: 49px; line-height: 55px; max-width: 600px; }
.page-home .hero-mockup-wrap { left: calc(50% - 10px); width: 770px; }
@media (max-width: 1280px) { .page-home .hero-mockup-wrap { left: calc(50% + 20px); width: 600px; } .page-home .hero-title { max-width: 520px; font-size: 44px; line-height: 50px; } }
@media (max-width: 1024px) { .page-home .hero { padding-bottom: 0; } .page-home .hero-title { max-width: none; } }
@media (max-width: 768px) {
    .mem-row { grid-template-columns: 1fr 1fr 74px; }
    .mem-head span { font-size: 11px; overflow-wrap: anywhere; }
    .page-home .hero-title { font-size: 40px; line-height: 46px; }
}
@media (max-width: 430px) { .page-home .hero-title { font-size: 36px; line-height: 42px; } }
.page-home .hero-text, html:not([lang="fr"]) .page-home .hero-text { max-width: 500px; }

/* 20. ANIMATIONS AVANCÉES ================================================= */
.link-light { color: #fff; text-decoration-color: rgba(255, 255, 255, .35); }

/* Titres : révélation ligne par ligne (masque) */
.js .split { opacity: 1 !important; filter: none !important; transform: none !important; }
.split .ln { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.split .ln > span { display: inline-block; transform: translate3d(0, 105%, 0); transition: transform 1.1s var(--ease-out); will-change: transform; }
.split.is-visible .ln > span { transform: none; }
.split.is-visible .ln:nth-child(2) > span { transition-delay: .09s; }
.split.is-visible .ln:nth-child(3) > span { transition-delay: .18s; }
.split.is-visible .ln:nth-child(4) > span { transition-delay: .27s; }

/* Projecteur qui suit la souris sur les zones sombres */
/* calque dédié, placé en dernier enfant, sous le contenu (z-index -1 dans une section isolée) */
.spot { isolation: isolate; }
.spot-light { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0; transition: opacity .6s; background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 50%), rgba(34, 231, 154, .08), transparent 60%); }
.spot.is-lit .spot-light { opacity: 1; }

/* Lumière lente dans les en-têtes des pages intérieures */
.page-hero::after { content: ""; position: absolute; inset: -20%; pointer-events: none; background: radial-gradient(40% 50% at 70% 30%, rgba(34, 231, 154, .08), transparent 70%), radial-gradient(35% 45% at 20% 80%, rgba(120, 130, 140, .12), transparent 70%); animation: drift 18s ease-in-out infinite alternate; }
.page-hero > .container { position: relative; z-index: 1; }
@keyframes drift { from { transform: translate3d(-3%, -2%, 0) rotate(0deg); } to { transform: translate3d(3%, 2%, 0) rotate(6deg); } }

/* Barre de progression de défilement (toutes les pages) */
.read-progress { box-shadow: 0 0 12px rgba(34, 231, 154, .6); }

/* Inclinaison 3D des cartes au survol (valeurs posées en JS) */
.tilt { transform-style: preserve-3d; transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out); }
.tilt.is-tilting { transition: transform .12s linear, box-shadow .3s; transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px); box-shadow: 0 30px 60px -32px rgba(0, 0, 0, .35); }
.tilt::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(300px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, .5), transparent 60%); mix-blend-mode: soft-light; }
.tilt.is-tilting::after { opacity: 1; }

/* Boutons magnétiques */
.magnetic { transition: transform .4s var(--ease-out); }

/* Boîte de réception vivante (hero) */
.inbox-row.is-new { animation: rowIn .9s var(--ease-out) both; background: linear-gradient(90deg, rgba(34, 231, 154, .08), transparent 70%); }
@keyframes rowIn { from { opacity: 0; transform: translateY(-14px); max-height: 0; } to { opacity: 1; transform: none; max-height: 56px; } }
.inbox-row .tag.is-analysing { color: transparent; background: linear-gradient(90deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .25) 50%, rgba(255, 255, 255, .08) 100%); background-size: 200% 100%; animation: shimmer 1s linear infinite; }
.inbox-row .tag.is-landed { animation: pop .6s var(--ease-out) both; }
@keyframes shimmer { to { background-position: -200% 0; } }
.bump { animation: bump .5s var(--ease-out); display: inline-block; }
@keyframes bump { 40% { transform: scale(1.25); color: var(--orkest-green); } }

/* Cartes demandes : coches successives */
.js .req-card .mini-checks li { opacity: 0; transform: translateX(-6px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.js .req-card.is-visible .mini-checks li { opacity: 1; transform: none; }
.js .req-card.is-visible .mini-checks li:nth-child(1) { transition-delay: .35s; }
.js .req-card.is-visible .mini-checks li:nth-child(2) { transition-delay: .5s; }
.js .req-card.is-visible .mini-checks li:nth-child(3) { transition-delay: .65s; }
.req-card .req-ico { transition: transform .6s var(--ease-out); }
.req-card:hover .req-ico { transform: rotate(-8deg) scale(1.08); }
.intent::before, .intent::after { transform: scaleX(0); transition: transform 1.2s var(--ease-out) .2s; }
.intent::before { transform-origin: right; } .intent::after { transform-origin: left; }
.intent.is-visible::before, .intent.is-visible::after { transform: scaleX(1); }

/* Processus : ligne de progression + étapes qui s'allument */
.proc-steps { position: relative; }
.proc-steps::before { content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 100%; background: var(--orkest-green); transform: scaleX(0); transform-origin: left; transition: transform 2.2s var(--ease-soft); }
.proc-steps.is-visible::before { transform: scaleX(1); }
.js .proc-steps li { opacity: .25; transition: opacity .6s var(--ease-out); }
.js .proc-steps.is-visible li { opacity: 1; }
.js .proc-steps.is-visible li:nth-child(2) { transition-delay: .55s; } .js .proc-steps.is-visible li:nth-child(3) { transition-delay: 1.1s; } .js .proc-steps.is-visible li:nth-child(4) { transition-delay: 1.65s; }
.proc-steps .num { transition: color .6s; }
.proc-steps.is-visible li .num { color: #0f8a5f; }

/* Démo : séquence email → analyse → réponse, avec flux entre panneaux */
.flow { position: relative; }
.flow-panel { position: relative; }
.flow-panel + .flow-panel::before { content: ""; position: absolute; left: -16px; top: 50%; width: 16px; height: 2px; background: rgba(255, 255, 255, .15); }
.flow-panel + .flow-panel::after { content: ""; position: absolute; left: -18px; top: calc(50% - 3px); width: 8px; height: 8px; border-radius: 50%; background: var(--orkest-green); box-shadow: 0 0 10px var(--orkest-green); opacity: 0; }
.flow.is-playing .flow-analysis::after { animation: packet 1.1s var(--ease-soft) .3s both; }
.flow.is-playing .flow-reply::after { animation: packet 1.1s var(--ease-soft) 1.9s both; }
@keyframes packet { 0% { opacity: 0; transform: translateX(-4px); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateX(14px); } }
.flow .mail-body .ml { display: block; }
.js .flow .mail-body .ml { opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); }
.js .flow.is-playing .mail-body .ml { opacity: 1; transform: none; }
.found dd { position: relative; }
.js .flow .found dt, .js .flow .found dd { opacity: 0; transition: opacity .4s; }
.js .flow.is-playing .found dt, .js .flow.is-playing .found dd { opacity: 1; }
.flow.is-playing .flow-action { animation: glow 2.4s ease-in-out 3.2s infinite; }
@keyframes glow { 0%, 100% { box-shadow: 0 0 0 4px rgba(34, 231, 154, .18); } 50% { box-shadow: 0 0 0 9px rgba(34, 231, 154, .08), 0 0 30px rgba(34, 231, 154, .35); } }

/* Mémoire client : balayage d'apprentissage et onglets qui défilent */
.mem-row.is-learning { background: linear-gradient(90deg, transparent, rgba(34, 231, 154, .12), transparent); background-size: 200% 100%; animation: sweep 1.2s var(--ease-soft) both; }
@keyframes sweep { from { background-position: 100% 0; } to { background-position: -100% 0; } }
.mem-tabs li { transition: background-color .4s, color .4s; }
.mem-row em { transition: transform .4s var(--ease-out); }
.mem-row.is-learning em { transform: scale(1.15); }

/* Connexions : paquets de données qui circulent + cœur qui pulse */
.connect-arrow { position: relative; overflow: visible; }
.connect-arrow::before { content: ""; position: absolute; left: -6px; right: 14px; top: 50%; height: 1px; background: repeating-linear-gradient(90deg, #bbb 0 4px, transparent 4px 8px); }
.connect-arrow::after { content: ""; position: absolute; left: -8px; top: calc(50% - 3px); width: 7px; height: 7px; border-radius: 50%; background: var(--orkest-green); box-shadow: 0 0 10px var(--orkest-green); opacity: 0; }
.connect-flow.is-visible .connect-arrow::after { animation: flowdot 1.8s linear infinite; }
.connect-flow.is-visible .connect-arrow:nth-of-type(2)::after { animation-delay: .9s; }
@keyframes flowdot { 0% { opacity: 0; transform: translateX(0); } 20% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; transform: translateX(34px); } }
.connect-core { position: relative; }
.connect-core::after { content: ""; position: absolute; inset: -1px; border-radius: 17px; border: 1px solid rgba(34, 231, 154, .5); opacity: 0; }
.connect-flow.is-visible .connect-core::after { animation: ring 2.6s var(--ease-out) infinite; }
@keyframes ring { 0% { opacity: .9; transform: scale(1); } 100% { opacity: 0; transform: scale(1.18); } }
.src-list li, .erp-list li { transition: transform .5s var(--ease-out), opacity .5s; }
.src-list li.is-ping, .erp-list li.is-ping { transform: translateY(-4px); }
.src-list li.is-ping svg { color: #0f8a5f; }

/* Tarifs : bordure lumineuse animée sur l'offre mise en avant */
.plan-featured { overflow: hidden; isolation: isolate; }
.plan-featured::before { content: ""; position: absolute; inset: -60%; z-index: -2; background: conic-gradient(from 0deg, transparent 0 70%, rgba(34, 231, 154, .55) 80%, transparent 90%); animation: spin 6s linear infinite; }
.plan-featured::after { content: ""; position: absolute; inset: 1.5px; z-index: -1; border-radius: calc(var(--radius-md) - 1px); background: #0c1114; }
@keyframes spin { to { transform: rotate(1turn); } }

/* Secteurs : icône animée au survol */
.sector-cards svg { transition: transform .6s var(--ease-out), color .3s; }
.sector-cards li:hover svg { transform: translateY(-3px) rotate(-8deg); color: #0f8a5f; }



.tilt { position: relative; }
.hero-bg { will-change: transform; }

/* 21. « RÉDUIRE LES ANIMATIONS » (réglage système) =========================
   On supprime les mouvements (glissements, 3D, parallaxe, magnétisme), mais on
   garde les fondus, les maquettes vivantes et les compteurs : le site reste vivant
   sans jamais faire bouger l'écran. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js .reveal, .split .ln > span, .js .app-row, .js .clients-list li, .js .rfq-mock .rfq-lines li, .js .rfq-mock .panel-success, .js .rfq-mock .status,
    .js .flow .flow-panel, .js .flow .chips-row span, .js .flow .confidence, .js .flow .flow-action, .js .flow .mail-body .ml,
    .js .mem .mem-row, .js .req-card .mini-checks li, .step-media img, .js .hero-bg img, .js .connect-flow .connect-arrow svg, .src-list li, .erp-list li, .js-price { transform: none !important; filter: none !important; }
    .split .ln > span { opacity: 0; transition: opacity 1s var(--ease-soft) !important; }
    .split.is-visible .ln > span { opacity: 1; }
    .js .hero-mockup-wrap .mockup-app { transition: opacity 1.4s var(--ease-soft) .3s !important; }
    .inbox-row.is-new { animation: fadeIn .9s var(--ease-soft) both; }
    .site-header.is-hidden { transform: none; }
    .page-hero::after, .plan-featured::before, .flow-panel + .flow-panel::after, .connect-arrow::after, .connect-core::after { animation: none !important; }
    .tilt.is-tilting { transform: none !important; }
    .card:hover, .post-card:hover, .res-card:hover, .compare-card:hover, .erp-card:hover, .btn:hover { transform: none; }
    @view-transition { navigation: none; }
}

/* Mentions légales : fiche éditeur */
.legal-dl { display: grid; grid-template-columns: minmax(160px, max-content) 1fr; gap: 10px 28px; margin: 0 0 8px; }
.legal-dl dt { color: var(--text-muted, #6b6b6b); }
.legal-dl dd { margin: 0; overflow-wrap: anywhere; }
@media (max-width: 600px) { .legal-dl { grid-template-columns: 1fr; gap: 2px; } .legal-dl dd { margin-bottom: 10px; } }
