

:root {

  --ivoire:      #F6F2EA;
  --encre:       #1C2430;
  --terracotta:  #D9683C;

  --surface:       #FFFFFF;
  --ivoire-soft:   #FBF9F4;
  --encre-80:      rgba(28, 36, 48, .82);
  --encre-64:      rgba(28, 36, 48, .64);
  --encre-45:      rgba(28, 36, 48, .48);
  --line:          rgba(28, 36, 48, .10);
  --line-strong:   rgba(28, 36, 48, .16);

  --terracotta-ink:  #C25A30;
  --terracotta-text: #B5532B;
  --terracotta-tint: rgba(217, 104, 60, .12);
  --ocre-deep:       #A87921;
  --ocre-text:       #8A6420;

  --ivoire-72: rgba(246, 242, 234, .72);
  --ivoire-12: rgba(246, 242, 234, .12);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28, 36, 48, .04), 0 1px 3px rgba(28, 36, 48, .06);
  --shadow-md: 0 6px 18px rgba(28, 36, 48, .06), 0 2px 6px rgba(28, 36, 48, .05);
  --shadow-lg: 0 20px 50px rgba(28, 36, 48, .12), 0 8px 20px rgba(28, 36, 48, .08);

  --container:  1120px;
  --gutter:     clamp(1.25rem, 5vw, 2.5rem);
  --header-h:   72px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--encre);
  background-color: var(--ivoire);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

main { flex: 1; }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; padding: 0; }

button, select { font: inherit; color: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 200;
  padding: .6rem 1.1rem;
  background: var(--encre);
  color: var(--ivoire);
  border: 1px solid rgba(246, 242, 234, .4);
  border-radius: var(--radius-pill);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.section--snug {
  padding-block: clamp(1.5rem, 3.5vw, 2.5rem) clamp(2.25rem, 5vw, 3.5rem);
}
.section--snug-top {
  padding-top: clamp(1.5rem, 3.5vw, 2.5rem);
}

h1, h2, h3 {
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre);
}

.section__head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: .9rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
}

.section__intro {
  margin-top: 1rem;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: var(--encre-64);
}

