:root {
  --orange: #ff5b00;
  --orange-deep: #df4500;
  --orange-light: #ff7a2f;
  --orange-wash: #fff4ed;
  --orange-pale: #fff9f5;
  --ink: #15161a;
  --ink-soft: #2b2d33;
  --muted: #696c75;
  --muted-light: #92959d;
  --paper: #ffffff;
  --canvas: #fbfaf8;
  --cream: #fff8f3;
  --line: #ebe8e3;
  --line-warm: #f0dfd3;
  --blue: #0d43d6;
  --blue-soft: #eef3ff;
  --green: #168a48;
  --green-soft: #eaf8ef;
  --shadow-sm: 0 10px 30px rgba(29, 23, 19, .06);
  --shadow-md: 0 24px 70px rgba(38, 29, 22, .10);
  --shadow-lg: 0 36px 100px rgba(35, 26, 20, .14);
  --container: 1320px;
  --header-height: 92px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Lexend", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  letter-spacing: -.035em;
}

::selection {
  color: #fff;
  background: var(--orange-deep);
}

:focus-visible {
  outline: 3px solid rgba(255, 91, 0, .48);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
}

.section-shell {
  position: relative;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: height .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  height: 82px;
  border-bottom-color: rgba(226, 220, 214, .75);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 35px rgba(31, 25, 20, .05);
}

.header-inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding-inline: clamp(36px, 5vw, 82px);
}

.brand {
  width: 156px;
  position: relative;
  display: block;
  transition: opacity .2s ease;
}

.brand:hover {
  opacity: .76;
}

.brand img {
  width: 156px;
  height: auto;
  transform: translateX(-6px);
  transition: opacity .25s ease;
}

.brand-logo-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
body.menu-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
body.menu-open .brand-logo-dark {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(30px, 2.6vw, 54px);
}

.desktop-nav > a,
.nav-trigger {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: rgba(21, 22, 26, .78);
  background: transparent;
  font-size: 16px;
  font-weight: 550;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease;
}

.desktop-nav > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.desktop-nav > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--ink);
}

.site-header.is-scrolled .desktop-nav > a,
.site-header.is-scrolled .nav-trigger,
body.menu-open .desktop-nav > a,
body.menu-open .nav-trigger {
  color: #595b62;
}

.site-header.is-scrolled .desktop-nav > a:hover,
.site-header.is-scrolled .nav-trigger:hover,
.site-header.is-scrolled .nav-trigger[aria-expanded="true"] {
  color: var(--ink);
}

.desktop-nav > a:hover::after,
.nav-trigger:hover::after,
.nav-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item {
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: height .25s ease;
}

.site-header.is-scrolled .nav-item {
  height: 82px;
}

.chevron {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.nav-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.login-link {
  padding: 10px 2px;
  color: rgba(21, 22, 26, .82);
  font-size: 16px;
  font-weight: 550;
  white-space: nowrap;
  transition: color .2s ease;
}

.login-link:hover {
  color: var(--orange);
}

.site-header.is-scrolled .login-link,
body.menu-open .login-link {
  color: #4a4c52;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  border-color: rgba(255, 118, 47, .64);
  background: linear-gradient(115deg, #e94700 0%, #ff5b00 52%, #ff7517 100%);
  box-shadow: 0 10px 26px rgba(255, 77, 0, .23), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.button-primary:hover {
  border-color: rgba(255, 149, 89, .9);
  box-shadow: 0 14px 34px rgba(255, 77, 0, .31), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.button-secondary {
  color: var(--ink);
  border-color: #ddd8d2;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 24px rgba(36, 29, 24, .04);
}

.button-secondary:hover {
  border-color: rgba(255, 91, 0, .38);
  background: #fff;
}

.button-large {
  min-height: 58px;
  padding-inline: 26px;
  border-radius: 16px;
  font-size: 15px;
}

.arrow {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-down {
  width: 17px;
  height: 17px;
}

.header-demo {
  min-width: 206px;
}

.menu-toggle {
  width: 45px;
  height: 45px;
  display: none;
  position: relative;
  justify-self: end;
  border: 1px solid #e5e0db;
  border-radius: 13px;
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 3px;
  transition: top .2s ease, transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mega-menu,
.about-menu {
  position: fixed;
  z-index: 90;
  top: calc(var(--header-height) + 10px);
  left: 50%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px) scale(.985);
  transform-origin: top center;
  border: 1px solid rgba(216, 209, 203, .9);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 91, 0, .065), transparent 34%),
    rgba(255, 255, 255, .96);
  box-shadow: 0 28px 80px rgba(41, 31, 24, .15), inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(28px) saturate(1.1);
  transition: opacity .2s ease, transform .2s var(--ease), top .25s ease;
}

.site-header.is-scrolled ~ .mega-menu,
.site-header.is-scrolled ~ .mega-menu + .about-menu {
  top: 92px;
}

.mega-menu.is-open,
.about-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mega-menu {
  width: min(1180px, calc(100vw - 64px));
  padding: 12px;
}

.mega-feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mega-feature {
  min-height: 105px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(24, 24, 26, .018);
  transition: transform .2s var(--ease), border-color .2s ease, background-color .2s ease;
}

.mega-feature::after {
  content: "→";
  color: #b4b0ac;
  font-size: 16px;
  transition: color .2s ease, transform .2s ease;
}

.mega-feature:hover,
.mega-feature.is-current {
  transform: translateY(-1px);
  border-color: rgba(255, 91, 0, .18);
  background: var(--orange-pale);
}

.mega-feature:hover::after,
.mega-feature.is-current::after {
  color: var(--orange);
  transform: translateX(2px);
}

.mega-feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.mega-feature-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(32, 26, 21, .09));
}

.mega-feature strong,
.mega-feature small {
  display: block;
}

.mega-feature strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.mega-feature small {
  color: #85868b;
  font-size: 9.5px;
  line-height: 1.42;
}

.about-menu {
  width: min(880px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 18px;
  padding: 18px;
}

.menu-label {
  display: block;
  margin: 0 0 10px;
  color: var(--orange);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-menu > div:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.about-menu > div:first-child .menu-label {
  grid-column: 1 / -1;
}

.about-resource {
  min-height: 94px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s ease, background-color .2s ease;
}

.about-resource:hover {
  border-color: var(--line-warm);
  background: var(--orange-pale);
}

.about-resource-image {
  height: 70px;
  overflow: hidden;
  border-radius: 10px;
}

.about-resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-resource small,
.about-resource strong {
  display: block;
}

.about-resource small {
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
}

.about-resource strong {
  font-size: 12px;
  line-height: 1.38;
}

.about-links {
  padding: 12px 8px 8px 20px;
  border-left: 1px solid var(--line);
}

.about-links a {
  display: block;
  padding: 9px 0;
  color: #5e6067;
  font-size: 13px;
  transition: color .2s ease, transform .2s ease;
}

.about-links a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.mobile-menu {
  position: fixed;
  z-index: 95;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(22px);
  transition: opacity .25s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px max(24px, 5vw) 40px;
}

.mobile-menu-inner > a:not(.button) {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid #f0ede9;
  color: #414349;
  font-size: 15px;
  font-weight: 550;
}

.mobile-menu-inner > a.is-current {
  color: var(--orange);
}

.mobile-group-title {
  display: block;
  margin: 19px 4px 5px;
  color: #a19c97;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-group-title:first-child {
  margin-top: 0;
}

.mobile-menu-inner .button {
  width: 100%;
  margin-top: 24px;
}

.hero {
  height: 100vh;
  height: 100svh;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  isolation: isolate;
  background:
    linear-gradient(to bottom, transparent 66%, rgba(255, 255, 255, .58) 86%, #fff 100%),
    linear-gradient(rgba(248, 246, 242, .24), rgba(248, 246, 242, .24)),
    radial-gradient(ellipse at 50% 52%, rgba(255, 255, 255, .40), rgba(255, 255, 255, .12) 56%, transparent 76%),
    url("/assets/generated/facturation-hero-bg-v3.webp") center center / cover no-repeat,
    #eee9e2;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-orb-one {
  width: 660px;
  height: 660px;
  top: 30px;
  right: -130px;
  background: radial-gradient(circle, rgba(255, 160, 100, .20), rgba(255, 229, 212, .08) 52%, transparent 70%);
}

.hero-orb-two {
  width: 360px;
  height: 360px;
  bottom: 30px;
  left: -140px;
  background: radial-gradient(circle, rgba(255, 91, 0, .10), transparent 68%);
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 960px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.product-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 126, 59, .34);
  border-radius: 999px;
  background: rgba(15, 15, 17, .66);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.product-kicker-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: transparent;
}

.product-kicker-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.product-kicker small,
.product-kicker strong {
  display: block;
}

.product-kicker small {
  margin-bottom: 1px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-kicker strong {
  color: #ff8a48;
  font-size: 12px;
  letter-spacing: -.015em;
}

.invoice-brand-panel {
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 0 auto 22px;
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: inset 0 0 0 1px rgba(12, 28, 65, .08), 0 8px 24px rgba(45, 36, 28, .08);
}

.invoice-brand-logo {
  width: 142px;
  height: auto;
  display: block;
}

.hero h1 {
  max-width: 880px;
  margin: 0 auto;
  color: #17191d;
  font-size: clamp(45px, 3.9vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.062em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 710px;
  margin: 24px auto 0;
  color: rgba(21, 22, 26, .76);
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.72;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 25px;
  color: #73757c;
  font-size: 11px;
  font-weight: 550;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg,
.invoice-controls svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  min-width: 0;
  position: relative;
  padding: 70px 0 65px 25px;
  perspective: 1400px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 60px -55px 20px 15px;
  border: 1px solid rgba(255, 91, 0, .10);
  border-radius: 50%;
  background: radial-gradient(circle at 52% 50%, rgba(255, 255, 255, .85), rgba(255, 226, 208, .24) 45%, transparent 70%);
}

.official-mark {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 10px;
  width: 210px;
  padding: 12px 15px;
  border: 1px solid #e8e5e1;
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  transform: rotate(1.5deg);
}

.official-mark img {
  width: 100%;
  height: auto;
}

.invoice-app {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 210, 204, .88);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(44, 32, 24, .17), 0 7px 20px rgba(44, 32, 24, .06);
  transform: rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}

.app-topbar {
  height: 61px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 18px;
  border-bottom: 1px solid #eeeae6;
  background: #fff;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  font-size: 12px;
}

.app-brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 9px;
  background: linear-gradient(145deg, #ff731d, #e54600);
  box-shadow: 0 5px 11px rgba(255, 77, 0, .24);
  font-size: 12px;
  font-weight: 800;
}

.app-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: #687169;
  border: 1px solid #e4eee7;
  border-radius: 999px;
  background: #f8fcf9;
  font-size: 7.5px;
  font-weight: 600;
}

.app-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3dbe6d;
  box-shadow: 0 0 0 3px rgba(61, 190, 109, .12);
}

.app-more {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  padding: 0 0 8px;
  color: #898b90;
  border-radius: 8px;
  background: #f7f6f4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.app-body {
  min-height: 440px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
}

.app-sidebar {
  padding: 22px 13px;
  border-right: 1px solid #eeeae6;
  background: #fbfaf8;
}

.side-title {
  display: block;
  margin: 0 7px 14px;
  color: #aaa6a2;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  padding: 8px 7px;
  color: #74767b;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 550;
}

.side-item i {
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.side-item.is-active {
  color: var(--orange);
  background: var(--orange-wash);
  font-weight: 700;
}

.side-divider {
  display: block;
  height: 1px;
  margin: 14px 7px;
  background: #e8e4e0;
}

.invoice-workspace {
  min-width: 0;
  padding: 24px 25px 21px;
  background: #fff;
}

.workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.workspace-heading small,
.workspace-heading strong,
.invoice-meta small,
.invoice-meta strong,
.invoice-summary small,
.invoice-summary strong {
  display: block;
}

.workspace-heading small {
  margin-bottom: 3px;
  color: #96989d;
  font-size: 8px;
}

.workspace-heading strong {
  font-size: 18px;
  letter-spacing: -.035em;
}

.invoice-state {
  padding: 6px 9px;
  color: #a5520c;
  border: 1px solid #f5dcc5;
  border-radius: 999px;
  background: #fff8ed;
  font-size: 7px;
  font-weight: 700;
}

.invoice-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 19px;
}

.invoice-meta > div {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #eeeae6;
  border-radius: 10px;
  background: #fcfbfa;
}

.invoice-meta small {
  margin-bottom: 4px;
  color: #a19fa0;
  font-size: 6.5px;
}

.invoice-meta strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invoice-lines {
  overflow: hidden;
  border: 1px solid #ede9e5;
  border-radius: 10px;
}

.invoice-line {
  display: grid;
  grid-template-columns: minmax(0, 2fr) .35fr .45fr .8fr;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #f0ede9;
  color: #67696e;
  font-size: 6.8px;
}

.invoice-line:last-child {
  border-bottom: 0;
}

.invoice-line span:last-child {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.invoice-line-head {
  color: #999a9e;
  background: #faf9f7;
  font-size: 6px;
  font-weight: 700;
  text-transform: uppercase;
}

.invoice-summary {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 18px;
}

.invoice-summary small {
  margin-bottom: 3px;
  color: #a09fa1;
  font-size: 6px;
}

.invoice-summary strong {
  font-size: 8px;
}

.invoice-total {
  padding-left: 20px;
  border-left: 1px solid #e9e5e1;
}

.invoice-total strong {
  color: var(--orange);
  font-size: 14px;
}

.invoice-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 19px;
  padding-top: 16px;
  border-top: 1px solid #eeeae6;
}

.invoice-controls > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5b6f61;
  font-size: 6.8px;
  font-weight: 600;
}

.invoice-controls svg {
  width: 14px;
  height: 14px;
}

.invoice-send {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #fff;
  border-radius: 8px;
  background: var(--orange);
  font-size: 7px;
  font-weight: 700;
}

.invoice-send span {
  font-size: 12px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(222, 216, 211, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 17px 45px rgba(39, 29, 22, .13);
  backdrop-filter: blur(14px);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 2px;
  color: #98999e;
  font-size: 7px;
}

.floating-card strong {
  font-size: 9.5px;
  white-space: nowrap;
}

.floating-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 11px;
  background: var(--orange-wash);
}

.floating-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-status {
  right: -15px;
  bottom: 24px;
  animation: float-card 5.4s ease-in-out infinite;
}

.floating-status .floating-icon {
  color: var(--green);
  background: var(--green-soft);
}

.floating-link {
  left: -22px;
  bottom: 9px;
  animation: float-card 5.4s .8s ease-in-out infinite reverse;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #a2a0a0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 30px;
  display: block;
  overflow: hidden;
  position: relative;
  background: #ded9d5;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: -100%;
  right: 0;
  left: 0;
  height: 100%;
  background: var(--orange);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  65%, 100% { transform: translateY(200%); }
}

.section-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.section-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 91, 0, .11);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.workflow-intro h2,
.role-copy h2,
.faq-heading h2,
.reform-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.section-heading > p,
.workflow-intro > p,
.role-copy > p,
.faq-heading > p {
  max-width: 690px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.reform-section {
  padding: 80px 0 120px;
  background: #fff;
}

.reform-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
  padding: clamp(38px, 5vw, 68px);
  overflow: hidden;
  position: relative;
  border: 1px solid #ede3dc;
  border-radius: 30px;
  background:
    radial-gradient(circle at 5% 8%, rgba(255, 91, 0, .10), transparent 31%),
    linear-gradient(135deg, #fff8f3 0%, #fff 64%);
  box-shadow: 0 25px 70px rgba(48, 32, 22, .075);
}

.reform-panel::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -125px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 91, 0, .10);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 91, 0, .025), 0 0 0 70px rgba(255, 91, 0, .018);
  pointer-events: none;
}

.reform-copy {
  position: relative;
  z-index: 1;
}

