:root {
  /* Palette reprise de l'inspiration 3 : crème + orange vif + vert sapin */
  --cream:    #ECECE8;   /* fond crème (inspiration) */
  --card:     #F5F4EF;   /* cartes claires */
  --white:    #FFFFFF;   /* cartes mockup / flottantes */
  --ink:      #14140E;   /* texte quasi noir (inspiration) */
  --muted:    #827D73;   /* texte secondaire gris chaud */
  --orange:   #F2531A;   /* accent orange vif (inspiration) */
  --orange-deep: #D8420C;
  --orange-tint: #FCE1D4;
  --dark:     #032932;   /* section sombre vert sapin (inspiration) */
  --dark-card:#053f4b;
  --line:     #E4E1D9;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --r-card: 20px;
  --r-lg:   30px;
  --shadow:    none;
  --shadow-sm: none;
  --maxw: 1600px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream); color: var(--ink); font-family: var(--font);
  line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--orange-tint); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { font-weight: 500; letter-spacing: -0.045em; line-height: 1; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); font-size: 14px; font-weight:400; }
.lead { color: var(--muted); font-size: clamp(1.1rem, 1.35vw, 1.32rem); line-height: 1.42; }

.tag {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.74rem; font-weight: 600;
  color: var(--orange); background: var(--orange-tint); padding: 0.32rem 0.78rem; border-radius: 999px;
}
.tag--badge { align-self: flex-start; width: fit-content; max-width: 100%; padding: 0.24rem 0.8rem 0.24rem 0.26rem; background: #fff; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); }
.tag__ico { width: 18px; height: 18px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; flex: none; }
.tag__ico svg { width: 11px; height: 11px; }

.wrap { max-width: none; width: 100%; margin-inline: auto; padding-inline: clamp(14px, 1.8vw, 28px); }
.center { text-align: center; max-width: 720px; margin-inline: auto; }
.section { padding-block: clamp(56px, 7vw, 96px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-weight: 500; font-size: 1.10rem; line-height: 1; padding: 1.18rem 2.2rem; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn::after { content: "→"; font-size: .9em; line-height: 1; margin-left: .1rem; transform: translateY(-.02em); transition: transform .2s ease; }
.btn:hover::after { transform: translate(.18rem, -.02em); }
.btn svg { width: 22px; height: 22px; flex: none; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.25); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink), var(--shadow-sm); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--orange); box-shadow: inset 0 0 0 1.5px var(--orange); }
.btn--outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
/* NAV */
.nav { position: sticky; top: 0; z-index: 50; padding-top: 14px; }
.nav .wrap { max-width: none; width: auto; margin-inline: clamp(14px, 1.8vw, 28px); padding: 0 14px 0 24px; transition: margin .5s cubic-bezier(.4, 0, .2, 1); }
.nav--shrink .wrap { margin-inline: max(clamp(14px, 1.8vw, 28px), calc((100% - 1080px) / 2)); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; background: #fff; border: 1px solid transparent; border-radius: 18px; box-shadow: var(--shadow-sm); transition: border-color .5s ease; }
.nav--shrink .nav__inner { border-color: var(--line); }
.brand { display: inline-flex; align-items: center; font-weight: 600; font-size: 1.12rem; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink); }
.brand span { color: var(--orange); }
.nav__links { display: flex; gap: 1.9rem; font-size: 0.93rem; font-weight: 500; color: var(--muted); }
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 1.1rem; }
.nav__right .btn,
.nav__login { min-height: 48px; padding: 0 1.45rem; font-size: .98rem; font-weight: 500; }
.nav__right .btn::after { font-size: .9em; }
.nav__login { display: inline-flex; align-items: center; justify-content: center; line-height: 1; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.nav__login:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.nav__burger { display: none; width: 44px; height: 44px; flex: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 12px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.nav__burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s ease, opacity .2s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__panel { display: none; flex-direction: column; gap: 2px; margin-top: 10px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.nav__panel a { padding: 13px 14px; border-radius: 12px; font-size: 1rem; font-weight: 500; color: var(--ink); }
.nav__panel a:hover { background: var(--cream); }
.nav__panel-phone { color: var(--orange); font-weight: 600; }
.nav__panel a.nav__panel-cta { margin-top: 8px; width: 100%; color: #fff; justify-content: center; padding: 1.05rem; }
.nav__panel a.nav__panel-cta:hover { background: var(--orange-deep); }
@media (max-width: 880px) {
  .nav__links, .nav__login, .nav__right > .btn--primary { display: none; }
  .nav__burger { display: flex; }
  .nav__panel.is-open { display: flex; }
  .nav__panel { padding-bottom: 18px; }
  .nav__panel a.nav__panel-cta { margin-bottom: 6px; }
}

.maquette-tag { position: fixed; right: 16px; bottom: 16px; z-index: 80; font-size: 0.72rem; font-weight: 700; color: #fff; background: var(--dark); padding: 0.55rem 0.95rem; border-radius: 999px; box-shadow: var(--shadow); }
.maquette-tag b { color: #FFB59B; }

/* HERO */
.hero { padding-top: clamp(6px, 1.1vw, 16px); padding-bottom: 22px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; gap: 22px; } .hero__left { padding: clamp(32px, 6vw, 72px); min-height: 0; } }
.hero__left { background: #fff; border-radius: var(--r-lg); padding: clamp(72px, 6.4vw, 118px); min-height: clamp(720px, 52vw, 860px); display: flex; flex-direction: column; justify-content: space-between; }
.hero h1 { margin: 1.1rem 0; font-size: clamp(2.65rem, 4.45vw, 4.45rem); }
.hero .lead { max-width: 640px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-top: 1.8rem; }
.hero__proof { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.9rem; }
.avatars { display: flex; }
.avatars i { width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--cream); margin-left: -11px; }
.avatars i:first-child { margin-left: 0; }
.a1 { background: linear-gradient(135deg,#fdba74,#e8622a); }
.a2 { background: linear-gradient(135deg,#fcd34d,#f59e0b); }
.a3 { background: linear-gradient(135deg,#fda4af,#fb7185); }
.a4 { background: linear-gradient(135deg,#5fae9f,#114a41); }
.hero__proof span { font-size: 0.9rem; color: var(--muted); }
.hero__proof b { color: var(--ink); }

.visual { position: relative; align-self: stretch; }
.visual__photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); height: 100%; min-height: clamp(720px, 52vw, 860px); background: var(--orange-tint); }
.visual__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 940px) { .visual__photo { height: auto; min-height: 0; aspect-ratio: 16/11; } }

.chip { position: absolute; z-index: 2; background: #fff; border-radius: 999px; box-shadow: var(--shadow); padding: 0.38rem 0.5rem; display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; }
.chip .badge { width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; flex: none; }
.chip .badge svg { width: 13px; height: 13px; }
.chip__txt { padding-inline: 0.35rem; white-space: nowrap; }
.chip--a { top: 30px; left: 24px; }
.chip--b { top: 122px; right: 24px; }

.metric { position: absolute; z-index: 2; left: 24px; bottom: 38px; background: #fff; border-radius: 18px; box-shadow: var(--shadow); padding: 16px 18px; width: 212px; }
.metric__top { display: flex; justify-content: space-between; align-items: center; }
.metric .k { font-size: 0.8rem; color: var(--ink); font-weight: 600; }
.metric .mm { font-size: 0.68rem; color: var(--muted); }
.metric .v { font-size: 2.1rem; font-weight: 700; color: var(--ink); margin-top: 5px; line-height: 1; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 42px; margin-top: 13px; }
.bars i { flex: 1; background: var(--orange-tint); border-radius: 6px; }
.bars i.up { background: var(--orange); }
@media (max-width: 520px) { .chip--a { left: 14px; } .chip--b { right: 14px; } .metric { left: 14px; width: 188px; transform: scale(.92); transform-origin: bottom left; } }

/* STATS BAND */
.stats-band { background: var(--dark); border-radius: var(--r-lg); color: #fff; padding: clamp(42px, 5vw, 78px) clamp(24px, 5vw, 90px); text-align: center; }
.stats-band h2 { color: #fff;}
.stats-band .lead { color: rgba(255,255,255,.66); max-width: 620px; margin: 1.45rem auto 0; }
.review-pill { display: inline-flex; align-items: center; gap: .8rem; margin-top: 2.3rem; color: #fff; background: rgba(255,255,255,.11); border-radius: 999px; padding: .62rem 1.35rem; font-size: clamp(.95rem, 1.2vw, 1.18rem); }
.review-pill .mini-badge { background: var(--orange); color: #fff; border-radius: 999px; padding: .44rem 1rem; font-size: 1.12em; font-weight: 600; line-height: 1; white-space: nowrap; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 4vw, 70px); width: min(80rem, 100%); margin: clamp(58px, 7vw, 96px) auto 0; text-align: left; }
.stat-item strong { display: block; color: #fff; font-size: clamp(2.65rem, 4.6vw, 4rem); font-weight: 400; line-height: .9; letter-spacing: -.05em; }
.stat-item p { color: rgba(255,255,255,.54); font-size: clamp(.88rem, 1vw, 1.05rem); line-height: 1.32; margin-top: 1.3rem; max-width: 260px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-band { padding-inline: 24px; } .review-pill { align-items: flex-start; border-radius: 22px; flex-direction: column; gap: .4rem; } .stats-grid { grid-template-columns: 1fr; text-align: center; } .stat-item p { margin-inline: auto; } }

/* PAIN POINTS */
.pain-section { background: #F7F6F1; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 5vw, 76px); }
.pain-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(18px, 2vw, 30px); align-items: stretch; max-width: 80rem; margin-inline: auto; }
.pain-copy { position: absolute; z-index: 2; left: clamp(18px, 2.4vw, 32px); right: clamp(18px, 2.4vw, 32px); bottom: clamp(18px, 2.4vw, 32px); width: auto; background: #fff; border: 1px solid rgba(228,225,217,.86); border-radius: 20px; padding: clamp(18px, 2.2vw, 28px); }
.pain-copy h2 { font-size: clamp(1.65rem, 2.2vw, 2.35rem); max-width: 470px; }
.pain-copy p { color: var(--muted); font-size: clamp(1.1rem, 1.35vw, 1.32rem); line-height: 1.42; max-width: 460px; margin-top: .75rem; }
.pain-visual { position: relative; min-height: 0; height: 100%; border-radius: var(--r-lg); display: grid; place-items: center; overflow: hidden; }
.pain-image-reveal,
.trade-image-reveal {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: clip;
  transform: translate3d(0, 100%, 0);
  transition: transform .45s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}
.pain-image-reveal__inner,
.trade-image-reveal__inner {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: clip;
  transform: translate3d(0, -100%, 0);
  transition: transform .45s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}
.pain-image-reveal img,
.trade-image-reveal img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.08); filter: blur(10px); transition: transform .45s cubic-bezier(.25, .46, .45, .94), filter .45s cubic-bezier(.25, .46, .45, .94); will-change: transform, filter; }
.pain-image-reveal.is-in,
.pain-image-reveal.is-in .pain-image-reveal__inner,
.trade-image-reveal.is-in,
.trade-image-reveal.is-in .trade-image-reveal__inner { transform: translate3d(0, 0, 0); }
.pain-image-reveal.is-in img,
.trade-image-reveal.is-in img { transform: scale(1); filter: blur(0); }
.pain-image-reveal.is-done,
.pain-image-reveal.is-done .pain-image-reveal__inner,
.pain-image-reveal.is-done img,
.trade-image-reveal.is-done,
.trade-image-reveal.is-done .trade-image-reveal__inner,
.trade-image-reveal.is-done img { will-change: auto; }
.pain-list { display: grid; align-content: center; gap: clamp(14px, 1.6vw, 22px); }
.pain-card { background: #fff; border: 0; border-radius: var(--r-lg); padding: clamp(22px, 3vw, 40px); display: grid; grid-template-columns: minmax(120px, .45fr) minmax(0, 1fr); gap: clamp(16px, 2vw, 32px); align-items: center; min-height: 0; }
.pain-card__num { display: inline-flex; align-items: baseline; gap: .12em; color: var(--orange); font-size: clamp(1.9rem, 2.8vw, 3.1rem); font-weight: 600; line-height: .9; letter-spacing: -.04em; }
.pain-card__num::before { content: ""; width: .42em; height: 2px; background: var(--orange); align-self: center; margin-right: .25em; border-radius: 2px; }
.pain-card h3 { margin-top: .85rem; font-size: clamp(1.1rem, 1.35vw, 1.35rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.15; color: var(--ink); }
.pain-card p { color: var(--muted); font-size: clamp(.86rem, .95vw, .98rem); line-height: 1.38; }
@media (max-width: 980px) { .pain-layout { grid-template-columns: 1fr; } .pain-visual { min-height: 360px; } }
@media (max-width: 640px) { .pain-section { padding: 18px; } .pain-card { grid-template-columns: 1fr; gap: 18px; } }

/* STATEMENT */
.statement { text-align: center; }
.statement h2 { font-size: clamp(2rem, 3vw, 3rem); max-width: 65rem; margin-inline: auto; line-height: 1.2; }
.statement h2 .soft { color: var(--muted); }
.statement .btn { margin-top: 2rem; }

/* ===== MÉTIERS / CIBLES (grille « équipe » revisitée) ===== */
.trades__panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 5vw, 76px); }
.trades__head { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(20px, 4vw, 64px); align-items: end; max-width: 80rem; margin-inline: auto; }
.trades__head h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); margin-top: 1.1rem; }
.trades__head .lead { padding-bottom: .4rem; max-width: none; font-size: clamp(.95rem, 1vw, 1.05rem); line-height: 1.5; }
@media (max-width: 760px) { .trades__head { grid-template-columns: 1fr; align-items: start; gap: 14px; } }

.trades__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 80rem; margin: clamp(38px, 4.5vw, 60px) auto 0; }
@media (max-width: 720px) { .trades__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 440px) { .trades__grid { grid-template-columns: 1fr; } }

.tcell { position: relative; display: block; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 5; background: transparent; }
.tcell img { transition: transform .45s cubic-bezier(.25, .46, .45, .94), filter .45s cubic-bezier(.25, .46, .45, .94); }
.tcell:hover img { transform: scale(1.05); }
.tcell__label { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border-radius: 18px; padding: 24px 22px 24px 28px; }
.tcell__txt { min-width: 0; }
.tcell__nm { font-weight: 500; font-size: 1.4rem; letter-spacing: -.025em; line-height: 1.5; color: var(--ink); }
.tcell__ro { font-size: .92rem; color: var(--muted); margin-top: 4px; line-height: 1.3; }
.tcell__ico { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; transition: transform .2s ease, background .2s ease; }
.tcell:hover .tcell__ico { background: var(--orange-deep); transform: translateX(2px); }
.tcell__ico svg { width: 17px; height: 17px; }

/* 6e carte = CTA (au lieu d'un métier) */
.tcell--cta { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(24px, 2.4vw, 34px); background: var(--orange); color: #fff; text-decoration: none; }
.tcell--cta__eyebrow { display: block; margin-bottom: 14px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .85); }
.tcell--cta h3 { color: #fff; font-size: clamp(1.4rem, 2vw, 1.95rem); line-height: 1.08; letter-spacing: -.02em; }
.tcell--cta p { margin-top: 10px; color: rgba(255, 255, 255, .72); font-size: .95rem; line-height: 1.45; }
.tcell--cta__link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-weight: 600; font-size: .98rem; color: #fff; }
.tcell--cta__link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.tcell--cta:hover .tcell--cta__link svg { transform: translateX(4px); }
@media (max-width: 960px) and (min-width: 721px) {
  .trades__grid { gap: 20px; }
  .tcell__label { left: 10px; right: 10px; bottom: 10px; padding: 18px 14px 18px 18px; gap: 8px; border-radius: 16px; }
  .tcell__nm { font-size: 1.08rem; line-height: 1.35; overflow-wrap: anywhere; }
  .tcell__ro { font-size: .8rem; line-height: 1.22; }
  .tcell__ico { width: 34px; height: 34px; }
}
@media (max-width: 720px) {
  .tcell__label { left: 10px; right: 10px; bottom: 10px; padding: 16px 14px; gap: 8px; }
  .tcell__nm { font-size: 1.1rem; overflow-wrap: anywhere; }
  .tcell__ro { font-size: .82rem; }
  .tcell__ico { width: 34px; height: 34px; }
}

/* DARK SECTION */
.dark { --dark-pad-x: clamp(28px, 5vw, 76px); background: var(--dark); border-radius: var(--r-lg); color: #fff; padding: clamp(40px, 5vw, 70px) var(--dark-pad-x); overflow: hidden; }
.dark h2 { color: #fff; }
.dark .lead { color: rgba(255,255,255,.72); }
.dark__head { max-width: 80rem; margin-inline: auto; text-align: left; display: flex; justify-content: space-between; align-items: flex-end; gap: clamp(24px, 4vw, 56px); }
.dark__head-main { max-width: 720px; }
.dark__ai { flex: none; width: clamp(240px, 22vw, 304px); }
.chip-ai { display: inline-flex; align-items: center; gap: .45rem; background: rgba(242,83,26,.12); color: #FFB59B; border: 1px solid rgba(242,83,26,.55); padding: .42rem .9rem; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.chip-ai svg { width: 15px; height: 15px; color: var(--orange); }
.dark__ai p { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.4; margin-top: .85rem; }
@media (max-width: 820px) { .dark__head { flex-direction: column; align-items: flex-start; gap: 18px; } .dark__ai { width: auto; } }
.dark__grid { display: flex; gap: 18px; margin: 42px calc(var(--dark-pad-x) * -1) 0; padding-left: calc(var(--dark-pad-x) + max(0px, (100% - 80rem) / 2)); overflow-x: auto; scroll-snap-type: x proximity; scroll-padding-left: calc(var(--dark-pad-x) + max(0px, (100% - 80rem) / 2)); overscroll-behavior-x: contain; scrollbar-width: none; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%); }
.dark__grid::-webkit-scrollbar { display: none; }
.dcard { flex: 0 0 clamp(360px, 31vw, 520px); scroll-snap-align: start; background: var(--dark-card); border-radius: var(--r-card); padding: clamp(30px, 3vw, 44px); border: 1px solid rgba(255,255,255,.06); min-height: clamp(450px, 30vw, 560px); display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
@media (max-width: 520px) { .dcard { flex-basis: min(82vw, 360px); min-height: 390px; } }
.dcard .dtag { align-self: flex-start; background: rgba(255,255,255,.1); color: #fff; padding: .55rem 1.25rem; border-radius: 999px; font-size: clamp(1.05rem, 1.1vw, 1.22rem); font-weight: 500; }
.dcard .dtxt { color: rgba(255,255,255,.5); font-size: clamp(1.35rem, 1.45vw, 1.75rem); line-height: 1.34; }
.dcard .dtxt b { color: #fff; font-weight: 500; }
.dark__nav { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.dark__nav button { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.92); color: var(--dark); box-shadow: none; transition: transform .2s ease, background .2s ease, opacity .2s ease; }
.dark__nav button:hover { background: #fff; transform: translateY(-2px); }
.dark__nav button:disabled { opacity: .42; cursor: default; transform: none; }
.dark__nav svg { width: 18px; height: 18px; }

/* FEATURE 2x2 */
.feat-panel { background: #faf9f5; border-radius: var(--r-lg); padding: clamp(28px, 5vw, 72px); }
.feat2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
@media (max-width: 760px) {
  .feat2 { grid-template-columns: 1fr; }
  .f2--viz { min-height: 0 !important; }
  .f2--viz .sync-viz { min-height: 0 !important; }
  .f2--viz .sync-viz img { max-width: 100% !important; width: auto !important; max-height: 220px !important; margin-block: 16px !important; }
}
.f2 { background: #fff; border: 0; border-radius: var(--r-card); padding: 30px; min-height: 200px; position: relative; overflow: hidden; }
.f2 h3 { margin-bottom: 0.5rem; }
.f2 p { font-size: 1.28rem; line-height: 1.22; }

.chartcard__title { color: var(--ink); font-size: 1.2rem; font-weight: 500; }
.chartcard__big { display: flex; align-items: center; gap: .7rem; margin-top: .75rem; font-size: 2.1rem; font-weight: 700; color: var(--ink); }
.chartcard__pill { display: inline-flex; align-items: center; gap: .2rem; background: #F1EFEA; color: var(--dark); font-size: .82rem; font-weight: 600; padding: .26rem .62rem; border-radius: 999px; }

.feat-overview { margin-top: 22px; background: #fff; border-radius: var(--r-lg); padding: clamp(20px, 3vw, 40px); }
.feat-overview__row { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; margin-top: 0; }
.feat-overview__visuals { display: grid; grid-template-columns: 1fr 2fr; gap: 18px; }
.feat-tile-stack { display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 18px; min-height: 0; }
.feat-tile-stack .feat-tile { min-height: 0; }
.feat-tile--nf { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background-image: none; padding: 18px; text-align: center; }
.feat-tile--nf img, .feat-tile--nf svg { width: 72px; height: auto; object-fit: contain; }
.feat-tile--nf strong { font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px) { .feat-overview__row { grid-template-columns: 1fr; } }
@media (max-width: 960px) and (min-width: 761px) {
  .feat-overview__row { grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; }
  .feat-overview__visuals { grid-template-columns: 1fr; gap: 12px; }
  .feat-tile-stack { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 12px; }
  .feat-tile-stack .feat-tile { min-height: 118px; }
  .feat-photo { min-height: 320px; }
  .feat-tile--nf { padding: 14px 10px; border-radius: 16px; box-shadow: 0 12px 28px -24px rgba(8,55,49,.22); }
  .feat-tile--nf strong { font-size: .58rem; line-height: 1.28; max-width: 86px; }
  .feat-tile--nf img,
  .feat-tile--nf svg { width: 54px !important; max-height: 54px; }
  .feat-overview__text h4 { font-size: clamp(1.75rem, 3vw, 2.35rem) !important; line-height: 1.12 !important; }
  .feat-overview__text p { font-size: 1rem; line-height: 1.42; }
  .feat-overview__text .btn { padding: .9rem 1.55rem; min-height: 48px; }
}
@media (max-width: 560px) {
  .feat-overview__visuals { grid-template-columns: 1fr; }
  .feat-tile-stack { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
}
.feat-tile { position: relative; overflow: hidden; border: 1px solid rgba(8,55,49,.10); border-radius: var(--r-lg); background: #fff; min-height: 460px; display: grid; place-items: center; }
.feat-photo { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--orange-tint); min-height: 460px; }
.feat-photo img { width: 100%; height: 100%; object-fit: cover; }
.feat-overview__text { display: flex; flex-direction: column; justify-content: center; padding: 8px clamp(0px, 1vw, 20px); }
.feat-overview__text h4 { font-size: clamp(1.55rem, 2.2vw, 2.1rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.1; color: var(--ink); }
.feat-overview__text p { margin-top: 2.4rem; font-size: 1.28rem; line-height: 1.22; }
.feat-overview__text .btn { margin-top: 3.6rem; align-self: flex-start; }

.f2--mock { padding: 0; background: #fff; }
.mock-head { padding: 26px 30px 0; }

.mock-chart { width: 100%; height: auto; display: block; margin-top: 14px; }

.sync-viz { position: relative; display: grid; place-items: center; min-height: 230px; overflow: hidden;
  background:
    radial-gradient(130% 74% at 50% 49%, transparent 27%, rgba(242,83,26,.055) 37%, transparent 49%),
    radial-gradient(130% 74% at 50% 49%, transparent 50%, rgba(242,83,26,.04) 62%, transparent 76%),
    radial-gradient(closest-side at 50% 47%, rgba(242,83,26,.10), transparent 72%); }
.ai-chat-demo { position: relative; width: min(100%, 470px); min-height: 330px; display: grid; align-content: center; gap: 16px; text-align: left; padding: 22px; border-radius: 26px; background: rgba(255,255,255,.92); border: 1px solid rgba(242,83,26,.12); box-shadow: 0 22px 55px -42px rgba(15,23,42,.34), 0 16px 42px -36px rgba(242,83,26,.5); }
.ai-chat-demo::before { content: ""; position: absolute; inset: 18px 8px; border-radius: 26px; background: radial-gradient(circle at 50% 50%, rgba(242,83,26,.14), transparent 62%); filter: blur(12px); opacity: .7; }
.ai-chat__stage { position: relative; z-index: 1; }
.ai-chat__stage { min-height: 220px; display: grid; align-items: center; }
.ai-chat__turn { display: grid; gap: 9px; grid-area: 1 / 1; opacity: 0; transform: translateY(10px); animation: ai-chat-cycle 12s infinite; }
.ai-chat__turn:nth-child(1) { animation-delay: 0s; }
.ai-chat__turn:nth-child(2) { animation-delay: 4s; }
.ai-chat__turn:nth-child(3) { animation-delay: 8s; }
.ai-chat__bubble { max-width: 86%; padding: 12px 14px; border-radius: 16px; font-size: .88rem; line-height: 1.22; box-shadow: 0 14px 34px -26px rgba(15,23,42,.28); }
.ai-chat__bubble--user { justify-self: end; color: #fff; background: #083731; border-bottom-right-radius: 6px; }
.ai-chat__bubble--ai { justify-self: start; color: var(--ink); background: #fff; border: 1px solid rgba(242,83,26,.12); border-bottom-left-radius: 6px; }
.ai-chat__result { display: inline-flex; align-items: center; gap: 6px; justify-self: start; width: fit-content; padding: 7px 10px; border-radius: 999px; color: var(--orange); background: rgba(242,83,26,.09); font-size: .72rem; font-weight: 700; }
.ai-chat__input { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; min-height: 42px; margin-top: 2px; padding: 6px; border-radius: 999px; background: #fff; border: 1px solid rgba(15,23,42,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.ai-chat__attach, .ai-chat__send { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; }
.ai-chat__attach { color: rgba(8,55,49,.58); background: rgba(8,55,49,.06); }
.ai-chat__field { flex: 1; color: rgba(15,23,42,.42); font-size: .78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-chat__send { color: #fff; background: var(--orange); }
.ai-chat__input svg { width: 15px; height: 15px; }
@keyframes ai-chat-cycle {
  0%, 6% { opacity: 0; transform: translateY(10px); }
  10%, 28% { opacity: 1; transform: translateY(0); }
  34%, 100% { opacity: 0; transform: translateY(-8px); }
}
.suite-viz { position: relative; margin: 18px 30px 0; flex: 1; min-height: 420px; overflow: visible; }
.suite-panel { position: absolute; left: 58px; right: 28px; top: 4px; height: 300px; border-radius: 30px; background: linear-gradient(180deg,#fff 0%,#fff 64%,#FFFBF8 100%); box-shadow: 0 38px 90px -60px rgba(15,23,42,.38), 0 24px 60px -48px rgba(242,83,26,.5); padding: 24px 28px 20px; overflow: hidden; }
.suite-panel::before { content: ""; position: absolute; inset: auto -44px -72px auto; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(242,83,26,.10), transparent 68%); }
.suite-panel::after { content: none; }
.suite-legend { position: relative; z-index: 1; display: flex; gap: 14px; margin-top: 18px; color: rgba(15,23,42,.55); font-size: .82rem; font-weight: 700; }
.suite-legend span { display: inline-flex; align-items: center; gap: 6px; }
.suite-legend i { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }
.suite-legend__pos i { background: var(--orange); }
.suite-legend__eshop i { background: #083731; }
.suite-panel .chartcard__title { display: block; color: rgba(15,23,42,.45); font-size: .78rem; font-weight: 700; margin-bottom: 10px; }
.suite-panel__metricline { display: flex; align-items: center; justify-content: flex-start; gap: 18px; min-width: 0; position: relative; z-index: 5; }
.suite-panel .chartcard__big { margin-top: 0; font-size: 1.55rem; flex: 0 0 auto; white-space: nowrap; }
.suite-panel .chartcard__pill { font-size: .72rem; padding: .18rem .5rem; }
.suite-panel .suite-legend { position: relative; z-index: 6; margin-top: 0; margin-bottom: 0; font-size: .72rem; gap: 10px; white-space: nowrap; }
.suite-panel__body { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; align-items: end; margin-top: 12px; transform: none; }
.suite-panel__chart { min-width: 0; width: 100%; margin-left: 0; }
.suite-panel .mock-chart { width: 100%; height: auto; aspect-ratio: 300 / 136; margin-top: 0 !important; display: block; }
.suite-panel__donut { display: grid; place-items: center; align-self: end; margin-bottom: 18px; min-width: 0; }
.suite-panel__donut text { font-family: inherit; }
.suite-float { position: absolute; z-index: 2; left: 0; bottom: 26px; width: min(62%, 300px); border-radius: 24px; background: rgba(255,255,255,.96); border: 1px solid rgba(242,83,26,.10); box-shadow: 0 -22px 56px -44px rgba(15,23,42,.34); padding: 20px 22px; text-align: left; }
.suite-float__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(15,23,42,.08); }
.suite-float__head strong { color: rgba(15,23,42,.45); font-size: .78rem; font-weight: 700; }
.suite-float__head span { color: var(--orange); font-size: .8rem; font-weight: 800; }
.suite-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 72px; margin-top: 16px; }
.suite-module { min-width: 0; }
.suite-module b { display: block; color: rgba(15,23,42,.45); font-size: .78rem; font-weight: 600; margin-bottom: 6px; }
.suite-module strong { display: block; color: var(--ink); font-size: 1rem; line-height: 1.1; }
.suite-module--compact strong { font-size: .76rem; line-height: 1.12; }
.suite-stock-list { display: grid; gap: 8px; margin-top: 14px; }
.suite-stock-row { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 9px; color: rgba(15,23,42,.48); font-size: .72rem; font-weight: 700; }
.suite-stock-row i { display: block; height: 6px; border-radius: 999px; background: rgba(242,83,26,.18); }
.suite-stock-row strong { color: var(--ink); font-size: .74rem; }
.suite-mini-wand { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--orange); color: #fff; }
.suite-mini-wand svg { width: 17px; height: 17px; }
.suite-loyalty { position: absolute; z-index: 3; right: 0; top: 14px; width: 210px; border-radius: 22px; background: rgba(255,255,255,.96); border: 1px solid rgba(242,83,26,.10); box-shadow: 0 28px 70px -48px rgba(15,23,42,.34); padding: 18px 20px; text-align: left; }
.suite-loyalty b { display: block; color: rgba(15,23,42,.45); font-size: .78rem; font-weight: 700; margin-bottom: 10px; }
.suite-loyalty__stars { color: #E4A11B; letter-spacing: 2px; font-size: 1.05rem; white-space: nowrap; }
.suite-loyalty__meta { margin-top: 10px; color: var(--ink); font-size: .96rem; font-weight: 800; }
/* Sous 1200px : la carte mockup passe en flux normal (plus de superposition) ; grand écran inchangé */
@media (max-width: 1200px) {
  .f2--mock { gap: 14px; }
  .suite-viz { display: contents; }
  .suite-panel, .suite-float, .suite-loyalty {
    position: static; left: auto; right: auto; top: auto; bottom: auto; width: 100%; height: auto;
  }
  .suite-panel { box-shadow: 0 22px 56px -44px rgba(15,23,42,.3); order: 1; }
  .suite-loyalty__stars { font-size: 1.1rem; }
  .mock-head { order: 0; }
  .f2--mock > p { order: 2; margin: 0 auto !important; }
  .suite-float { order: 3; }
  .suite-loyalty { order: 4; }
}
@media (max-width: 960px) and (min-width: 761px) {
  .feat2 { gap: 18px; align-items: stretch; }
  .feat2 .f2 { padding: 26px 24px; }
  .feat2 .f2--mock .mock-head { padding: 0; }
  .feat2 .f2--mock .mock-head h3 { text-align: left; }
  .feat2 .f2--viz:nth-child(3) .sync-viz { min-height: 470px !important; margin-block: 14px !important; }
  .feat2 .f2--viz:nth-child(3) .ai-chat-demo {
    width: min(100%, 330px);
    min-height: 390px;
    padding: 24px 22px;
  }
  .feat2 .f2--viz:nth-child(3) .ai-chat__stage { min-height: 282px; }
  .suite-float,
  .suite-loyalty {
    width: calc(100% - 48px);
    margin-inline: auto;
  }
  .suite-float { padding: 18px 20px; }
  .suite-loyalty {
    padding: 14px 20px 16px;
    border-radius: 20px;
  }
  .suite-loyalty b { margin-bottom: 6px; }
  .suite-loyalty__stars { font-size: 1rem; letter-spacing: 1px; }
  .suite-loyalty__meta { margin-top: 6px; font-size: .92rem; }
}

.f2--viz { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.f2--viz h3 { margin-bottom: .4rem; }
.f2--viz p { max-width: 380px; margin-top: auto; }

/* ===== Section sombre « démarque » + photo ===== */
.core { background: var(--dark); border-radius: var(--r-lg); color: #fff; padding: clamp(40px,5vw,64px) clamp(24px,4vw,48px); }
.core h2 { color: #fff; }
.core .lead { color: rgba(255,255,255,.72); }
.core__grid { display: grid; grid-template-columns: 1fr 2.1fr 1fr; gap: 18px; margin-top: 40px; align-items: start; }
.core__col { display: flex; flex-direction: column; gap: 18px; }
.ccard { background: var(--dark-card); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-card); padding: 26px; flex: 1; display: flex; flex-direction: column; justify-content: flex-start; gap: 18px; }
.ccard .ctxt { color: rgba(255,255,255,.5); font-size: 1.05rem; line-height: 1.4; }
.ccard .ctxt b { color: #fff; font-weight: 500; }
.core__midcol { display: flex; flex-direction: column; gap: 0; align-self: stretch; }
.core__midtop { flex: 1; display: grid; place-items: center; }
@media (max-width: 980px) and (min-width: 861px) {
  #materiel { scroll-margin-top: 112px; }
  .core { padding: 34px 34px 38px; }
  .core .center h2 { font-size: clamp(2rem, 4.2vw, 2.65rem); }
  .core .center .lead { max-width: 600px; font-size: 1rem; line-height: 1.45; }
  .core__grid {
    grid-template-columns: .82fr 1.72fr .82fr;
    gap: 14px;
    margin-top: 30px;
  }
  .core__col { gap: 14px; }
  .core__midtop { min-height: 92px; }
  .core__midtop > .btn {
    min-height: 50px;
    padding-inline: 1.5rem;
    transform: translateY(-8px) !important;
  }
  .ccard {
    border-radius: 20px;
    padding: 18px;
    gap: 14px;
  }
  .ccard__img {
    border-radius: 12px;
    aspect-ratio: 1.65 / 1;
  }
  .ccard .ctxt {
    font-size: .9rem;
    line-height: 1.34;
  }
  .core__midcol .ccard { padding: 20px; }
  .core__midcol .ccard__img { aspect-ratio: 1.85 / 1; }
}
@media (max-width: 860px) {
  .core__grid { display: flex; flex-direction: column; gap: 18px; }
  .core__col, .core__midcol, .core__midtop { display: contents; }
  .core__grid .ccard { flex: none; }
  .core__midcol > .ccard { order: -1; }            /* Caisse (POS) en 1er */
  .core__midtop > .btn { order: 99; align-self: center; transform: none !important; }  /* bouton en dernier */
}

/* packshot dans les cartes matériel */
.ccard__img { position: relative; border-radius: 16px; background: #fff; aspect-ratio: 3 / 2; overflow: hidden; }
.ccard__img img { width: 100%; height: 100%; object-fit: contain; }

/* ===== Tarifs ===== */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; align-items: stretch; max-width: 1080px; margin-inline: auto; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
@media (max-width: 560px) {
  .pricing {
    display: flex;
    gap: 16px;
    max-width: none;
    margin-top: 38px;
    margin-inline: calc(var(--pad) * -1);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc((100vw - min(82vw, 340px)) / 2);
    padding: 14px calc((100vw - min(82vw, 340px)) / 2) 12px;
    -webkit-overflow-scrolling: touch;
  }
  .pricing::-webkit-scrollbar { display: none; }
  .pricing .plan {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: center;
  }
}
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 34px; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease; }
.plan:hover { transform: translateY(-4px); border-color: var(--orange); }
.plan__name { font-weight: 600; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.plan__price { font-size: 3.4rem; font-weight: 700; letter-spacing: -.045em; line-height: 1; margin: .6rem 0 0; color: var(--ink); }
.plan__price small { font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.plan__billing { font-size: .8rem; color: var(--muted); margin-top: .3rem; }
.plan--pop .plan__billing { color: rgba(255,255,255,.6); }
.plan__desc { color: var(--muted); font-size: 1.02rem; line-height: 1.4; min-height: 52px; margin-top: .55rem; }

.pricing-toggle { display: inline-flex; align-items: center; gap: 4px; margin-top: 28px; padding: 5px; background: #fff; border: 1px solid var(--line); border-radius: 999px; }
.pricing-toggle button { display: inline-flex; align-items: center; gap: .45rem; padding: .58rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--muted); transition: background .2s ease, color .2s ease; }
.pricing-toggle button.is-active { background: var(--orange); color: #fff; }
.plan > .btn { margin: 22px 0 28px; width: 100%; }
.plan .btn--ghost:hover { background: var(--orange); color: #fff; box-shadow: inset 0 0 0 1.5px var(--orange); transform: translateY(-2px); }
.plan--pop .btn--primary:hover { background: #fff; color: var(--dark); }
.plan__feats { list-style: none; display: flex; flex-direction: column; gap: 13px; padding-top: 28px; border-top: 1px solid var(--line); }
.plan__feats li { display: flex; gap: .65rem; font-size: 1.02rem; align-items: flex-start; color: var(--ink); }
.plan__feats li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23F2531A'/%3E%3Cpath d='m7 12.2 3.4 3.3L17 9' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }

/* formule mise en avant : carte vert sapin */
.plan--pop { background: var(--dark); border-color: var(--dark); position: relative; }
.plan--pop .plan__name { color: #fff; }
.plan--pop .plan__price, .plan--pop .plan__feats li { color: #fff; }
.plan--pop .plan__price small, .plan--pop .plan__desc { color: rgba(255,255,255,.72); }
.plan--pop .plan__feats { border-top-color: rgba(255,255,255,.18); }
.plan--pop:hover { border-color: var(--orange); }
/* ===== Blog ===== */
.bgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 1100px) { .bgrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) {
  .bgrid {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    padding: 0 2px 10px;
    -webkit-overflow-scrolling: touch;
  }
  .bgrid::-webkit-scrollbar { display: none; }
  .bcard {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }
}
.bcard { background: transparent; display: block; }
.bcard__img { aspect-ratio: 16/10; overflow: hidden; border-radius: var(--r-card); }
.bcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bcard:hover .bcard__img img { transform: scale(1.05); }
.bcard__body { padding: 16px 2px 0; }
.bcard .cat { color: var(--orange); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.bcard h3 { font-size: 1.32rem; margin: .5rem 0 .55rem; }
.bcard p { font-size: 1.05rem; color: var(--muted); }

/* ===== FOOTER ===== */
/* Formulaire de contact intégré dans une section verte, collée au footer */
#demo.retailpos-contact {
  background: var(--dark); color: #fff;
  padding-block: clamp(56px, 6vw, 88px);
  --cta: var(--orange); --cta-hover: var(--orange-deep);
  --accent: var(--orange);
  --text: #fff; --muted: rgba(255,255,255,.72);
  --border: rgba(255,255,255,.22); --bg2: rgba(255,255,255,.07);
  --radius: 12px;
}
#demo.retailpos-contact .container { width: 100%; margin-inline: auto; padding-inline: clamp(14px, 1.8vw, 28px); }
#demo .retailpos-contact__inner {
  max-width: 1080px; margin-inline: auto; text-align: left;
  display: grid; grid-template-columns: 1fr 1.05fr;
  grid-template-rows: auto auto auto auto minmax(0, 1fr);
  column-gap: clamp(72px, 9vw, 160px); align-items: start;
}
#demo .retailpos-contact__eyebrow { grid-area: 1 / 1; margin: 0; }
#demo .retailpos-contact__form .retailpos-contact__eyebrow { grid-area: auto; margin: 30px 0 auto; width: fit-content; }
#demo .retailpos-contact__inner h2 { grid-area: 2 / 1; margin: 14px 0 0; }
#demo .retailpos-contact__intro { grid-area: 3 / 1; margin: 18px 0 0; }
#demo .contact-info { grid-area: 4 / 1; margin-top: 26px; display: flex; flex-direction: column; gap: 9px; font-size: .98rem; }
#demo .contact-info a, #demo .contact-info span { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: .55rem; width: fit-content; }
#demo .contact-info a:hover { color: var(--orange); }
#demo .contact-info svg { width: 17px; height: 17px; flex: none; color: var(--orange); }
#demo .contact-map { grid-area: 5 / 1; align-self: stretch; position: relative; margin-top: 22px; min-height: 280px; border-radius: var(--r-card); overflow: hidden; border: 1px solid rgba(255,255,255,.15); }
#demo .contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; border: 0; display: block; }
#demo .retailpos-contact__form {
  grid-column: 2;
  grid-row: 1 / -1;
  gap: clamp(24px, 2.3vw, 34px);
}
#demo .retailpos-contact__grid { gap: clamp(20px, 2vw, 28px); }
#demo .retailpos-contact label:not(.retailpos-contact__consent) { margin-bottom: 10px; }
#demo .retailpos-contact input,
#demo .retailpos-contact select,
#demo .retailpos-contact textarea {
  padding: 1rem 1.05rem;
}
#demo .retailpos-contact select {
  min-height: 56px;
  padding-right: 2.9rem;
  line-height: 1.25;
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
#demo .retailpos-contact__submit {
  margin-top: 4px;
  padding-block: 1.05rem;
}
/* Variante robuste : colonne gauche groupée (.contact-aside) en flex → la carte
   remplit l'espace restant et ne dépasse jamais la hauteur du formulaire. */
#demo .retailpos-contact__inner:has(.contact-aside) {
  grid-template-columns: 1fr 1.05fr;
  grid-template-rows: auto;
  column-gap: clamp(72px, 9vw, 160px);
  align-items: stretch;
}
#demo .retailpos-contact__inner:has(.contact-aside) .retailpos-contact__form { align-self: stretch; }
#demo .retailpos-contact__status:empty { display: none; }
#demo .contact-aside { display: flex; flex-direction: column; min-width: 0; }
#demo .contact-aside .contact-info { grid-area: auto; margin-top: 26px; }
#demo .contact-aside .contact-map {
  grid-area: auto; flex: 1 1 0; min-height: 280px; align-self: stretch;
  margin-top: 22px; position: relative; overflow: hidden;
}
@media (max-width: 760px) {
  #demo .retailpos-contact__inner:has(.contact-aside) { grid-template-columns: 1fr; }
  #demo .contact-aside .contact-map { min-height: 220px; }
  #demo .retailpos-contact__inner { grid-template-columns: 1fr; grid-template-rows: none; }
  #demo .retailpos-contact__eyebrow,
  #demo .retailpos-contact__inner h2,
  #demo .retailpos-contact__intro,
  #demo .contact-info, #demo .contact-map { grid-area: auto; }
  #demo .contact-map, #demo .contact-map iframe { min-height: 220px; }
  #demo .retailpos-contact__form { grid-column: 1; grid-row: auto; margin-top: 22px; }
}
#demo.retailpos-contact h2 { color: #fff; }
#demo.retailpos-contact input::placeholder,
#demo.retailpos-contact textarea::placeholder { color: rgba(255,255,255,.45); }
#demo.retailpos-contact select option { color: #14140E; }

.foot { background: var(--dark); color: rgba(255,255,255,.68); margin-top: 0; padding: clamp(40px,5vw,60px) 0 28px; }
.foot__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 720px) { .foot__cols { grid-template-columns: 1fr 1fr; gap: 28px 18px; } }
.foot__col h4 { color: #fff; font-size: .92rem; margin-bottom: 14px; }
.foot__col a { display: block; color: rgba(255,255,255,.62); font-size: .88rem; padding: 5px 0; }
.foot__col a:hover { color: #fff; }
.foot__about { color: rgba(255,255,255,.55); font-size: .86rem; max-width: 280px; margin-top: 12px; }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }

/* Mobile : réduction des paddings (sections + panneaux + cartes) qui s'empilaient */
@media (max-width: 640px) {
  .section { padding-block: 40px; }
  .feat-panel { padding: 22px 15px; }
  .dark { --dark-pad-x: 16px; padding: 26px 16px; }
  .trades__panel { padding: 20px 15px; }
  .feat-overview { padding: 16px 15px; }
  .feat-tile { border-radius: 14px; }
  .stats-band { padding: 30px 18px; }
  .core { padding: 30px 18px; }
  .f2:not(.f2--mock) { padding: 22px 18px; }
  .plan { padding: 26px 22px; }
  .ccard { padding: 20px; }
  .hero__left { padding: 26px 20px; }
  .suite-float, .suite-loyalty { width: auto; margin-inline: clamp(20px, 10%, 60px); }
  .suite-panel { border-radius: 22px; padding: 18px; }
  .suite-panel__body { grid-template-columns: 1fr; gap: 10px; }
  .suite-panel__donut { display: none; }
  .suite-panel .mock-chart { max-height: 128px; }
  .suite-float,
  .suite-loyalty {
    border-radius: 18px;
    padding: 14px 18px 24px;
    box-shadow: none;
  }
  .suite-loyalty b { margin-bottom: 9px; }
  .suite-loyalty__stars { font-size: .98rem; letter-spacing: 1px; }
  .suite-loyalty__meta { margin-top: 8px; font-size: .9rem; }
  .suite-loyalty { margin-top: 6px; margin-bottom: 22px; min-height: 0; }
  .suite-modules { gap: 12px 42px; }
  .suite-stock-row { grid-template-columns: 50px 1fr auto; gap: 8px; }
  .suite-loyalty { margin-top: 10px; }
  .feat-tile-stack { gap: 10px; }
  .feat-tile--nf { min-height: 136px; padding: 14px 10px; border-radius: 14px; }
  .feat-tile--nf strong { font-size: .62rem; line-height: 1.35; }
  .feat-tile--nf img, .feat-tile--nf svg { width: 58px !important; max-height: 58px; }
  #demo.retailpos-contact { padding-block: 48px; }
  .feat2, .pricing, .bgrid { gap: 14px; }
  .journal-section { display: none; }
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.is-done { will-change: auto; }
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .pain-image-reveal,
  .pain-image-reveal__inner,
  .pain-image-reveal img,
  .trade-image-reveal,
  .trade-image-reveal__inner,
  .trade-image-reveal img {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}