.accent-text { color: var(--terracotta); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 16px rgba(217, 104, 60, .28);
}
.btn--primary:hover {
  background-color: var(--terracotta-ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(217, 104, 60, .32);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background-color: transparent;
  color: var(--encre);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background-color: var(--surface);
  border-color: var(--encre);
  transform: translateY(-2px);
}

.btn--sm { padding: .6rem 1.05rem; font-size: .9375rem; }
.btn--lg { padding: .95rem 1.75rem; font-size: 1.0625rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--encre);
  border-bottom: 1px solid var(--ivoire-12);
  transition: box-shadow .25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(28, 36, 48, .28);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding-inline: clamp(1rem, 3vw, 1.75rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand__mark { height: 30px; width: auto; }
.brand__name { font-size: 1.3rem; color: var(--encre); }
.site-header .brand__name { color: var(--ivoire); }

.nav {
  display: flex;
  flex: 1;
  align-items: center;
  margin-left: clamp(1.5rem, 3.5vw, 2.75rem);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}
.nav__link {
  font-weight: 500;
  color: var(--ivoire-72);
  transition: color .18s var(--ease);
}
.nav__link:hover { color: var(--ivoire); }
.nav__link.is-active { color: var(--ivoire); font-weight: 600; }

.nav .btn { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(246, 242, 234, .3);
  border-radius: var(--radius-sm);
}
.nav-toggle__bar {
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background-color: var(--ivoire);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;

  padding-block: clamp(2.5rem, 6vw, 4.25rem) clamp(3.25rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  max-width: 100%;
  text-align: center;
  padding: .4rem .95rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .875rem;
  font-weight: 500;
  color: var(--encre-64);
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--terracotta);
  flex-shrink: 0;
  animation: dot-pulse 2.8s var(--ease) infinite;
}

.hero__title {
  margin-top: 1.5rem;
  font-size: clamp(2.35rem, 6.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero__subtitle {
  max-width: 40rem;
  margin-top: 1.35rem;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  color: var(--encre-64);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 2.25rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.75rem;
  margin-top: 2.5rem;
  font-size: .9375rem;
  color: var(--encre-64);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.check {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero--compact {
  padding-block: clamp(2.25rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 2.75rem);
}
.hero--compact .hero__title {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
}

.hero--error {
  padding-block: clamp(3.5rem, 9vw, 6rem) clamp(3rem, 8vw, 5rem);
}
.error-code {
  margin-top: 1.4rem;
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--terracotta);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.card {
  padding: 2rem 1.85rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.35rem;
  border-radius: var(--radius);
  background-color: var(--terracotta-tint);
  color: var(--terracotta);
  transition: transform .3s var(--ease);
}

.card:hover .card__icon { transform: scale(1.09) rotate(-5deg); }
.card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .55rem;
}
.card__text {
  color: var(--encre-64);
  font-size: 1rem;
}

.preview { background-color: var(--ivoire-soft); }

.preview__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.preview__list {
  display: grid;
  gap: .75rem;
  margin-top: 1.75rem;
}
.preview__list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 500;
  color: var(--encre-80);
}

.invoice-panel {
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
}

.invoice-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .95rem;
}
.invoice-controls__label {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--encre-80);
}

.select {
  appearance: none;
  -webkit-appearance: none;
  padding: .55rem 2.5rem .55rem 1.05rem;
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--encre);
  background-color: var(--surface);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%231C2430' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color .18s var(--ease);
}
.select:hover { border-color: var(--encre); }

.select:focus-visible {
  outline: none;
  border-color: var(--encre);
  box-shadow: 0 0 0 3px rgba(28, 36, 48, .14);
}

.preview .doc-page {
  --doc-accent: var(--terracotta);
  position: relative;
  width: 100%;
  padding: clamp(1.4rem, 3.5vw, 2.1rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: .82rem;
  color: #23262B;
  line-height: 1.45;
  overflow: hidden;
}

.preview .doc-page.is-switching { animation: invoice-swap .4s var(--ease); }

.preview .doc-page[data-theme="terracotta"] { --doc-accent: var(--terracotta); }
.preview .doc-page[data-theme="encre"]      { --doc-accent: var(--encre); }
.preview .doc-page[data-theme="ocre"]       { --doc-accent: var(--ocre-deep); }

.preview .doc-head { display: flex; justify-content: space-between; gap: 1.2rem; align-items: flex-start; }
.preview .doc-head__logo .doc-logo-placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 52px; height: 52px; padding-inline: .6rem;
  border-radius: 10px; background-color: var(--doc-accent);
  color: #fff; font-weight: 800; font-size: 1.15rem;
  transition: background-color .35s var(--ease);
}

.preview .doc-head__emitter { text-align: right; font-size: .78rem; color: #4A5058; }
.preview .doc-head__line { display: block; }
.preview .doc-head__emitter strong { display: block; font-size: .92rem; color: #1C2430; }

.preview .doc-title { margin-top: 1.3rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.preview .doc-title h2 { font-size: 1.25rem; letter-spacing: .01em; color: var(--doc-accent); transition: color .35s var(--ease); }
.preview .doc-title .doc-dates { flex: none; font-size: .78rem; color: #4A5058; text-align: right; }
.preview .doc-dates > span { display: block; }

.preview .doc-refs { margin: .1rem 0 .4rem; font-size: .72rem; font-style: italic; color: #9AA0A8; }
.preview .doc-formation {
  margin-top: 1rem; padding: .7rem .85rem;
  border: 1px solid #E9E4D8; border-radius: 10px;
  background-color: #FCFAF6; font-size: .78rem; color: #4A5058;
}

.preview .doc-parties { display: flex; justify-content: space-between; gap: 1.2rem; margin-top: 1.1rem; flex-wrap: wrap; }
.preview .doc-party { font-size: .8rem; color: #4A5058; }
.preview .doc-party__label {
  font-size: .66rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--doc-accent); margin-bottom: .2rem;
  transition: color .35s var(--ease);
}
.preview .doc-party strong { color: #1C2430; }

.preview .doc-lines { width: 100%; border-collapse: collapse; margin-top: 1.15rem; }
.preview .doc-lines th {
  padding: .5rem .55rem; background-color: var(--doc-accent); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; text-align: left;
  transition: background-color .35s var(--ease);
}
.preview .doc-lines th.num, .preview .doc-lines td.num { text-align: right; font-variant-numeric: tabular-nums; }
.preview .doc-lines td { padding: .55rem .55rem; border-bottom: 1px solid #ECE8DE; vertical-align: top; }

.preview .doc-totals { margin-top: 1rem; margin-left: auto; width: min(320px, 100%); display: grid; gap: .3rem; }
.preview .doc-totals__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .82rem; color: #4A5058; font-variant-numeric: tabular-nums; }
.preview .doc-totals__row strong { color: #1C2430; }
.preview .doc-totals__row--ttc {
  margin-top: .3rem; padding: .55rem .75rem; background-color: var(--doc-accent);
  border-radius: 8px; color: #fff; font-weight: 700;
  transition: background-color .35s var(--ease);
}
.preview .doc-totals__row--ttc strong { color: #fff; }

.preview .doc-mentions { margin-top: 1.2rem; padding-top: .8rem; border-top: 1px solid #ECE8DE; display: grid; gap: .3rem; }
.preview .doc-mentions p { font-size: .7rem; color: #6A727C; }
.preview .doc-footer { margin-top: 1rem; font-size: .68rem; color: #9AA0A8; text-align: center; }

.preview .doc-foot__ligne { display: block; }
.preview .doc-foot__ligne + .doc-foot__ligne { margin-top: .28rem; }

.preview .doc-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow: clip;
}
.preview .doc-stage__scaler { transform-origin: top left; will-change: transform; }
.preview .doc-page--fixed {

  padding: calc(var(--doc-w, 794px) * 0.0807);
  border-radius: 4px;
}
.invoice-controls__fmt {
  margin-left: auto;
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--ink-mute, #9AA0A8);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .invoice-controls__fmt { display: none; }
}

.gains__grille {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.gains__bloc {
  padding: 1.7rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.gains__bloc--risque {
  border-color: rgba(217, 104, 60, .26);
  background: linear-gradient(180deg, rgba(217, 104, 60, .05), rgba(217, 104, 60, .02));
}
.gains__tete {
  margin: 0 0 1.3rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-mute, #9AA0A8);
}
.gains__bloc--risque .gains__tete { color: var(--terracotta); }
.gains__liste { margin: 0; padding: 0; list-style: none; }

.gains__liste li {
  display: block;
  padding: .9rem 0;
  border-top: 1px solid var(--line);
}
.gains__liste li:first-child { border-top: 0; padding-top: 0; }
.gains__chiffre {
  display: block;
  margin-bottom: .18rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--ink, #1C2430);
}
.gains__bloc--risque .gains__chiffre { color: var(--terracotta); }
.gains__quoi { display: block; }
.gains__quoi { font-size: .92rem; line-height: 1.6; color: var(--ink-soft, #4A5058); }
.gains__note {
  margin: 1.3rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--ink-soft, #4A5058);
}
.gains__conclusion {
  max-width: 46rem;
  margin: 2rem auto 0;
  font-size: .95rem;
  line-height: 1.7;
  text-align: center;
  color: var(--ink-soft, #4A5058);
}

.ia__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.ia__say .section__title { margin-bottom: 1.1rem; }
.ia__lede {
  margin: 0 0 .9rem;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink-soft, #4A5058);
}
.ia__soustitre {
  margin: 1.6rem 0 .7rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-mute, #9AA0A8);
}
.ia__usages { margin: 0 0 1.4rem; padding: 0; list-style: none; }
.ia__usages li {
  padding: .55rem 0 .55rem 1.4rem;
  position: relative;
  font-size: .93rem;
  line-height: 1.62;
  color: var(--ink-soft, #4A5058);
}
.ia__usages li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}
.ia__demo {
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md, 0 10px 30px rgba(28, 36, 48, .07));
}
.ia__demo-tete {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute, #9AA0A8);
}
.ia__demo-tete img { border-radius: 6px; }
.ia__bulle {
  padding: .85rem 1rem;
  border-radius: 12px;
  font-size: .91rem;
  line-height: 1.62;
}
.ia__bulle--vous {
  margin: 0 0 .8rem auto;
  max-width: 88%;
  background: var(--encre, #1C2430);
  color: var(--ivoire, #F6F2EA);
  border-bottom-right-radius: 4px;
}
.ia__bulle--ia {
  margin-right: auto;
  max-width: 96%;
  background: rgba(246, 242, 234, .8);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink, #1C2430);
}
.ia__bulle--ia p { margin: 0 0 .65rem; }
.ia__bulle--ia p:last-child { margin-bottom: 0; }
.ia__source {
  padding-top: .55rem;
  border-top: 1px dashed rgba(28, 36, 48, .14);
  font-size: .78rem;
  color: var(--ink-mute, #9AA0A8);
}
.ia__demo-pied {
  margin: 1rem 0 0;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--ink-mute, #9AA0A8);
}

.story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: start;
}

.story__text .section__title + .story__p { margin-top: 2.3rem; }

.story__p {
  margin: 0 0 1.05rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft, #4A5058);
}

.story__h3 {
  margin: 2rem 0 .8rem;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink, #1C2430);
}
.story__h3:first-of-type { margin-top: 1.7rem; }
.story__signature {
  margin: 1.6rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .98rem;
  line-height: 1.7;
  color: var(--ink, #1C2430);
}
.story__aside {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  position: sticky;
  top: 6rem;
}
.story__aside-titre {
  margin: 0 0 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-mute, #9AA0A8);
}
.story__reperes { margin: 0; padding: 0; list-style: none; }

.story__reperes li {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: .9rem;
  align-items: center;
  padding: .8rem 0;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  line-height: 1.5;
  color: var(--ink-soft, #4A5058);
}
.story__reperes li:first-child { border-top: 0; padding-top: 0; }
.story__reperes span {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--terracotta);

  font-variant-numeric: tabular-nums;
}
.story__aside-note {
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  line-height: 1.6;
  color: var(--ink-soft, #4A5058);
}

.job-card__docs {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  border-radius: 10px;
  background: rgba(217, 104, 60, .06);
  font-size: .86rem;
  line-height: 1.58;
  color: var(--ink-soft, #4A5058);
}

.docs-communs {
  margin-top: 2.6rem;
  padding: 1.9rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.docs-communs__titre {
  margin: 0 0 .5rem;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--ink, #1C2430);
}
.docs-communs__sous {
  margin: 0 0 1.6rem;
  font-size: .93rem;
  line-height: 1.65;
  color: var(--ink-soft, #4A5058);
  max-width: 44rem;
}
.docs-communs__grille {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.docs-communs__groupe {
  margin: 0 0 .6rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.docs-communs__grille ul { margin: 0; padding: 0; list-style: none; }
.docs-communs__grille li {
  position: relative;
  padding: .32rem 0 .32rem 1rem;
  font-size: .89rem;
  line-height: 1.52;
  color: var(--ink-soft, #4A5058);
}
.docs-communs__grille li::before {
  content: "·";
  position: absolute;
  left: .2rem;
  color: var(--ink-mute, #9AA0A8);
  font-weight: 700;
}
.docs-communs__note {
  margin: 1.5rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
  line-height: 1.62;
  color: var(--ink-soft, #4A5058);
}

@media (max-width: 900px) {
  .gains__grille { grid-template-columns: 1fr; }
  .ia__inner { grid-template-columns: 1fr; }
  .story__inner { grid-template-columns: 1fr; }
  .story__aside { position: static; }
  .docs-communs__grille { grid-template-columns: 1fr; gap: 1.1rem; }
}
@media (max-width: 520px) {
  .gains__liste li { grid-template-columns: 1fr; gap: .25rem; }
  .story__reperes li { grid-template-columns: 3.2rem 1fr; }
}

.plans__essai {
  display: flex;
  align-items: center;
  gap: .6rem;
  width: fit-content;
  margin: 0 auto 2.2rem;
  padding: .62rem 1.15rem;
  border: 1px solid rgba(217, 104, 60, .3);
  border-radius: 999px;
  background: rgba(217, 104, 60, .07);
  font-size: .92rem;
  color: var(--ink, #1C2430);
  text-align: center;
}

.plan__essai-titre {
  margin: .2rem 0 .35rem;
  font-size: clamp(2.1rem, 4.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--terracotta);
}

.plan__essai-titre--or { color: #F2A65A; }
.plan__puis {
  margin-right: .3rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-mute, #9AA0A8);
}

.plan__list li {
  align-items: start;
}
.plan__list li .check {
  flex: 0 0 auto;
  margin-top: .18rem;
}

.compare {
  margin-top: 3.2rem;
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.compare__titre {
  margin: 0 0 .5rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--ink, #1C2430);
}
.compare__sous {
  margin: 0 0 1.7rem;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft, #4A5058);
  max-width: 46rem;
}
.compare__grille {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.compare__col { padding: 1.15rem 1.25rem; border-radius: 12px; }
.compare__col ul { margin: 0; padding: 0; list-style: none; }
.compare__col li {
  position: relative;
  padding: .42rem 0 .42rem 1.35rem;
  font-size: .92rem;
  line-height: 1.55;
}
.compare__col li::before {
  position: absolute;
  left: 0;
  top: .42rem;
  font-weight: 700;
}
.compare__tete {
  margin: 0 0 .7rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.compare__col--autre { background: rgba(28, 36, 48, .035); }
.compare__col--autre .compare__tete { color: var(--ink-mute, #9AA0A8); }
.compare__col--autre li { color: var(--ink-soft, #4A5058); }
.compare__col--autre li::before { content: "—"; color: var(--ink-mute, #9AA0A8); }
.compare__col--fluma {
  background: rgba(217, 104, 60, .06);
  border: 1px solid rgba(217, 104, 60, .18);
}
.compare__col--fluma .compare__tete { color: var(--terracotta); }
.compare__col--fluma li { color: var(--ink, #1C2430); }
.compare__col--fluma li::before { content: "✓"; color: var(--terracotta); }

@media (max-width: 700px) {
  .compare__grille { grid-template-columns: 1fr; }
  .compare { padding: 1.5rem 1.2rem; }
}

.reform__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.reform__say .section__title { margin-bottom: 1.1rem; }
.reform__lede {
  margin: 0 0 .9rem;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink-soft, #4A5058);
}

.reform__timeline {
  position: relative;
  margin: .4rem 0 0;
  padding: 0 0 0 1.9rem;
  list-style: none;
}

.reform__timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: .55rem;
  bottom: calc(100% - 100% + 2.2rem);
  height: calc(100% - 3.4rem);
  width: 2px;
  background: linear-gradient(180deg, var(--terracotta) 0%, rgba(217, 104, 60, .22) 100%);
}
.reform__step { position: relative; padding-bottom: 1.75rem; }
.reform__step:last-child { padding-bottom: 0; }
.reform__dot {
  position: absolute;
  left: -1.9rem;
  top: .38rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(217, 104, 60, .35);
}

.reform__step--pivot .reform__dot {
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(217, 104, 60, .14);
}
.reform__step--now .reform__dot { border-color: rgba(28, 36, 48, .28); }
.reform__when {
  margin: 0 0 .28rem;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink, #1C2430);
}
.reform__step--pivot .reform__when { color: var(--terracotta); }
.reform__what {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink-soft, #4A5058);
}

@media (max-width: 860px) {
  .reform__inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

.plans .section__head {
  margin-inline: auto;
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 66rem;
  margin-inline: auto;
}
@media (min-width: 820px) {
  .plans-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(2.2rem, 4vw, 3rem) clamp(1.9rem, 3.5vw, 2.6rem) clamp(2rem, 3.5vw, 2.4rem);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); }

.plan__name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: .45rem;
}
.plan__amount {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.plan__period { font-size: 1.2rem; font-weight: 500; }
.plan__desc   { font-size: 1.05rem; }

.plan__list {
  display: grid;
  gap: .8rem;
  margin-block: .5rem .8rem;
}
.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: 1rem;
  font-weight: 500;
}
.plan__list .check { margin-top: .2em; }

.plan .btn { width: 100%; margin-top: auto; }
.plan__note {
  font-size: .8125rem;
  text-align: center;
}

.js .plan .check path {
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
}
.js .plan.is-visible .check path {
  animation: check-draw .45s var(--ease) forwards;
}
.js .plan.is-visible .plan__list li:nth-child(1) .check path { animation-delay: .30s; }
.js .plan.is-visible .plan__list li:nth-child(2) .check path { animation-delay: .42s; }
.js .plan.is-visible .plan__list li:nth-child(3) .check path { animation-delay: .54s; }
.js .plan.is-visible .plan__list li:nth-child(4) .check path { animation-delay: .66s; }
.js .plan.is-visible .plan__list li:nth-child(5) .check path { animation-delay: .78s; }

.plan--pro {
  background-color: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.plan--pro .plan__name   { color: var(--terracotta-text); }
.plan--pro .plan__amount { color: var(--encre); }
.plan--pro .plan__period,
.plan--pro .plan__desc,
.plan--pro .plan__note   { color: var(--encre-45); }
.plan--pro .plan__list li { color: var(--encre-80); }

.plan--expert {
  position: relative;
  color: var(--ivoire);
  background: linear-gradient(180deg, #243040, #1E2836);
  border: 1px solid rgba(242, 166, 90, .45);
  box-shadow: 0 24px 55px rgba(28, 36, 48, .28);
}
.plan--expert:hover {
  box-shadow: 0 30px 65px rgba(28, 36, 48, .34), 0 0 34px rgba(217, 104, 60, .22);
}

.plan__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;

  --halo: 320px;
  background-image: radial-gradient(
    var(--halo) var(--halo) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
    rgba(242, 166, 90, .16), transparent 70%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .45s ease;
}

.plan--expert:hover .plan__shine { opacity: 1; }

.plan--expert::before,
.plan--expert::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 2px solid transparent;
  border-radius: inherit;
  background-attachment: fixed;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s ease;
  -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
  mask: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.plan--expert::before {
  background-image: radial-gradient(
    240px 240px at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
    rgba(242, 166, 90, .95), transparent 100%);
  filter: brightness(1.4);
}

.plan--expert::after {
  background-image: radial-gradient(
    110px 110px at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
    rgba(255, 250, 242, .85), transparent 100%);
}
.plan--expert:hover::before,
.plan--expert:hover::after { opacity: 1; }

@media (hover: none), (prefers-reduced-motion: reduce) {
  .plan--expert:hover .plan__shine,
  .plan--expert:hover::before,
  .plan--expert:hover::after { opacity: 0; }
}

.plan--expert .plan__name   { color: #F2A65A; }
.plan--expert .plan__period { color: rgba(246, 242, 234, .55); }
.plan--expert .plan__desc   { color: var(--ivoire-72); }
.plan--expert .plan__note   { color: rgba(246, 242, 234, .5); }
.plan--expert .plan__list li { color: rgba(246, 242, 234, .88); }
.plan--expert .check { stroke: #F2A65A; }

.plan--expert .plan__amount {
  background: linear-gradient(100deg, #F6F2EA 25%, #F2A65A 50%, #F6F2EA 75%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}

.plan--expert .btn--primary {
  box-shadow: 0 8px 30px rgba(217, 104, 60, .55);
}
.plan--expert .btn--primary:hover {
  box-shadow: 0 12px 38px rgba(217, 104, 60, .65);
}

.plan__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .34rem .85rem;
  background-color: #2A3546;
  border: 1px solid rgba(242, 166, 90, .55);
  border-radius: var(--radius-pill);
  color: #F2A65A;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(217, 104, 60, .45);
}
.plan__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #F2A65A;
  animation: dot-pulse-gold 2.4s var(--ease) infinite;
}

.plan__includes {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .9rem;
  background-color: rgba(217, 104, 60, .14);
  border: 1px solid rgba(217, 104, 60, .35);
  border-radius: var(--radius-sm);
  color: #F2A65A;
  font-size: .9rem;
  font-weight: 600;
}
.plan__includes svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}
@keyframes check-draw { to { stroke-dashoffset: 0; } }
@keyframes dot-pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(242, 166, 90, .4); }
  70%  { box-shadow: 0 0 0 8px rgba(242, 166, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 166, 90, 0); }
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .jobs-grid { grid-template-columns: repeat(3, 1fr); }
}

.job-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.job-card__photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.job-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.job-card:hover .job-card__photo img { transform: scale(1.05); }

.job-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 1.6rem 1.6rem 1.8rem;
}

.job-card__tag {
  align-self: flex-start;
  padding: .28rem .7rem;
  background-color: var(--terracotta-tint);
  color: var(--terracotta-text);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.job-card__title { font-size: 1.3rem; }

.job-card__text {
  color: var(--encre-64);
  font-size: .975rem;
}

.job-card__sub {
  margin-top: .25rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--encre-45);
}

.job-card__list {
  display: grid;
  gap: .5rem;
}
.job-card__list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--encre-80);
}
.job-card__list .check { margin-top: .2em; }

.why { background-color: var(--ivoire-soft); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.75rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.why-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: var(--terracotta-tint);
  color: var(--terracotta);
}
.why-item__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-item__title {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}
.why-item__text {
  color: var(--encre-64);
  font-size: .95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 52rem;
  margin-inline: auto;
}
@media (min-width: 760px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-grid--single { max-width: 34rem; }
@media (min-width: 760px) {
  .contact-grid--single { grid-template-columns: 1fr; }
}
.contact-link {
  display: inline-block;
  margin-top: .35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--encre);
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color .18s var(--ease);
}
.contact-link:hover { color: var(--terracotta-text); }
.contact-note {
  max-width: 52rem;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: .9375rem;
  color: var(--encre-45);
}

.auth {
  display: grid;
  place-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.auth-card {
  width: 100%;
  max-width: 26.5rem;
  padding: 2.2rem 1.9rem 1.9rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: card-in .5s var(--ease) both;
}
.auth-card__title {
  font-size: 1.45rem;
  text-align: center;
}
.auth-card__sub {
  margin-top: .4rem;
  text-align: center;
  font-size: .95rem;
  color: var(--encre-64);
}

.auth-tabs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  margin-block: 1.4rem 1.5rem;
  background-color: var(--ivoire);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.auth-tabs__indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background-color: var(--surface);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.auth-tabs[data-tab="signup"] .auth-tabs__indicator { transform: translateX(100%); }
.auth-tabs button {
  position: relative;
  z-index: 1;
  padding: .55rem .5rem;
  background: none;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .9375rem;
  color: var(--encre-64);
  transition: color .2s var(--ease);
}
.auth-tabs button[aria-selected="true"] { color: var(--encre); }

.field {
  display: grid;
  gap: .4rem;
  margin-bottom: 1.05rem;
}
.field label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--encre-80);
}
.field__control { position: relative; }
.field input {
  width: 100%;
  padding: .75rem .95rem;
  font: inherit;
  color: var(--encre);
  background-color: var(--ivoire-soft);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217, 104, 60, .16);
}
.field input::placeholder { color: var(--encre-45); }

.field__toggle {
  position: absolute;
  right: .4rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 0;
  border-radius: 8px;
  color: var(--encre-45);
  transition: color .18s var(--ease);
}
.field__toggle:hover { color: var(--encre); }
.field__toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.field__toggle .eye-off { display: none; }
.field__toggle.is-visible .eye     { display: none; }
.field__toggle.is-visible .eye-off { display: block; }

.auth-error {
  display: none;
  margin: -.2rem 0 .9rem;
  font-size: .875rem;
  font-weight: 500;
  color: #A8451D;
}
.auth-error.is-visible { display: block; }

.field[hidden], .pwd-meter[hidden] { display: none; }
.pwd-meter {
  display: grid;
  gap: .35rem;
  margin: -.45rem 0 1.05rem;
}
.pwd-meter__track {
  height: 7px;
  border-radius: var(--radius-pill);
  background-color: var(--ivoire);
  border: 1px solid var(--line);
  overflow: hidden;
}
.pwd-meter__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--radius-pill);
  transition: width .25s var(--ease), background-color .25s var(--ease);
}
.pwd-meter[data-level="1"] .pwd-meter__fill { width: 25%;  background-color: #C0392B; }
.pwd-meter[data-level="2"] .pwd-meter__fill { width: 50%;  background-color: #D97A2B; }
.pwd-meter[data-level="3"] .pwd-meter__fill { width: 75%;  background-color: #C6913A; }
.pwd-meter[data-level="4"] .pwd-meter__fill { width: 100%; background-color: #2F7D4E; }
.pwd-meter__label { font-size: .78rem; color: var(--encre-45); }
.pwd-meter[data-level="1"] .pwd-meter__label { color: #C0392B; }
.pwd-meter[data-level="2"] .pwd-meter__label { color: #B26018; }
.pwd-meter[data-level="3"] .pwd-meter__label { color: #9A6A14; }
.pwd-meter[data-level="4"] .pwd-meter__label { color: #2F7D4E; font-weight: 600; }

.auth-form .btn { width: 100%; }
.auth-note {
  margin-top: 1.15rem;
  text-align: center;
  font-size: .8125rem;
  color: var(--encre-45);
}

.auth-success { display: none; text-align: center; }
.auth-card.is-authed .auth-view    { display: none; }
.auth-card.is-authed .auth-success { display: block; animation: card-in .45s var(--ease) both; }

.auth-success__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: var(--terracotta-tint);
  color: var(--terracotta-text);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.auth-success__title { font-size: 1.35rem; }
.auth-success__email {
  margin-top: .3rem;
  font-weight: 600;
  color: var(--encre-80);
  overflow-wrap: anywhere;
}
.auth-success__chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .9rem;
  padding: .3rem .8rem;
  background-color: var(--ivoire);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--encre-64);
}
.auth-success__text {
  margin-top: 1rem;
  font-size: .9375rem;
  color: var(--encre-64);
}
.auth-success__actions {
  display: grid;
  gap: .7rem;
  margin-top: 1.4rem;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(14px) scale(.99); }
  to   { opacity: 1; transform: none; }
}

.cta-band__inner {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  background-color: var(--encre);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--ivoire);
}
.cta-band__title {
  color: var(--ivoire);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}
.cta-band__text {
  max-width: 34rem;
  margin: 1rem auto 2rem;
  color: var(--ivoire-72);
  font-size: 1.0625rem;
}

.site-footer {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.site-footer .brand__mark { height: 26px; }
.site-footer__tagline {
  margin-top: .6rem;
  color: var(--encre-64);
  font-size: .9375rem;
}
.site-footer__legal {
  font-weight: 500;
  color: var(--encre-64);
}
.site-footer__copy {
  margin-top: .35rem;
  font-size: .875rem;
  color: var(--encre-45);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.75rem;
  transform: translate(-50%, 1.5rem);
  z-index: 300;
  max-width: min(92vw, 24rem);
  padding: .85rem 1.25rem;
  background-color: var(--encre);
  color: var(--ivoire);
  font-size: .9375rem;
  text-align: center;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217, 104, 60, .35); }
  70%  { box-shadow: 0 0 0 9px rgba(217, 104, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 104, 60, 0); }
}
@keyframes invoice-swap {
  from { opacity: .45; transform: translateY(8px) scale(.985); }
  to   { opacity: 1;   transform: none; }
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero__inner > .reveal:nth-child(2) { transition-delay: .08s; }
.hero__inner > .reveal:nth-child(3) { transition-delay: .16s; }
.hero__inner > .reveal:nth-child(4) { transition-delay: .24s; }
.hero__inner > .reveal:nth-child(5) { transition-delay: .32s; }
.benefits__grid > li:nth-child(2)   { transition-delay: .12s; }
.benefits__grid > li:nth-child(3)   { transition-delay: .24s; }
.jobs-grid > li:nth-child(2)        { transition-delay: .12s; }
.jobs-grid > li:nth-child(3)        { transition-delay: .24s; }
.why-grid > li:nth-child(2)         { transition-delay: .1s; }
.why-grid > li:nth-child(3)         { transition-delay: .2s; }
.why-grid > li:nth-child(4)         { transition-delay: .3s; }
.plans-grid > .plan:nth-child(2)    { transition-delay: .15s; }

@media (min-width: 720px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .preview__inner { grid-template-columns: 1.05fr 1fr; }
  .invoice-panel { margin-inline: 0 0; margin-left: auto; }
}

@media (max-width: 767px) {
  :root { --header-h: 64px; }

  .brand__mark { height: 27px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 1.25rem;
    padding: 1.4rem var(--gutter) 1.75rem;
    background-color: var(--encre);
    border-bottom: 1px solid var(--ivoire-12);
    box-shadow: 0 24px 40px rgba(28, 36, 48, .35);

    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
  }
  .nav__link {
    display: block;
    padding: .65rem 0;
    font-size: 1.1rem;
    color: var(--ivoire-72);
  }
  .nav__link.is-active,
  .nav__link:hover { color: var(--ivoire); }
  .nav .btn { width: 100%; margin-left: 0; }

  .nav__account {
    width: 100%;
    max-width: none;
    margin-left: 0;
    justify-content: flex-start;
    padding: .45rem .9rem .45rem .45rem;
  }

  .invoice-controls {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .invoice-controls .select { flex: 1; min-width: 11rem; }
}

.nav__link--espace {
  padding: .42rem 1rem;
  border: 1px solid rgba(246, 242, 234, .35);
  border-radius: var(--radius-pill);
  transition: border-color .18s var(--ease), color .18s var(--ease), background-color .18s var(--ease);
}
.nav__link--espace:hover {
  border-color: rgba(246, 242, 234, .7);
  background-color: rgba(246, 242, 234, .07);
}
@media (max-width: 767px) {
  .nav__link--espace {
    display: inline-block;
    padding: .5rem 1.15rem;
    margin-top: .35rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.spinner {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: spin .6s linear infinite;
}
.btn.is-loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.btn--danger {
  background-color: #C0392B;
  color: #fff;
  box-shadow: 0 6px 16px rgba(192, 57, 43, .25);
}
.btn--danger:hover {
  background-color: #A93226;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(192, 57, 43, .3);
}
.btn--danger:active { transform: translateY(0); }

.nav__account {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  max-width: min(15rem, 42vw);
  padding: .3rem .8rem .3rem .35rem;
  border: 1px solid rgba(246, 242, 234, .3);
  border-radius: var(--radius-pill);
  color: var(--ivoire);
  font-weight: 600;
  font-size: .9rem;
  transition: border-color .18s var(--ease), background-color .18s var(--ease), transform .18s var(--ease);
}
.nav__account:hover {
  border-color: rgba(246, 242, 234, .65);
  background-color: rgba(246, 242, 234, .08);
  transform: translateY(-1px);
}
.nav__account-avatar {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.nav__account-email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acc-checking #contenu { opacity: 0; }

.account {
  padding-block: clamp(1.75rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
}

.account-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: linear-gradient(135deg, var(--encre) 0%, #2b3746 100%);
  color: var(--ivoire);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.account-hero__id {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.account-hero__avatar {
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(217, 104, 60, .35);
}
.account-hero__meta { min-width: 0; }
.account-hero__eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ivoire-72);
}
.account-hero__email {
  margin-top: .15rem;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 700;
  color: var(--ivoire);
  overflow-wrap: anywhere;
}
.account-hero__plan { margin-top: .55rem; }
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .28rem .75rem;
  background-color: var(--ivoire-12);
  border: 1px solid rgba(246, 242, 234, .2);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ivoire);
}
.plan-badge .dot { background-color: var(--terracotta); }
.account-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.account-hero .btn--ghost {
  color: var(--ivoire);
  border-color: rgba(246, 242, 234, .35);
}
.account-hero .btn--ghost:hover {
  background-color: rgba(246, 242, 234, .1);
  border-color: var(--ivoire);
}

.account-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 860px) {
  .account-layout { grid-template-columns: 232px 1fr; align-items: start; }
  .account-nav { position: sticky; top: calc(var(--header-h) + 1rem); }
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .5rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.account-nav__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .85rem;
  background: none;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  color: var(--encre-64);
  text-align: left;
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.account-nav__item svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.account-nav__item:hover { background-color: var(--ivoire); color: var(--encre); }
.account-nav__item.is-active { background-color: var(--terracotta-tint); color: var(--terracotta-text); }
.account-nav__item--danger.is-active { background-color: rgba(192, 57, 43, .1); color: #B23A2A; }
@media (max-width: 859px) {
  .account-nav { flex-direction: row; overflow-x: auto; }
  .account-nav__item { white-space: nowrap; }
}

.account-panels { min-width: 0; }
.account-panel {
  display: grid;
  gap: 1rem;
  animation: card-in .4s var(--ease) both;
}
.account-panel[hidden] { display: none; }
.panel-head__title { font-size: 1.4rem; }
.panel-head__sub { margin-top: .25rem; color: var(--encre-64); font-size: .95rem; }

.setting-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.setting-card__body { flex: 1 1 16rem; min-width: 0; }
.setting-card__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--encre-45);
}
.setting-card__title { font-weight: 700; font-size: 1.05rem; }
.setting-card__value {
  margin-top: .3rem;
  font-weight: 600;
  color: var(--encre-80);
  overflow-wrap: anywhere;
}
.setting-card__hint {
  margin-top: .35rem;
  font-size: .9rem;
  color: var(--encre-64);
  line-height: 1.55;
}
.setting-card__note {
  margin-top: .6rem;
  font-size: .9rem;
  font-weight: 600;
  color: #2F7D4E;
}
.setting-card__note[hidden] { display: none; }
.setting-card__action { flex-shrink: 0; }
.setting-card--danger {
  border-color: rgba(192, 57, 43, .3);
  background-color: rgba(192, 57, 43, .04);
}

.setting-card--plan { align-items: flex-start; }
.current-plan { margin-top: .35rem; }
.current-plan__name {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--encre);
}

.plan-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-mini {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.2rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.plan-mini.is-current {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-tint);
}
.plan-mini__name { font-weight: 700; }
.plan-mini__price { font-size: 1.4rem; font-weight: 800; }
.plan-mini__price span {
  margin-left: .2rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--encre-45);
}
.plan-mini__desc { flex: 1; font-size: .88rem; color: var(--encre-64); line-height: 1.5; }
.plan-mini__tag {
  align-self: flex-start;
  margin-top: .3rem;
  padding: .2rem .65rem;
  background-color: var(--terracotta-tint);
  color: var(--terracotta-text);
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 700;
}
.plan-mini .btn { margin-top: .4rem; align-self: flex-start; }

.inline-form {
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.inline-form[hidden] { display: none; }
.inline-form .field { margin-bottom: .6rem; }
.inline-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.inline-form__msg {
  margin: .1rem 0 .7rem;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.5;
}
.inline-form__msg:empty { display: none; }
.inline-form__msg.is-error { color: #A8451D; }
.inline-form__msg.is-success { color: #2F7D4E; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 36, 48, .55);
  animation: fade-in .2s ease both;
}
.modal__card {
  position: relative;
  width: 100%;
  max-width: 27rem;
  padding: 1.9rem 1.7rem 1.7rem;
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: card-in .3s var(--ease) both;
}
.modal__icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: .9rem;
  border-radius: 50%;
}
.modal__icon--danger { background-color: rgba(192, 57, 43, .12); color: #C0392B; }
.modal__icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modal__title { font-size: 1.3rem; }
.modal__text { margin-top: .5rem; font-size: .95rem; color: var(--encre-64); line-height: 1.55; }
.modal__card .field { margin: 1.2rem 0 0; text-align: left; }

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: .7rem;
  margin-top: 1.1rem;
}
.modal__actions > .btn {
  flex: 1 1 auto;
  min-width: 0;
  padding-inline: 1.1rem;
}
.modal__actions--single > .btn { flex: 1 1 100%; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 520px) {
  .account-hero__actions { width: 100%; }
  .account-hero__actions .btn { flex: 1; }
  .setting-card__action { width: 100%; }
  .setting-card__action .btn { width: 100%; }
}

.auth-tabs[hidden] { display: none; }
.auth-aux {
  display: flex;
  align-items: center;
  margin: -.3rem 0 .9rem;
}
#auth-forgot-link { margin-left: auto; }
.auth-link {
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: var(--terracotta-text);
  cursor: pointer;
  transition: color .18s var(--ease);
}
.auth-link:hover { color: var(--terracotta-ink); text-decoration: underline; }

.mini-badge {
  display: inline-block;
  margin-left: .5rem;
  padding: .12rem .5rem;
  vertical-align: middle;
  background-color: var(--ivoire);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--encre-45);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
}
.feat-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.feat-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: .8rem;
  border-radius: 12px;
  background-color: var(--terracotta-tint);
  color: var(--terracotta);
}
.feat-card__ico svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.feat-card .expert-tag { margin-bottom: .55rem; }

.feat-card__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}
.feat-card__head .feat-card__ico { margin-bottom: 0; }
.feat-card__head .expert-tag { margin-bottom: 0; margin-left: auto; align-self: center; }
.feat-card__title { font-size: 1.02rem; margin-bottom: .4rem; line-height: 1.35; }
.feat-card__text { font-size: .875rem; color: var(--encre-64); line-height: 1.55; }
.feat-card__text strong { color: var(--encre); font-weight: 700; }
@media (max-width: 980px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }

.assure-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 2.2rem;
  margin-top: 1.4rem;
  padding: 1.05rem 1.5rem;
  background-color: var(--encre);
  border-radius: var(--radius-lg);
}
.assure-band p {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ivoire);
}
.assure-band strong { font-weight: 700; }
.assure-band svg {
  flex: none;
  width: 17px; height: 17px;
  fill: none;
  stroke: #F2A65A;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expert-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  align-self: flex-start;
  margin-bottom: .7rem;
  padding: .28rem .75rem;
  background-color: rgba(198, 145, 58, .14);
  border: 1px solid rgba(198, 145, 58, .3);
  border-radius: var(--radius-pill);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ocre-text);
}
.expert-tag .dot { background-color: var(--ocre-deep); }
.inline-expert { color: var(--ocre-text); font-weight: 700; }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__cell--lead { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--lead { grid-column: auto; }
}

.diff-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.6rem, 4vw, 3.2rem);
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line-strong);
}
.diff-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(.85rem, 2vw, 1.3rem);
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.diff-row__idx {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--terracotta-text);
  font-variant-numeric: tabular-nums;
}
.diff-row__body h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.diff-row__body p { color: var(--encre-64); font-size: .92rem; line-height: 1.55; max-width: 52ch; }
.diff-row__body p strong { color: var(--encre); font-weight: 700; }
.diff-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .7rem;
}
.diff-chips li {
  padding: .28rem .75rem;
  background-color: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  color: var(--encre-80);
}
@media (max-width: 780px) { .diff-list { grid-template-columns: 1fr; } }

.manifesto .section__eyebrow { margin-bottom: 1rem; }
.manifesto__lead {
  max-width: 34ch;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--encre);
}
.manifesto__lead mark {
  background: linear-gradient(transparent 62%, var(--terracotta-tint) 62%);
  color: inherit;
  padding: 0 .05em;
}
.manifesto__sub {
  max-width: 64ch;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--encre-64);
}

.manifesto__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.shelf {
  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 1.5rem 0;
  margin-left: clamp(1rem, 4vw, 3rem);
}
.shelf__book {
  position: relative;
  flex: none;
  width: 50%;
  aspect-ratio: 5 / 8;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(28, 36, 48, .22);
  transform-origin: 50% 100%;

  transition: transform .5s cubic-bezier(.22, 1.4, .36, 1), box-shadow .5s var(--ease);
}
.shelf__book + .shelf__book { margin-left: -16%; }
.shelf__book:nth-child(1) { z-index: 1; }
.shelf__book:nth-child(2) { z-index: 2; }
.shelf__book:nth-child(3) { z-index: 3; }
.shelf__book img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shelf__book:nth-child(1) img { object-position: 62% 20%; }
.shelf__book:nth-child(2) img { object-position: 30% 55%; }
.shelf__book:nth-child(3) img { object-position: 36% 50%; }

.shelf__book:hover {
  transform: translateY(-16%) rotate(-4deg);
  z-index: 5;
  box-shadow: 0 28px 48px rgba(28, 36, 48, .32);
}

@media (prefers-reduced-motion: reduce) {
  .shelf__book { transition: box-shadow .3s var(--ease); }
  .shelf__book:hover { transform: none; }
}

@media (max-width: 920px) {
  .manifesto__inner { grid-template-columns: 1fr; }
  .shelf { max-width: 400px; margin: .5rem auto 0; }
}

@media (max-width: 620px) {
  .shelf { max-width: 82%; padding: 1rem 0; }
}

.text-link {
  font-weight: 700;
  color: var(--terracotta-text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .18s var(--ease);
}
.text-link:hover { color: var(--terracotta-ink); }

.cap-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
}
.cap-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.4rem;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.cap-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.cap-tile__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: .9rem;
  border-radius: 12px;
  background-color: var(--terracotta-tint);
  color: var(--terracotta);
}
.cap-tile__ico svg {
  width: 24px; height: 24px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.cap-tile__title { font-size: 1.1rem; margin-bottom: .35rem; }
.cap-tile__text { font-size: .92rem; color: var(--encre-64); line-height: 1.55; }

.cap-tile__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .9rem;
}
.cap-tile__head .cap-tile__ico { margin-bottom: 0; }
.cap-tile__head .expert-tag { margin-bottom: 0; margin-left: auto; align-self: center; }
@media (max-width: 900px) { .cap-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .cap-strip { grid-template-columns: 1fr; } }

sup.plan__ttc {
  margin-left: .3rem;
  padding: .14rem .42rem;
  border-radius: var(--radius-pill);
  background-color: var(--terracotta-tint);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1;
  color: var(--terracotta-text);
  vertical-align: top;
  position: relative;
  top: .18em;
}
.plan--expert sup.plan__ttc {
  background-color: rgba(246, 242, 234, .14);
  color: #F2A65A;
}

.plans__foot {
  max-width: 58ch;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  text-align: center;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--encre-64);
}
.plans__foot strong { color: var(--encre); font-weight: 700; }

.footer-legal {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--encre-64);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .18s var(--ease);
}
.footer-legal:hover { color: var(--terracotta-text); }

.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(28, 36, 48, .55);
  backdrop-filter: blur(3px);
}
.legal-overlay[hidden] { display: none; }

.legal-modal {
  display: flex;
  flex-direction: column;
  width: min(920px, 100%);
  max-height: min(85vh, 56rem);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: legal-pop .3s var(--ease);
}
@keyframes legal-pop {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.legal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem .85rem;
}
.legal-head h2 { font-size: 1.3rem; letter-spacing: -.01em; }
.legal-close {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  color: var(--encre);
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.legal-close:hover { background: var(--encre); color: var(--ivoire); }
.legal-close svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0 1.5rem .95rem;
  border-bottom: 1px solid var(--line);
}
.legal-tab {
  padding: .4rem .95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: none;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  color: var(--encre-80);
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.legal-tab:hover { border-color: var(--encre); }
.legal-tab.is-active {
  background: var(--encre);
  border-color: var(--encre);
  color: var(--ivoire);
}

.legal-body {
  overflow-y: auto;
  padding: 1.3rem 1.5rem 1.9rem;
  overscroll-behavior: contain;
}
.legal-updated {
  font-size: .82rem;
  font-weight: 500;
  color: var(--encre-45);
}
.legal-body h3 {
  margin: 1.4rem 0 .45rem;
  font-size: 1.02rem;
  color: var(--encre);
}

.legal-body h4 {
  margin: 1rem 0 .35rem;
  font-size: .94rem;
  color: var(--encre-80);
}
.legal-body p {
  margin-bottom: .55rem;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--encre-80);
}
.legal-body p strong { color: var(--encre); font-weight: 700; }
.legal-body ul {
  margin: .15rem 0 .7rem;
  padding-left: 1.15rem;
  display: grid;
  gap: .28rem;
  list-style: disc;
}
.legal-body li {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--encre-80);
}
.legal-body li::marker { color: var(--terracotta); }
.legal-body a {
  font-weight: 600;
  color: var(--terracotta-text);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--terracotta-ink); }

@media (max-width: 620px) {
  .preview .doc-page--fixed {
    width: 100% !important;
    height: auto !important;
    --doc-w: 100%;
  }
  .preview .doc-stage { height: auto !important; }
  .preview .doc-stage__scaler { transform: none !important; }

  .preview .doc-page { padding: 1rem .85rem; }

  .preview .doc-head { flex-wrap: wrap; gap: .7rem; }
  .preview .doc-head__logo { flex: none; }
  .preview .doc-head__emitter { flex: 1 1 100%; font-size: .7rem; }

  .preview .doc-title { gap: .4rem; }
  .preview .doc-title h2 { font-size: 1.05rem; }
  .preview .doc-title .doc-dates { flex: 1 1 100%; text-align: left; font-size: .72rem; }

  .preview .doc-parties { gap: .9rem; }
  .preview .doc-party { flex: 1 1 100%; font-size: .74rem; }

  .preview .doc-lines { table-layout: fixed; font-size: .72rem; }
  .preview .doc-lines th { padding: .35rem .25rem; font-size: .6rem; letter-spacing: .01em; }
  .preview .doc-lines td { padding: .4rem .25rem; overflow-wrap: anywhere; }
  .preview .doc-lines th:first-child,
  .preview .doc-lines td:first-child { width: 40%; }

  .preview .doc-totals { width: 100%; }
  .preview .doc-mentions p { font-size: .64rem; }
  .preview .doc-refs, .preview .doc-formation { font-size: .68rem; }
  .preview .doc-formation { padding: .55rem .65rem; }
  .preview .doc-footer { font-size: .6rem; }
}

@media (max-width: 620px) {
  .preview .doc-footer,
  .preview .doc-head__line,
  .preview .doc-party,
  .legal-body p,
  .contact-link { overflow-wrap: anywhere; }
}

@media (max-width: 480px) {
  :root { --gutter: 1rem; }
  .invoice-panel { max-width: none; }
  .invoice-controls { flex-wrap: wrap; gap: .5rem; }

  .cta-band__actions .btn,
  .hero__actions .btn { width: 100%; }
  .modal__actions > .btn { flex: 1 1 100%; }
}

.avis-page { padding-bottom: clamp(3rem, 7vw, 5rem); }

.avis-scene {
  position: relative;

  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(9rem, 15vw, 12rem);
  overflow: hidden;
  background: var(--encre);
  color: var(--ivoire);
}

.avis-scene__halo {
  position: absolute;
  top: -34%;
  right: -12%;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 104, 60, .32), transparent 62%);
  pointer-events: none;
}
.avis-scene__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.avis-scene__sur {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: .38rem .9rem;
  border: 1px solid var(--ivoire-12);
  border-radius: var(--radius-pill);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivoire-72);
}
.avis-scene__titre {
  margin: 0 0 1.9rem;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;

  color: var(--ivoire);
}

.avis-scene__titre em {
  font-style: normal;
  color: #F2A65A;
}
.avis-scene__agir {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem 1.3rem;
  margin: 0;
}

.avis-bouton {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.65rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--terracotta);
  color: #FFF;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.avis-bouton svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.avis-bouton[disabled] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}
.avis-bouton__note {
  max-width: 18rem;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--ivoire-72);
}
.avis-bouton__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.avis-note {
  padding: 1.7rem 1.8rem;
  border: 1px solid var(--ivoire-12);
  border-radius: var(--radius-lg);
  background: rgba(246, 242, 234, .05);
}
.avis-note__chiffre {
  margin: 0;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.avis-note__chiffre span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivoire-72);
}
.avis-note__etoiles {
  display: flex;
  gap: .15rem;
  margin: .75rem 0 .4rem;
}
.avis-note__total {
  margin: 0 0 1.3rem;
  font-size: .9rem;
  color: var(--ivoire-72);
}

.avis-repart {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.avis-repart li {
  display: grid;
  grid-template-columns: 2.4rem 1fr 1.2rem;
  align-items: center;
  gap: .6rem;
}
.avis-repart__lib {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ivoire-72);
}
.avis-repart__lib .avis-etoile { width: .8rem; height: .8rem; }
.avis-repart__jauge {
  height: 6px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--ivoire-12);
}
.avis-repart__jauge i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #E0A02F;
}
.avis-repart__nb {
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: var(--ivoire-72);
}

.avis-bandeau {
  --avis-ecart: 1.25rem;
  position: relative;

  margin-top: clamp(-8.5rem, -11vw, -6rem);
  overflow: hidden;

  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.avis-piste {
  display: flex;
  gap: var(--avis-ecart);
  width: max-content;
  animation: avis-defile 70s linear infinite;
}

@keyframes avis-defile {
  to { transform: translateX(calc(-50% - var(--avis-ecart) / 2)); }
}

.avis-bandeau:hover .avis-piste,
.avis-bandeau:focus-within .avis-piste { animation-play-state: paused; }

.avis-groupe {
  display: flex;
  gap: var(--avis-ecart);

  margin: 0;
  padding: .7rem 0 1.8rem;
  list-style: none;
}

.avis-carte {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: .95rem;
  width: 21.5rem;
  padding: 1.55rem 1.65rem;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(12, 18, 28, .18), 0 2px 6px rgba(12, 18, 28, .10);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.avis-carte:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(12, 18, 28, .24), 0 4px 10px rgba(12, 18, 28, .12);
}

.avis-carte__tete {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.avis-carte__logo {
  display: grid;
  flex: none;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: var(--encre);
  color: var(--ivoire);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.avis-groupe li:nth-child(3n + 1) .avis-carte__logo { background: var(--terracotta); }
.avis-groupe li:nth-child(3n + 3) .avis-carte__logo { background: var(--ocre-deep); }

.avis-carte__nom {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.avis-carte__etoiles {
  display: flex;
  gap: .1rem;
  margin: .25rem 0 0;
}
.avis-etoile {
  width: 1rem;
  height: 1rem;
  fill: #E0A02F;
}
.avis-etoile--vide { fill: rgba(28, 36, 48, .15); }

.avis-carte__texte {
  margin: 0;
  font-size: .96rem;
  line-height: 1.65;
  color: var(--encre-64);
}

.avis-carte__texte--muet {
  font-style: italic;
  color: var(--encre-45);
}

.avis-scene__dire > .reveal:nth-child(2) { transition-delay: .08s; }
.avis-scene__dire > .reveal:nth-child(3) { transition-delay: .16s; }
.avis-note.reveal { transition-delay: .24s; }
.avis-bandeau.reveal { transition-delay: .3s; }

@media (max-width: 900px) {
  .avis-scene__inner { grid-template-columns: 1fr; }
  .avis-note {
    justify-self: start;
    width: 100%;
    max-width: 24rem;
  }
}

@media (max-width: 720px) {
  .avis-scene { padding-bottom: clamp(8rem, 24vw, 10rem); }
  .avis-bandeau {
    --avis-ecart: .9rem;
    margin-top: clamp(-7rem, -16vw, -5rem);
  }

  .avis-carte {
    width: min(19rem, 78vw);
    padding: 1.3rem 1.35rem;
  }

  .avis-piste { animation-duration: 46s; }
  .avis-bouton__note { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .avis-piste {
    width: auto;
    animation: none;
  }
  .avis-bandeau {
    overflow-x: auto;
    padding-inline: var(--gutter);
  }
  .avis-groupe[aria-hidden='true'] { display: none; }
  .avis-carte:hover { transform: none; }
}

.abo-merci {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}
.abo-merci__sceau {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--terracotta-tint);
}
.abo-merci__sceau svg {
  width: 2.1rem;
  height: 2.1rem;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.abo-merci .section__eyebrow,
.abo-merci .section__title { text-align: center; }
.abo-merci__texte {
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--encre-64);
}
.abo-merci__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 2rem;
}
.abo-merci__note {
  margin: 1.4rem 0 0;
  font-size: .9rem;
  color: var(--encre-45);
}

html { overflow-x: clip; }