.reform-copy h2 {
  font-size: clamp(33px, 3vw, 47px);
}

.reform-copy > p {
  margin: 20px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 700;
}

.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s var(--ease);
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.timeline {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: center;
  position: relative;
  z-index: 1;
}

.timeline-card {
  min-height: 250px;
  padding: 25px;
  border: 1px solid #e8e4df;
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-sm);
}

.timeline-card.is-now {
  border-color: rgba(255, 91, 0, .26);
  background: #fff;
  box-shadow: 0 18px 48px rgba(255, 91, 0, .11);
}

.timeline-tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin-bottom: 17px;
  padding: 0 9px;
  color: #7b7c81;
  border-radius: 999px;
  background: #f4f3f1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.is-now .timeline-tag {
  color: var(--orange-deep);
  background: var(--orange-wash);
}

.timeline-card time {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.timeline-card sup {
  font-size: .6em;
}

.timeline-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-card li {
  position: relative;
  margin-top: 10px;
  padding-left: 16px;
  color: #6b6d73;
  font-size: 11px;
  line-height: 1.55;
}

.timeline-card li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.timeline-line {
  height: 1px;
  position: relative;
  background: #ddd8d3;
}

.timeline-line::before,
.timeline-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.timeline-line::before { left: -1px; }
.timeline-line::after { right: -1px; }

.timeline-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 17px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 91, 0, .23);
  transform: translate(-50%, -50%);
}

.reform-note {
  max-width: 720px;
  margin: 20px auto 0;
  color: #8b8b90;
  font-size: 10.5px;
  line-height: 1.6;
  text-align: center;
}

.benefits-section {
  padding: 115px 0 130px;
  background: #fff;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1100px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, #dedad6, transparent);
  transform: translateX(-50%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 355px;
  overflow: hidden;
  position: relative;
  padding: 28px;
  border: 1px solid #e9e6e2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 13px 38px rgba(37, 29, 23, .045);
  transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 91, 0, .22);
  box-shadow: 0 22px 54px rgba(37, 29, 23, .08);
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 0, .055), transparent 68%);
  pointer-events: none;
}

.benefit-card-large {
  min-height: 390px;
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(380px, 1.22fr);
  align-items: center;
  gap: 28px;
  background: linear-gradient(145deg, #fff 0%, #fffaf7 100%);
}

.feature-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #d1ceca;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid #f0dfd4;
  border-radius: 17px;
  background: var(--orange-pale);
}

.feature-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(34, 25, 19, .08));
}

.benefit-card h3 {
  max-width: 360px;
  margin: 0;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.benefit-card p {
  max-width: 400px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.benefit-card-large h3 {
  font-size: 27px;
}

.dossier-preview {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e7e1dc;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 50px rgba(39, 29, 22, .10);
  transform: rotate(1deg);
}

.dossier-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eeeae6;
  color: #73757b;
  font-size: 8px;
  font-weight: 700;
}

.dossier-top i {
  padding: 5px 7px;
  color: var(--green);
  border-radius: 99px;
  background: var(--green-soft);
  font-size: 6.5px;
  font-style: normal;
}

.vehicle-row {
  display: grid;
  grid-template-columns: 85px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.vehicle-thumb {
  width: 85px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f3f1;
}

.vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vehicle-row small,
.vehicle-row strong,
.vehicle-row em {
  display: block;
}

.vehicle-row small {
  color: #929397;
  font-size: 6px;
}

.vehicle-row strong {
  margin: 2px 0;
  font-size: 9px;
}

.vehicle-row em {
  color: #8a8b90;
  font-size: 6px;
  font-style: normal;
}

.vehicle-price {
  font-size: 11px;
  font-weight: 800;
}

.dossier-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 5px;
  margin-top: 19px;
  padding-top: 13px;
  border-top: 1px solid #eeeae6;
}

.dossier-flow span {
  padding: 5px 7px;
  color: #999a9e;
  border-radius: 99px;
  background: #f3f2f0;
  font-size: 6px;
  font-weight: 700;
}

.dossier-flow span.is-done {
  color: var(--green);
  background: var(--green-soft);
}

.dossier-flow span.is-active {
  color: #fff;
  background: var(--orange);
}

.dossier-flow i {
  height: 1px;
  background: #dedad6;
}

.mini-checks,
.status-stack {
  display: grid;
  gap: 7px;
  margin-top: 24px;
}

.mini-checks span,
.status-stack span {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  color: #696b70;
  border: 1px solid #eeeae6;
  border-radius: 9px;
  background: #fbfaf9;
  font-size: 8px;
  font-weight: 600;
}

.mini-checks i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  margin-right: 7px;
  color: var(--green);
  border-radius: 50%;
  background: var(--green-soft);
  font-size: 8px;
  font-style: normal;
}

.status-stack span b {
  margin-left: auto;
  color: var(--ink);
  font-size: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
}

.status-dot.orange { background: var(--orange); }
.status-dot.blue { background: #366fdb; }
.status-dot.green { background: #34a766; }

.workflow-section {
  padding: 130px 0;
  background: #fff;
}

.workflow-section .container {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(70px, 8vw, 130px);
}

.workflow-intro {
  position: sticky;
  top: 130px;
}

.workflow-intro h2 {
  font-size: clamp(37px, 3.6vw, 55px);
}

.workflow-intro .button {
  margin-top: 29px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
}

.workflow-list::before {
  content: "";
  position: absolute;
  top: 45px;
  bottom: 45px;
  left: 42px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 91, 0, .5), rgba(255, 91, 0, .08));
}

.workflow-list li {
  min-height: 160px;
  display: grid;
  grid-template-columns: 85px 65px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  position: relative;
  padding: 24px 25px 24px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-list li:last-child {
  border-bottom: 0;
}

.workflow-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  margin-left: 25px;
  color: var(--orange);
  border: 1px solid rgba(255, 91, 0, .25);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px #fff;
  font-size: 10px;
  font-weight: 800;
}

.workflow-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #eee4dc;
  border-radius: 17px;
  background: var(--orange-pale);
}

.workflow-icon img {
  width: 59px;
  height: 59px;
  object-fit: contain;
}

.workflow-list h3 {
  margin: 0 0 7px;
  font-size: 20px;
  font-weight: 750;
}

.workflow-list p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.role-section {
  padding: 120px 0;
  overflow: hidden;
  background: #fff;
}

.role-section::before {
  content: none;
}

.role-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.role-visual {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 60px;
  border: 1px solid #eadfd7;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 91, 0, .08), transparent 43%),
    rgba(255, 255, 255, .74);
  box-shadow: 0 26px 75px rgba(43, 31, 23, .08);
}

.role-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 91, 0, .17);
  border-radius: 22px;
  pointer-events: none;
}

.role-layer {
  min-height: 105px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  padding: 17px 20px;
  border: 1px solid #e4ded9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(37, 28, 22, .08);
}

.role-layer-one {
  transform: translateX(-15px) rotate(-1deg);
}

.role-layer-two {
  transform: translateX(15px) rotate(1deg);
}

.layer-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--orange-pale);
}

.layer-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.role-layer small,
.role-layer strong {
  display: block;
}

.role-layer small {
  margin-bottom: 3px;
  color: #94959a;
  font-size: 8px;
}

.role-layer strong {
  font-size: 15px;
}

.role-layer > i {
  min-width: 45px;
  min-height: 29px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 9px;
  background: var(--orange-wash);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.role-layer-two > i {
  color: var(--blue);
  background: var(--blue-soft);
}

.role-connector {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  position: relative;
  z-index: 1;
  padding: 25px 45px;
}

.role-connector span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 91, 0, .45));
}

.role-connector span:last-child {
  background: linear-gradient(90deg, rgba(255, 91, 0, .45), transparent);
}

.role-connector em {
  padding: 5px 9px;
  color: var(--orange-deep);
  border-radius: 99px;
  background: var(--orange-wash);
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.role-destination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  margin-top: 27px;
}

.role-destination span {
  padding: 7px 12px;
  color: #73757a;
  border: 1px solid #e9e5e1;
  border-radius: 99px;
  background: #fff;
  font-size: 8px;
  font-weight: 650;
}

.role-destination i {
  width: 18px;
  height: 1px;
  background: #dad5d1;
}

.role-copy h2 {
  font-size: clamp(38px, 3.5vw, 53px);
}

.role-copy ul {
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.role-copy li {
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.role-copy li:last-child {
  border-bottom: 0;
}

.role-copy li > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border-radius: 10px;
  background: var(--orange-wash);
  font-size: 8px;
  font-weight: 800;
}

.role-copy li strong,
.role-copy li small {
  display: block;
}

.role-copy li strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.role-copy li small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.faq-section {
  padding: 125px 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(310px, .68fr) minmax(520px, 1.32fr);
  align-items: start;
  gap: clamp(70px, 9vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading h2 {
  font-size: clamp(40px, 3.9vw, 57px);
}

.faq-contact {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px;
  border: 1px solid var(--line-warm);
  border-radius: 16px;
  background: var(--orange-pale);
}

.faq-contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.faq-contact-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.faq-contact small,
.faq-contact a {
  display: block;
}

.faq-contact small {
  margin-bottom: 3px;
  color: #85868b;
  font-size: 8px;
}

.faq-contact a {
  color: var(--orange-deep);
  font-size: 10px;
  font-weight: 750;
}

.faq-item {
  border-bottom: 1px solid #e7e3df;
}

.faq-item:first-child {
  border-top: 1px solid #e7e3df;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 93px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 20px;
  padding: 20px 4px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.035em;
}

.faq-item button i {
  width: 34px;
  height: 34px;
  position: relative;
  border: 1px solid #e1ddd8;
  border-radius: 50%;
  transition: border-color .2s ease, background-color .2s ease, transform .3s var(--ease);
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), background-color .2s ease;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button i {
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(180deg);
}

.faq-item.is-open button i::before,
.faq-item.is-open button i::after {
  background: #fff;
}

.faq-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .35s var(--ease);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  min-height: 0;
}

.faq-answer p {
  max-width: 650px;
  margin: -5px 50px 30px 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  padding: 40px 0 120px;
  background: #fff;
}

.final-cta-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 65px 40px;
  border: 1px solid #edddd2;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 115%, rgba(255, 91, 0, .15), transparent 45%),
    linear-gradient(145deg, #fff8f3, #fff 58%, #fffaf6);
  box-shadow: 0 30px 85px rgba(47, 31, 21, .09);
  text-align: center;
}

.cta-decoration {
  position: absolute;
  border: 1px solid rgba(255, 91, 0, .10);
  border-radius: 50%;
  pointer-events: none;
}

.cta-decoration-one {
  width: 380px;
  height: 380px;
  top: -230px;
  left: -100px;
  box-shadow: 0 0 0 45px rgba(255, 91, 0, .025), 0 0 0 90px rgba(255, 91, 0, .015);
}

.cta-decoration-two {
  width: 270px;
  height: 270px;
  right: -90px;
  bottom: -170px;
  box-shadow: 0 0 0 40px rgba(255, 91, 0, .02);
}

.final-cta-logo {
  width: 185px;
  margin-bottom: 28px;
  padding: 10px 13px;
  position: relative;
  z-index: 1;
  border: 1px solid #e8e5e2;
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}

.final-cta-logo img {
  width: 100%;
  height: auto;
}

.final-cta h2 {
  max-width: 900px;
  position: relative;
  z-index: 1;
  font-size: clamp(40px, 4.4vw, 66px);
}

.final-cta h2 span {
  color: var(--orange);
}

.final-cta-card > p {
  max-width: 680px;
  margin: 23px 0 0;
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 31px;
  position: relative;
  z-index: 1;
}

.final-cta-actions > span {
  color: #98989c;
  font-size: 9px;
}

.site-footer {
  border-top: 1px solid #ece8e4;
  background: var(--canvas);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(360px, 1.5fr) repeat(2, minmax(110px, .5fr));
  gap: 40px;
  padding: 70px 0 58px;
}

.footer-brand > a {
  width: 158px;
  display: block;
}

.footer-brand > a img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 15px;
  color: #6f7177;
  font-size: 12px;
}

.footer-brand > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #99999d;
  font-size: 9px;
}

