
    :root {
      --coral:   #FF7A63;
      --emerald: #059669;
      --indigo:  #6366F1;

      /* Light palette */
      --paper:   #F6F5F2;
      --white:   #FFFFFF;
      --surface: #FFFFFF;
      --s2:      #F0EFEC;
      --s3:      #E8E7E3;

      /* Ink */
      --ink:     #0D0D0D;
      --ink-2:   #3A3A3A;
      --ink-3:   #767676;
      --ink-4:   #ADADAD;

      /* Border */
      --border:  rgba(0,0,0,0.07);
      --border-2: rgba(0,0,0,0.12);

      --display: 'DM Serif Display', Georgia, serif;
      --sans:    'Plus Jakarta Sans', system-ui, sans-serif;
      --mono:    'DM Mono', 'Courier New', monospace;
      --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 24px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 20px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: var(--sans); background: var(--paper); color: var(--ink); overflow-x: hidden; }

    /* ── NAV PILL ── */
    .nav {
      position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
      width: min(calc(100% - 32px), 1040px);
      background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      border-radius: 100px;
      z-index: 100; padding: 0 8px 0 20px; height: 50px; font-size: 16px; line-height: 1.4;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
      color: var(--ink); text-decoration: none;
      display: flex; align-items: center; gap: 10px;
    }
    .logo-dots { display: flex; gap: 4px; align-items: center; }
    .logo-dot { width: 6px; height: 6px; border-radius: 50%; }
    .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
    .nav-links a {
      color: var(--ink-3); text-decoration: none;
      font-size: 16px; font-weight: 500; padding: 6px 14px;
      border-radius: 100px; transition: color .2s, background .2s;
    }
    .nav-links a:hover { color: var(--ink); background: var(--s2); }
    .nav-cta { display: flex; align-items: center; gap: 8px; }
    .nav-login { color: var(--ink-3); font-size: 16px; font-weight: 500; text-decoration: none; padding: 6px 12px; transition: color .2s; }
    .nav-login:hover { color: var(--ink); }
    .nav-btn {
      /* CTA coral — ratio ~3.8:1 vs paper, non-AA strict mais lisible en contexte bouton */
      background: var(--coral); color: var(--white); font-family: var(--sans);
      font-size: 16px; font-weight: 600; padding: 8px 18px;
      border-radius: 100px; border: none; cursor: pointer; text-decoration: none;
      transition: opacity .2s;
    }
    .nav-btn:hover { opacity: .88; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; display: grid; grid-template-columns: 52fr 48fr;
      align-items: center; padding: 120px 72px 80px; gap: 72px;
      max-width: 1360px; margin: 0 auto;
    }
    .hero-text { display: flex; flex-direction: column; gap: 28px; }
    .eyebrow-tag {
      display: inline-flex; align-items: center; gap: 8px; width: fit-content;
      font-family: var(--mono); font-size: 14px; letter-spacing: .1em;
      text-transform: uppercase; color: var(--ink-3);
      padding: 5px 12px; border: 1px solid var(--border-2); border-radius: 4px;
      background: var(--white);
    }
    .eyebrow-tag::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--emerald); flex-shrink: 0;
    }
    .hero-h1 {
      font-family: var(--display); font-size: clamp(56px, 4.8vw,72px);
      font-weight: 400; line-height: 1.08; letter-spacing: -.025em; color: var(--ink);
    }
    .hero-h1 em { font-style: italic; color: var(--coral); }
    .hero-sub {
      font-size: 22px; font-weight: 400; line-height: 1.65;
      color: var(--ink-3); max-width: none;
    }
    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--coral); color: var(--white);
      font-size: 18px; font-weight: 600; padding: 13px 26px;
      border-radius: 100px; border: none; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: opacity .2s, transform .2s;
    }
    .btn-primary:hover { opacity: .88; transform: translateY(-1px); }
    .btn-ghost {
      color: var(--ink-2); font-size: 18px; font-weight: 500;
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: color .2s;
    }
    .btn-ghost:hover { color: var(--ink); }
    .hero-stats {
      display: flex; align-items: center; gap: 28px;
      padding-top: 12px; border-top: 1px solid var(--border);
    }
    .hero-stat { display: flex; flex-direction: column; gap: 2px; }
    .stat-num {
      font-family: var(--mono); font-size: 30px; font-weight: 500;
      letter-spacing: -.05em;
    }
    .stat-label {
      font-size: 14px; color: var(--ink-4);
      letter-spacing: .04em; text-transform: uppercase;
    }

    /* ── TRIPTYCH ── */
    .triptych {
      display: flex; gap: 10px; align-items: flex-end; height: 530px;
    }
    .slab {
      flex: 1; border-radius: var(--r-lg); background: var(--white);
      border: 1px solid var(--border); overflow: hidden;
      display: flex; flex-direction: column;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: flex .5s cubic-bezier(.4,0,.2,1), transform .4s ease, box-shadow .4s;
      cursor: default;
    }
    .slab:hover { flex: 1.4; transform: translateY(-10px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
    .slab-head {
      padding: 14px 16px 12px; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
    }
    .slab-name {
      font-family: var(--mono); font-size: 13px; font-weight: 500;
      letter-spacing: .1em; text-transform: uppercase;
    }
    .slab-pip { width: 7px; height: 7px; border-radius: 50%; }
    .slab-body { flex: 1; padding: 14px; overflow: hidden; background: var(--paper); }

    .slab-coral .slab-head { border-top: 2px solid var(--coral); }
    .slab-coral .slab-name { color: var(--coral); }
    .slab-coral .slab-pip  { background: var(--coral); }

    .gantt { display: flex; flex-direction: column; gap: 7px; }
    .gantt-row { display: flex; align-items: center; gap: 7px; }
    .gantt-label {
      font-family: var(--mono); font-size: 11px; color: var(--ink-4);
      width: 30px; flex-shrink: 0; overflow: hidden; white-space: nowrap;
    }
    .gantt-bars { flex: 1; display: flex; gap: 3px; }
    .gb { height: 18px; border-radius: 2px; flex: var(--w,1); background: rgba(255,122,99,.12); }
    .gb.on  { background: rgba(255,122,99,.72); }
    .gb.dim { background: rgba(255,122,99,.35); }

    .slab-emerald .slab-head { border-top: 2px solid var(--emerald); }
    .slab-emerald .slab-name { color: var(--emerald); }
    .slab-emerald .slab-pip  { background: var(--emerald); }

    .ledger { display: flex; flex-direction: column; gap: 0; }
    .ledger-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 8px 0; border-bottom: 1px solid var(--border);
    }
    .ledger-key { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
    .ledger-val { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--emerald); }
    .ledger-val.muted { color: var(--ink-4); }
    .ledger-total {
      margin-top: 8px; padding: 8px 10px;
      background: rgba(5,150,105,.08); border-radius: 4px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .ledger-total-k { font-family: var(--mono); font-size: 11px; color: var(--emerald); letter-spacing: .06em; text-transform: uppercase; }
    .ledger-total-v { font-family: var(--mono); font-size: 18px; font-weight: 500; color: var(--emerald); }

    .slab-indigo .slab-head { border-top: 2px solid var(--indigo); }
    .slab-indigo .slab-name { color: var(--indigo); }
    .slab-indigo .slab-pip  { background: var(--indigo); }

    .fcard-list { display: flex; flex-direction: column; gap: 6px; }
    .fcard {
      display: flex; align-items: center; gap: 9px; padding: 8px 9px;
      background: rgba(99,102,241,.06); border-radius: var(--r-sm);
      border: 1px solid rgba(99,102,241,.12);
    }
    .fcard-av {
      width: 26px; height: 26px; border-radius: 50%;
      background: rgba(99,102,241,.15); display: flex; align-items: center;
      justify-content: center; font-family: var(--mono); font-size: 11px;
      font-weight: 500; color: var(--indigo); flex-shrink: 0;
    }
    .fcard-info { flex: 1; min-width: 0; }
    .fcard-name { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .fcard-meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
    .badge { font-family: var(--mono); font-size: 11px; padding: 2px 7px; border-radius: 100px; flex-shrink: 0; }
    .badge-ok   { background: rgba(5,150,105,.1); color: var(--emerald); }
    .badge-warn { background: rgba(255,122,99,.12); color: var(--coral); }

    /* ── TRUST MARQUEE ── */
    .trust {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 22px 0; overflow: hidden; position: relative;
      background: var(--white);
    }
    .trust::before, .trust::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
      z-index: 2; pointer-events: none;
    }
    .trust::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
    .trust::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
    .trust-label {
      text-align: center; font-family: var(--mono); font-size: 13px;
      letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 14px;
    }
    .marquee-wrap { display: flex; overflow: hidden; }
    .marquee-track { display: flex; gap: 0; animation: marquee 30s linear infinite; white-space: nowrap; }
    .marquee-inner { display: flex; gap: 40px; padding-right: 40px; align-items: center; flex-shrink: 0; }
    .trust-name { font-size: 16px; font-weight: 600; color: var(--ink-4); }
    .trust-sep  { font-size: 11px; color: var(--border-2); }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── WRAPPERS ── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
    .section { padding: 110px 0; }
    .section-sm { padding: 72px 0; }
    .bg-white { background: var(--white); }
    .bg-paper { background: var(--paper); }

    .section-eye {
      font-family: var(--mono); font-size: 14px; letter-spacing: .12em;
      text-transform: uppercase; color: var(--ink-4); margin-bottom: 14px;
    }
    .section-h2 {
      font-family: var(--display); font-size: clamp(40px, 3vw,56px);
      font-weight: 400; line-height: 1.2; letter-spacing: -.02em; color: var(--ink);
    }
    .section-h2 em { font-style: italic; }

    /* ── BENTO GRID ── */
    .bento {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
      border-radius: var(--r-xl); overflow: hidden; margin-top: 52px;
      box-shadow: 0 0 0 1px var(--border);
    }
    .tile { background: var(--white); padding: 34px 30px; position: relative; overflow: hidden; }
    .tile.wide { grid-column: span 2; }

    .tile-eye {
      font-family: var(--mono); font-size: 13px; letter-spacing: .1em;
      text-transform: uppercase; margin-bottom: 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .tile-eye::before { content: ''; display: block; width: 22px; height: 2px; border-radius: 1px; }
    .tc .tile-eye { color: var(--coral); }   .tc .tile-eye::before { background: var(--coral); }
    .te .tile-eye { color: var(--emerald); } .te .tile-eye::before { background: var(--emerald); }
    .ti .tile-eye { color: var(--indigo); }  .ti .tile-eye::before { background: var(--indigo); }
    .tn .tile-eye { color: var(--ink-3); }   .tn .tile-eye::before { background: var(--border-2); }

    .tile-h { font-size: 24px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 10px; }
    .tile-p { font-size: 16px; line-height: 1.65; color: var(--ink-3); max-width: 360px; }

    .tile-kpi { display: inline-flex; align-items: baseline; gap: 5px; margin-top: 20px; }
    .kpi-n { font-family: var(--mono); font-size: 48px; font-weight: 500; letter-spacing: -.06em; color: var(--ink); }
    .kpi-l { font-size: 16px; color: var(--ink-4); }

    .mini-cal {
      display: grid; grid-template-columns: repeat(7, 1fr);
      gap: 3px; margin-top: 24px;
    }
    .mc-head { font-family: var(--mono); font-size: 11px; color: var(--ink-4); text-align: center; padding-bottom: 4px; }
    .mc-col { display: flex; flex-direction: column; gap: 3px; }
    .mc-cell { height: 26px; border-radius: 3px; background: rgba(0,0,0,.04); }
    .mc-cell.on  { background: rgba(255,122,99,.5); }
    .mc-cell.dim { background: rgba(255,122,99,.22); }
    .mc-cell.hot { background: rgba(255,122,99,.82); outline: 1px solid var(--coral); }

    /* ── MODULE SECTIONS ── */
    .mod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .mod-grid.rev > :first-child { order: 2; }
    .mod-grid.rev > :last-child  { order: 1; }

    .mod-tag {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 14px; border-radius: 100px; font-family: var(--mono);
      font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px;
    }
    .mt-coral   { background: rgba(255,122,99,.1);  color: var(--coral);   border: 1px solid rgba(255,122,99,.2); }
    .mt-emerald { background: rgba(5,150,105,.08);  color: var(--emerald); border: 1px solid rgba(5,150,105,.18); }
    .mt-indigo  { background: rgba(99,102,241,.08); color: var(--indigo);  border: 1px solid rgba(99,102,241,.18); }

    .mod-h { font-family: var(--display); font-size: clamp(32px, 2.8vw,48px); font-weight: 400; line-height: 1.25; letter-spacing: -.02em; color: var(--ink); margin-bottom: 18px; }
    .mod-p { font-size: 20px; line-height: 1.7; color: var(--ink-3); margin-bottom: 28px; }

    .mod-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .mf { display: flex; align-items: center; gap: 11px; font-size: 18px; color: var(--ink-2); }
    .mf::before {
      content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
      background-repeat: no-repeat; background-position: center; background-size: 10px;
    }
    .mf-c::before { background-color: rgba(255,122,99,.12);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23FF7A63' stroke-width='1.8'%3E%3Cpath d='M1.5 5l2.5 2.5 4.5-5'/%3E%3C/svg%3E"); }
    .mf-e::before { background-color: rgba(5,150,105,.1);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23059669' stroke-width='1.8'%3E%3Cpath d='M1.5 5l2.5 2.5 4.5-5'/%3E%3C/svg%3E"); }
    .mf-i::before { background-color: rgba(99,102,241,.1);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%236366F1' stroke-width='1.8'%3E%3Cpath d='M1.5 5l2.5 2.5 4.5-5'/%3E%3C/svg%3E"); }

    .mod-panel {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r-xl); overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    }
    .mod-panel-head {
      padding: 13px 18px; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 8px;
      background: var(--paper);
    }
    .mod-panel-dot { width: 7px; height: 7px; border-radius: 50%; }
    .mod-panel-url { font-family: var(--mono); font-size: 13px; color: var(--ink-4); }
    .mod-panel-body { padding: 22px; }

    .plan-row-mini {
      display: grid; grid-template-columns: 52px repeat(5,1fr); gap: 4px; align-items: center; margin-bottom: 4px;
    }
    .prm-label { font-family: var(--mono); font-size: 11px; color: var(--ink-4); }
    .prm-cell { height: 22px; border-radius: 3px; background: rgba(0,0,0,.05); }
    .prm-cell.on  { background: rgba(255,122,99,.6); }
    .prm-cell.dim { background: rgba(255,122,99,.25); }
    .prm-cell.s2  { grid-column: span 2; }

    .conflict-alert {
      margin-top: 12px; padding: 8px 12px;
      background: rgba(255,122,99,.06); border: 1px solid rgba(255,122,99,.2);
      border-radius: var(--r-sm); display: flex; align-items: center; gap: 8px;
    }
    .ca-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
    .ca-txt { font-family: var(--mono); font-size: 13px; color: var(--coral); }

    .bud-row {
      display: grid; grid-template-columns: 1fr auto auto; gap: 14px;
      padding: 9px 0; border-bottom: 1px solid var(--border); align-items: center;
    }
    .bud-key { font-size: 16px; color: var(--ink-2); }
    .bud-plan { font-family: var(--mono); font-size: 14px; color: var(--ink-4); text-align: right; }
    .bud-real { font-family: var(--mono); font-size: 14px; color: var(--emerald); text-align: right; }
    .bud-total {
      margin-top: 10px; padding: 9px 12px; background: rgba(5,150,105,.07);
      border-radius: var(--r-sm); display: flex; justify-content: space-between; align-items: center;
    }

    .fprof-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
    .fprof-av {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(99,102,241,.12); display: flex; align-items: center;
      justify-content: center; font-family: var(--mono); font-size: 16px; color: var(--indigo);
    }
    .fprof-name { font-size: 18px; font-weight: 600; color: var(--ink); }
    .fprof-role { font-family: var(--mono); font-size: 13px; color: var(--ink-3); margin-top: 2px; }
    .fprof-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
    .fkpi { border-radius: var(--r-sm); padding: 10px; text-align: center; }
    .fkpi-n { font-family: var(--mono); font-size: 22px; font-weight: 500; }
    .fkpi-l { font-family: var(--mono); font-size: 11px; color: var(--ink-4); margin-top: 2px; }
    .fkpi-i { background: rgba(99,102,241,.07); } .fkpi-i .fkpi-n { color: var(--indigo); }
    .fkpi-e { background: rgba(5,150,105,.07); }  .fkpi-e .fkpi-n { color: var(--emerald); }
    .fkpi-c { background: rgba(255,122,99,.07); }  .fkpi-c .fkpi-n { color: var(--coral); }
    .skill-chips { display: flex; gap: 5px; flex-wrap: wrap; }
    .sk { font-family: var(--mono); font-size: 11px; padding: 3px 8px; border-radius: 4px; background: var(--s2); color: var(--ink-3); }

    /* ── TESTIMONIAL ── */
    .testi {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 96px 64px;
      background: var(--ink);
    }
    .testi-inner { max-width: 820px; margin: 0 auto; text-align: center; }
    .testi-stars { color: var(--coral); font-size: 22px; letter-spacing: 4px; margin-bottom: 28px; }
    .testi-q {
      font-family: var(--display); font-style: italic;
      font-size: clamp(24px, 2.4vw,40px); line-height: 1.45; color: #ffffff; margin-bottom: 36px;
    }
    .testi-auth { display: flex; align-items: center; justify-content: center; gap: 14px; }
    .testi-av {
      width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--mono); font-size: 14px; color: rgba(255,255,255,.6);
    }
    .testi-name { font-size: 18px; font-weight: 600; color: #ffffff; text-align: left; }
    .testi-role { font-size: 16px; color: rgba(255,255,255,.4); text-align: left; margin-top: 2px; }

    /* ── PRICING ── */
    .pricing-toggle-row { display: flex; align-items: center; gap: 12px; margin-top: 28px; margin-bottom: 48px; }
    .t-label { font-size: 18px; font-weight: 500; color: var(--ink-4); cursor: pointer; transition: color .2s; }
    .t-label.on { color: var(--ink); }
    .t-sw { position: relative; width: 42px; height: 22px; cursor: pointer; }
    .t-sw input { display: none; }
    .t-track { position: absolute; inset: 0; background: var(--s3); border-radius: 100px; transition: background .2s; }
    .t-thumb { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.2); transition: transform .2s; pointer-events: none; }
    .t-badge { font-family: var(--mono); font-size: 13px; padding: 3px 9px; background: rgba(5,150,105,.1); color: var(--emerald); border-radius: 100px; border: 1px solid rgba(5,150,105,.15); }

    .pricing-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
      background: var(--border); border-radius: var(--r-xl); overflow: hidden;
      box-shadow: 0 0 0 1px var(--border);
    }
    .pc { background: var(--white); padding: 36px 28px; position: relative; }
    .pc.featured { background: var(--paper); }
    .pc-stripe { position: absolute; top: 0; left: 0; right: 0; height: 2px; }
    .pc-name { font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 22px; }
    .pc-name-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; }
    .pc-rec { font-family: var(--mono); font-size: 11px; padding: 2px 8px; background: rgba(255,122,99,.1); color: var(--coral); border-radius: 100px; margin-top: -22px; }
    .pc-price { margin-top: 22px; }
    .pc-amt { font-family: var(--mono); font-size: 56px; font-weight: 500; letter-spacing: -.06em; color: var(--ink); line-height: 1; }
    .pc-amt sup { font-size: 24px; letter-spacing: 0; vertical-align: super; }
    .pc-period { font-size: 16px; color: var(--ink-4); margin-top: 6px; margin-bottom: 28px; }
    .pc-div { height: 1px; background: var(--border); margin-bottom: 22px; }
    .pc-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
    .pc-feat { font-size: 16px; color: var(--ink-3); display: flex; align-items: center; gap: 9px; }
    .pc-feat::before { content: '·'; color: var(--ink-4); font-size: 22px; line-height: 0; }
    .pc-cta { display: block; text-align: center; padding: 11px 22px; border-radius: 100px; font-size: 18px; font-weight: 600; text-decoration: none; transition: opacity .2s; cursor: pointer; }
    .pc-cta:hover { opacity: .8; }
    .cta-out { border: 1px solid var(--border-2); color: var(--ink-2); background: transparent; }
    .cta-fill { background: var(--coral); color: var(--white); border: none; }

    /* ── INTEGRATIONS ── */
    .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
    .chip {
      font-family: var(--mono); font-size: 14px; padding: 6px 14px;
      border-radius: 100px; border: 1px solid var(--border-2);
      color: var(--ink-3); background: var(--white);
      transition: border-color .2s, color .2s;
    }
    .chip:hover { border-color: var(--ink-2); color: var(--ink); }

    /* ── FAQ ── */
    .faq-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
      background: var(--border); border-radius: var(--r-xl); overflow: hidden;
      margin-top: 44px; box-shadow: 0 0 0 1px var(--border);
    }
    .faq-item { background: var(--white); padding: 26px 28px; }
    .faq-q { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 9px; letter-spacing: -.01em; }
    .faq-a { font-size: 16px; line-height: 1.7; color: var(--ink-3); }

    /* ── CTA FINAL ── */
    .cta-final { padding: 96px 64px; text-align: center; background: var(--ink); }
    .cta-final-inner { max-width: 580px; margin: 0 auto; }
    .cta-h { font-family: var(--display); font-size: clamp(40px, 3.5vw,64px); font-weight: 400; line-height: 1.2; letter-spacing: -.025em; color: #ffffff; margin-bottom: 18px; }
    .cta-h em { font-style: italic; color: var(--coral); }
    .cta-sub { font-size: 20px; color: rgba(255,255,255,.42); line-height: 1.65; margin-bottom: 36px; }
    .cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .btn-ghost-inv { color: rgba(255,255,255,.6); font-size: 18px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
    .btn-ghost-inv:hover { color: #ffffff; }

    /* ── FOOTER ── */
    .footer { background: var(--white); border-top: 1px solid var(--border); padding: 48px 64px 28px; }
    .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 44px; }
    .footer-brand { max-width: 260px; }
    .footer-logo { font-weight: 700; font-size: 18px; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
    .footer-tag { font-size: 16px; color: var(--ink-3); line-height: 1.6; }
    .footer-cols { display: flex; gap: 56px; }
    .footer-col-t { font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 14px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-links a { font-size: 16px; color: var(--ink-3); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--ink); }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
    .footer-legal { font-family: var(--mono); font-size: 14px; color: var(--ink-4); }
    .footer-mods { display: flex; gap: 7px; }
    .fmod { font-family: var(--mono); font-size: 13px; padding: 3px 10px; border-radius: 100px; }
    .fmod-c { background: rgba(255,122,99,.1); color: var(--coral); }
    .fmod-e { background: rgba(5,150,105,.1); color: var(--emerald); }
    .fmod-i { background: rgba(99,102,241,.1); color: var(--indigo); }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.v { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: .08s; }
    .d2 { transition-delay: .16s; }
    .d3 { transition-delay: .24s; }
  .logo-img { height: 24px; width: auto; display: block; }
.footer-logo .logo-img { height: 22px; }

/* ============ HOMEPAGE COPY v2 : persona, KPI bands, avant/après, badges ============ */
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; font-family:var(--mono); font-size: 12px; letter-spacing:.04em; text-transform:uppercase; color:var(--ink-3); background:var(--white); border:1px solid var(--border-2); padding:6px 14px; border-radius:100px; margin-bottom:18px; }
.hero-eyebrow::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--coral); flex-shrink:0; }
.hero-reassure { margin-top:18px; font-size: 14px; color:var(--ink-3); font-weight:500; }

.section-lead { max-width:680px; margin-top:14px; color:var(--ink-3); font-size: 20px; line-height:1.6; }

/* Persona */
.persona-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px; }
.persona-card { display:flex; flex-direction:column; align-items:flex-start; gap:12px; background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:28px; text-decoration:none; color:inherit; box-shadow:0 1px 3px rgba(0,0,0,.04); transition:transform .25s, box-shadow .25s, border-color .25s; }
.persona-card:hover { transform:translateY(-4px); box-shadow:0 16px 44px rgba(0,0,0,.08); border-color:var(--border-2); }
.persona-ic { width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center; }
.pic-coral { background:rgba(255,122,99,.12); color:var(--coral); }
.pic-emerald { background:rgba(5,150,105,.12); color:var(--emerald); }
.pic-indigo { background:rgba(99,102,241,.12); color:var(--indigo); }
.persona-t { font-family:var(--display); font-size: 22px; line-height:1.25; color:var(--ink); margin:0; }
.persona-b { font-size: 18px; line-height:1.6; color:var(--ink-3); margin:0; flex:1; }
.persona-cta { font-size: 16px; font-weight:600; margin-top:2px; }
.pcta-coral { color:#C0431E; } .pcta-emerald { color:#047857; } .pcta-indigo { color:#4F46E5; }
@media (max-width:860px){ .persona-grid { grid-template-columns:1fr; } }

/* Net KPI band (écosystème connecté) */
.netkpi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:36px; }
.netkpi { display:flex; flex-direction:column; gap:6px; padding:26px; background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); }
.netkpi-n { font-family:var(--mono); font-size: 44px; font-weight:500; letter-spacing:-.04em; }
.netkpi-l { font-size: 16px; color:var(--ink-3); line-height:1.5; }
@media (max-width:860px){ .netkpi-grid { grid-template-columns:1fr; } }

