/* ==========================================================================
   HICASS — Feuille de style principale
   Design « Redesign hicass.ch » recréé en HTML/CSS classique.
   ========================================================================== */

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --accent: #E73B21;
  --ink: #16161a;
  --dark: #0a0a0c;
  --dark-2: #08080a;

  /* Variables pilotées par le JS pour la nav adaptative */
  --nav-bg: rgba(18, 18, 22, .55);
  --nav-fg: #f5f5f7;
  --nav-border: rgba(255, 255, 255, .12);
  --nav-hover: rgba(255, 255, 255, .1);
  --nav-logo: brightness(0) invert(1);
  --nav-shadow: 0 12px 44px rgba(0, 0, 0, .4);
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.page-demo { background: #f5f5f7; }

::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; }
a { color: inherit; }
input::placeholder, textarea::placeholder { color: #9a9aa2; }

/* ---------- Typographie utilitaire ---------- */
.font-display { font-family: 'Schibsted Grotesk', sans-serif; }
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.kicker {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.kicker--accent { color: var(--accent); }
.kicker--muted { color: #8a8a93; }

h1, h2, h3 { font-family: 'Schibsted Grotesk', sans-serif; }

/* Champ de formulaire natif masqué visuellement mais toujours soumis */
.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Conteneurs & sections ---------- */
.container { max-width: 1180px; margin: 0 auto; }
.container--md { max-width: 1100px; margin: 0 auto; }
.container--sm { max-width: 1000px; margin: 0 auto; }
.container--xs { max-width: 820px; margin: 0 auto; }

.section { padding: 110px 32px; }
.section--lg { padding: 120px 32px; }
.section--dark { background: var(--dark); color: #f5f5f7; }
.section--grey { background: #f5f5f7; }
.section--white { background: #ffffff; }
.section--relative { position: relative; overflow: hidden; }

.section-title {
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 0;
}
.section-title--xl { font-size: clamp(34px, 5vw, 64px); line-height: 1.0; }
.lede {
  font-size: 17.5px;
  line-height: 1.6;
  color: #5b5b63;
  margin: 0;
}
.section--dark .lede { color: #b6b6c0; }

/* ---------- Boutons / pills ---------- */
.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 980px;
  padding: 15px 30px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: filter .2s ease, background .2s ease, color .2s ease, transform .3s ease, box-shadow .3s ease;
}
.btn--accent {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 28px rgba(231, 59, 33, .4);
}
.btn--accent:hover { filter: brightness(1.06); }
.btn--ghost-dark {
  color: #f5f5f7;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
}
.btn--ghost-dark:hover { background: rgba(255, 255, 255, .14); }
.btn--solid-dark { color: #fff; background: #0a0a0c; }
.btn--solid-dark:hover { filter: brightness(1.15); }
.btn--sm { font-size: 15px; padding: 13px 24px; }
.btn--outline {
  color: #16161a; background: #fff; border: 1px solid rgba(0, 0, 0, .14);
}
.btn--outline:hover { background: #f5f5f7; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
              transform .7s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Keyframes ---------- */
@keyframes cueDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 70% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }
@keyframes popIn { 0% { transform: scale(.7); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav-wrap {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  width: min(1120px, 100%);
  padding: 8px 8px 8px 22px;
  border-radius: 980px;
  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  box-shadow: var(--nav-shadow);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transition: background .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; flex: none; margin-right: 6px; }
.nav__logo img { height: 24px; width: auto; display: block; filter: var(--nav-logo); transition: filter .45s ease; }
.nav__links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--nav-fg);
  text-decoration: none; letter-spacing: -.01em;
  padding: 9px 15px; border-radius: 980px;
  transition: background .2s ease, color .45s ease;
}
.nav__link:hover { background: var(--nav-hover); }
.nav__actions { display: flex; align-items: center; gap: 4px; flex: none; }
.nav__login {
  font-size: 14px; font-weight: 500; color: var(--nav-fg);
  text-decoration: none; padding: 9px 14px; border-radius: 980px;
  transition: background .2s ease, color .45s ease;
}
.nav__login:hover { background: var(--nav-hover); }
.nav__cta {
  font-size: 14px; font-weight: 600; color: #fff; background: var(--accent);
  padding: 10px 18px; border-radius: 980px; text-decoration: none;
  white-space: nowrap; box-shadow: 0 6px 18px rgba(231, 59, 33, .35);
  transition: filter .2s ease;
}
.nav__cta:hover { filter: brightness(1.06); }

/* Burger (mobile) */
.nav__burger {
  display: none; flex: none; width: 42px; height: 42px; padding: 0; margin-left: auto;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span { width: 20px; height: 2px; border-radius: 2px; background: var(--nav-fg); transition: transform .3s ease, opacity .2s ease, background .45s 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); }

/* Panneau mobile */
.nav-mobile {
  position: fixed; top: 74px; left: 16px; right: 16px; z-index: 59;
  display: flex; flex-direction: column; gap: 3px; padding: 14px;
  border-radius: 22px; background: rgba(16, 16, 20, .97);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  backdrop-filter: saturate(160%) blur(20px); -webkit-backdrop-filter: saturate(160%) blur(20px);
  opacity: 0; transform: translateY(-12px) scale(.98); transform-origin: top center;
  pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.nav-mobile.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-mobile__link { color: #f5f5f7; text-decoration: none; font-size: 16px; font-weight: 500; letter-spacing: -.01em; padding: 14px 16px; border-radius: 12px; transition: background .2s ease; }
.nav-mobile__link:hover, .nav-mobile__link:active { background: rgba(255, 255, 255, .08); }
.nav-mobile__cta { margin-top: 7px; text-align: center; background: var(--accent); color: #fff; font-size: 16px; font-weight: 600; padding: 15px 16px; border-radius: 12px; text-decoration: none; box-shadow: 0 8px 22px rgba(231, 59, 33, .35); }
@media (min-width: 901px) { .nav-mobile { display: none; } }

/* ==========================================================================
   HERO (accueil)
   ========================================================================== */
.hero {
  position: relative;
  height: 200vh;
  background: #0a0a0c;
  color: #f5f5f7;
}
.hero__stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero__halo {
  position: absolute; top: 6%; left: 50%; transform: translateX(-50%);
  width: 1150px; height: 720px;
  background: radial-gradient(50% 50% at 50% 50%, var(--accent) 0%, rgba(231, 59, 33, 0) 70%);
  opacity: .5; filter: blur(24px); will-change: transform; pointer-events: none;
}
.hero__grid {
  position: absolute; inset: -12%;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 66px 66px;
  -webkit-mask-image: radial-gradient(78% 62% at 50% 34%, #000 0%, transparent 76%);
  mask-image: radial-gradient(78% 62% at 50% 34%, #000 0%, transparent 76%);
  will-change: transform; pointer-events: none;
}
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(680px 680px at var(--mx, 50%) var(--my, 30%), rgba(231, 59, 33, .14), transparent 62%);
  pointer-events: none; transition: background .25s ease-out;
}
.hero__persp {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 1; perspective: 1700px; pointer-events: none;
}
.hero__product {
  width: min(1040px, 94vw); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02));
  padding: 1px; box-shadow: 0 60px 160px rgba(0, 0, 0, .65);
  will-change: transform, opacity, filter;
}
.hero__screen { background: #15151a; border-radius: 15px; overflow: hidden; }
.hero__chrome {
  display: flex; align-items: center; gap: 8px; padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.hero__dot { width: 11px; height: 11px; border-radius: 50%; }
.hero__url {
  margin-left: 14px; font-size: 12px; color: #8a8a93; font-family: ui-monospace, monospace;
  background: rgba(255, 255, 255, .05); padding: 4px 14px; border-radius: 7px;
}
.hero__screen img { display: block; width: 100%; height: auto; }
.hero__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(90% 80% at 50% 42%, rgba(10, 10, 12, .72) 0%, rgba(10, 10, 12, .4) 45%, transparent 78%);
  z-index: 2; pointer-events: none;
}
.hero__copy {
  position: relative; z-index: 3; text-align: center; padding: 0 32px; max-width: 1100px;
  will-change: transform, opacity, filter;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 13.5px; font-weight: 500; letter-spacing: -.01em; color: #dcdce2;
  border: 1px solid rgba(255, 255, 255, .14); padding: 7px 15px; border-radius: 980px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero__badge-flag { width: 18px; height: 18px; border-radius: 4px; display: block; }
.hero__title {
  font-weight: 800; font-size: clamp(46px, 7.4vw, 96px); line-height: .96;
  letter-spacing: -.035em; margin: 26px 0 0;
}
.hero__title .accent { color: var(--accent); }
.hero__sub {
  max-width: 600px; margin: 24px auto 0; font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5; color: #c6c6d0; letter-spacing: -.01em;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero__note { margin-top: 18px; font-size: 13.5px; color: #8a8a95; letter-spacing: .01em; }
.hero__cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: ui-monospace, monospace; font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: #8a8a95; pointer-events: none;
}
.hero__mouse {
  width: 22px; height: 34px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero__mouse span { width: 3px; height: 7px; border-radius: 2px; background: #c6c6d0; animation: cueDot 1.6s ease-in-out infinite; }
[data-hero-in] { opacity: 0; transform: translateY(26px); }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust { background: #0a0a0c; color: #f5f5f7; padding: 44px 32px 64px; border-top: 1px solid rgba(255, 255, 255, .06); text-align: center; }
.trust__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.trust__logo { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -.02em; color: #d7d7df; opacity: .85; }
.trust__ch { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; font-size: 14px; color: #b6b6c0; }
.trust__ch img { width: 20px; height: 20px; border-radius: 4px; display: block; }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { background: #f5f5f7; padding: 84px 32px; }
.stats__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px;
  border-radius: 20px; overflow: hidden; background: #fff;
  border: 1px solid rgba(0, 0, 0, .06); box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}
.stat { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(0, 0, 0, .05); }
.stat__num { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(38px, 4.6vw, 56px); line-height: 1; letter-spacing: -.03em; color: #16161a; }
.stat__label { margin-top: 12px; font-size: 13.5px; font-weight: 500; color: #6b6b73; line-height: 1.35; }
.stats__source, .source-note { text-align: center; margin: 26px 0 0; font-size: 13px; color: #9a9aa2; font-family: ui-monospace, monospace; letter-spacing: .02em; }

/* ==========================================================================
   Cartes génériques
   ========================================================================== */
.grid-auto { display: grid; gap: 20px; }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cols-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  border: 1px solid rgba(0, 0, 0, .08); border-radius: 20px; padding: 36px 32px; background: #fafafa;
}
.card--soft { background: #fff; border: 1px solid rgba(0, 0, 0, .06); box-shadow: 0 10px 40px rgba(0, 0, 0, .04); border-radius: 18px; padding: 38px 30px; }
.card--dark { background: #0a0a0c; color: #f5f5f7; border: 1px solid #0a0a0c; box-shadow: 0 18px 50px rgba(0, 0, 0, .16); }
.card__num { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 15px; color: var(--accent); margin-bottom: 18px; }
.card__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -.02em; margin: 0 0 12px; }
.card--soft .card__title { font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.card__text { font-size: 15px; line-height: 1.55; color: #6b6b73; margin: 0; }
.card--soft .card__text { font-size: 14.5px; }
.card--dark .card__text { color: #c9c9d2; }

.head-block { max-width: 720px; margin: 0 0 60px; }
.head-block--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Sections centrées « constat / différence »
   ========================================================================== */
.bg-number {
  position: absolute; top: 6%; left: 50%;
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800;
  font-size: min(40vw, 520px); line-height: 1; color: rgba(255, 255, 255, .028);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.bg-number--light { color: rgba(0, 0, 0, .022); }
.chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip-scattered {
  font-size: 14.5px; font-weight: 500; color: #9b9ba4;
  background: rgba(255, 255, 255, .04); border: 1px dashed rgba(255, 255, 255, .14);
  padding: 9px 16px; border-radius: 10px;
}
.big-statement { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.03em; line-height: 1.1; }
.big-statement .accent { color: var(--accent); }

/* ==========================================================================
   PLATEFORME
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.pill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-tag { font-size: 14px; font-weight: 600; color: #16161a; background: #f0f0f2; border: 1px solid rgba(0, 0, 0, .05); padding: 9px 16px; border-radius: 980px; }
.device-frame { border-radius: 20px; background: linear-gradient(160deg, #0a0a0c, #1a1a20); padding: 20px; box-shadow: 0 30px 80px rgba(0, 0, 0, .18); max-width: 380px; }
.device-frame img { display: block; width: 100%; height: auto; border-radius: 10px; }
.dual-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin: 56px auto 0; }
.dual-card { background: #f7f7f9; border: 1px solid rgba(0, 0, 0, .06); border-radius: 18px; padding: 28px 30px; }
.dual-card .kicker { font-size: 11.5px; letter-spacing: .14em; margin-bottom: 10px; }
.dual-card h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: -.02em; margin: 0 0 8px; }
.dual-card p { font-size: 14.5px; line-height: 1.55; color: #6b6b73; margin: 0; }

/* ---------- Listes avant / après ---------- */
.compare-card { background: #fff; border: 1px solid rgba(0, 0, 0, .08); border-radius: 20px; padding: 36px 32px; }
.compare-card--dark { background: #0a0a0c; color: #f5f5f7; border: 1px solid #0a0a0c; box-shadow: 0 30px 70px rgba(0, 0, 0, .16); }
.compare-card .kicker { font-size: 12px; letter-spacing: .12em; margin-bottom: 22px; }
.compare-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.compare-list li { display: flex; gap: 13px; font-size: 15.5px; line-height: 1.45; }
.compare-list--before li { color: #8a8a92; }
.compare-list--before .mark { flex: none; color: #c4c4cc; }
.compare-list--after li { color: #e7e7ec; }
.compare-list--after .mark { flex: none; color: var(--accent); }

/* ---------- Listes à tirets ---------- */
.dash-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.dash-list li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.45; color: #16161a; }
.dash-list .dash { color: var(--accent); flex: none; }
.section--dark .dash-list li { color: #e7e7ec; }

/* ==========================================================================
   MODULES (onglets interactifs)
   ========================================================================== */
.modules-layout { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 20px; align-items: start; }
.module-tabs { display: flex; flex-direction: column; gap: 9px; }
.module-tab {
  cursor: pointer; font-family: inherit; display: flex; align-items: center; gap: 16px;
  width: 100%; text-align: left; padding: 17px 19px; border-radius: 16px;
  background: transparent; border: 1px solid rgba(255, 255, 255, .07);
  transition: background .25s ease, border-color .25s ease;
}
.module-tab.is-active { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); }
.module-tab__num { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 15px; flex: none; width: 26px; color: #6b6b73; transition: color .25s ease; }
.module-tab.is-active .module-tab__num { color: var(--accent); }
.module-tab__body { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.module-tab__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 16.5px; letter-spacing: -.02em; color: #b6b6c0; transition: color .25s ease; }
.module-tab.is-active .module-tab__title { color: #f5f5f7; }
.module-tab__tag { font-family: ui-monospace, monospace; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #7c7c87; }
.module-tab__arrow { color: var(--accent); font-size: 16px; flex: none; width: 16px; text-align: right; }
.module-panel {
  position: relative; border-radius: 24px; padding: 48px 46px; overflow: hidden; min-height: 440px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .11);
}
.module-panel__glow { position: absolute; top: -120px; right: -120px; width: 380px; height: 380px; background: radial-gradient(50% 50% at 50% 50%, rgba(231, 59, 33, .18) 0%, rgba(231, 59, 33, 0) 70%); pointer-events: none; }
.module-panel__content { position: relative; transition: opacity .4s ease, transform .4s ease; }
.module-panel__kicker { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.module-panel__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.05; letter-spacing: -.03em; margin: 0 0 16px; }
.module-panel__desc { font-size: 18px; line-height: 1.55; color: #c9c9d2; margin: 0 0 36px; max-width: 520px; }
.module-panel__rule { height: 1px; background: rgba(255, 255, 255, .1); margin: 0 0 32px; }
.module-panel__items { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px 32px; }
.module-item { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; line-height: 1.4; color: #e7e7ec; }
.module-item__check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(231, 59, 33, .14); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px; }

/* ==========================================================================
   FONCTIONNEMENT (démos interactives)
   ========================================================================== */
.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.mb-120 { margin-bottom: 120px; }
.feature-kicker { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.feature-title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 18px; }
.section--dark .feature-title { color: #f5f5f7; }
.feature-desc { font-size: 16.5px; line-height: 1.6; color: #5b5b63; margin: 0 0 22px; max-width: 480px; }
.section--dark .feature-desc { color: #b6b6c0; }
.feature-hint { font-size: 13px; color: #9a9aa2; margin: 22px 0 0; font-style: italic; }
.section--dark .feature-hint { color: #8a8a93; }
.order-2 { order: 2; }
.order-1 { order: 1; }

/* Carte tarification */
.pricing-demo { background: #fff; border: 1px solid rgba(0, 0, 0, .1); border-radius: 22px; box-shadow: 0 30px 80px rgba(0, 0, 0, .1); padding: 28px; max-width: 440px; margin: 0 auto; width: 100%; }
.pricing-demo__head { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid rgba(0, 0, 0, .07); }
.thumb { border-radius: 12px; background: repeating-linear-gradient(135deg, #f0f0f2, #f0f0f2 7px, #e8e8ec 7px, #e8e8ec 14px); flex: none; }
.thumb--lg { width: 56px; height: 56px; }
.thumb--sm { width: 42px; height: 42px; border-radius: 9px; background: repeating-linear-gradient(135deg, #f1f1f3, #f1f1f3 6px, #e8e8ec 6px, #e8e8ec 12px); }
.pricing-demo__name { font-weight: 700; font-size: 16px; letter-spacing: -.01em; color: #16161a; }
.pricing-demo__ref { font-family: ui-monospace, monospace; font-size: 11.5px; color: #9a9aa2; margin-top: 4px; }
.field-label-mono { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #9a9aa2; margin-bottom: 11px; }
.group-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.group-btn {
  cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 600;
  padding: 9px 15px; border-radius: 980px;
  background: #fff; color: #16161a; border: 1px solid rgba(0, 0, 0, .14);
  transition: background .2s, color .2s, border-color .2s;
}
.group-btn.is-active { background: #0a0a0c; color: #fff; border-color: #0a0a0c; }
.pricing-demo__result { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 22px; background: #f7f7f9; border-radius: 14px; margin-top: 18px; }
.pricing-demo__price { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 42px; line-height: 1; letter-spacing: -.03em; color: #16161a; }
.pricing-demo__note { font-size: 13px; color: #6b6b73; margin-top: 9px; }
.pricing-demo__delta { flex: none; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: #fff; background: var(--accent); padding: 7px 13px; border-radius: 980px; }
.pricing-demo__delta[hidden] { display: none; }
.pricing-demo__deposit { margin-top: 16px; display: flex; align-items: center; gap: 9px; font-size: 13px; color: #9a9aa2; }
.dot-green { width: 7px; height: 7px; border-radius: 50%; background: #28c840; flex: none; }

/* Facture */
.invoice-wrap { position: relative; max-width: 420px; margin: 0 auto; width: 100%; }
.invoice { background: #fff; border: 1px solid rgba(0, 0, 0, .1); border-radius: 16px; box-shadow: 0 30px 80px rgba(0, 0, 0, .12); padding: 30px 30px 26px; transform: rotate(-1.4deg); }
.invoice__head { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid rgba(0, 0, 0, .08); padding-bottom: 16px; }
.invoice__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: #16161a; }
.invoice__meta { font-family: ui-monospace, monospace; font-size: 11.5px; color: #9a9aa2; margin-top: 4px; }
.invoice__date { text-align: right; font-size: 11.5px; color: #9a9aa2; font-family: ui-monospace, monospace; }
.invoice__lines { display: flex; flex-direction: column; gap: 11px; margin: 18px 0; font-size: 13px; color: #5b5b63; }
.invoice__lines > div { display: flex; justify-content: space-between; }
.invoice__lines .num { font-family: ui-monospace, monospace; color: #16161a; }
.invoice__totals { border-top: 1px solid rgba(0, 0, 0, .08); padding-top: 14px; display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: #9a9aa2; }
.invoice__totals > div { display: flex; justify-content: space-between; }
.invoice__totals .num { font-family: ui-monospace, monospace; }
.invoice__grand { margin-top: 5px; font-size: 17px; font-weight: 800; color: #16161a; font-family: 'Schibsted Grotesk', sans-serif; }
.invoice__badge { position: absolute; bottom: -14px; right: 18px; display: flex; align-items: center; gap: 8px; background: #0a0a0c; color: #fff; font-size: 12.5px; font-weight: 600; padding: 9px 15px; border-radius: 980px; box-shadow: 0 12px 30px rgba(0, 0, 0, .25); }
.check-green { color: #28c840; }

/* Multi-boutiques */
.hub { text-align: center; }
.hub__pill { display: inline-flex; align-items: center; gap: 10px; background: #0a0a0c; color: #fff; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -.01em; padding: 14px 24px; border-radius: 14px; box-shadow: 0 16px 40px rgba(0, 0, 0, .18); }
.hub__pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hub__stem { width: 2px; height: 28px; background: rgba(0, 0, 0, .14); margin: 0 auto; }
.hub__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; max-width: 520px; margin: 0 auto; }
.hub__node { background: #f7f7f9; border: 1px solid rgba(0, 0, 0, .07); border-radius: 12px; padding: 18px 12px; }
.hub__node b { font-weight: 700; font-size: 14px; color: #16161a; display: block; }
.hub__node span { font-size: 11.5px; color: #9a9aa2; margin-top: 4px; display: block; }

/* ==========================================================================
   MARKETING (démo réseaux + calendrier)
   ========================================================================== */
.mkt-card { background: #15151a; border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; padding: 22px; margin-bottom: 18px; }
.mkt-card__label { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #8a8a93; margin-bottom: 12px; }
.mkt-post { background: #0a0a0c; border: 1px solid rgba(255, 255, 255, .08); border-radius: 12px; padding: 16px; font-size: 15px; color: #e7e7ec; line-height: 1.5; min-height: 70px; }
.mkt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.net-chip {
  cursor: pointer; display: flex; align-items: center; gap: 9px; font-family: inherit;
  font-size: 13.5px; font-weight: 600; padding: 10px 16px; border-radius: 980px;
  background: transparent; color: #8a8a93; border: 1px solid rgba(255, 255, 255, .12);
  transition: background .2s, color .2s, border-color .2s;
}
.net-chip.is-active { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .3); }
.net-chip__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; background: #5b5b63; transition: background .2s; }
.net-chip.is-active .net-chip__dot { background: var(--net-color); }
.mkt-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.mkt-sched { font-size: 13px; color: #8a8a93; display: flex; align-items: center; gap: 8px; }
.mkt-sched span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.mkt-publish { cursor: default; font-family: inherit; font-size: 13.5px; font-weight: 600; color: #fff; background: var(--accent); border: none; padding: 11px 18px; border-radius: 980px; }
.cal-card { background: #15151a; border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; padding: 20px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head b { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: #f5f5f7; }
.cal-head span { font-family: ui-monospace, monospace; font-size: 11px; color: #8a8a93; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; font-family: ui-monospace, monospace; font-size: 10px; color: #6b6b73; text-align: center; margin-bottom: 6px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-day { background: #0a0a0c; border-radius: 8px; padding: 8px 6px; min-height: 54px; font-size: 11px; color: #8a8a93; }
.cal-day--on { color: #e7e7ec; }
.cal-day--today { border: 1px solid var(--accent); color: #fff; }
.cal-day__dots { display: flex; gap: 3px; margin-top: 6px; flex-wrap: wrap; }
.cal-day__dots span { width: 6px; height: 6px; border-radius: 50%; }

/* ==========================================================================
   CATALOGUE (flipbook)
   ========================================================================== */
.cat-groups { display: flex; align-items: center; gap: 9px; justify-content: center; margin-bottom: 18px; flex-wrap: wrap; }
.cat-groups__label { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #9a9aa2; }
.cat-group-btn {
  cursor: pointer; font-family: inherit; font-size: 12.5px; font-weight: 600; padding: 7px 13px;
  border-radius: 980px; background: #fff; color: #16161a; border: 1px solid rgba(0, 0, 0, .14);
  transition: background .2s, color .2s, border-color .2s;
}
.cat-group-btn.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.cat-book { perspective: 1800px; max-width: 430px; margin: 0 auto; width: 100%; }
.cat-page-wrap { position: relative; width: 100%; min-height: 430px; }
.cat-page { position: absolute; inset: 0; background: #fff; border-radius: 14px; padding: 28px 30px; box-shadow: 0 30px 70px rgba(0, 0, 0, .14); }
.cat-page__overlay { transform-origin: left center; backface-visibility: hidden; -webkit-backface-visibility: hidden; transition: transform .6s cubic-bezier(.45, .05, .25, 1); box-shadow: 8px 0 30px rgba(0, 0, 0, .1); }
.cat-page__overlay.is-flipping { transform: rotateY(-179deg); }
.cat-page__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(0, 0, 0, .08); padding-bottom: 14px; margin-bottom: 18px; }
.cat-page__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -.02em; color: #16161a; }
.cat-page__tarif { font-family: ui-monospace, monospace; font-size: 10.5px; color: var(--accent); white-space: nowrap; }
.cat-rows { display: flex; flex-direction: column; gap: 16px; }
.cat-row { display: flex; align-items: center; gap: 14px; }
.cat-row__name { flex: 1; font-size: 14px; color: #16161a; line-height: 1.3; }
.cat-row__price { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: #16161a; white-space: nowrap; }
.cat-page__foot { margin-top: 22px; padding-top: 14px; border-top: 1px solid rgba(0, 0, 0, .08); font-family: ui-monospace, monospace; font-size: 10.5px; color: #9a9aa2; display: flex; justify-content: space-between; }
.cat-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 22px; }
.cat-arrow { cursor: pointer; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .14); background: #fff; color: #16161a; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.cat-arrow:disabled { opacity: .4; cursor: default; }
.cat-count { font-family: ui-monospace, monospace; font-size: 13px; color: #6b6b73; min-width: 48px; text-align: center; }

/* ==========================================================================
   INTEGRATIONS
   ========================================================================== */
.integrations { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; max-width: 880px; margin: 40px auto 0; }
.integration { height: 90px; width: 160px; display: flex; align-items: center; justify-content: center; background: #fafafa; border: 1px solid rgba(0, 0, 0, .06); border-radius: 14px; padding: 20px; }
.integration img { max-width: 100%; max-height: 42px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: .7; }

/* ==========================================================================
   SECURITE
   ========================================================================== */
.sec-cross { position: absolute; top: 50%; left: 50%; width: 360px; height: 360px; opacity: .06; pointer-events: none; }
.sec-cross__v { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 90px; height: 100%; background: var(--accent); border-radius: 16px; }
.sec-cross__h { position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%; height: 90px; background: var(--accent); border-radius: 16px; }
.sec-flag { width: 46px; height: 46px; border-radius: 9px; display: inline-block; margin-bottom: 24px; }
.sec-title .accent { color: var(--accent); }
.badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.badge { font-size: 14px; font-weight: 500; color: #e7e7ec; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); padding: 11px 20px; border-radius: 980px; }

/* ==========================================================================
   LIBEREZ DU TEMPS
   ========================================================================== */
.arrow-list { display: flex; flex-direction: column; gap: 16px; }
.arrow-item { display: flex; gap: 18px; align-items: flex-start; background: #fafafa; border: 1px solid rgba(0, 0, 0, .07); border-radius: 16px; padding: 24px 26px; }
.arrow-item__mark { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 20px; color: var(--accent); flex: none; line-height: 1.2; }
.arrow-item h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -.02em; margin: 0 0 6px; }
.arrow-item p { font-size: 14.5px; line-height: 1.55; color: #6b6b73; margin: 0; }

/* ==========================================================================
   SHOWCASE / REALISATIONS
   ========================================================================== */
.showcase-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 0 0 44px; flex-wrap: wrap; }
.round-nav { display: flex; gap: 10px; flex: none; }
.round-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .14); background: #fff; color: #16161a; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.round-btn:hover { background: #16161a; color: #fff; border-color: #16161a; }
.showcase-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 4px 22px; margin: 0 -4px; -webkit-overflow-scrolling: touch; }
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track { scrollbar-width: none; }
.showcase-card { flex: none; width: min(360px, 82vw); scroll-snap-align: start; display: block; text-decoration: none; color: inherit; border: 1px solid rgba(0, 0, 0, .09); border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, .04); transition: transform .3s ease, box-shadow .3s ease; }
.showcase-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0, 0, 0, .14); }
.showcase-card__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #f3f3f5; border-bottom: 1px solid rgba(0, 0, 0, .06); }
.showcase-card__bar .d { width: 10px; height: 10px; border-radius: 50%; }
.showcase-card__url { margin-left: 10px; font-family: ui-monospace, monospace; font-size: 11.5px; color: #8a8a93; background: #fff; border: 1px solid rgba(0, 0, 0, .06); padding: 4px 12px; border-radius: 6px; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.showcase-card__shot { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; width: 100%; aspect-ratio: 16/10; background: linear-gradient(135deg, #efeff2, #e4e4e9); color: rgba(0, 0, 0, .5); font-size: 13px; font-weight: 500; padding: 12px; overflow: hidden; }
.showcase-card__shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.showcase-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 22px; }
.showcase-card__foot h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -.02em; margin: 0 0 4px; }
.showcase-card__foot p { font-size: 13.5px; color: #8a8a93; margin: 0; letter-spacing: .01em; }
.showcase-card__go { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .12); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 16px; }

/* ==========================================================================
   TEMOIGNAGES
   ========================================================================== */
.quote { margin: 0; display: flex; flex-direction: column; border: 1px solid rgba(0, 0, 0, .08); border-radius: 20px; padding: 36px 32px; background: #fafafa; }
.quote__mark { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 44px; line-height: .6; color: var(--accent); margin-bottom: 18px; }
.quote blockquote { margin: 0; font-size: 17px; line-height: 1.6; color: #2a2a30; flex: 1; }
.quote figcaption { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #16161a, #3a3a44); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 15px; flex: none; }
.quote__name { display: block; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: #16161a; }
.quote__role { display: block; font-size: 13px; color: #8a8a93; margin-top: 2px; }

/* ==========================================================================
   ACCOMPAGNEMENT
   ========================================================================== */
.onboard { border: 1px solid rgba(255, 255, 255, .11); border-radius: 20px; padding: 34px 30px; background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015)); }
.onboard__num { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 15px; color: var(--accent); margin-bottom: 18px; }
.onboard h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -.02em; margin: 0 0 12px; }
.onboard p { font-size: 14.5px; line-height: 1.55; color: #b6b6c0; margin: 0; }

/* ==========================================================================
   TARIFS
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; border-radius: 24px; padding: 38px 34px; background: #fff; color: #16161a; border: 1px solid rgba(0, 0, 0, .09); }
.plan--featured { background: #0a0a0c; color: #f5f5f7; border: 1px solid #0a0a0c; box-shadow: 0 34px 80px rgba(0, 0, 0, .22); }
.plan__badge { position: absolute; top: 20px; right: 20px; font-family: ui-monospace, monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 5px 11px; border-radius: 980px; }
.plan__name { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -.02em; margin: 0 0 6px; }
.plan__desc { font-size: 14px; line-height: 1.5; color: #8a8a93; margin: 0 0 24px; min-height: 42px; }
.plan--featured .plan__desc { color: #b6b6c0; }
.plan__price-row { display: flex; align-items: baseline; gap: 6px; margin: 0 0 28px; }
.plan__price { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(34px, 4vw, 44px); letter-spacing: -.03em; }
.plan__period { font-size: 14px; color: #8a8a93; }
.plan--featured .plan__period { color: #b6b6c0; }
.plan__cta { display: block; text-align: center; font-size: 15px; font-weight: 600; padding: 13px 20px; border-radius: 980px; text-decoration: none; background: #16161a; color: #fff; transition: filter .2s ease; }
.plan__cta:hover { filter: brightness(1.06); }
.plan--featured .plan__cta { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(231, 59, 33, .35); }
.plan__features { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.plan__features li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.4; color: #3a3a42; }
.plan--featured .plan__features li { color: #e7e7ee; }
.plan__features .check { color: var(--accent); flex: none; font-weight: 700; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(0, 0, 0, .09); border-radius: 14px; overflow: hidden; background: #fafafa; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 600; color: #16161a; letter-spacing: -.01em; }
.faq-sign { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 500; line-height: 1; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; font-size: 15.5px; line-height: 1.65; color: #5b5b63; white-space: pre-line; transition: max-height .35s ease, padding .35s ease; }
.faq-item.is-open .faq-a { padding: 0 24px 24px; }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta { background: #0a0a0c; color: #f5f5f7; padding: 120px 32px; position: relative; overflow: hidden; }
.final-cta__glow { position: absolute; bottom: -260px; left: 50%; transform: translateX(-50%); width: 900px; height: 560px; background: radial-gradient(50% 50% at 50% 50%, var(--accent) 0%, rgba(231, 59, 33, 0) 70%); opacity: .45; filter: blur(20px); pointer-events: none; }
.final-cta__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.final-cta h2 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(36px, 5.2vw, 68px); line-height: 1.0; letter-spacing: -.03em; margin: 0 0 22px; }
.final-cta p { font-size: 19px; line-height: 1.5; color: #b6b6c0; margin: 0 0 38px; }
.final-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #08080a; color: #9b9ba4; padding: 64px 32px 40px; border-top: 1px solid rgba(255, 255, 255, .06); }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.footer__brand { max-width: 300px; }
.footer__brand img { height: 30px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; }
.footer__addr { margin: 20px 0 0; font-size: 14px; line-height: 1.6; }
.footer__mail { display: inline-block; margin-top: 12px; font-size: 14px; color: #f5f5f7; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .25); }
.footer__social { display: flex; gap: 18px; margin-top: 20px; font-size: 13.5px; }
.footer__social a { color: #9b9ba4; text-decoration: none; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col b { color: #f5f5f7; font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.footer__col a { color: #9b9ba4; text-decoration: none; font-size: 14px; }
.footer__col a:hover { color: #f5f5f7; }
.footer__legal { max-width: 1180px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .07); font-size: 13px; color: #6b6b73; }
.footer--compact .footer__top { align-items: center; }
.footer--compact .footer__legal { max-width: 1080px; }

/* ==========================================================================
   PAGE DEMO — hero + formulaire multi-étapes
   ========================================================================== */
.demo-hero { position: relative; background: #0a0a0c; color: #f5f5f7; padding: 150px 24px 130px; overflow: hidden; text-align: center; }
.demo-hero__halo { position: absolute; top: -6%; left: 50%; transform: translateX(-50%); width: 1100px; height: 640px; background: radial-gradient(50% 50% at 50% 50%, var(--accent) 0%, rgba(231, 59, 33, 0) 70%); opacity: .4; filter: blur(26px); pointer-events: none; }
.demo-hero__grid { position: absolute; inset: -12%; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 66px 66px; -webkit-mask-image: radial-gradient(74% 60% at 50% 20%, #000 0%, transparent 74%); mask-image: radial-gradient(74% 60% at 50% 20%, #000 0%, transparent 74%); pointer-events: none; }
.demo-hero__inner { position: relative; max-width: 820px; margin: 0 auto; }
.demo-hero h1 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(38px, 6vw, 74px); line-height: .98; letter-spacing: -.035em; margin: 24px 0 0; }
.demo-hero h1 .accent { color: var(--accent); }
.demo-hero p { max-width: 560px; margin: 22px auto 0; font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: #c6c6d0; letter-spacing: -.01em; }

.form-section { position: relative; z-index: 2; background: #f5f5f7; padding: 64px 24px 110px; }
.form-card { max-width: 1080px; margin: 0 auto; background: #fff; border: 1px solid rgba(0, 0, 0, .06); border-radius: 26px; box-shadow: 0 40px 120px rgba(0, 0, 0, .18); overflow: hidden; }
.wizard { display: grid; grid-template-columns: 390px minmax(0, 1fr); }
.wizard__rail { background: #0a0a0c; color: #f5f5f7; padding: 48px 40px; display: flex; flex-direction: column; }
.wizard__rail h2 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(24px, 2.6vw, 30px); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 40px; }
.rail-steps { display: flex; flex-direction: column; gap: 6px; }
.rail-step { display: flex; align-items: center; gap: 15px; padding: 11px 0; }
.rail-step__num { flex: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 13px; transition: all .3s ease; background: rgba(255, 255, 255, .05); color: #6b6b73; border: 1px solid rgba(255, 255, 255, .1); }
.rail-step__title { font-size: 15px; font-weight: 600; letter-spacing: -.01em; transition: color .3s ease; color: #6b6b73; }
.rail-step.is-active .rail-step__num { background: var(--accent); color: #fff; border: none; }
.rail-step.is-active .rail-step__title { color: #f5f5f7; }
.rail-step.is-done .rail-step__num { background: rgba(255, 255, 255, .16); color: #f5f5f7; border: none; }
.rail-step.is-done .rail-step__title { color: #b6b6c0; }
.rail-rule { height: 1px; background: rgba(255, 255, 255, .1); margin: 36px 0 28px; }
.rail-perks { display: flex; flex-direction: column; gap: 15px; }
.rail-perk { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #c6c6d0; }
.rail-perk__ic { width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .07); display: flex; align-items: center; justify-content: center; color: var(--accent); flex: none; font-size: 13px; }
.rail-perk img.rail-perk__ic { background: none; }
.rail-quote { margin-top: auto; padding-top: 40px; }
.rail-quote p:first-child { font-size: 14px; line-height: 1.55; color: #b6b6c0; font-style: italic; margin: 0; }
.rail-quote p:last-child { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .08em; color: #6b6b73; margin: 10px 0 0; }

.wizard__main { padding: 44px clamp(28px, 4vw, 52px) 40px; display: flex; flex-direction: column; min-height: 600px; }
.progress { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.progress__bars { display: flex; gap: 7px; flex: 1; }
.progress__seg { height: 5px; flex: 1; border-radius: 980px; transition: background .35s ease; background: rgba(0, 0, 0, .09); }
.progress__seg.is-on { background: var(--accent); }
.progress__count { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .06em; color: #9a9aa2; flex: none; }

.step-panel { flex: 1; transition: opacity .45s ease, transform .45s cubic-bezier(.16, 1, .3, 1); }
.step { display: none; }
.step.is-active { display: block; }
.step h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 32px); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 8px; }
.step > p { font-size: 15.5px; line-height: 1.55; color: #6b6b73; margin: 0 0 26px; }

.sector-list { display: flex; flex-direction: column; gap: 11px; }
.sector {
  cursor: pointer; display: flex; align-items: center; gap: 15px; width: 100%;
  background: #fff; border-radius: 14px; padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, .12); font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.sector.is-active { border: 1px solid var(--accent); box-shadow: 0 0 0 3px rgba(231, 59, 33, .1); }
.sector__dot { flex: none; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(0, 0, 0, .2); transition: border-color .2s; }
.sector.is-active .sector__dot { border-color: var(--accent); }
.sector__dot i { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); transform: scale(0); transition: transform .2s; }
.sector.is-active .sector__dot i { transform: scale(1); }
.sector__body { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; text-align: left; }
.sector__label { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 16.5px; letter-spacing: -.02em; color: #16161a; }
.sector__desc { font-size: 13.5px; color: #6b6b73; }

.field-label { display: block; font-size: 13px; font-weight: 600; color: #16161a; margin: 0 0 11px; letter-spacing: -.01em; }
.field-block { margin-top: 30px; }
.seg-row { display: flex; flex-wrap: wrap; gap: 8px; }
.seg-btn {
  cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 600; padding: 10px 17px;
  border-radius: 980px; background: #fff; color: #16161a; border: 1px solid rgba(0, 0, 0, .14);
  transition: background .2s, color .2s, border-color .2s;
}
.seg-btn.is-active { background: #0a0a0c; color: #fff; border-color: #0a0a0c; }
.mod-chip {
  cursor: pointer; font-family: inherit; display: inline-flex; align-items: center;
  font-size: 13.5px; font-weight: 600; padding: 10px 16px; border-radius: 980px;
  background: #fff; color: #16161a; border: 1px solid rgba(0, 0, 0, .14); transition: all .2s;
}
.mod-chip.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.mod-chip__check { overflow: hidden; display: inline-block; font-size: 12px; width: 0; margin-right: 0; transition: width .2s, margin .2s; }
.mod-chip.is-active .mod-chip__check { width: 14px; margin-right: 7px; }
.help-text { margin: 12px 0 0; font-size: 13px; color: #9a9aa2; line-height: 1.5; }

.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mt-16 { margin-top: 16px; }
.input, .textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: #16161a; background: #fff;
  border: 1px solid rgba(0, 0, 0, .14); border-radius: 12px; padding: 14px 16px; outline: none;
  box-sizing: border-box; transition: border-color .2s, box-shadow .2s;
}
.textarea { resize: vertical; line-height: 1.5; }
.input:focus, .textarea:focus { border-color: #0a0a0c; box-shadow: 0 0 0 3px rgba(0, 0, 0, .07); }
.field-error { margin: 7px 0 0; font-size: 12.5px; color: var(--accent); font-weight: 500; }
.field-error--lg { margin: 14px 0 0; font-size: 13px; }

.consent-row { cursor: pointer; font-family: inherit; display: flex; align-items: flex-start; gap: 13px; width: 100%; text-align: left; background: none; border: none; padding: 26px 0 0; margin: 0; }
.consent-box { flex: none; width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff; transition: all .2s; margin-top: 1px; background: #fff; border: 1px solid rgba(0, 0, 0, .25); }
.consent-row.is-checked .consent-box { background: var(--accent); border: 1px solid var(--accent); }
.consent-text { font-size: 14px; line-height: 1.5; color: #5b5b63; text-align: left; }
.consent-text a { color: #16161a; text-decoration: underline; }

.wizard__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(0, 0, 0, .07); }
.wizard__cancel { font-size: 14px; font-weight: 500; color: #9a9aa2; text-decoration: none; }
.wizard__cancel:hover { color: #16161a; }
.btn-next { cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 600; color: #fff; background: var(--accent); border: none; padding: 13px 28px; border-radius: 980px; box-shadow: 0 8px 24px rgba(231, 59, 33, .3); transition: filter .2s ease; }
.btn-next:hover { filter: brightness(1.06); }
.btn-back { cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 600; color: #16161a; background: #fff; border: 1px solid rgba(0, 0, 0, .14); padding: 13px 24px; border-radius: 980px; }
.btn-back:hover { background: #f5f5f7; }

/* Succès */
.success { padding: clamp(48px, 7vw, 96px) clamp(28px, 6vw, 88px); text-align: center; max-width: 640px; margin: 0 auto; }
.success__icon { width: 78px; height: 78px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 38px; margin: 0 auto 28px; box-shadow: 0 16px 40px rgba(231, 59, 33, .35); animation: popIn .6s cubic-bezier(.16, 1, .3, 1) both; }
.success h2 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.04; letter-spacing: -.03em; margin: 0 0 16px; }
.success > p { font-size: 17px; line-height: 1.6; color: #5b5b63; margin: 0 auto 36px; max-width: 460px; }
.recap { text-align: left; background: #f7f7f9; border: 1px solid rgba(0, 0, 0, .06); border-radius: 18px; padding: 26px 28px; margin-bottom: 34px; }
.recap__row { display: flex; justify-content: space-between; gap: 20px; font-size: 14.5px; }
.recap__rows { display: flex; flex-direction: column; gap: 13px; }
.recap__label { color: #9a9aa2; }
.recap__value { color: #16161a; font-weight: 600; text-align: right; }
.success__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.alert-error { background: #fdecea; border: 1px solid rgba(231, 59, 33, .3); color: #9a2417; border-radius: 12px; padding: 14px 18px; font-size: 14.5px; line-height: 1.5; margin-bottom: 24px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .modules-layout { grid-template-columns: 1fr; }
  .wizard { grid-template-columns: 1fr; }
  .wizard__rail { padding: 40px 28px; }
  .order-1, .order-2 { order: 0; }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 8px 10px 8px 20px; }
  .section, .section--lg { padding: 80px 22px; }
  .mb-120 { margin-bottom: 72px; }
}
@media (max-width: 560px) {
  .field-grid-2 { grid-template-columns: 1fr; }
  .footer__cols { gap: 36px; }
  .hero { height: 160vh; }
}

/* ==========================================================================
   PAGES LÉGALES (confidentialité, CGU, mentions, cookies)
   ========================================================================== */
.legal { background: #fff; color: #16161a; padding: 150px 24px 100px; }
.legal__inner { max-width: 800px; margin: 0 auto; }
.legal__eyebrow { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.legal__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(32px, 5vw, 52px); line-height: 1.05; letter-spacing: -.03em; margin: 0 0 12px; }
.legal__updated { font-size: 14px; color: #9a9aa2; margin: 0 0 40px; }
.legal__content { font-size: 16px; line-height: 1.7; color: #3a3a42; }
.legal__content h2 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: #16161a; margin: 42px 0 14px; }
.legal__content h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 17px; color: #16161a; margin: 26px 0 10px; }
.legal__content p { margin: 0 0 16px; }
.legal__content ul { margin: 0 0 18px; padding-left: 22px; }
.legal__content li { margin: 0 0 9px; }
.legal__content a { color: var(--accent); }
.legal__content strong { color: #16161a; }
.legal__card { background: #f7f7f9; border: 1px solid rgba(0, 0, 0, .06); border-radius: 14px; padding: 22px 26px; margin: 0 0 24px; }
.legal__card p { margin: 0; }
.legal__card p + p { margin-top: 6px; }
.legal__note { font-size: 14.5px; color: #6b6b73; background: #fff8f6; border: 1px solid rgba(231, 59, 33, .18); border-left: 3px solid var(--accent); border-radius: 8px; padding: 14px 18px; margin: 24px 0; }
.legal__toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 40px; }
.legal__toc a { font-size: 13px; font-weight: 500; color: #16161a; background: #f0f0f2; border: 1px solid rgba(0, 0, 0, .05); padding: 7px 14px; border-radius: 980px; text-decoration: none; }
.legal__toc a:hover { background: #e6e6ea; }

/* ==========================================================================
   BANNIÈRE COOKIES
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 560px; margin: 0 auto;
  background: #0a0a0c; color: #e7e7ec;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px;
  padding: 22px 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  display: none;
}
.cookie-banner.is-visible { display: block; animation: cookieIn .4s ease both; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cookie-banner__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 16px; margin: 0 0 8px; color: #fff; }
.cookie-banner__text { font-size: 13.5px; line-height: 1.55; color: #b6b6c0; margin: 0 0 16px; }
.cookie-banner__text a { color: #fff; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 600; padding: 11px 18px; border-radius: 980px; border: none; transition: background .2s, filter .2s; }
.cookie-btn--accept { background: var(--accent); color: #fff; }
.cookie-btn--accept:hover { filter: brightness(1.06); }
.cookie-btn--refuse { background: rgba(255, 255, 255, .08); color: #f5f5f7; border: 1px solid rgba(255, 255, 255, .18); }
.cookie-btn--refuse:hover { background: rgba(255, 255, 255, .14); }