.france-flag {
  width: 16px;
  height: 11px;
  display: flex;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.france-flag b { flex: 1; }
.france-flag b:nth-child(1) { background: #15368f; }
.france-flag b:nth-child(2) { background: #fff; }
.france-flag b:nth-child(3) { background: #ed2939; }

.footer-column strong {
  display: block;
  margin-bottom: 17px;
  color: var(--ink);
  font-size: 11px;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: #77787d;
  font-size: 10px;
  transition: color .2s ease, transform .2s ease;
}

.footer-product-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  align-items: start;
}

.footer-product-links a {
  min-width: 0;
}

.footer-column a:hover {
  color: var(--orange);
  transform: translateX(2px);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e8e4e0;
  color: #99999d;
  font-size: 9px;
}

.footer-bottom a:hover {
  color: var(--orange);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

.reveal-ready [data-reveal-delay="1"] { --reveal-delay: 1; }
.reveal-ready [data-reveal-delay="2"] { --reveal-delay: 2; }

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .header-inner {
    grid-template-columns: 145px minmax(0, 1fr) auto;
    gap: 22px;
    padding-inline: 35px;
  }

  .brand,
  .brand img {
    width: 145px;
  }

  .desktop-nav {
    gap: 27px;
  }

  .desktop-nav > a,
  .nav-trigger,
  .login-link {
    font-size: 14px;
  }

  .header-actions {
    gap: 18px;
  }

  .header-demo {
    min-width: 184px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(510px, 1.1fr);
    gap: 42px;
  }

  .floating-status {
    right: 0;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .site-header,
  .site-header.is-scrolled,
  body.menu-open .site-header {
    height: var(--header-height);
  }

  .header-inner {
    grid-template-columns: 150px 1fr 45px;
    padding-inline: max(24px, 5vw);
  }


  .brand,
  .brand img {
    width: 150px;
  }

  .desktop-nav,
  .header-actions,
  .mega-menu,
  .about-menu {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: block;
  }

  .hero {
    padding-top: 132px;
  }
}

@media (max-width: 1050px) {
  .hero {
    min-height: 0;
    padding: 145px 0 105px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero h1 {
    max-width: 790px;
    font-size: clamp(52px, 7vw, 72px);
  }

  .hero-visual {
    width: min(100%, 780px);
    justify-self: center;
  }

  .scroll-cue {
    display: none;
  }

  .reform-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .reform-copy {
    max-width: 690px;
  }

  .benefit-card-large {
    grid-column: 1 / -1;
  }

  .workflow-section .container,
  .role-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .workflow-intro,
  .faq-heading {
    max-width: 760px;
    position: static;
  }

  .workflow-list {
    max-width: 780px;
  }

  .role-visual {
    width: min(100%, 760px);
  }

  .role-copy {
    max-width: 760px;
  }

  .faq-list {
    max-width: 850px;
  }
}

@media (max-width: 820px) {
  .container {
    padding-inline: 24px;
  }

  .reform-section,
  .benefits-section,
  .workflow-section,
  .role-section,
  .faq-section {
    padding-block: 95px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card-large {
    grid-template-columns: minmax(0, 1fr);
  }

  .dossier-preview {
    max-width: 540px;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding-inline: 20px;
  }

  .brand,
  .brand img {
    width: 137px;
  }

  .hero {
    padding: 122px 0 83px;
  }

  .hero::before {
    display: none;
  }

  .hero-orb-one {
    width: 420px;
    height: 420px;
    right: -230px;
  }

  .product-kicker {
    margin-bottom: 23px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 53px);
    line-height: 1.04;
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy > p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    padding: 62px 0 65px;
  }

  .hero-visual::before {
    inset: 30px -140px 0;
  }

  .official-mark {
    width: 160px;
    right: 3px;
    padding: 9px 11px;
  }

  .invoice-app {
    border-radius: 18px;
    transform: none;
  }

  .app-topbar {
    height: 54px;
    padding-inline: 13px;
  }

  .app-status {
    display: none;
  }

  .app-body {
    min-height: 400px;
    grid-template-columns: minmax(0, 1fr);
  }

  .app-sidebar {
    display: none;
  }

  .invoice-workspace {
    padding: 22px 18px 18px;
  }

  .invoice-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .invoice-line {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .invoice-line span:nth-child(2),
  .invoice-line span:nth-child(3) {
    display: none;
  }

  .invoice-summary {
    gap: 12px;
  }

  .invoice-summary > span:not(.invoice-total) {
    display: none;
  }

  .invoice-total {
    padding-left: 0;
    border-left: 0;
  }

  .floating-card {
    grid-template-columns: 34px auto;
    padding: 8px 10px 8px 8px;
  }

  .floating-icon {
    width: 34px;
    height: 34px;
  }

  .floating-icon svg {
    width: 17px;
    height: 17px;
  }

  .floating-status {
    right: 1px;
    bottom: 13px;
  }

  .floating-link {
    left: 1px;
    bottom: 67px;
  }

  .section-heading h2,
  .workflow-intro h2,
  .role-copy h2,
  .faq-heading h2,
  .reform-copy h2,
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .section-heading > p,
  .workflow-intro > p,
  .role-copy > p,
  .faq-heading > p {
    font-size: 15px;
  }

  .reform-section {
    padding-top: 70px;
  }

  .reform-panel {
    padding: 29px 22px;
    border-radius: 23px;
  }

  .timeline {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .timeline-card {
    min-height: 0;
  }

  .timeline-line {
    width: 1px;
    height: 45px;
    margin-left: 28px;
  }

  .timeline-line::before,
  .timeline-line::after,
  .timeline-line span {
    display: none;
  }

  .benefit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefit-card,
  .benefit-card-large {
    min-height: 0;
    grid-column: auto;
    padding: 25px;
  }

  .benefit-card-large {
    gap: 30px;
  }

  .vehicle-row {
    grid-template-columns: 65px minmax(0, 1fr);
  }

  .vehicle-thumb {
    width: 65px;
    height: 50px;
  }

  .vehicle-price {
    grid-column: 2;
  }

  .workflow-section .container,
  .role-grid,
  .faq-grid {
    gap: 55px;
  }

  .workflow-intro .button {
    width: 100%;
  }

  .workflow-list::before {
    left: 17px;
  }

  .workflow-list li {
    min-height: 0;
    grid-template-columns: 35px 54px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 24px 0;
  }

  .workflow-number {
    width: 32px;
    height: 32px;
    margin: 10px 0 0;
  }

  .workflow-icon {
    width: 53px;
    height: 53px;
    margin-top: 1px;
    border-radius: 14px;
  }

  .workflow-icon img {
    width: 49px;
    height: 49px;
  }

  .workflow-list h3 {
    font-size: 17px;
  }

  .role-visual {
    min-height: 430px;
    padding: 38px 24px;
    border-radius: 24px;
  }

  .role-layer {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 13px;
  }

  .role-layer-one,
  .role-layer-two {
    transform: none;
  }

  .layer-icon {
    width: 52px;
    height: 52px;
  }

  .layer-icon img {
    width: 48px;
    height: 48px;
  }

  .role-layer strong {
    font-size: 12px;
  }

  .role-layer > i {
    min-width: 35px;
  }

  .role-connector {
    padding-inline: 12px;
  }

  .faq-item button {
    min-height: 82px;
  }

  .faq-item button span {
    font-size: 16px;
  }

  .faq-answer p {
    margin-right: 20px;
  }

  .final-cta {
    padding: 20px 0 80px;
  }

  .final-cta-card {
    min-height: 500px;
    padding: 55px 22px;
    border-radius: 24px;
  }

  .final-cta-card > p {
    font-size: 14px;
  }

  .final-cta-actions,
  .final-cta-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 25px;
  }

  .footer-products {
    grid-column: 1 / -1;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .container {
    padding-inline: 18px;
  }

  .header-inner {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .product-kicker {
    grid-template-columns: 42px auto;
    padding-left: 5px;
  }

  .product-kicker-icon {
    width: 42px;
    height: 42px;
  }

  .product-kicker-icon img {
    width: 40px;
    height: 40px;
  }

  .floating-link {
    display: none;
  }

  .invoice-controls > span {
    display: none;
  }

  .invoice-controls {
    justify-content: flex-end;
  }

  .dossier-preview {
    margin-inline: -8px;
    padding: 13px;
  }

  .dossier-flow {
    gap: 3px;
  }

  .dossier-flow span {
    padding-inline: 5px;
  }

  .role-visual {
    margin-inline: -4px;
    padding-inline: 19px;
  }

  .role-layer {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .layer-icon {
    width: 45px;
    height: 45px;
  }

  .role-layer > i {
    display: none;
  }

  .role-connector em {
    font-size: 6px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-products {
    grid-column: auto;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

/* Sobriété éditoriale des sections de contenu */
.reform-section,
.benefits-section,
.workflow-section,
.role-section,
.faq-section {
  padding: 100px 0;
  background: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.workflow-intro h2,
.role-copy h2,
.faq-heading h2,
.reform-copy h2,
.final-cta h2 {
  font-size: clamp(34px, 3.25vw, 50px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.section-heading > p,
.workflow-intro > p,
.role-copy > p,
.faq-heading > p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.reform-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 7vw, 100px);
  padding: 0 0 64px;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid #dedbd7;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reform-panel::after {
  content: none;
}

.reform-copy > p {
  max-width: 520px;
  margin: 20px 0 24px;
  font-size: 15px;
}

.timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
}

.timeline-card,
.timeline-card.is-now {
  min-height: 0;
  padding: 2px 0 2px 22px;
  border: 0;
  border-left: 3px solid #d9d6d2;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.timeline-card.is-now {
  border-left-color: var(--orange);
}

.timeline-tag,
.is-now .timeline-tag {
  min-height: 0;
  margin-bottom: 13px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
}

.is-now .timeline-tag {
  color: var(--orange-deep);
}

.timeline-card time {
  margin-bottom: 16px;
  font-size: 19px;
}

.timeline-card li {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.timeline-line {
  display: none;
}

.reform-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: left;
}

.benefits-section {
  border-top: 1px solid #f1efed;
}

.benefits-section::before {
  content: none;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  border-top: 1px solid #d9d6d2;
}

.benefit-card,
.benefit-card-large {
  min-height: 0;
  display: block;
  grid-column: auto;
  padding: 34px 48px 38px 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid #d9d6d2;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.benefit-card-large {
  grid-column: 1 / -1;
  padding-right: 0;
}

.benefit-card:hover {
  border-color: #d9d6d2;
  box-shadow: none;
  transform: none;
}

.benefit-card::after {
  content: none;
}

.feature-number {
  display: block;
  position: static;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 11px;
}

.feature-icon,
.dossier-preview,
.mini-checks,
.status-stack {
  display: none;
}

.benefit-card h3,
.benefit-card-large h3 {
  max-width: 560px;
  font-size: 24px;
  line-height: 1.25;
}

.benefit-card-large h3 {
  font-size: 28px;
}

.benefit-card p {
  max-width: 560px;
  margin-top: 12px;
  font-size: 14px;
}

.workflow-section {
  border-top: 1px solid #f1efed;
}

.workflow-section .container {
  grid-template-columns: minmax(300px, .78fr) minmax(460px, 1.22fr);
  gap: clamp(55px, 8vw, 110px);
}

.workflow-intro {
  position: static;
}

.workflow-list::before {
  content: none;
}

.workflow-list li {
  min-height: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
}

.workflow-number {
  width: auto;
  height: auto;
  display: block;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 17px;
  text-align: left;
}

.workflow-icon {
  display: none;
}

.workflow-list h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.workflow-list p {
  max-width: 520px;
  font-size: 14px;
}

.role-section {
  border-top: 1px solid #f1efed;
}

.role-grid {
  grid-template-columns: minmax(320px, .82fr) minmax(380px, 1.18fr);
  gap: clamp(60px, 9vw, 130px);
}

.role-visual {
  min-height: 0;
  display: block;
  padding: 34px;
  border: 1px solid #dedbd7;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.role-visual::after {
  content: none;
}

.role-flow-step {
  position: relative;
  padding: 0 0 0 18px;
  border-left: 3px solid #cfcac5;
}

.role-flow-step.is-carakal {
  border-left-color: var(--orange);
}

.role-flow-step small,
.role-flow-step strong {
  display: block;
}

.role-flow-step small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.role-flow-step strong {
  font-size: 18px;
  line-height: 1.35;
}

.role-flow-step em {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--orange-deep);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  transform: translateY(-50%);
}

.role-flow-step:not(.is-carakal) em {
  color: var(--blue);
}

.role-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0 23px 21px;
  color: var(--muted);
}

.role-flow-arrow span {
  font-size: 11px;
}

.role-flow-arrow i {
  color: var(--orange);
  font-size: 18px;
  font-style: normal;
}

.role-flow-destinations {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e6e3e0;
}

.role-flow-destinations span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.role-copy li > span {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  font-size: 11px;
}

.role-copy li strong {
  font-size: 15px;
}

.role-copy li small {
  font-size: 12px;
}

.faq-section {
  border-top: 1px solid #f1efed;
}

.faq-grid {
  grid-template-columns: minmax(290px, .7fr) minmax(460px, 1.3fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
  position: static;
}

.faq-contact {
  display: block;
  margin-top: 30px;
  padding: 2px 0 2px 16px;
  border: 0;
  border-left: 3px solid var(--orange);
  border-radius: 0;
  background: transparent;
}

.faq-contact small {
  margin-bottom: 5px;
  font-size: 10px;
}

.faq-contact a {
  font-size: 12px;
}

.faq-item button {
  min-height: 86px;
}

.faq-item button span {
  font-size: 17px;
}

.faq-answer p {
  font-size: 13px;
}

.final-cta {
  padding: 40px 0 110px;
  background: #fff;
}

.final-cta-card {
  min-height: 450px;
  padding: 64px 40px;
  border: 0;
  border-radius: 16px;
  background: #151515;
  box-shadow: none;
}

.final-cta-logo {
  width: 170px;
  margin-bottom: 26px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.final-cta h2 {
  max-width: 820px;
  color: #fff;
}

.final-cta-card > p {
  color: rgba(255, 255, 255, .68);
}

.final-cta-actions > span {
  color: rgba(255, 255, 255, .5);
}

@media (max-width: 980px) {
  .reform-section,
  .benefits-section,
  .workflow-section,
  .role-section,
  .faq-section {
    padding: 82px 0;
  }

  .reform-panel,
  .workflow-section .container,
  .role-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .reform-copy,
  .workflow-intro,
  .role-copy,
  .faq-heading {
    max-width: 700px;
  }

  .role-visual {
    max-width: 600px;
  }
}

@media (max-width: 680px) {
  .reform-section,
  .benefits-section,
  .workflow-section,
  .role-section,
  .faq-section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .workflow-intro h2,
  .role-copy h2,
  .faq-heading h2,
  .reform-copy h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .timeline,
  .benefit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .timeline {
    gap: 30px;
  }

  .benefit-grid {
    gap: 0;
  }

  .benefit-card,
  .benefit-card-large {
    grid-column: auto;
    padding: 30px 0 32px;
  }

  .benefit-card h3,
  .benefit-card-large h3 {
    font-size: 23px;
  }

  .workflow-section .container,
  .role-grid,
  .faq-grid {
    gap: 42px;
  }

  .role-visual {
    padding: 26px 22px;
  }

  .faq-item button {
    min-height: 76px;
    padding: 16px 0;
  }

  .final-cta {
    padding: 20px 0 75px;
  }

  .final-cta-card {
    min-height: 0;
    padding: 48px 24px;
    border-radius: 12px;
  }
}

/* Page facturation électronique */
.fe-section {
  position: relative;
  padding: 112px 0;
  background: #fff;
}

.fe-section-soft {
  background: #f5f5f3;
}

.fe-kicker {
  margin: 0 0 18px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.fe-copy h2,
.fe-product-copy h2,
.fe-heading h2,
.fe-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.fe-copy > p:not(.fe-kicker),
.fe-product-copy > p:not(.fe-kicker),
.fe-heading > p:not(.fe-kicker),
.fe-cta > .container > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.fe-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: start;
  gap: clamp(65px, 8vw, 120px);
}

.fe-copy > p:not(.fe-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
}

.fe-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 27px;
}

.fe-source-links a,
.fe-calendar > a {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(223, 69, 0, .28);
  text-underline-offset: 4px;
}

.fe-source-links a:hover,
.fe-calendar > a:hover {
  text-decoration-color: currentColor;
}

.fe-calendar {
  border-top: 1px solid #d9d6d2;
}

.fe-calendar article {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 35px;
  padding: 30px 0;
  border-bottom: 1px solid #d9d6d2;
}

.fe-calendar time {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.fe-calendar time sup {
  font-size: .62em;
}

.fe-calendar article:first-child time {
  color: var(--orange-deep);
}

.fe-calendar article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.fe-calendar > a {
  display: inline-block;
  margin-top: 24px;
}

.fe-product-grid {
  display: grid;
  grid-template-columns: minmax(320px, .76fr) minmax(520px, 1.24fr);
  align-items: center;
  gap: clamp(60px, 8vw, 115px);
}

.fe-product-grid-reverse {
  grid-template-columns: minmax(520px, 1.24fr) minmax(320px, .76fr);
}

.fe-product-copy h2 {
  font-size: clamp(36px, 3.45vw, 51px);
}

.fe-product-copy > p:not(.fe-kicker) {
  margin: 22px 0 0;
}

.fe-check-list {
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid #d9d6d2;
  list-style: none;
}

.fe-check-list li {
  padding: 18px 0;
  border-bottom: 1px solid #d9d6d2;
}

.fe-check-list strong,
.fe-check-list span {
  display: block;
}

.fe-check-list strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.fe-check-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.fe-ui-shot {
  min-width: 0;
  margin: 0;
}

.fe-ui-shot img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e2dfdc;
  border-radius: 14px;
  background: #f3f3f2;
  box-shadow: 0 20px 55px rgba(26, 23, 20, .08);
}

.fe-ui-shot figcaption {
  margin-top: 12px;
  color: #8b8d94;
  font-size: 11px;
  line-height: 1.5;
}

.fe-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fe-heading > p:not(.fe-kicker) {
  max-width: 760px;
  margin: 22px auto 0;
}

.fe-heading-small {
  max-width: 700px;
}

.fe-ui-shot-wide {
  max-width: 1180px;
  margin: 52px auto 0;
}

.fe-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 65px 0 0;
  padding: 0;
  border-top: 1px solid #d9d6d2;
  list-style: none;
}

.fe-steps li {
  min-width: 0;
  padding: 31px 42px 0 0;
}

.fe-steps li + li {
  padding-left: 42px;
  border-left: 1px solid #d9d6d2;
}

.fe-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.fe-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.fe-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.fe-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.fe-statuses span {
  padding: 8px 12px;
  border: 1px solid #d8d5d1;
  border-radius: 999px;
  background: #fff;
  color: #4b4d53;
  font-size: 11px;
  font-weight: 700;
}

.fe-flows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 58px;
  border-top: 1px solid #d9d6d2;
}

.fe-flows article {
  padding-top: 31px;
}

.fe-flows article + article {
  padding-left: 60px;
  border-left: 1px solid #d9d6d2;
}

.fe-flows article > span {
  display: block;
  margin-bottom: 17px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.fe-flows h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.fe-flows p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.fe-faq-section {
  border-top: 1px solid #efedeb;
}

.fe-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(520px, 1.3fr);
  align-items: start;
  gap: clamp(65px, 9vw, 135px);
}

.fe-faq details {
  border-top: 1px solid #d9d6d2;
}

.fe-faq details:last-child {
  border-bottom: 1px solid #d9d6d2;
}

.fe-faq summary {
  position: relative;
  padding: 27px 48px 27px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.fe-faq summary::-webkit-details-marker {
  display: none;
}

.fe-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 5px;
  color: var(--orange);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.fe-faq details[open] summary::after {
  content: "−";
}

.fe-faq details p {
  max-width: 680px;
  margin: -4px 48px 26px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.fe-cta {
  padding: 105px 0 115px;
  border-top: 1px solid #e4e1de;
  background: #fff;
  text-align: center;
}

.fe-cta h2 {
  max-width: 800px;
  margin-inline: auto;
}

.fe-cta > .container > p {
  max-width: 650px;
  margin: 20px auto 0;
}

.fe-cta .button {
  margin-top: 30px;
}

@media (max-width: 1050px) {
  .fe-section {
    padding: 90px 0;
  }

  .fe-intro-grid,
  .fe-product-grid,
  .fe-product-grid-reverse,
  .fe-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .fe-copy,
  .fe-product-copy {
    max-width: 720px;
  }

  .fe-product-grid-reverse .fe-product-copy {
    order: -1;
  }

  .fe-ui-shot {
    max-width: 900px;
  }

  .fe-faq {
    max-width: 850px;
  }
}

@media (max-width: 680px) {
  .fe-section {
    padding: 70px 0;
  }

  .fe-copy h2,
  .fe-product-copy h2,
  .fe-heading h2,
  .fe-cta h2 {
    font-size: 35px;
  }

  .fe-copy > p:not(.fe-kicker),
  .fe-product-copy > p:not(.fe-kicker),
  .fe-heading > p:not(.fe-kicker),
  .fe-cta > .container > p {
    font-size: 15px;
  }

  .fe-source-links {
    display: grid;
  }

  .fe-calendar article {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 25px 0;
  }

  .fe-ui-shot img {
    border-radius: 10px;
  }

  .fe-ui-shot figcaption {
    margin-top: 9px;
  }

  .fe-ui-shot-wide {
    width: calc(100% + 16px);
    margin: 38px -8px 0;
  }

  .fe-steps,
  .fe-flows {
    grid-template-columns: minmax(0, 1fr);
  }

  .fe-steps {
    margin-top: 48px;
  }

  .fe-steps li,
  .fe-steps li + li {
    padding: 27px 0;
    border-left: 0;
    border-bottom: 1px solid #d9d6d2;
  }

  .fe-flows {
    gap: 0;
    margin-top: 42px;
  }

  .fe-flows article,
  .fe-flows article + article {
    padding: 27px 0;
    border-left: 0;
    border-bottom: 1px solid #d9d6d2;
  }

  .fe-faq summary {
    padding-block: 23px;
    font-size: 16px;
  }

  .fe-cta {
    padding: 75px 0 82px;
  }
}

/* Facturation électronique — direction visuelle Carakal */
.fe-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 124px) 0;
  background: #fff;
}

.fe-section > .container {
  position: relative;
  z-index: 1;
}

.fe-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fe-kicker::before {
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.fe-copy h2,
.fe-product-copy h2,
.fe-heading h2,
.fe-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 3.35vw, 50px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.055em;
}

.fe-copy > p:not(.fe-kicker),
.fe-product-copy > p:not(.fe-kicker),
.fe-heading > p:not(.fe-kicker),
.fe-cta > .container > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

/* Réforme */
.fe-reform-section {
  padding-top: 88px;
  background: #fff;
}

.fe-reform-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(84vw, 1040px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 91, 0, .35), transparent);
  content: "";
  transform: translateX(-50%);
}

.fe-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 91, 0, .2), transparent 31%),
    #15171b;
  box-shadow: 0 34px 90px rgba(24, 20, 17, .15);
}

.fe-intro-grid::after {
  position: absolute;
  right: -150px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 74px solid rgba(255, 255, 255, .025);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.fe-intro-grid .fe-kicker {
  color: #ff7b32;
}

.fe-intro-grid .fe-copy h2 {
  color: #fff;
  font-size: clamp(38px, 3.4vw, 50px);
}

.fe-intro-grid .fe-copy > p:not(.fe-kicker) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .66);
}

.fe-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 28px;
}

.fe-source-links a,
.fe-calendar > a {
  color: #ff8a4a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.fe-source-links a::after {
  margin-left: 6px;
  content: "↗";
}

.fe-source-links a:hover,
.fe-calendar > a:hover {
  color: #fff;
  text-decoration: none;
}

.fe-calendar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}

.fe-calendar article {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 28px;
  border: 0;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.fe-calendar article:first-child {
  background: var(--orange);
}

.fe-calendar time {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.fe-calendar article:first-child time,
.fe-calendar article:first-child p {
  color: #fff;
}

.fe-calendar time sup {
  font-size: .58em;
}

.fe-calendar article p {
  margin: 0;
  color: #686a71;
  font-size: 12px;
  line-height: 1.65;
}

.fe-calendar > a {
  grid-column: 1 / -1;
  justify-self: start;
  margin: 8px 0 0;
}

/* Produit */
.fe-activation-section {
  background:
    linear-gradient(90deg, rgba(255, 91, 0, .035) 1px, transparent 1px),
    linear-gradient(rgba(255, 91, 0, .035) 1px, transparent 1px),
    #f8f5f2;
  background-size: 76px 76px;
}

.fe-activation-section::after {
  position: absolute;
  top: -220px;
  right: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 91, 0, .07);
  content: "";
  filter: blur(1px);
}

.fe-product-grid {
  display: grid;
  grid-template-columns: minmax(310px, .74fr) minmax(540px, 1.26fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.fe-product-grid-reverse {
  grid-template-columns: minmax(540px, 1.26fr) minmax(310px, .74fr);
}

.fe-product-copy h2 {
  max-width: 520px;
  font-size: clamp(35px, 3.1vw, 46px);
}

.fe-product-copy > p:not(.fe-kicker) {
  max-width: 540px;
  margin: 21px 0 0;
}

.fe-check-list {
  margin: 31px 0 0;
  padding: 0;
  border-top: 1px solid #ded8d2;
  list-style: none;
}

.fe-check-list li {
  position: relative;
  min-height: 72px;
  padding: 17px 0 17px 44px;
  border-bottom: 1px solid #ded8d2;
}

.fe-check-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}

.fe-check-list strong,
.fe-check-list span {
  display: block;
}

.fe-check-list strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.fe-check-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.fe-ui-shot {
  min-width: 0;
  margin: 0;
}

.fe-app-window {
  position: relative;
  overflow: hidden;
  padding: 43px 9px 9px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: #17191d;
  box-shadow: 0 28px 75px rgba(28, 23, 20, .2);
}

.fe-app-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 43px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
}

.fe-app-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5b00;
}

.fe-app-bar > span:nth-child(2) {
  background: #ffad19;
}

.fe-app-bar > span:nth-child(3) {
  background: #62c879;
}

.fe-app-bar small {
  position: absolute;
  left: 50%;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .025em;
  transform: translateX(-50%);
}

.fe-app-window img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 16px;
  background: #f4f4f3;
  box-shadow: none;
}