/* Avant / Après */
.ba-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:40px; }
.ba-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:24px; }
.ba-tag { display:inline-block; font-family:var(--mono); font-size: 14px; letter-spacing:.06em; text-transform:uppercase; padding:5px 12px; border-radius:100px; margin-bottom:14px; }
.ba-tag-coral { background:rgba(255,122,99,.12); color:#C0431E; }
.ba-tag-emerald { background:rgba(5,150,105,.12); color:#047857; }
.ba-table { width:100%; border-collapse:collapse; font-size: 16px; }
.ba-table th, .ba-table td { text-align:left; padding:10px 12px; border-bottom:1px solid var(--border); }
.ba-table thead th { font-family:var(--mono); font-size: 13px; letter-spacing:.04em; text-transform:uppercase; color:var(--ink-4); font-weight:500; }
.ba-table thead th.ba-hi { color:var(--emerald); }
.ba-table tbody th[scope="row"] { font-weight:600; color:var(--ink); font-family:var(--sans); }
.ba-table td { color:var(--ink-3); }
.ba-table td.ba-hi { color:var(--emerald); font-weight:600; }
@media (max-width:860px){ .ba-grid { grid-template-columns:1fr; } }

/* Bloc massue */
.massue { margin-top:40px; text-align:center; background:var(--white); border:1px solid var(--border); border-radius:var(--r-xl); padding:48px 32px; }
.massue-fig { font-family:var(--display); font-size: clamp(56px,6vw,72px); line-height:1; color:var(--ink); letter-spacing:-.03em; }
.massue-fig span { font-size:.4em; color:var(--ink-4); font-family:var(--sans); }
.massue-sub { font-family:var(--display); font-size: 28px; color:var(--coral); margin:8px 0 16px; font-style:italic; }
.massue-body { max-width:560px; margin:0 auto; color:var(--ink-2); font-size: 20px; line-height:1.6; }
.massue-note { font-size: 14px; color:var(--ink-4); margin-top:12px; }
.massue-links { display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; margin-top:24px; }
.massue-link2 { font-size: 16px; font-weight:600; color:#047857; text-decoration:none; }
.massue-link2:hover { text-decoration:underline; }

/* Modules : badges + baseline + liens */
.mod-tag-row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:4px; }
.mod-badge { font-family:var(--mono); font-size: 13px; letter-spacing:.04em; text-transform:uppercase; padding:4px 10px; border-radius:100px; font-weight:500; }
.mb-coral { background:rgba(255,122,99,.14); color:#C0431E; }
.mb-indigo { background:rgba(99,102,241,.14); color:#4F46E5; }
.mod-baseline { font-family:var(--display); font-size: 22px; color:var(--ink-2); margin:6px 0 18px; line-height:1.35; }
.mod-link { display:inline-block; margin-top:16px; font-size: 18px; font-weight:600; text-decoration:none; }
.ml-coral { color:#C0431E; } .ml-emerald { color:#047857; } .ml-indigo { color:#4F46E5; }
.mod-link:hover { text-decoration:underline; }
.mf-link { color:inherit; text-decoration:underline; text-underline-offset:2px; }
.mod-footline { text-align:center; font-size: 18px; color:var(--ink-3); margin:0; }
.mod-footline a { color:#047857; font-weight:600; text-decoration:none; }
.mod-footline a:hover { text-decoration:underline; }

/* Social proof band */
.sp-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:36px; }
.sp-kpi { text-align:center; padding:26px 16px; background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); }
.sp-n { display:block; font-family:var(--mono); font-size: 44px; font-weight:500; letter-spacing:-.04em; }
.sp-l { display:block; font-size: 16px; color:var(--ink-3); margin-top:6px; line-height:1.4; }
@media (max-width:860px){ .sp-grid { grid-template-columns:1fr 1fr; } }

/* FAQ question en h3 + rassurance CTA (fond sombre) */
h3.faq-q { font-family:var(--sans); margin:0 0 9px; }
.cta-reassure { margin-top:20px; font-size: 16px; color:rgba(255,255,255,.72); font-weight:500; }

/* ================= RESPONSIVE MOBILE (home) ================= */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 4px; width: 38px; height: 38px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-login { display: none; }
  .nav { height: auto; min-height: 50px; }
  .nav.open { flex-wrap: wrap; border-radius: 22px; padding: 6px 8px 12px 20px; }
  .nav.open .nav-links { display: flex; flex-direction: column; width: 100%; order: 4; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
  .nav.open .nav-links a { width: 100%; padding: 12px 14px; font-size: 18px; }
}

@media (max-width: 720px) {
  .container { padding-left: 20px !important; padding-right: 20px !important; }
  .hero-h1 { font-size: clamp(44px, 10vw,64px); }
  .section-h2 { font-size: clamp(30px, 6.5vw,44px); }
  /* Tableaux Avant/Après -> 1 colonne + scroll interne */
  .ba-grid { grid-template-columns: 1fr; }
  .ba-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* KPI bands -> 1 col / 2 col */
  .netkpi-grid { grid-template-columns: 1fr; }
  .sp-grid { grid-template-columns: 1fr 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  /* Boutons hero pleine largeur */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { justify-content: center; }
  .massue-links { flex-direction: column; gap: 14px; }
}

/* Hero home : collapse mobile (1 colonne, triptyque masqué) */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding: 106px 24px 48px; gap: 30px; min-height: auto; text-align: center; }
  .hero-text { align-items: center; }
  .triptych { display: none; }
}

/* Bandeau Qualiopi (bas de section modules) */
.qualiopi-band { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; background: var(--paper); border: 1px solid var(--border); border-radius: 100px; padding: 15px 30px; max-width: 860px; margin: 0 auto; font-size: 18px; color: var(--ink-2); }
.qb-check { color: var(--emerald); font-weight: 700; font-size: 20px; }
.qb-text strong { color: var(--ink); }
.qb-link { color: #047857; font-weight: 600; text-decoration: none; white-space: nowrap; }
.qb-link:hover { text-decoration: underline; }
@media (max-width: 560px){ .qualiopi-band { border-radius: 20px; padding: 16px 22px; } }

/* Fix : alignement etiquette (.mod-tag) + badge dans .mod-tag-row */
.mod-tag-row .mod-tag { margin-bottom: 0; }
/* Emphase coral dans les titres de module */
.mod-h em { font-style: italic; color: var(--coral); }

/* ================= CONSTELLATION INTÉGRATIONS ================= */
.constellation { position: relative; width: 100%; max-width: 900px; margin: 46px auto 0; aspect-ratio: 15/10; }
.constel-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.constel-lines line { stroke: rgba(0,0,0,.09); stroke-width: .22; }
.cnode { position: absolute; left: calc(var(--x)*1%); top: calc(var(--y)*1%); transform: translate(-50%,-50%) translate(var(--dx,0px), var(--dy,0px)); display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; will-change: transform; }
.cnode-dot { width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 1px solid var(--border); box-shadow: 0 6px 20px rgba(0,0,0,.07); display: flex; align-items: center; justify-content: center; transition: transform .25s, box-shadow .25s; }
.cnode:hover .cnode-dot { transform: translateY(-3px) scale(1.07); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.cnode-ico { width: 27px; height: 27px; background: var(--c); -webkit-mask: var(--m) center/contain no-repeat; mask: var(--m) center/contain no-repeat; }
.cnode-mono { font-family: var(--mono); font-weight: 600; font-size: 14px; color: var(--c); letter-spacing: -.02em; }
.cnode-lbl { font-size: 14px; color: var(--ink-3); white-space: nowrap; }
.cnode.is-ph .cnode-dot { border-style: dashed; border-color: var(--border-2); }
.cnode-center .cnode-dot { width: 88px; height: 88px; border: 2px solid var(--coral); box-shadow: 0 12px 40px rgba(255,122,99,.28); }
.cnode-center .cnode-lbl { font-weight: 700; color: var(--ink); font-size: 16px; }
.cnode-mcp .cnode-dot { border: 2px solid var(--indigo); background: #EEF0FE; }
@media (max-width: 720px) {
  .constellation { aspect-ratio: auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 20px 16px; max-width: 100%; }
  .constel-lines { display: none; }
  .cnode { position: static; transform: none; left: auto; top: auto; }
  .cnode-center { order: -1; width: 100%; margin-bottom: 8px; }
}

/* Constellation : cluster OPCO (hub + satellites) */
.constellation { max-width: 960px; aspect-ratio: 16/11; }
.cnode-img { width: 30px; height: 30px; object-fit: contain; display: block; }
.cnode-sat .cnode-dot { width: 38px; height: 38px; }
.cnode-sat .cnode-img { width: 24px; height: 24px; }
.cnode-opco .cnode-dot { width: 60px; height: 60px; border: 2px solid var(--coral); background: #FFF1EC; }
.constel-lines .l-opco { stroke: rgba(0,0,0,.055); }
@media (max-width: 720px){ .cnode-sat .cnode-lbl { display:none; } }

/* Mobile : détacher le cluster OPCO des connecteurs principaux */
@media (max-width: 720px) {
  .cnode-opco { flex-basis: 100%; order: 1; margin-top: 16px; padding-top: 22px; border-top: 1px dashed var(--border-2); }
  .cnode-sat { order: 2; }
  .cnode-sat .cnode-dot { width: 42px; height: 42px; }
  .cnode-sat .cnode-img { width: 27px; height: 27px; }
}

/* Battement cardiaque du nœud central Calendium (subtil, double-beat lub-dub) */
@keyframes heartbeat {
  0%   { transform: scale(1);     box-shadow: 0 12px 40px rgba(255,122,99,.24); }
  9%   { transform: scale(1.019); box-shadow: 0 13px 43px rgba(255,122,99,.31); }
  18%  { transform: scale(1);     box-shadow: 0 12px 40px rgba(255,122,99,.24); }
  27%  { transform: scale(1.01);  box-shadow: 0 12px 41px rgba(255,122,99,.27); }
  36%  { transform: scale(1);     box-shadow: 0 12px 40px rgba(255,122,99,.24); }
  100% { transform: scale(1);     box-shadow: 0 12px 40px rgba(255,122,99,.24); }
}
.cnode-center .cnode-dot { animation: heartbeat 1.9s ease-in-out infinite; will-change: transform; }
.cnode-center:hover .cnode-dot { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .cnode-center .cnode-dot { animation: none; } }

/* Mobile : toute grille inline (multi-colonnes) s'empile */
@media (max-width: 720px) {
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* Boutons CTA : 20px */
.btn-primary, a.btn-primary, .btn-secondary, a.btn-secondary, .btn-ghost, .pc-cta { font-size: 20px; }

/* Mobile : modules 1 colonne (texte TOUJOURS au-dessus de l'image) + bento 1 colonne */
@media (max-width: 860px) {
  .mod-grid { grid-template-columns: 1fr; gap: 32px; }
  .mod-grid.rev > :first-child, .mod-grid.rev > :last-child { order: 0; }
  .bento { grid-template-columns: 1fr; }
  .tile.wide { grid-column: auto; }
}

/* ============ MOBILE ≤720px — empilement + compactage (pass complet) ============ */
@media (max-width: 720px) {
  /* FAQ home : 1 colonne */
  .faq-grid { grid-template-columns: 1fr !important; }
  /* Footer : tout empilé */
  .footer { padding: 40px 22px 28px; }
  .footer-top { flex-direction: column; gap: 30px; }
  .footer-cols { flex-direction: column; gap: 26px; }
  /* Constellation : compacte, logos non géants + aspect-ratio corrigé */
  .constellation { aspect-ratio: auto !important; gap: 16px 14px; }
  .cnode-dot { width: 46px; height: 46px; }
  .cnode-img { width: 26px; height: 26px; }
  .cnode-center .cnode-dot { width: 62px; height: 62px; }
  .cnode-center img { width: 30px; height: auto; }
  .cnode-lbl { font-size: 12px; }
}

/* Mobile : cartes Avant/Après contraintes */
@media (max-width: 720px) {
  .ba-card { max-width: 100%; overflow: hidden; padding: 18px 16px; }
}

/* ============ MOBILE ≤720px — anti-débordement robuste ============ */
@media (max-width: 720px) {
  .mod-grid, .mod-grid > *, [class*="-grid"] > * { min-width: 0; }
  .mod-media, .mod-media img, .mod-grid img, img { max-width: 100%; height: auto; }
}

/* Mobile : 3 offres empilées (1 colonne) */
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr !important; }
}