.fe-ui-shot figcaption {
  margin: 13px 4px 0;
  color: #8b8d94;
  font-size: 10px;
  line-height: 1.5;
}

/* Parcours */
.fe-workflow-section {
  background: #fff;
}

.fe-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.fe-heading h2 {
  font-size: clamp(38px, 4.2vw, 58px);
}

.fe-heading > p:not(.fe-kicker) {
  max-width: 720px;
  margin: 20px auto 0;
}

.fe-heading-small {
  max-width: 760px;
}

.fe-ui-shot-wide {
  max-width: 1160px;
  margin: 49px auto 0;
}

.fe-workflow-section .fe-app-window {
  border-color: #2d3036;
  box-shadow: 0 34px 90px rgba(22, 20, 18, .18);
}

.fe-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1090px;
  margin: 28px auto 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #f0dcd0;
  border-radius: 20px;
  background: #fff7f1;
  list-style: none;
}

.fe-steps li {
  min-width: 0;
  padding: 29px 31px 31px;
}

.fe-steps li + li {
  padding-left: 31px;
  border-left: 1px solid #f0dcd0;
}

.fe-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 10px;
  color: #fff;
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
}

.fe-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.fe-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

/* Réception */
.fe-reception-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 91, 0, .17), transparent 27%),
    #16181c;
}

.fe-reception-section::after {
  position: absolute;
  right: -140px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 80px solid rgba(255, 255, 255, .025);
  border-radius: 50%;
  content: "";
}

.fe-reception-section .fe-kicker {
  color: #ff7b32;
}

.fe-reception-section .fe-product-copy h2 {
  color: #fff;
}

.fe-reception-section .fe-product-copy > p:not(.fe-kicker) {
  color: rgba(255, 255, 255, .64);
}

.fe-reception-section .fe-app-window {
  border-color: rgba(255, 255, 255, .1);
  background: #26292f;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .38);
}

.fe-reception-section .fe-ui-shot figcaption {
  color: rgba(255, 255, 255, .42);
}

.fe-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.fe-statuses span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .045);
  font-size: 11px;
  font-weight: 700;
}

.fe-statuses span:first-child {
  border-color: rgba(255, 91, 0, .7);
  color: #fff;
  background: rgba(255, 91, 0, .17);
}

/* Flux */
.fe-flux-section {
  padding: clamp(82px, 7vw, 108px) 0;
  background: #fff;
}

.fe-flux-section > .container {
  width: min(calc(100% - 48px), 1180px);
  padding: clamp(44px, 5vw, 70px);
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .2), transparent 34%),
    var(--orange);
  box-shadow: 0 28px 75px rgba(224, 69, 0, .18);
}

.fe-flux-section .fe-heading {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.fe-flux-section .fe-kicker {
  color: #471400;
}

.fe-flux-section .fe-heading h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 56px);
}

.fe-flows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 47px;
  border-top: 1px solid rgba(255, 255, 255, .45);
}

.fe-flows article {
  padding: 29px 45px 0 0;
}

.fe-flows article + article {
  padding-left: 45px;
  border-left: 1px solid rgba(255, 255, 255, .45);
}

.fe-flows article > span {
  display: block;
  margin-bottom: 15px;
  color: #4b1600;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fe-flows h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.fe-flows p {
  max-width: 470px;
  margin: 13px 0 0;
  color: rgba(68, 20, 0, .83);
  font-size: 13px;
  line-height: 1.7;
}

/* FAQ */
.fe-faq-section {
  border: 0;
  background: #f7f5f2;
}

.fe-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.fe-faq {
  display: grid;
  gap: 10px;
}

.fe-faq details,
.fe-faq details:last-child {
  overflow: hidden;
  border: 1px solid #e8e2dc;
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.fe-faq details[open] {
  border-color: rgba(255, 91, 0, .32);
  box-shadow: 0 12px 32px rgba(38, 29, 22, .06);
}

.fe-faq summary {
  position: relative;
  padding: 23px 62px 23px 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.fe-faq summary::-webkit-details-marker {
  display: none;
}

.fe-faq summary::after {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  content: "+";
  font-size: 19px;
  font-weight: 500;
  transform: translateY(-50%);
}

.fe-faq details[open] summary::after {
  content: "−";
}

.fe-faq details p {
  max-width: 680px;
  margin: -3px 62px 22px 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

/* Conclusion */
.fe-cta {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 72px 0 0;
  border: 0;
  background: #090a0c;
  text-align: left;
}

.fe-cta::before,
.fe-cta::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.fe-cta::before {
  right: 2%;
  bottom: -55%;
  width: 540px;
  height: 540px;
  background: rgba(255, 91, 0, .3);
  filter: blur(90px);
}

.fe-cta::after {
  top: -320px;
  left: -140px;
  width: 460px;
  height: 460px;
  border: 70px solid rgba(255, 255, 255, .025);
}

.fe-cta > .container {
  min-height: 358px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 56px;
}

.fe-cta-copy {
  align-self: center;
  padding-bottom: 72px;
}

.fe-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(39px, 4vw, 56px);
}

.fe-cta-copy > p {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 15px;
  line-height: 1.75;
}

.fe-cta .button.button-primary {
  margin-top: 28px;
  border-color: var(--orange);
  color: #fff;
  background: linear-gradient(112deg, #e94700 0%, #ff5b00 58%, #ff7416 100%);
  box-shadow: 0 14px 34px rgba(255, 91, 0, .22);
}

.fe-cta .button.button-primary:hover {
  background: linear-gradient(112deg, #f04b00 0%, #ff6410 58%, #ff812c 100%);
  box-shadow: 0 18px 42px rgba(255, 91, 0, .3);
}

.fe-cta-mascot {
  position: relative;
  z-index: 1;
  width: 285px;
  height: 420px;
  justify-self: center;
  object-fit: contain;
  object-position: center bottom;
}

.product-page .site-footer {
  border-top-color: rgba(255, 255, 255, .08);
  color: #fff;
  background: #090a0c;
}

.product-page .footer-main {
  padding: 66px 0 54px;
}

.product-page .footer-brand p {
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
}

.product-page .footer-brand > span {
  color: rgba(255, 255, 255, .38);
  font-size: 10px;
}

.product-page .france-flag {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .16);
}

.product-page .footer-column strong {
  color: #fff;
  font-size: 12px;
}

.product-page .footer-column a {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.product-page .footer-column a:hover,
.product-page .footer-bottom a:hover {
  color: #ff792e;
}

.product-page .footer-bottom {
  border-top-color: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .36);
  font-size: 10px;
}

@media (max-width: 1050px) {
  .fe-section {
    padding: 88px 0;
  }

  .fe-intro-grid,
  .fe-product-grid,
  .fe-product-grid-reverse,
  .fe-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .fe-intro-grid {
    align-items: start;
  }

  .fe-copy,
  .fe-product-copy {
    max-width: 730px;
  }

  .fe-product-grid-reverse .fe-product-copy {
    order: -1;
  }

  .fe-ui-shot {
    width: 100%;
    max-width: 940px;
  }

  .fe-faq {
    max-width: 850px;
  }
}

@media (max-width: 680px) {
  .fe-section {
    padding: 70px 0;
  }

  .fe-reform-section {
    padding-top: 58px;
  }

  .fe-copy h2,
  .fe-product-copy h2,
  .fe-heading h2,
  .fe-cta h2,
  .fe-intro-grid .fe-copy h2,
  .fe-flux-section .fe-heading h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .fe-copy > p:not(.fe-kicker),
  .fe-product-copy > p:not(.fe-kicker),
  .fe-heading > p:not(.fe-kicker),
  .fe-cta > .container > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .fe-intro-grid {
    gap: 38px;
    padding: 34px 22px 24px;
    border-radius: 22px;
  }

  .fe-intro-grid::after {
    display: none;
  }

  .fe-source-links {
    display: grid;
    gap: 12px;
  }

  .fe-calendar {
    grid-template-columns: minmax(0, 1fr);
  }

  .fe-calendar article {
    min-height: 0;
    gap: 24px;
    padding: 24px;
  }

  .fe-calendar > a {
    grid-column: 1;
    margin: 6px 4px 3px;
  }

  .fe-check-list li {
    padding-right: 0;
  }

  .fe-app-window {
    padding: 34px 5px 5px;
    border-radius: 17px;
  }

  .fe-app-bar {
    height: 34px;
    padding-inline: 12px;
  }

  .fe-app-bar > span {
    width: 6px;
    height: 6px;
  }

  .fe-app-window img {
    border-radius: 12px;
  }

  .fe-ui-shot figcaption {
    margin-top: 9px;
  }

  .fe-ui-shot-wide {
    width: 100%;
    margin: 36px auto 0;
  }

  .fe-steps,
  .fe-flows {
    grid-template-columns: minmax(0, 1fr);
  }

  .fe-steps {
    margin-top: 20px;
  }

  .fe-steps li,
  .fe-steps li + li {
    padding: 24px;
    border-left: 0;
    border-bottom: 1px solid #f0dcd0;
  }

  .fe-steps li:last-child {
    border-bottom: 0;
  }

  .fe-reception-section .fe-product-grid {
    gap: 38px;
  }

  .fe-statuses span {
    padding: 8px 11px;
  }

  .fe-flux-section {
    padding: 64px 0;
  }

  .fe-flux-section > .container {
    width: calc(100% - 32px);
    padding: 36px 22px;
    border-radius: 22px;
  }

  .fe-flows {
    gap: 0;
    margin-top: 36px;
  }

  .fe-flows article,
  .fe-flows article + article {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .42);
  }

  .fe-flows article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .fe-faq-grid {
    gap: 38px;
  }

  .fe-faq summary {
    padding: 20px 57px 20px 19px;
    font-size: 14px;
  }

  .fe-faq details p {
    margin: -2px 24px 20px 19px;
  }

  .fe-cta {
    min-height: 0;
    padding: 70px 0 0;
  }

  .fe-cta > .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .fe-cta-copy {
    padding-bottom: 0;
    text-align: center;
  }

  .fe-cta-copy > p {
    margin-inline: auto;
    font-size: 14px;
  }

  .fe-cta-mascot {
    width: 195px;
    height: 292px;
  }

  .product-page .footer-main {
    padding-top: 55px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header,
  .mega-menu,
  .about-menu,
  .mobile-menu,
  .scroll-cue,
  .hero-actions,
  .workflow-intro .button,
  .final-cta,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .reform-section,
  .benefits-section,
  .workflow-section,
  .role-section,
  .faq-section {
    min-height: 0;
    padding: 30px 0;
    background: #fff;
  }

  .benefit-card,
  .reform-panel,
  .role-visual {
    box-shadow: none;
    break-inside: avoid;
  }
}

/* Facturation électronique — version sobre, sans décor de section */
.product-page .fe-section,
.product-page .fe-cta {
  background: transparent !important;
  background-image: none !important;
}

.product-page .fe-section::before,
.product-page .fe-section::after,
.product-page .fe-cta::before,
.product-page .fe-cta::after {
  display: none !important;
}

.product-page .fe-section {
  padding: 100px 0;
  border-top: 1px solid #e9e6e2;
}

.product-page .fe-reform-section {
  padding-top: 100px;
}

.product-page .fe-intro-grid,
.product-page .fe-plain-split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(48px, 7vw, 110px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.product-page .fe-intro-grid .fe-copy h2 {
  color: #15161a;
}

.product-page .fe-intro-grid .fe-copy > p {
  color: #696c75;
}

.product-page .fe-copy h2,
.product-page .fe-product-copy h2,
.product-page .fe-heading h2,
.product-page .fe-cta h2 {
  color: #15161a;
  font-size: clamp(36px, 3.35vw, 50px);
  line-height: 1.08;
}

.product-page .fe-copy > p,
.product-page .fe-product-copy > p,
.product-page .fe-heading > p,
.product-page .fe-cta-copy > p {
  color: #696c75;
  font-size: 16px;
  line-height: 1.75;
}

.product-page .fe-copy > p:last-child,
.product-page .fe-product-copy > p:last-child {
  margin-bottom: 0;
}

.product-page .fe-calendar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #ddd9d4;
  border-bottom: 1px solid #ddd9d4;
}

.product-page .fe-calendar article,
.product-page .fe-calendar article:first-child {
  min-height: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 18px;
  padding: 29px 24px 29px 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.product-page .fe-calendar article + article {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid #ddd9d4;
}

.product-page .fe-calendar article img {
  width: 50px;
  height: 50px;
  grid-row: 1 / span 2;
  object-fit: contain;
}

.product-page .fe-calendar time,
.product-page .fe-calendar article:first-child time {
  color: #15161a;
  font-size: 18px;
  line-height: 1.25;
}

.product-page .fe-calendar article p,
.product-page .fe-calendar article:first-child p {
  margin: 10px 0 0;
  color: #696c75;
  font-size: 13px;
  line-height: 1.65;
}

.product-page .fe-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.product-page .fe-heading-left {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.product-page .fe-heading h2 {
  font-size: clamp(38px, 4vw, 55px);
}

.product-page .fe-heading > p {
  max-width: 710px;
  margin: 19px auto 0;
}

.product-page .fe-heading-left > p {
  margin-left: 0;
}

.product-page .fe-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid #ddd9d4;
  border-bottom: 1px solid #ddd9d4;
}

.product-page .fe-feature-grid article {
  min-width: 0;
  padding: 31px 32px 32px 0;
}

.product-page .fe-feature-grid article + article {
  padding-right: 0;
  padding-left: 32px;
  border-left: 1px solid #ddd9d4;
}

.product-page .fe-feature-grid img,
.product-page .fe-steps li > img,
.product-page .fe-flows article > img {
  width: 65px;
  height: 65px;
  margin-bottom: 20px;
  object-fit: contain;
}

.product-page .fe-feature-grid h3,
.product-page .fe-steps h3,
.product-page .fe-flows h3 {
  margin: 0;
  color: #15161a;
  font-size: 20px;
  line-height: 1.25;
}

.product-page .fe-feature-grid p,
.product-page .fe-steps p,
.product-page .fe-flows p {
  margin: 10px 0 0;
  color: #696c75;
  font-size: 13px;
  line-height: 1.65;
}

.product-page .fe-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  margin: 60px 0 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid #ddd9d4;
  border-radius: 0;
  background: transparent;
}

.product-page .fe-steps li,
.product-page .fe-steps li + li {
  position: relative;
  padding: 30px 32px 0 0;
  border: 0;
  border-left: 0;
}

.product-page .fe-steps li + li {
  padding-right: 0;
  padding-left: 32px;
  border-left: 1px solid #ddd9d4;
}

.product-page .fe-steps span {
  width: auto;
  height: auto;
  display: block;
  margin: 0 0 13px;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  font-size: 12px;
  letter-spacing: .08em;
}

.product-page .fe-reception-grid {
  align-items: center;
}

.product-page .fe-icon-display {
  min-height: 290px;
  display: grid;
  place-items: center;
  border: 1px solid #ddd9d4;
}

.product-page .fe-icon-display img {
  width: min(58%, 245px);
  height: auto;
}

.product-page .fe-reception-section .fe-product-copy h2,
.product-page .fe-reception-section .fe-product-copy > p {
  color: inherit;
}

.product-page .fe-reception-section .fe-product-copy h2 {
  color: #15161a;
}

.product-page .fe-reception-section .fe-product-copy > p {
  color: #696c75;
}

.product-page .fe-statuses span {
  border-color: #ddd9d4;
  border-radius: 0;
  color: #4d5056;
  background: transparent;
}

.product-page .fe-statuses span:first-child {
  border-color: var(--orange);
  color: var(--orange-deep);
  background: transparent;
}

.product-page .fe-flux-section > .container {
  width: min(100%, var(--container));
  padding-inline: clamp(24px, 5vw, 72px);
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-page .fe-flux-section .fe-heading {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.product-page .fe-flux-section .fe-heading h2 {
  color: #15161a;
}

.product-page .fe-flows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid #ddd9d4;
  border-bottom: 1px solid #ddd9d4;
}

.product-page .fe-flows article {
  padding: 30px 40px 30px 0;
}

.product-page .fe-flows article + article {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid #ddd9d4;
}

.product-page .fe-flows article > span {
  margin-bottom: 11px;
  color: var(--orange-deep);
  font-size: 12px;
  letter-spacing: .06em;
}

.product-page .fe-faq-section {
  border-bottom: 1px solid #e9e6e2;
}

.product-page .fe-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(520px, 1.25fr);
  gap: clamp(55px, 8vw, 115px);
}

.product-page .fe-faq {
  gap: 0;
}

.product-page .fe-faq details,
.product-page .fe-faq details:last-child {
  border: 0;
  border-top: 1px solid #ddd9d4;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-page .fe-faq details:last-child {
  border-bottom: 1px solid #ddd9d4;
}

.product-page .fe-faq summary {
  padding: 24px 46px 24px 0;
  font-size: 16px;
}

.product-page .fe-faq summary::after {
  right: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
}

.product-page .fe-faq details p {
  margin: -2px 44px 23px 0;
  font-size: 14px;
}

.product-page .fe-cta {
  min-height: 0;
  padding: 100px 0;
  border-top: 1px solid #e9e6e2;
  text-align: center;
}

.product-page .fe-cta > .container {
  min-height: 0;
  display: block;
}

.product-page .fe-cta-copy {
  max-width: 770px;
  margin: 0 auto;
  padding: 0;
}

.product-page .fe-cta h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.product-page .fe-cta-copy > p {
  margin: 19px auto 0;
}

.product-page .fe-cta-icon {
  width: 84px;
  height: 84px;
  margin: 32px auto 0;
  object-fit: contain;
}

.product-page .fe-cta .button.button-primary {
  margin-top: 28px;
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: none;
}

@media (max-width: 900px) {
  .product-page .fe-section {
    padding: 76px 0;
  }

  .product-page .fe-intro-grid,
  .product-page .fe-plain-split,
  .product-page .fe-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .product-page .fe-reception-grid .fe-icon-display {
    order: 2;
  }

  .product-page .fe-faq-grid .fe-product-copy {
    max-width: 600px;
  }
}

@media (max-width: 680px) {
  .product-page .fe-section,
  .product-page .fe-cta {
    padding: 64px 0;
  }

  .product-page .fe-copy h2,
  .product-page .fe-product-copy h2,
  .product-page .fe-heading h2,
  .product-page .fe-cta h2 {
    font-size: 34px;
  }

  .product-page .fe-copy > p,
  .product-page .fe-product-copy > p,
  .product-page .fe-heading > p,
  .product-page .fe-cta-copy > p {
    font-size: 14px;
  }

  .product-page .fe-calendar,
  .product-page .fe-feature-grid,
  .product-page .fe-steps,
  .product-page .fe-flows {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-page .fe-calendar article,
  .product-page .fe-calendar article + article {
    padding: 24px 0;
    border-left: 0;
  }

  .product-page .fe-calendar article + article {
    border-top: 1px solid #ddd9d4;
  }

  .product-page .fe-feature-grid {
    margin-top: 43px;
  }

  .product-page .fe-feature-grid article,
  .product-page .fe-feature-grid article + article,
  .product-page .fe-steps li,
  .product-page .fe-steps li + li,
  .product-page .fe-flows article,
  .product-page .fe-flows article + article {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid #ddd9d4;
  }

  .product-page .fe-feature-grid article:last-child,
  .product-page .fe-steps li:last-child,
  .product-page .fe-flows article:last-child {
    border-bottom: 0;
  }

  .product-page .fe-steps,
  .product-page .fe-flows {
    margin-top: 42px;
  }

  .product-page .fe-icon-display {
    min-height: 230px;
  }

  .product-page .fe-faq summary {
    padding-block: 21px;
    font-size: 15px;
  }

  .product-page .fe-faq details p {
    margin-right: 30px;
  }
}

/* Réception — bloc fonctionnel compact */
.product-page .fe-reception-compact {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
  padding-block: 12px;
}

.product-page .fe-reception-icon {
  display: grid;
  place-items: center;
}

.product-page .fe-reception-icon img {
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.product-page .fe-reception-copy {
  max-width: 730px;
}

.product-page .fe-reception-copy h2 {
  margin: 0;
  color: #15161a;
  font-size: clamp(34px, 3.25vw, 46px);
  line-height: 1.1;
  letter-spacing: -.055em;
}

.product-page .fe-reception-copy p {
  max-width: 690px;
  margin: 16px 0 0;
  color: #696c75;
  font-size: 15px;
  line-height: 1.72;
}

.product-page .fe-reception-compact .fe-statuses {
  width: 132px;
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-page .fe-reception-compact .fe-statuses span {
  display: block;
  padding: 9px 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .product-page .fe-reception-compact {
    grid-template-columns: 100px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .product-page .fe-reception-compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 0;
  }

  .product-page .fe-reception-icon {
    justify-content: start;
  }

  .product-page .fe-reception-icon img {
    width: 86px;
    height: 86px;
  }

  .product-page .fe-reception-copy h2 {
    font-size: 32px;
  }

  .product-page .fe-reception-copy p {
    font-size: 14px;
  }

}

/* Réception : composition centrée */
.product-page .fe-reception-compact {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  padding: 0;
  text-align: center;
}

.product-page .fe-reception-icon {
  display: block;
  margin-bottom: 24px;
}

.product-page .fe-reception-icon img {
  width: 104px;
  height: 104px;
  margin-inline: auto;
}

.product-page .fe-reception-copy {
  max-width: 100%;
}

.product-page .fe-reception-copy h2 {
  max-width: 760px;
  margin-inline: auto;
}

.product-page .fe-reception-copy p {
  max-width: 700px;
  margin: 18px auto 0;
}

@media (max-width: 680px) {
  .product-page .fe-reception-icon img {
    width: 86px;
    height: 86px;
  }
}

/* Réforme : comparaison PDF / facture électronique */
.product-page .fe-reform-compare > .fe-heading {
  max-width: 830px;
}

.product-page .fe-reform-compare > .fe-heading > p {
  max-width: 720px;
}

.product-page .fe-compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  align-items: center;
  max-width: 940px;
  margin: 56px auto 0;
  border-top: 1px solid #ddd9d4;
  border-bottom: 1px solid #ddd9d4;
}

.product-page .fe-compare-grid article {
  min-height: 270px;
  padding: 31px 36px;
  text-align: center;
}

.product-page .fe-compare-grid article:first-child {
  border-right: 1px solid #ddd9d4;
}

.product-page .fe-compare-grid article:last-child {
  border-left: 1px solid #ddd9d4;
}

.product-page .fe-compare-grid img {
  width: 105px;
  height: 105px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.product-page .fe-compare-grid h3 {
  margin: 0;
  color: #15161a;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.product-page .fe-compare-grid p {
  max-width: 310px;
  margin: 10px auto 0;
  color: #696c75;
  font-size: 13px;
  line-height: 1.65;
}

.product-page .fe-compare-sign {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.product-page .fe-reform-note {
  max-width: 760px;
  margin: 38px auto 0;
  color: #4e5158;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.product-page .fe-deadline-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1060px;
  margin: 54px auto 0;
  border-top: 1px solid #ddd9d4;
  border-bottom: 1px solid #ddd9d4;
}

.product-page .fe-deadline-logo {
  width: 240px;
  height: auto;
  display: block;
  margin: 52px auto 0;
}

@media (max-width: 680px) {
  .product-page .fe-deadline-logo {
    width: 200px;
  }
}

/* Sections centrées, FAQ conservée à gauche */
.product-page .fe-section:not(.fe-faq-section) .fe-heading-left {
  margin-inline: auto;
  text-align: center;
}

.product-page .fe-section:not(.fe-faq-section) .fe-heading-left > p {
  margin-inline: auto;
}

.product-page #activation .fe-feature-grid article,
.product-page #parcours .fe-steps li,
.product-page #flux .fe-flows article {
  text-align: center;
}

.product-page #activation .fe-feature-grid img,
.product-page #parcours .fe-steps li > img,
.product-page #flux .fe-flows article > img {
  margin-inline: auto;
}

.product-page #flux .fe-heading {
  margin-inline: auto;
  text-align: center;
}

.product-page #flux .fe-flows article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-page #flux .fe-flows article > span,
.product-page #flux .fe-flows h3,
.product-page #flux .fe-flows p {
  width: 100%;
  text-align: center;
}

.product-page #flux .fe-flows p {
  margin-inline: auto;
}

/* FAQ : traits uniquement entre les questions */
.product-page .fe-faq details,
.product-page .fe-faq details:last-child {
  border: 0 !important;
}

.product-page .fe-faq details + details {
  border-top: 1px solid #ddd9d4 !important;
}

/* Séparateurs réservés à la FAQ */
.product-page .fe-faq details,
.product-page .fe-faq details:last-child {
  border-top: 1px solid #ddd9d4 !important;
}

.product-page .fe-faq details:last-child {
  border-bottom: 1px solid #ddd9d4 !important;
}

.product-page .fe-deadline-logo + .fe-deadline-strip {
  margin-top: 20px;
}

.product-page .fe-deadline-strip article {
  padding: 25px 35px 25px 0;
}

.product-page .fe-deadline-strip article + article {
  padding-right: 0;
  padding-left: 35px;
  border-left: 1px solid #ddd9d4;
}

.product-page .fe-deadline-strip time {
  display: block;
  color: #15161a;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.03em;
}

.product-page .fe-deadline-strip p {
  margin: 9px 0 0;
  color: #696c75;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .product-page .fe-compare-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 42px;
  }

  .product-page .fe-compare-grid article,
  .product-page .fe-compare-grid article:first-child,
  .product-page .fe-compare-grid article:last-child {
    min-height: 0;
    padding: 28px 20px;
    border: 0;
  }

  .product-page .fe-compare-grid article:first-child {
    border-bottom: 1px solid #ddd9d4;
  }

  .product-page .fe-compare-sign {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border: 1px solid #ddd9d4;
    border-radius: 50%;
    background: #fff;
    font-size: 28px;
    transform: translate(-50%, -50%);
  }

  .product-page .fe-reform-note {
    margin-top: 32px;
    font-size: 14px;
  }

  .product-page .fe-deadline-strip {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 42px;
  }

  .product-page .fe-deadline-strip article,
  .product-page .fe-deadline-strip article + article {
    padding: 23px 0;
    border-left: 0;
  }

  .product-page .fe-deadline-strip article + article {
    border-top: 1px solid #ddd9d4;
  }
}

/* Contenu sans séparateurs gris */
.product-page .fe-section,
.product-page .fe-faq-section,
.product-page .fe-compare-grid,
.product-page .fe-deadline-strip,
.product-page .fe-feature-grid,
.product-page .fe-steps,
.product-page .fe-flows,
.product-page .fe-faq details,
.product-page .fe-faq details:last-child {
  border: 0 !important;
}

.product-page .fe-calendar article + article,
.product-page .fe-compare-grid article:first-child,
.product-page .fe-compare-grid article:last-child,
.product-page .fe-deadline-strip article + article,
.product-page .fe-feature-grid article + article,
.product-page .fe-steps li + li,
.product-page .fe-flows article + article,
.product-page .fe-faq details:last-child {
  border: 0 !important;
}

@media (max-width: 680px) {
  .product-page .fe-calendar article + article,
  .product-page .fe-compare-grid article:first-child,
  .product-page .fe-deadline-strip article + article,
  .product-page .fe-feature-grid article,
  .product-page .fe-feature-grid article + article,
  .product-page .fe-steps li,
  .product-page .fe-steps li + li,
  .product-page .fe-flows article,
  .product-page .fe-flows article + article {
    border: 0 !important;
  }

  .product-page .fe-feature-grid,
  .product-page .fe-steps,
  .product-page .fe-flows {
    gap: 30px;
  }
}

/* Mascotte en relief au-dessus du footer */
.product-page .site-footer {
  position: relative;
  overflow: visible;
  margin-top: 205px;
}

.product-page .footer-mascot {
  position: absolute;
  z-index: 2;
  top: -258px;
  left: 50%;
  width: 282px;
  height: 282px;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, .3));
}

.product-page .site-footer .container {
  position: relative;
  z-index: 1;
}

.product-page .footer-main {
  padding-top: 66px;
}

@media (max-width: 680px) {
  .product-page .site-footer {
    margin-top: 132px;
  }

  .product-page .footer-mascot {
    top: -182px;
    width: 182px;
    height: 182px;
  }

  .product-page .footer-main {
    padding-top: 55px;
  }
}

/* CRM & ventes — page produit légère */
.crm-sales-page .hero {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .18) 56%, #fff 100%),
    linear-gradient(to right, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06)),
    url("/assets/generated/crm-hero-bg-v1.webp") center center / cover no-repeat,
    #f1ece5;
}

.crm-sales-page .crm-hero-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(31, 38, 53, .12));
}

.crm-sales-page .crm-section {
  position: relative;
  padding: 108px 0;
  border: 0;
  background: transparent;
}

.crm-sales-page .crm-heading {
  max-width: 810px;
  margin: 0 auto;
  text-align: center;
}

.crm-sales-page .crm-heading h2,
.crm-sales-page .crm-faq-intro h2,
.crm-sales-page .crm-cta h2 {
  margin: 0;
  color: #15161a;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.crm-sales-page .crm-heading p,
.crm-sales-page .crm-cta p {
  max-width: 710px;
  margin: 19px auto 0;
  color: #696c75;
  font-size: 16px;
  line-height: 1.75;
}

.crm-sales-page .crm-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 82px);
  max-width: 1120px;
  margin: 64px auto 0;
}

.crm-sales-page .crm-points article,
.crm-sales-page .crm-journey li {
  min-width: 0;
  text-align: center;
}

.crm-sales-page .crm-points img {
  width: 112px;
  height: 112px;
  margin: 0 auto 19px;
  object-fit: contain;
}

.crm-sales-page .crm-points h3,
.crm-sales-page .crm-journey h3 {
  margin: 0;
  color: #15161a;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.crm-sales-page .crm-points p,
.crm-sales-page .crm-journey p {
  max-width: 290px;
  margin: 11px auto 0;
  color: #696c75;
  font-size: 13px;
  line-height: 1.7;
}

.crm-sales-page .crm-journey-section {
  padding-top: 72px;
}

.crm-sales-page .crm-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3.5vw, 58px);
  max-width: 1180px;
  margin: 66px auto 0;
  padding: 0;
  list-style: none;
}

.crm-sales-page .crm-journey img {
  width: 110px;
  height: 110px;
  margin: 0 auto 17px;
  object-fit: contain;
}

.crm-sales-page .crm-journey span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.crm-sales-page .crm-sales-focus {
  padding-top: 76px;
  padding-bottom: 92px;
}

.crm-sales-page .crm-focus-icon {
  width: 142px;
  height: 142px;
  margin: 0 auto 25px;
  object-fit: contain;
}

.crm-sales-page .crm-quotes-section {
  padding-top: 82px;
}

.crm-sales-page .crm-quote-icon {
  width: 154px;
  height: 154px;
  margin: 34px auto 0;
  object-fit: contain;
}

.crm-sales-page .crm-faq-section {
  padding-top: 108px;
}

.crm-sales-page .crm-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.crm-sales-page .crm-faq-intro {
  text-align: left;
}

.crm-sales-page .crm-faq {
  text-align: left;
}

.crm-sales-page .crm-faq details,
.crm-sales-page .crm-faq details:last-child {
  border: 0;
  border-top: 1px solid #ddd9d4;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.crm-sales-page .crm-faq details:last-child {
  border-bottom: 1px solid #ddd9d4;
}

.crm-sales-page .crm-faq summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: #15161a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.crm-sales-page .crm-faq summary::-webkit-details-marker {
  display: none;
}

.crm-sales-page .crm-faq summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.crm-sales-page .crm-faq details[open] summary::after {
  content: "−";
}

.crm-sales-page .crm-faq p {
  max-width: 690px;
  margin: -3px 48px 25px 0;
  color: #696c75;
  font-size: 14px;
  line-height: 1.75;
}

.crm-sales-page .crm-cta {
  padding-top: 76px;
  padding-bottom: 0;
  text-align: center;
}

.crm-sales-page .crm-cta .button {
  margin-top: 30px;
}

@media (max-width: 1050px) {
  .crm-sales-page .crm-section {
    padding: 84px 0;
  }

  .crm-sales-page .crm-journey-section,
  .crm-sales-page .crm-sales-focus,
  .crm-sales-page .crm-quotes-section {
    padding-top: 52px;
  }

  .crm-sales-page .crm-points,
  .crm-sales-page .crm-journey {
    gap: 36px;
  }

  .crm-sales-page .crm-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }
}

@media (max-width: 680px) {
  .crm-sales-page .hero {
    min-height: 720px;
    padding: 132px 0 80px;
    background-position: 62% center;
  }

  .crm-sales-page .crm-hero-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 12px;
  }

  .crm-sales-page .crm-section {
    padding: 72px 0;
  }

  .crm-sales-page .crm-heading h2,
  .crm-sales-page .crm-faq-intro h2,
  .crm-sales-page .crm-cta h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .crm-sales-page .crm-heading p,
  .crm-sales-page .crm-cta p {
    font-size: 14px;
  }

  .crm-sales-page .crm-points,
  .crm-sales-page .crm-journey {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    margin-top: 48px;
  }

  .crm-sales-page .crm-points img,
  .crm-sales-page .crm-journey img {
    width: 100px;
    height: 100px;
  }

  .crm-sales-page .crm-journey-section,
  .crm-sales-page .crm-sales-focus,
  .crm-sales-page .crm-quotes-section {
    padding-top: 34px;
  }

  .crm-sales-page .crm-focus-icon {
    width: 118px;
    height: 118px;
  }

  .crm-sales-page .crm-quote-icon {
    width: 130px;
    height: 130px;
  }

  .crm-sales-page .crm-faq-section {
    padding-top: 72px;
  }

  .crm-sales-page .crm-faq summary {
    padding: 22px 38px 22px 0;
    font-size: 15px;
  }

  .crm-sales-page .crm-faq p {
    margin-right: 0;
    font-size: 13px;
  }

  .crm-sales-page .crm-cta {
    padding-top: 38px;
    padding-bottom: 0;
  }
}

/* Diffusion d'annonces — page produit légère */
.diffusion-page .hero {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .19) 56%, #fff 100%),
    linear-gradient(to right, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04)),
    url("/assets/generated/diffusion-hero-bg-v1.webp") center center / cover no-repeat,
    #f1ece5;
}

.diffusion-page .diffusion-hero-icon {
  width: 106px;
  height: 106px;
  margin: 0 auto 8px;
  object-fit: contain;
  filter: drop-shadow(0 13px 17px rgba(255, 91, 0, .14));
}

.diffusion-page .diffusion-section {
  position: relative;
  padding: 108px 0;
  border: 0;
  background: transparent;
}

.diffusion-page .diffusion-heading {
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
}

.diffusion-page .diffusion-heading h2,
.diffusion-page .diffusion-faq-intro h2,
.diffusion-page .diffusion-cta h2 {
  margin: 0;
  color: #15161a;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.diffusion-page .diffusion-heading p,
.diffusion-page .diffusion-cta p {
  max-width: 720px;
  margin: 19px auto 0;
  color: #696c75;
  font-size: 16px;
  line-height: 1.75;
}

.diffusion-page .platform-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px clamp(28px, 4vw, 62px);
  max-width: 1120px;
  margin: 60px auto 0;
}

.diffusion-page .platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  white-space: nowrap;
}

.diffusion-page .platform-logo img {
  width: auto;
  height: auto;
  display: block;
  max-width: 190px;
  max-height: 48px;
  object-fit: contain;
}

.diffusion-page .platform-leboncoin img {
  width: 178px;
}

.diffusion-page .platform-lacentrale img {
  width: 190px;
}

.diffusion-page .platform-autoscout img {
  width: 92px;
  max-height: 62px;
}

.diffusion-page .platform-marketplace {
  gap: 11px;
  color: #0866ff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}

.diffusion-page .platform-marketplace img {
  width: 46px;
  height: 46px;
}

.diffusion-page .platform-note {
  max-width: 610px;
  margin: 34px auto 0;
  color: #8a8c93;
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.diffusion-page .diffusion-workflow-section {
  padding-top: 66px;
}

.diffusion-page .diffusion-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 112px);
  max-width: 1050px;
  margin: 66px auto 0;
  padding: 0;
  list-style: none;
}

.diffusion-page .diffusion-journey li {
  min-width: 0;
  text-align: center;
}

.diffusion-page .diffusion-journey img {
  width: 120px;
  height: 120px;
  margin: 0 auto 17px;
  object-fit: contain;
}

.diffusion-page .diffusion-journey span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.diffusion-page .diffusion-journey h3 {
  margin: 0;
  color: #15161a;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.diffusion-page .diffusion-journey p {
  max-width: 295px;
  margin: 11px auto 0;
  color: #696c75;
  font-size: 13px;
  line-height: 1.7;
}

.diffusion-page .diffusion-showcase-section {
  padding-top: 72px;
}

.diffusion-page .showcase-icon {
  width: 146px;
  height: 146px;
  margin: 0 auto 25px;
  object-fit: contain;
}

.diffusion-page .showcase-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 38px;
  max-width: 920px;
  margin: 38px auto 0;
  color: #2b2d33;
  font-size: 14px;
  font-weight: 700;
}

.diffusion-page .showcase-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.diffusion-page .showcase-points span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.diffusion-page .diffusion-sync-section {
  padding-top: 74px;
  padding-bottom: 82px;
}

.diffusion-page .sync-icon {
  width: 144px;
  height: 144px;
  margin: 31px auto 0;
  object-fit: contain;
}

.diffusion-page .diffusion-faq-section {
  padding-top: 108px;
}

.diffusion-page .diffusion-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.diffusion-page .diffusion-faq-intro,
.diffusion-page .diffusion-faq {
  text-align: left;
}

.diffusion-page .diffusion-faq details,
.diffusion-page .diffusion-faq details:last-child {
  border: 0;
  border-top: 1px solid #ddd9d4;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.diffusion-page .diffusion-faq details:last-child {
  border-bottom: 1px solid #ddd9d4;
}

.diffusion-page .diffusion-faq summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: #15161a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.diffusion-page .diffusion-faq summary::-webkit-details-marker {
  display: none;
}

.diffusion-page .diffusion-faq summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.diffusion-page .diffusion-faq details[open] summary::after {
  content: "−";
}

.diffusion-page .diffusion-faq p {
  max-width: 690px;
  margin: -3px 48px 25px 0;
  color: #696c75;
  font-size: 14px;
  line-height: 1.75;
}

.diffusion-page .diffusion-cta {
  padding-top: 76px;
  padding-bottom: 0;
  text-align: center;
}

.diffusion-page .diffusion-cta .button {
  margin-top: 30px;
}

@media (max-width: 1050px) {
  .diffusion-page .diffusion-section {
    padding: 84px 0;
  }

  .diffusion-page .diffusion-workflow-section,
  .diffusion-page .diffusion-showcase-section,
  .diffusion-page .diffusion-sync-section {
    padding-top: 52px;
  }

  .diffusion-page .diffusion-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }
}

@media (max-width: 680px) {
  .diffusion-page .hero {
    min-height: 720px;
    padding: 132px 0 80px;
    background-position: 62% center;
  }

  .diffusion-page .diffusion-hero-icon {
    width: 82px;
    height: 82px;
  }

  .diffusion-page .diffusion-section {
    padding: 72px 0;
  }

  .diffusion-page .diffusion-heading h2,
  .diffusion-page .diffusion-faq-intro h2,
  .diffusion-page .diffusion-cta h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .diffusion-page .diffusion-heading p,
  .diffusion-page .diffusion-cta p {
    font-size: 14px;
  }

  .diffusion-page .platform-list {
    align-items: center;
    flex-direction: column;
    margin-top: 45px;
    padding-left: 0;
  }

  .diffusion-page .platform-logo {
    min-height: 54px;
  }

  .diffusion-page .platform-marketplace {
    font-size: 21px;
  }

  .diffusion-page .diffusion-workflow-section,
  .diffusion-page .diffusion-showcase-section,
  .diffusion-page .diffusion-sync-section {
    padding-top: 34px;
  }

  .diffusion-page .diffusion-journey {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    margin-top: 48px;
  }

  .diffusion-page .diffusion-journey img {
    width: 105px;
    height: 105px;
  }

  .diffusion-page .showcase-icon,
  .diffusion-page .sync-icon {
    width: 122px;
    height: 122px;
  }

  .diffusion-page .showcase-points {
    align-items: center;
    flex-direction: column;
    gap: 13px;
    margin-top: 30px;
    font-size: 13px;
  }

  .diffusion-page .diffusion-faq-section {
    padding-top: 72px;
  }

  .diffusion-page .diffusion-faq summary {
    padding: 22px 38px 22px 0;
    font-size: 15px;
  }

  .diffusion-page .diffusion-faq p {
    margin-right: 0;
    font-size: 13px;
  }

  .diffusion-page .diffusion-cta {
    padding-top: 38px;
    padding-bottom: 0;
  }
}

/* Stock & véhicules — page produit légère */
.stock-page .hero {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .2) 56%, #fff 100%),
    linear-gradient(to right, rgba(255, 255, 255, .15), rgba(255, 255, 255, .05)),
    url("/assets/generated/stock-hero-bg-v1.webp") center center / cover no-repeat,
    #f1ece5;
}

.stock-page .stock-hero-icon {
  width: 142px;
  height: 142px;
  margin: -20px auto -1px;
  object-fit: contain;
  filter: drop-shadow(0 13px 17px rgba(255, 91, 0, .13));
}

.stock-page .stock-section {
  position: relative;
  padding: 108px 0;
  border: 0;
  background: transparent;
}

.stock-page .stock-heading {
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
}

.stock-page .stock-heading h2,
.stock-page .stock-faq-intro h2,
.stock-page .stock-cta h2 {
  margin: 0;
  color: #15161a;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.stock-page .stock-heading p,
.stock-page .stock-cta p {
  max-width: 720px;
  margin: 19px auto 0;
  color: #696c75;
  font-size: 16px;
  line-height: 1.75;
}

.stock-page .stock-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 82px);
  max-width: 1120px;
  margin: 64px auto 0;
}

.stock-page .stock-points article,
.stock-page .stock-journey li {
  min-width: 0;
  text-align: center;
}

.stock-page .stock-points img {
  width: 116px;
  height: 116px;
  margin: 0 auto 19px;
  object-fit: contain;
}

.stock-page .stock-points h3,
.stock-page .stock-journey h3 {
  margin: 0;
  color: #15161a;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.stock-page .stock-points p,
.stock-page .stock-journey p {
  max-width: 290px;
  margin: 11px auto 0;
  color: #696c75;
  font-size: 13px;
  line-height: 1.7;
}

.stock-page .stock-workflow-section {
  padding-top: 68px;
}

.stock-page .stock-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3.5vw, 58px);
  max-width: 1180px;
  margin: 66px auto 0;
  padding: 0;
  list-style: none;
}

.stock-page .stock-journey img {
  width: 110px;
  height: 110px;
  margin: 0 auto 17px;
  object-fit: contain;
}

.stock-page .stock-journey span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.stock-page .stock-visibility-section {
  padding-top: 76px;
  padding-bottom: 90px;
}

.stock-page .stock-focus-icon {
  width: 144px;
  height: 144px;
  margin: 0 auto 25px;
  object-fit: contain;
}

.stock-page .stock-connected-section {
  padding-top: 78px;
  padding-bottom: 86px;
}

.stock-page .stock-connected-icon {
  width: 144px;
  height: 144px;
  margin: 31px auto 0;
  object-fit: contain;
}

.stock-page .stock-faq-section {
  padding-top: 108px;
}

.stock-page .stock-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.stock-page .stock-faq-intro,
.stock-page .stock-faq {
  text-align: left;
}

.stock-page .stock-faq details,
.stock-page .stock-faq details:last-child {
  border: 0;
  border-top: 1px solid #ddd9d4;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stock-page .stock-faq details:last-child {
  border-bottom: 1px solid #ddd9d4;
}

.stock-page .stock-faq summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: #15161a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.stock-page .stock-faq summary::-webkit-details-marker {
  display: none;
}

.stock-page .stock-faq summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.stock-page .stock-faq details[open] summary::after {
  content: "−";
}

.stock-page .stock-faq p {
  max-width: 690px;
  margin: -3px 48px 25px 0;
  color: #696c75;
  font-size: 14px;
  line-height: 1.75;
}

.stock-page .stock-cta {
  padding-top: 76px;
  padding-bottom: 0;
  text-align: center;
}

.stock-page .stock-cta .button {
  margin-top: 30px;
}

@media (max-width: 1050px) {
  .stock-page .stock-section {
    padding: 84px 0;
  }

  .stock-page .stock-workflow-section,
  .stock-page .stock-visibility-section,
  .stock-page .stock-connected-section {
    padding-top: 52px;
  }

  .stock-page .stock-points,
  .stock-page .stock-journey {
    gap: 36px;
  }

  .stock-page .stock-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }
}

@media (max-width: 680px) {
  .stock-page .hero {
    min-height: 720px;
    padding: 132px 0 80px;
    background-position: 62% center;
  }

  .stock-page .stock-hero-icon {
    width: 116px;
    height: 116px;
    margin: -10px auto 0;
  }

  .stock-page .stock-section {
    padding: 72px 0;
  }

  .stock-page .stock-heading h2,
  .stock-page .stock-faq-intro h2,
  .stock-page .stock-cta h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .stock-page .stock-heading p,
  .stock-page .stock-cta p {
    font-size: 14px;
  }

  .stock-page .stock-points,
  .stock-page .stock-journey {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    margin-top: 48px;
  }

  .stock-page .stock-points img,
  .stock-page .stock-journey img {
    width: 102px;
    height: 102px;
  }

  .stock-page .stock-workflow-section,
  .stock-page .stock-visibility-section,
  .stock-page .stock-connected-section {
    padding-top: 34px;
  }

  .stock-page .stock-focus-icon,
  .stock-page .stock-connected-icon {
    width: 122px;
    height: 122px;
  }

  .stock-page .stock-faq-section {
    padding-top: 72px;
  }

  .stock-page .stock-faq summary {
    padding: 22px 38px 22px 0;
    font-size: 15px;
  }

  .stock-page .stock-faq p {
    margin-right: 0;
    font-size: 13px;
  }

  .stock-page .stock-cta {
    padding-top: 38px;
    padding-bottom: 0;
  }
}

/* Contrats & signature — page produit légère */
.contracts-page .hero {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .2) 56%, #fff 100%),
    linear-gradient(to right, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04)),
    url("/assets/generated/contracts-hero-bg-v1.webp") center center / cover no-repeat,
    #f1ece5;
}

.contracts-page .contracts-hero-icon {
  width: 116px;
  height: 116px;
  margin: -13px auto 3px;
  object-fit: contain;
  filter: drop-shadow(0 13px 17px rgba(255, 91, 0, .13));
}

.contracts-page .contracts-section {
  position: relative;
  padding: 108px 0;
  border: 0;
  background: transparent;
}

.contracts-page .contracts-heading {
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
}

.contracts-page .contracts-heading h2,
.contracts-page .contracts-faq-intro h2,
.contracts-page .contracts-cta h2 {
  margin: 0;
  color: #15161a;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.contracts-page .contracts-heading p,
.contracts-page .contracts-cta p {
  max-width: 720px;
  margin: 19px auto 0;
  color: #696c75;
  font-size: 16px;
  line-height: 1.75;
}

.contracts-page .contracts-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 82px);
  max-width: 1120px;
  margin: 64px auto 0;
}

.contracts-page .contracts-points article,
.contracts-page .contracts-journey li {
  min-width: 0;
  text-align: center;
}

.contracts-page .contracts-points img {
  width: 114px;
  height: 114px;
  margin: 0 auto 19px;
  object-fit: contain;
}

.contracts-page .contracts-points h3,
.contracts-page .contracts-journey h3 {
  margin: 0;
  color: #15161a;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.contracts-page .contracts-points p,
.contracts-page .contracts-journey p {
  max-width: 290px;
  margin: 11px auto 0;
  color: #696c75;
  font-size: 13px;
  line-height: 1.7;
}

.contracts-page .contracts-workflow-section {
  padding-top: 68px;
}

.contracts-page .contracts-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 112px);
  max-width: 1050px;
  margin: 66px auto 0;
  padding: 0;
  list-style: none;
}

.contracts-page .contracts-journey img {
  width: 120px;
  height: 120px;
  margin: 0 auto 17px;
  object-fit: contain;
}

.contracts-page .contracts-journey span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.contracts-page .contracts-signature-section {
  padding-top: 76px;
  padding-bottom: 90px;
}

.contracts-page .contracts-focus-icon {
  width: 146px;
  height: 146px;
  margin: 0 auto 25px;
  object-fit: contain;
}

.contracts-page .contracts-trace-section {
  padding-top: 76px;
  padding-bottom: 84px;
}

.contracts-page .contracts-trace-icon {
  width: 142px;
  height: 142px;
  margin: 31px auto 0;
  object-fit: contain;
}

.contracts-page .contracts-faq-section {
  padding-top: 108px;
}

.contracts-page .contracts-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.contracts-page .contracts-faq-intro,
.contracts-page .contracts-faq {
  text-align: left;
}

.contracts-page .contracts-faq details,
.contracts-page .contracts-faq details:last-child {
  border: 0;
  border-top: 1px solid #ddd9d4;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contracts-page .contracts-faq details:last-child {
  border-bottom: 1px solid #ddd9d4;
}

.contracts-page .contracts-faq summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: #15161a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.contracts-page .contracts-faq summary::-webkit-details-marker {
  display: none;
}

.contracts-page .contracts-faq summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.contracts-page .contracts-faq details[open] summary::after {
  content: "−";
}

.contracts-page .contracts-faq p {
  max-width: 690px;
  margin: -3px 48px 25px 0;
  color: #696c75;
  font-size: 14px;
  line-height: 1.75;
}

.contracts-page .contracts-cta {
  padding-top: 76px;
  padding-bottom: 0;
  text-align: center;
}

.contracts-page .contracts-cta .button {
  margin-top: 30px;
}

@media (max-width: 1050px) {
  .contracts-page .contracts-section {
    padding: 84px 0;
  }

  .contracts-page .contracts-workflow-section,
  .contracts-page .contracts-signature-section,
  .contracts-page .contracts-trace-section {
    padding-top: 52px;
  }

  .contracts-page .contracts-points,
  .contracts-page .contracts-journey {
    gap: 36px;
  }

  .contracts-page .contracts-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }
}

@media (max-width: 680px) {
  .contracts-page .hero {
    min-height: 720px;
    padding: 132px 0 80px;
    background-position: 62% center;
  }

  .contracts-page .contracts-hero-icon {
    width: 96px;
    height: 96px;
    margin: -5px auto 5px;
  }

  .contracts-page .contracts-section {
    padding: 72px 0;
  }

  .contracts-page .contracts-heading h2,
  .contracts-page .contracts-faq-intro h2,
  .contracts-page .contracts-cta h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .contracts-page .contracts-heading p,
  .contracts-page .contracts-cta p {
    font-size: 14px;
  }

  .contracts-page .contracts-points,
  .contracts-page .contracts-journey {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    margin-top: 48px;
  }

  .contracts-page .contracts-points img,
  .contracts-page .contracts-journey img {
    width: 102px;
    height: 102px;
  }

  .contracts-page .contracts-workflow-section,
  .contracts-page .contracts-signature-section,
  .contracts-page .contracts-trace-section {
    padding-top: 34px;
  }

  .contracts-page .contracts-focus-icon,
  .contracts-page .contracts-trace-icon {
    width: 122px;
    height: 122px;
  }

  .contracts-page .contracts-faq-section {
    padding-top: 72px;
  }

  .contracts-page .contracts-faq summary {
    padding: 22px 38px 22px 0;
    font-size: 15px;
  }

  .contracts-page .contracts-faq p {
    margin-right: 0;
    font-size: 13px;
  }

  .contracts-page .contracts-cta {
    padding-top: 38px;
    padding-bottom: 0;
  }
}

/* Garanties, assurances et financements */
.protection-page .hero {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .14) 58%, #fff 100%),
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .97) 32%, rgba(255, 255, 255, .7) 48%, rgba(255, 255, 255, .12) 72%, transparent 100%),
    url("/assets/generated/garanties-assurances-financements-hero-v1.png") 58% center / cover no-repeat,
    #f1ece5;
}

.protection-page .hero-copy {
  max-width: 690px;
  margin: 0;
  text-align: left;
}

.protection-page .hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 4.5vw, 72px);
}

.protection-page .hero-copy > p {
  max-width: 610px;
  margin: 25px 0 0;
}

.protection-page .hero-actions {
  justify-content: flex-start;
}

.protection-page .contracts-section,
.protection-page .contracts-signature-section,
.protection-page .contracts-trace-section,
.protection-page .contracts-faq-section,
.protection-page .contracts-cta {
  border: 0;
  background: #fff;
}

@media (max-width: 1050px) {
  .protection-page .hero {
    background-position: center center, center center, 65% center;
  }

  .protection-page .hero-copy {
    max-width: 620px;
  }

  .protection-page .hero h1 {
    max-width: 620px;
    font-size: clamp(46px, 6.7vw, 66px);
  }
}

@media (max-width: 680px) {
  .protection-page .hero {
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .32) 58%, #fff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 58%, rgba(255, 255, 255, .38) 100%),
      url("/assets/generated/garanties-assurances-financements-hero-v1.png") 72% center / cover no-repeat,
      #f1ece5;
  }

  .protection-page .hero h1 {
    font-size: clamp(39px, 11vw, 50px);
  }
}

/* Pilotage & analyse — déclinaison du gabarit CRM */
.pilotage-page .hero {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .19) 56%, #fff 100%),
    linear-gradient(to right, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)),
    url("/assets/generated/pilotage-hero-bg-v1.webp") center center / cover no-repeat,
    #f1ece5;
}

@media (max-width: 680px) {
  .pilotage-page .hero {
    background-position: 62% center;
  }
}

/* CTA produit — alignés sur la facturation électronique */
.crm-sales-page .crm-cta,
.diffusion-page .diffusion-cta,
.stock-page .stock-cta,
.contracts-page .contracts-cta {
  padding-bottom: 100px;
}

.crm-sales-page .crm-cta h2,
.diffusion-page .diffusion-cta h2,
.stock-page .stock-cta h2,
.contracts-page .contracts-cta h2 {
  max-width: 720px;
  margin-inline: auto;
}

.crm-sales-page .crm-cta p,
.diffusion-page .diffusion-cta p,
.stock-page .stock-cta p,
.contracts-page .contracts-cta p {
  max-width: 590px;
}

@media (max-width: 680px) {
  .crm-sales-page .crm-cta,
  .diffusion-page .diffusion-cta,
  .stock-page .stock-cta,
  .contracts-page .contracts-cta {
    padding-bottom: 64px;
  }
}

/* Parcours VO — parcours métier de l'entrée du véhicule à sa livraison */
.parcours-vo-page {
  --journey-page-bg: #fff;
  background: var(--journey-page-bg);
}

.parcours-vo-page .hero {
  height: 100svh;
  min-height: 760px;
  max-height: 940px;
  padding: 150px 0 102px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .02) 0%, rgba(255, 255, 255, .04) 64%, rgba(255, 255, 255, .72) 87%, #fff 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .92) 30%, rgba(255, 255, 255, .58) 48%, rgba(255, 255, 255, .12) 70%, rgba(255, 255, 255, .03) 100%),
    url("/assets/generated/parcours-vo-hero-bg-v1.webp") center center / cover no-repeat,
    #f1ece5;
}

.parcours-vo-page .hero-grid {
  display: block;
}

.parcours-vo-page .hero-copy {
  max-width: 660px;
  margin: 0;
  text-align: left;
}

.parcours-vo-page .hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(48px, 4.5vw, 72px);
}

.parcours-vo-page .hero-copy > p {
  max-width: 610px;
  margin: 25px 0 0;
}

.parcours-vo-page .hero-actions {
  justify-content: flex-start;
}

.parcours-vo-page .hero-proof {
  justify-content: flex-start;
}

.parcours-vo-page .journey-section,
.parcours-vo-page .journey-intro,
.parcours-vo-page .journey-chapter,
.parcours-vo-page .journey-benefits,
.parcours-vo-page .journey-benefits-section,
.parcours-vo-page .journey-faq-section {
  position: relative;
  padding: 108px 0;
  border: 0;
  background: var(--journey-page-bg);
}

.parcours-vo-page .journey-intro {
  padding-top: 114px;
  padding-bottom: 96px;
}

.parcours-vo-page .journey-heading {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.parcours-vo-page .journey-heading h2,
.parcours-vo-page .journey-copy h2,
.parcours-vo-page .journey-faq-intro h2,
.parcours-vo-page .journey-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(39px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -.058em;
}

.parcours-vo-page .journey-heading > p,
.parcours-vo-page .journey-copy > p,
.parcours-vo-page .journey-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.parcours-vo-page .journey-heading > p {
  max-width: 730px;
  margin: 20px auto 0;
}

.parcours-vo-page .journey-steps {
  position: relative;
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 58px auto 0;
  padding: 0;
  list-style: none;
}

.parcours-vo-page .journey-steps li {
  min-width: 0;
  position: relative;
  padding: 0 7px;
  text-align: center;
}

.parcours-vo-page .journey-steps li:not(:last-child)::after {
  display: none;
}

.parcours-vo-page .journey-flow-number,
.parcours-vo-page .journey-step-index {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 11px;
  border: 0;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  box-shadow: none;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .06em;
  transition: color .25s ease;
}

.parcours-vo-page .journey-steps li:hover .journey-flow-number,
.parcours-vo-page .journey-steps li:hover .journey-step-index {
  color: var(--orange);
  background: transparent;
  transform: none;
}

.parcours-vo-page .journey-flow-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 13px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.parcours-vo-page .journey-flow-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: none;
}

.parcours-vo-page .journey-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.28;
  letter-spacing: -.035em;
}

.parcours-vo-page .journey-steps p {
  max-width: 172px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.parcours-vo-page .journey-chapter {
  overflow: hidden;
  border-top: 0;
}

.parcours-vo-page .journey-chapter.is-reversed,
.parcours-vo-page .journey-chapter.is-reverse,
.parcours-vo-page .journey-chapter--reverse,
.parcours-vo-page .journey-chapter.is-soft,
.parcours-vo-page .journey-chapter-diffusion {
  background: var(--journey-page-bg);
}

.parcours-vo-page .journey-chapter-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(490px, 1.08fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
  min-height: 560px;
}

.parcours-vo-page .journey-chapter-copy {
  position: relative;
  z-index: 1;
  padding: 86px 0;
}

.parcours-vo-page .journey-chapter.is-reversed .journey-copy,
.parcours-vo-page .journey-chapter.is-reverse .journey-copy,
.parcours-vo-page .journey-chapter--reverse .journey-copy {
  order: -1;
}

.parcours-vo-page .journey-visual,
.parcours-vo-page .journey-chapter-media {
  position: relative;
  min-width: 0;
  align-self: stretch;
  aspect-ratio: auto;
  margin: -108px -120px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.parcours-vo-page .journey-chapter-diffusion .journey-visual,
.parcours-vo-page .journey-chapter-diffusion .journey-chapter-media {
  margin-right: 0;
  margin-left: -120px;
}

.parcours-vo-page .journey-visual::after,
.parcours-vo-page .journey-chapter-media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .72) 18%, transparent 48%, transparent 86%, rgba(255, 255, 255, .36) 100%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .46) 18%, transparent 40%, transparent 60%, rgba(255, 255, 255, .46) 82%, #fff 100%);
  content: "";
  pointer-events: none;
}

.parcours-vo-page .journey-chapter-diffusion .journey-visual::after,
.parcours-vo-page .journey-chapter-diffusion .journey-chapter-media::after {
  background:
    linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, .72) 18%, transparent 48%, transparent 86%, rgba(255, 255, 255, .36) 100%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .46) 18%, transparent 40%, transparent 60%, rgba(255, 255, 255, .46) 82%, #fff 100%);
}

.parcours-vo-page .journey-visual img,
.parcours-vo-page .journey-chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parcours-vo-page .journey-copy {
  max-width: 560px;
}

.parcours-vo-page .journey-copy h2 {
  font-size: clamp(38px, 3.8vw, 54px);
}

.parcours-vo-page .journey-copy > p {
  margin: 21px 0 0;
}

.parcours-vo-page .journey-copy-list {
  display: grid;
  gap: 17px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.parcours-vo-page .journey-copy-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #42444b;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.parcours-vo-page .journey-copy-list li::before {
  display: none;
}

.parcours-vo-page .journey-copy-list li > img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.parcours-vo-page .journey-benefits,
.parcours-vo-page .journey-benefits-section {
  background: var(--journey-page-bg);
}

.parcours-vo-page .journey-benefits-grid {
  max-width: 1160px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 60px auto 0;
}

.parcours-vo-page .journey-benefits-grid article {
  min-width: 0;
  position: relative;
  padding: 34px 32px 35px;
  overflow: hidden;
  border: 1px solid rgba(226, 220, 214, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(38, 29, 22, .055);
}

.parcours-vo-page .journey-benefits-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 91, 0, .08));
  content: "";
}

.parcours-vo-page .journey-benefits-grid article > img {
  width: 76px;
  height: 76px;
  margin: 0 0 18px;
  object-fit: contain;
}

.parcours-vo-page .journey-benefits-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.24;
  letter-spacing: -.042em;
}

.parcours-vo-page .journey-benefits-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.parcours-vo-page .journey-benefits-grid strong {
  display: block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.parcours-vo-page .journey-team-grid {
  max-width: 1240px;
  gap: clamp(34px, 5vw, 76px);
}

.parcours-vo-page .journey-team-grid .journey-team-card {
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.parcours-vo-page .journey-team-grid .journey-team-card::before {
  display: none;
}

.parcours-vo-page .journey-team-grid .journey-team-card > img {
  width: 68px;
  height: 68px;
  margin: 0 0 20px;
}

.parcours-vo-page .journey-team-grid .journey-team-card h3 {
  font-size: 21px;
}

.parcours-vo-page .journey-team-grid .journey-team-card p {
  max-width: 235px;
  margin-top: 11px;
  font-size: 14px;
}

.parcours-vo-page .journey-faq-section {
  padding-top: 116px;
  background: #fff;
}

.parcours-vo-page .journey-faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(520px, 1.3fr);
  align-items: start;
  gap: clamp(58px, 8vw, 122px);
}

.parcours-vo-page .journey-faq-intro,
.parcours-vo-page .journey-faq {
  text-align: left;
}

.parcours-vo-page .journey-faq details {
  border: 0;
  border-top: 1px solid #ddd9d4;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.parcours-vo-page .journey-faq details:last-child {
  border-bottom: 1px solid #ddd9d4;
}

.parcours-vo-page .journey-faq summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.parcours-vo-page .journey-faq summary::-webkit-details-marker {
  display: none;
}

.parcours-vo-page .journey-faq summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.parcours-vo-page .journey-faq details[open] summary::after {
  content: "−";
}

.parcours-vo-page .journey-faq p {
  max-width: 690px;
  margin: -3px 48px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.parcours-vo-page .journey-cta {
  position: relative;
  padding: 76px 0 100px;
  border: 0;
  background: #fff;
  text-align: center;
}

.parcours-vo-page .journey-cta h2 {
  max-width: 720px;
  margin-inline: auto;
}

.parcours-vo-page .journey-cta p {
  max-width: 590px;
  margin: 19px auto 0;
}

.parcours-vo-page .journey-cta .button {
  margin-top: 30px;
}

/* Surface unique sur tout le contenu du parcours. */
body.parcours-vo-page,
.parcours-vo-page main,
.parcours-vo-page .journey-section,
.parcours-vo-page .journey-intro,
.parcours-vo-page .journey-chapter,
.parcours-vo-page .journey-benefits,
.parcours-vo-page .journey-benefits-section,
.parcours-vo-page .journey-faq-section,
.parcours-vo-page .journey-cta {
  background: #fff !important;
}

@media (max-width: 1050px) {
  .parcours-vo-page .hero {
    min-height: 720px;
    max-height: none;
    padding: 144px 0 98px;
    background-position: center center, center center, 61% center;
  }

  .parcours-vo-page .hero-copy {
    max-width: 620px;
  }

  .parcours-vo-page .hero h1 {
    max-width: 620px;
    font-size: clamp(48px, 6.8vw, 66px);
  }

  .parcours-vo-page .journey-section,
  .parcours-vo-page .journey-intro,
  .parcours-vo-page .journey-chapter,
  .parcours-vo-page .journey-benefits,
  .parcours-vo-page .journey-benefits-section,
  .parcours-vo-page .journey-faq-section {
    padding: 86px 0;
  }

  .parcours-vo-page .journey-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 56px;
  }

  .parcours-vo-page .journey-steps li {
    padding: 24px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 13px 36px rgba(38, 29, 22, .045);
  }

  .parcours-vo-page .journey-steps li:not(:last-child)::after {
    display: none;
  }

  .parcours-vo-page .journey-chapter-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
    min-height: 0;
  }

  .parcours-vo-page .journey-chapter-copy {
    padding: 0;
  }

  .parcours-vo-page .journey-chapter.is-reversed .journey-copy,
  .parcours-vo-page .journey-chapter.is-reverse .journey-copy,
  .parcours-vo-page .journey-chapter--reverse .journey-copy {
    order: 0;
  }

  .parcours-vo-page .journey-visual,
  .parcours-vo-page .journey-chapter-media {
    width: min(100%, 880px);
    align-self: auto;
    aspect-ratio: 3 / 2;
    margin: 0;
  }

  .parcours-vo-page .journey-chapter-diffusion .journey-visual,
  .parcours-vo-page .journey-chapter-diffusion .journey-chapter-media {
    margin: 0;
  }

  .parcours-vo-page .journey-copy {
    max-width: 760px;
  }

  .parcours-vo-page .journey-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .parcours-vo-page .journey-benefits-grid article {
    padding: 29px 25px 31px;
  }

  .parcours-vo-page .journey-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }

  .parcours-vo-page .journey-cta {
    padding: 76px 0 100px;
  }
}

@media (max-width: 800px) {
  .parcours-vo-page .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parcours-vo-page .journey-benefits-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .parcours-vo-page .hero {
    height: auto;
    min-height: 720px;
    padding: 132px 0 82px;
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, .48) 0%, rgba(255, 255, 255, .62) 55%, rgba(255, 255, 255, .94) 84%, #fff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .82) 58%, rgba(255, 255, 255, .25) 100%),
      url("/assets/generated/parcours-vo-hero-bg-v1.webp") 64% center / cover no-repeat,
      #f1ece5;
  }

  .parcours-vo-page .hero-copy {
    max-width: 100%;
  }

  .parcours-vo-page .hero h1 {
    max-width: 520px;
    font-size: clamp(39px, 11vw, 50px);
  }

  .parcours-vo-page .hero-copy > p {
    max-width: 510px;
    font-size: 15px;
  }

  .parcours-vo-page .journey-section,
  .parcours-vo-page .journey-intro,
  .parcours-vo-page .journey-chapter,
  .parcours-vo-page .journey-benefits,
  .parcours-vo-page .journey-benefits-section,
  .parcours-vo-page .journey-faq-section {
    padding: 72px 0;
  }

  .parcours-vo-page .journey-heading h2,
  .parcours-vo-page .journey-copy h2,
  .parcours-vo-page .journey-faq-intro h2,
  .parcours-vo-page .journey-cta h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .parcours-vo-page .journey-heading > p,
  .parcours-vo-page .journey-copy > p,
  .parcours-vo-page .journey-cta p {
    font-size: 14px;
  }

  .parcours-vo-page .journey-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 43px;
  }

  .parcours-vo-page .journey-steps li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    padding: 17px 18px;
    text-align: left;
  }

  .parcours-vo-page .journey-flow-icon {
    width: 58px;
    height: 58px;
    grid-row: 1 / span 3;
    margin: 0;
    border-radius: 16px;
  }

  .parcours-vo-page .journey-flow-icon img {
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .parcours-vo-page .journey-flow-number,
  .parcours-vo-page .journey-step-index {
    width: auto;
    height: auto;
    display: block;
    grid-column: 2;
    margin: 0 0 3px;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 10px;
    text-align: left;
  }

  .parcours-vo-page .journey-steps h3,
  .parcours-vo-page .journey-steps p {
    max-width: none;
    margin-inline: 0;
  }

  .parcours-vo-page .journey-steps h3 {
    font-size: 17px;
  }

  .parcours-vo-page .journey-steps p {
    margin-top: 4px;
  }

  .parcours-vo-page .journey-chapter-grid {
    gap: 38px;
  }

  .parcours-vo-page .journey-visual,
  .parcours-vo-page .journey-chapter-media {
    border-radius: 0;
    box-shadow: none;
  }

  .parcours-vo-page .journey-copy-list {
    gap: 12px;
    margin-top: 25px;
  }

  .parcours-vo-page .journey-copy-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 0;
    font-size: 12px;
  }

  .parcours-vo-page .journey-copy-list li::before {
    display: none;
  }

  .parcours-vo-page .journey-copy-list li > img {
    width: 38px;
    height: 38px;
  }

  .parcours-vo-page .journey-benefits-grid {
    gap: 12px;
    margin-top: 42px;
  }

  .parcours-vo-page .journey-benefits-grid article {
    padding: 27px 24px 29px;
    border-radius: 18px;
  }

  .parcours-vo-page .journey-faq-grid {
    gap: 38px;
  }

  .parcours-vo-page .journey-faq summary {
    padding: 22px 38px 22px 0;
    font-size: 15px;
  }

  .parcours-vo-page .journey-faq p {
    margin-right: 0;
    font-size: 13px;
  }

  .parcours-vo-page .journey-cta {
    padding: 38px 0 64px;
  }
}

/* Pages Fonctionnalités complémentaires */
.feature-detail-page .hero {
  background:
    linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, .02) 18%, rgba(255, 255, 255, .02) 75%, #fff 100%),
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .98) 31%, rgba(255, 255, 255, .78) 46%, rgba(255, 255, 255, .13) 70%, transparent 100%),
    var(--feature-hero-image) 58% center / cover no-repeat,
    #fff;
}

.feature-detail-page .hero-copy {
  max-width: 700px;
  margin: 0;
  text-align: left;
}

.feature-detail-page .hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 4.45vw, 72px);
}

.feature-detail-page .hero-copy > p {
  max-width: 620px;
  margin: 25px 0 0;
}

.feature-detail-page .hero-actions {
  justify-content: flex-start;
}

.feature-detail-page .contracts-section,
.feature-detail-page .contracts-signature-section,
.feature-detail-page .contracts-trace-section,
.feature-detail-page .contracts-faq-section,
.feature-detail-page .contracts-cta {
  border: 0;
  background: #fff;
}

.feature-detail-page .contracts-section + .contracts-section {
  border-top: 0;
}

@media (max-width: 1050px) {
  .feature-detail-page .hero {
    background-position: center center, center center, 66% center;
  }

  .feature-detail-page .hero-copy,
  .feature-detail-page .hero h1 {
    max-width: 620px;
  }

  .feature-detail-page .hero h1 {
    font-size: clamp(45px, 6.5vw, 65px);
  }
}

@media (max-width: 680px) {
  .feature-detail-page .hero {
    background:
      linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, .08) 20%, rgba(255, 255, 255, .22) 70%, #fff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .93) 57%, rgba(255, 255, 255, .46) 100%),
      var(--feature-hero-image) 74% center / cover no-repeat,
      #fff;
  }

  .feature-detail-page .hero h1 {
    font-size: clamp(38px, 10.8vw, 49px);
  }
}
