/* Page de vente — L'Offre AUXO */
.offerPage {
  background: var(--bg);
}

.offerPage main {
  overflow-x: clip;
}

/* Nav */
.offerPage .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 7, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offerPage .nav__links {
  align-items: center;
}

.offerNav__cta {
  margin-left: 4px;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  min-height: auto !important;
  border-color: rgba(188, 166, 255, 0.55) !important;
  box-shadow:
    0 0 0 1px rgba(124, 92, 255, 0.2) inset,
    0 12px 32px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(124, 92, 255, 0.28) !important;
}

/* Layout commun */
.offerSection {
  position: relative;
  padding: clamp(64px, 10vh, 112px) clamp(20px, 5vw, 72px);
}

.offerSection--alt {
  background:
    radial-gradient(900px 480px at 8% 40%, rgba(124, 92, 255, 0.08), transparent 58%),
    radial-gradient(700px 420px at 92% 60%, rgba(188, 166, 255, 0.05), transparent 62%);
}

.offerInner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.offerHead {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vh, 56px);
}

.offerHead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.offerHead__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.52);
}

.offerHead__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw + 12px, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: rgba(246, 246, 248, 0.96);
}

.offerHead__text {
  margin: 16px 0 0;
  font-size: clamp(15px, 1vw + 12px, 18px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}

.offerHead--center .offerHead__text {
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.offerHero {
  position: relative;
  isolation: isolate;
  min-height: min(85vh, 820px);
  padding-top: clamp(28px, 4vh, 48px);
  padding-bottom: clamp(80px, 12vh, 128px);
  overflow: hidden;
}

.offerHero__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.offerHero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.85;
}

.offerHero__orb--a {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  left: -12%;
  top: -18%;
  background: rgba(124, 92, 255, 0.22);
  animation: offerOrbDriftA 14s ease-in-out infinite alternate;
}

.offerHero__orb--b {
  width: min(360px, 50vw);
  height: min(360px, 50vw);
  right: 5%;
  bottom: 5%;
  background: rgba(188, 166, 255, 0.08);
  animation: offerOrbDriftB 18s ease-in-out infinite alternate;
}

.offerHero__orb--c {
  display: none;
}

@keyframes offerOrbDriftA {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.08); }
}

@keyframes offerOrbDriftB {
  from { transform: translate(0, 0); }
  to { transform: translate(-5%, 4%); }
}

@keyframes offerOrbDriftC {
  from { transform: translate(0, 0) scale(0.95); }
  to { transform: translate(3%, -4%) scale(1.05); }
}

.offerHero__gridBg {
  opacity: 0.35;
  background-size: 56px 56px;
}

.offerHero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 45%, transparent 30%, rgba(7, 7, 10, 0.75) 100%);
}

.offerHero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Colonne gauche — éditorial AUXO */
.offerHero__content {
  position: relative;
}

.offerHero__intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 3vh, 28px);
}

.offerHero__introLabel {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.5);
}

.offerHero__introRule {
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(90deg, var(--stroke), transparent);
}

.offerHero__title {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.offerHero__titleGhost {
  position: absolute;
  left: -0.02em;
  top: 0.15em;
  font-size: clamp(88px, 14vw, 160px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.offerHero__titleLine,
.offerHero__titleAccent,
.offerHero__titleSub {
  position: relative;
  z-index: 1;
}

.offerHero__titleLine {
  font-size: clamp(28px, 2.8vw + 12px, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: rgba(246, 246, 248, 0.88);
}

.offerHero__titleAccent {
  display: block;
  margin: 0.06em 0;
  font-size: clamp(44px, 5.5vw + 12px, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: rgba(246, 246, 248, 0.98);
  text-shadow: 0 0 28px rgba(124, 92, 255, 0.12);
}

.offerHero__titleAccent::after {
  content: "";
  display: block;
  width: clamp(40px, 6vw, 56px);
  height: 2px;
  margin-top: clamp(12px, 1.5vh, 16px);
  border-radius: 999px;
  background: var(--violet);
  opacity: 0.8;
}

.offerHero__titleSub {
  display: block;
  margin-top: clamp(14px, 2vh, 18px);
  font-size: clamp(17px, 1.2vw + 12px, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: rgba(246, 246, 248, 0.72);
  max-width: 22ch;
}

.offerHero__lede {
  margin: clamp(22px, 3vh, 30px) 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
}

.offerHero__highlights {
  margin: clamp(28px, 4vh, 36px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 44ch;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offerHero__highlight {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offerHero__highlight:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offerHero__highlightNum {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(124, 92, 255, 0.75);
  padding-top: 3px;
}

.offerHero__highlightText {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(246, 246, 248, 0.8);
}

.offerHero__ctaWrap {
  margin-top: clamp(30px, 4.5vh, 40px);
}

/* Colonne droite — interface client */
.offerHero__visualWrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  perspective: 1100px;
}

.offerHero__visual {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(18, 18, 24, 0.98), rgba(8, 8, 12, 0.98));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(124, 92, 255, 0.1) inset;
  overflow: visible;
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform 550ms var(--ease2);
}

.offerHero__visualWrap:hover .offerHero__visual {
  transform: rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.offerHero__visualChrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px 16px 0 0;
}

.offerHero__chromeDot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.offerHero__chromeDot:nth-child(1) { background: rgba(255, 100, 100, 0.5); }
.offerHero__chromeDot:nth-child(2) { background: rgba(255, 190, 80, 0.45); }
.offerHero__chromeDot:nth-child(3) { background: rgba(90, 210, 120, 0.4); }

.offerHero__chromeUrl {
  margin-left: 6px;
  font-size: 10px;
  color: rgba(246, 246, 248, 0.35);
}

.offerHero__visualBody {
  padding: 14px;
}

.offerHero__boardHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 2px;
}

.offerHero__boardHeadLabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.45);
}

.offerHero__boardHeadMeta {
  font-size: 11px;
  color: rgba(246, 246, 248, 0.32);
}

.offerHero__boardGrid {
  display: grid;
  grid-template-columns: 1fr minmax(68px, 30%);
  grid-template-areas:
    "long capsule"
    "short capsule";
  gap: 10px;
  align-items: stretch;
}

.offerHero__tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.offerHero__tile--long { grid-area: long; }
.offerHero__tile--capsule { grid-area: capsule; align-self: center; }
.offerHero__tile--short { grid-area: short; }

.offerHero__tileScreen {
  position: relative;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(124, 92, 255, 0.14), rgba(0, 0, 0, 0.5)),
    rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.offerHero__tile--long .offerHero__tileScreen {
  aspect-ratio: 16 / 9;
}

.offerHero__tile--capsule .offerHero__tileScreen {
  aspect-ratio: 9 / 16;
}

.offerHero__tile--short .offerHero__tileScreen {
  aspect-ratio: 16 / 9;
}

.offerHero__tilePlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
}

.offerHero__tileFoot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 0 2px;
}

.offerHero__tileName {
  font-size: 11px;
  font-weight: 600;
  color: rgba(246, 246, 248, 0.75);
}

.offerHero__tileRatio {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(246, 246, 248, 0.35);
  font-variant-numeric: tabular-nums;
}

.offerHero__float {
  position: absolute;
  left: -10px;
  bottom: 22%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
  color: rgba(246, 246, 248, 0.85);
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.offerHero__floatDot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

/* CTA principal — style éditorial (accueil) + halo */
.offerLeadCta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offerLeadCta__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, 120%);
  height: clamp(88px, 12vw, 120px);
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(124, 92, 255, 0.4), rgba(124, 92, 255, 0.1) 50%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: offerLeadCtaGlow 4.8s ease-in-out infinite alternate;
}

@keyframes offerLeadCtaGlow {
  from {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

.offerLeadCta .aboutEditorial__ctaBtn {
  position: relative;
  z-index: 1;
}

.offerPage .offerHero__ctaWrap.ctaRow {
  transform: none;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
}

.offerFinal__ctaWrap .offerLeadCta {
  margin-bottom: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .offerLeadCta__glow {
    animation: none;
  }
}

/* Le constat */
.offerConstat {
  position: relative;
  isolation: isolate;
}

.offerConstat__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 0% 20%, rgba(124, 92, 255, 0.11), transparent 58%),
    radial-gradient(640px 360px at 100% 80%, rgba(188, 166, 255, 0.07), transparent 62%);
}

.offerConstat__stage {
  position: relative;
  z-index: 1;
}

.offerConstat__mast {
  margin-bottom: clamp(48px, 7vh, 72px);
}

.offerConstat__kicker {
  margin: 0 0 clamp(18px, 2.5vh, 24px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.48);
}

.offerConstat__mastGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: end;
}

.offerConstat__title {
  margin: 0;
  font-size: clamp(32px, 4.2vw + 12px, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: rgba(246, 246, 248, 0.96);
}

.offerConstat__title em {
  display: block;
  margin-top: 0.1em;
  font-style: normal;
  color: rgba(188, 166, 255, 0.95);
}

.offerConstat__deck {
  margin: 0 0 clamp(20px, 3vh, 28px);
  font-size: clamp(15px, 1vw + 13px, 17px);
  line-height: 1.65;
  color: var(--muted);
}

.offerConstat__meter {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.offerConstat__meterRow {
  display: grid;
  gap: 8px;
}

.offerConstat__meterRow > span:first-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.55);
}

.offerConstat__meterRow--dim > span:first-child {
  color: rgba(246, 246, 248, 0.36);
}

.offerConstat__meterBar {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.offerConstat__meterBar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(188, 166, 255, 0.75));
}

.offerConstat__meterRow--dim .offerConstat__meterBar > span {
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.42), rgba(124, 92, 255, 0.12));
}

.offerConstat__bento {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(168px, auto));
  gap: clamp(14px, 2vw, 18px);
}

.offerConstat__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition:
    border-color 280ms var(--ease2),
    box-shadow 280ms var(--ease2),
    transform 280ms var(--ease2);
}

.offerConstat__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0;
  transition: opacity 280ms var(--ease2);
}

.offerConstat__card:hover {
  border-color: rgba(124, 92, 255, 0.32);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.offerConstat__card:hover::before {
  opacity: 1;
}

.offerConstat__card--feature {
  grid-row: 1 / 3;
  justify-content: flex-start;
  background:
    radial-gradient(130% 110% at 0% 0%, rgba(124, 92, 255, 0.14), transparent 52%),
    rgba(255, 255, 255, 0.03);
}

.offerConstat__card--wide {
  grid-column: 2 / 4;
}

.offerConstat__cardGhost {
  position: absolute;
  right: 8px;
  bottom: -12px;
  font-size: clamp(72px, 11vw, 104px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
}

.offerConstat__cardIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 92, 255, 0.14);
  color: rgba(188, 166, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.2) inset;
}

.offerConstat__cardTitle {
  margin: 0;
  font-size: clamp(17px, 1.1vw + 14px, 19px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(246, 246, 248, 0.94);
}

.offerConstat__card--feature .offerConstat__cardTitle {
  font-size: clamp(20px, 1.5vw + 14px, 26px);
  max-width: none;
}

.offerConstat__card--feature .offerConstat__cardText {
  margin: 0;
  max-width: 34ch;
}

.offerConstat__cardText {
  margin: auto 0 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--muted);
}

/* Promesse AUXO */
.offerPromise {
  position: relative;
  isolation: isolate;
}

.offerPromise__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(880px 440px at 88% 12%, rgba(124, 92, 255, 0.14), transparent 58%),
    radial-gradient(640px 380px at 8% 88%, rgba(188, 166, 255, 0.08), transparent 62%);
}

.offerPromise__stage {
  position: relative;
  z-index: 1;
}

.offerPromise__mast {
  margin-bottom: clamp(48px, 7vh, 72px);
}

.offerPromise__kicker {
  margin: 0 0 clamp(18px, 2.5vh, 24px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.48);
}

.offerPromise__mastGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: end;
}

.offerPromise__title {
  margin: 0;
  font-size: clamp(32px, 4.2vw + 12px, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: rgba(246, 246, 248, 0.96);
}

.offerPromise__title em {
  font-style: normal;
  color: rgba(188, 166, 255, 0.95);
}

.offerPromise__titleCycle {
  display: block;
  margin-top: 0.14em;
  font-size: clamp(22px, 2.2vw + 12px, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(246, 246, 248, 0.72);
}

.offerPromise__deck {
  margin: 0 0 clamp(20px, 3vh, 28px);
  font-size: clamp(15px, 1vw + 13px, 17px);
  line-height: 1.65;
  color: var(--muted);
}

.offerPromise__scope {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(124, 92, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.14), rgba(124, 92, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(246, 246, 248, 0.88);
}

.offerPromise__scopeMark {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(188, 166, 255, 0.98);
  background: rgba(124, 92, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.35) inset;
}

.offerPromise__pipeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(10px, 1.6vw, 16px);
  align-items: stretch;
}

.offerPromise__phase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vh, 22px);
  min-height: 100%;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(124, 92, 255, 0.08) 0%, transparent 42%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition:
    border-color 280ms var(--ease2),
    box-shadow 280ms var(--ease2),
    transform 280ms var(--ease2);
}

.offerPromise__phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(188, 166, 255, 0.85), transparent);
  opacity: 0.65;
}

.offerPromise__phase:hover {
  border-color: rgba(124, 92, 255, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.offerPromise__phaseHead {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.offerPromise__phaseNum {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(124, 92, 255, 0.45);
}

.offerPromise__phaseTitle {
  margin: 0;
  font-size: clamp(18px, 1.2vw + 14px, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(246, 246, 248, 0.96);
}

.offerPromise__phaseText {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--muted);
}

.offerPromise__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offerPromise__tags li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(246, 246, 248, 0.82);
  transition:
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    color 220ms var(--ease);
}

.offerPromise__phase:hover .offerPromise__tags li {
  border-color: rgba(124, 92, 255, 0.28);
}

.offerPromise__tags li:hover {
  border-color: rgba(124, 92, 255, 0.45);
  background: rgba(124, 92, 255, 0.12);
  color: rgba(246, 246, 248, 0.96);
}

.offerPromise__bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(20px, 3vw, 32px);
  flex-shrink: 0;
}

.offerPromise__bridge span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.15), rgba(124, 92, 255, 0.55), rgba(124, 92, 255, 0.15));
  position: relative;
}

.offerPromise__bridge span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(188, 166, 255, 0.8);
  border-top: 1.5px solid rgba(188, 166, 255, 0.8);
  transform: translateY(-50%) rotate(45deg);
}

/* Process — timeline verticale (distinct du pipeline promesse) */
.offerProcess__stage {
  max-width: 760px;
  margin: 0 auto;
}

.offerProcess__intro {
  text-align: center;
  margin-bottom: clamp(48px, 7vh, 64px);
}

.offerProcess__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.48);
}

.offerProcess__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw + 12px, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: rgba(246, 246, 248, 0.96);
}

.offerProcess__deck {
  margin: 14px auto 0;
  max-width: 48ch;
  font-size: clamp(15px, 1vw + 13px, 17px);
  line-height: 1.65;
  color: var(--muted);
}

.offerProcess__cadence {
  display: inline-block;
  margin: clamp(18px, 3vh, 24px) 0 0;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px dashed rgba(124, 92, 255, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.88);
}

.offerProcess__timeline {
  position: relative;
  margin: 0;
  padding: 4px 0 4px clamp(36px, 5vw, 48px);
  list-style: none;
}

.offerProcess__timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(124, 92, 255, 0.85) 0%,
    rgba(124, 92, 255, 0.35) 55%,
    rgba(124, 92, 255, 0.08) 100%
  );
}

.offerProcess__event {
  position: relative;
  padding-bottom: clamp(28px, 4vh, 40px);
}

.offerProcess__event:last-child {
  padding-bottom: 0;
}

.offerProcess__dot {
  position: absolute;
  left: calc(-1 * clamp(36px, 5vw, 48px) + 1px);
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow:
    0 0 0 4px rgba(124, 92, 255, 0.18),
    0 0 24px rgba(124, 92, 255, 0.45);
}

.offerProcess__eventBody {
  padding: clamp(20px, 3vw, 26px) clamp(22px, 3vw, 28px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 280ms var(--ease2),
    transform 280ms var(--ease2),
    box-shadow 280ms var(--ease2);
}

.offerProcess__event:hover .offerProcess__eventBody {
  border-color: rgba(124, 92, 255, 0.28);
  transform: translateX(6px);
  box-shadow: -8px 24px 48px rgba(0, 0, 0, 0.28);
}

.offerProcess__eventTag {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.72);
}

.offerProcess__eventTitle {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.2vw + 14px, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(246, 246, 248, 0.96);
}

.offerProcess__eventText {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

/* Livraisons mensuelles */
.offerDeliverables {
  position: relative;
  isolation: isolate;
}

.offerDeliverables__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 400px at 92% 18%, rgba(124, 92, 255, 0.1), transparent 58%),
    radial-gradient(520px 320px at 4% 92%, rgba(188, 166, 255, 0.06), transparent 62%);
}

.offerDeliverables__stage {
  position: relative;
  z-index: 1;
}

.offerDeliverables__mast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 24px) clamp(32px, 5vw, 56px);
  align-items: end;
  margin-bottom: clamp(44px, 7vh, 64px);
}

.offerDeliverables__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.48);
}

.offerDeliverables__title {
  margin: 0;
  font-size: clamp(30px, 3.8vw + 12px, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: rgba(246, 246, 248, 0.96);
}

.offerDeliverables__title em {
  font-style: normal;
  color: rgba(188, 166, 255, 0.95);
}

.offerDeliverables__deck {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(15px, 1vw + 13px, 17px);
  line-height: 1.65;
  color: var(--muted);
  text-align: right;
}

.offerDeliverables__count {
  grid-column: 1 / -1;
  margin: clamp(20px, 3vh, 28px) 0 0;
  padding-top: clamp(18px, 3vh, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.75);
}

.offerDeliverables__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

/* Mockup formats (cohérent hero) */
.offerDeliverables__board {
  position: sticky;
  top: clamp(88px, 12vh, 120px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(18, 18, 24, 0.98), rgba(8, 8, 12, 0.98));
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(124, 92, 255, 0.12) inset;
  overflow: hidden;
}

.offerDeliverables__boardChrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.4);
}

.offerDeliverables__chromeDot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.offerDeliverables__chromeDot:nth-child(1) { background: rgba(255, 100, 100, 0.5); }
.offerDeliverables__chromeDot:nth-child(2) { background: rgba(255, 190, 80, 0.45); }
.offerDeliverables__chromeDot:nth-child(3) { background: rgba(90, 210, 120, 0.4); }

.offerDeliverables__chromeUrl {
  margin-left: 6px;
  font-size: 10px;
  color: rgba(246, 246, 248, 0.35);
}

.offerDeliverables__boardBody {
  padding: 14px;
}

.offerDeliverables__boardHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.offerDeliverables__boardLabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.45);
}

.offerDeliverables__boardMeta {
  font-size: 11px;
  color: rgba(246, 246, 248, 0.32);
}

.offerDeliverables__boardGrid {
  display: grid;
  grid-template-columns: 1fr minmax(56px, 28%);
  grid-template-areas:
    "long capsule"
    "short capsule";
  gap: 10px;
}

.offerDeliverables__tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.offerDeliverables__tile--long { grid-area: long; }
.offerDeliverables__tile--capsule { grid-area: capsule; align-self: center; }
.offerDeliverables__tile--short { grid-area: short; }

.offerDeliverables__tileScreen {
  position: relative;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(124, 92, 255, 0.16), rgba(0, 0, 0, 0.5)),
    rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.offerDeliverables__tile--long .offerDeliverables__tileScreen { aspect-ratio: 16 / 9; }
.offerDeliverables__tile--capsule .offerDeliverables__tileScreen { aspect-ratio: 9 / 16; }
.offerDeliverables__tile--short .offerDeliverables__tileScreen { aspect-ratio: 16 / 9; }

.offerDeliverables__tilePlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
}

.offerDeliverables__tileFoot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}

.offerDeliverables__tileFoot span:first-child {
  font-weight: 600;
  color: rgba(246, 246, 248, 0.75);
}

.offerDeliverables__tileFoot span:last-child {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(246, 246, 248, 0.35);
  font-variant-numeric: tabular-nums;
}

/* Catalogue livrables */
.offerDeliverables__catalog {
  display: grid;
  gap: clamp(28px, 4vh, 36px);
}

.offerDeliverables__groupTitle {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.78);
}

.offerDeliverables__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.offerDeliverables__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: clamp(18px, 2.5vh, 22px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offerDeliverables__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offerDeliverables__itemNum {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(124, 92, 255, 0.55);
  padding-top: 3px;
}

.offerDeliverables__itemMark {
  font-size: 16px;
  font-weight: 400;
  color: rgba(124, 92, 255, 0.45);
  padding-top: 2px;
  line-height: 1;
}

.offerDeliverables__itemTitle {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(246, 246, 248, 0.94);
}

.offerDeliverables__itemText {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* Distinction */
.offerDistinction {
  position: relative;
  isolation: isolate;
}

.offerDistinction__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 380px at 100% 15%, rgba(124, 92, 255, 0.1), transparent 58%),
    radial-gradient(520px 320px at 0% 85%, rgba(188, 166, 255, 0.06), transparent 62%);
}

.offerDistinction__stage {
  position: relative;
  z-index: 1;
}

.offerDistinction__mast {
  margin-bottom: clamp(36px, 5vh, 52px);
}

.offerDistinction__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.72);
}

.offerDistinction__mastGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}

.offerDistinction__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw + 14px, 48px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.06;
  color: rgba(246, 246, 248, 0.97);
}

.offerDistinction__title em {
  display: block;
  margin-top: 0.12em;
  font-style: normal;
  color: rgba(188, 166, 255, 0.95);
}

.offerDistinction__deck {
  margin: 0;
  max-width: 38ch;
  font-size: clamp(15px, 1.1vw + 12px, 17px);
  line-height: 1.65;
  color: var(--muted);
}

.offerDistinction__relay {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto minmax(0, 1.28fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  margin-bottom: clamp(32px, 5vh, 48px);
  padding: clamp(20px, 2.8vw, 28px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.02);
}

.offerDistinction__relayCol {
  min-width: 0;
}

.offerDistinction__relayCol--you {
  padding: clamp(14px, 2vw, 18px);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.offerDistinction__relayCol--auxo {
  padding: clamp(14px, 2vw, 18px);
  border-radius: 12px;
  border: 1px solid rgba(124, 92, 255, 0.28);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(124, 92, 255, 0.16), transparent 55%),
    rgba(124, 92, 255, 0.06);
}

.offerDistinction__relayLabel {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.48);
}

.offerDistinction__relayCol--auxo .offerDistinction__relayLabel {
  color: rgba(188, 166, 255, 0.88);
}

.offerDistinction__relayList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.offerDistinction__relayList li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(246, 246, 248, 0.62);
}

.offerDistinction__relayCol--you .offerDistinction__relayList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(246, 246, 248, 0.22);
}

.offerDistinction__relayList--auxo li {
  color: rgba(246, 246, 248, 0.88);
}

.offerDistinction__relayList--auxo li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 6px;
  border-right: 2px solid rgba(124, 92, 255, 0.9);
  border-bottom: 2px solid rgba(124, 92, 255, 0.9);
  transform: rotate(45deg);
}

.offerDistinction__relayBridge {
  display: grid;
  place-items: center;
  align-self: center;
  width: clamp(36px, 4vw, 48px);
}

.offerDistinction__relayArrow {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(124, 92, 255, 0.75));
  position: relative;
}

.offerDistinction__relayArrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(124, 92, 255, 0.85);
  border-top: 2px solid rgba(124, 92, 255, 0.85);
  transform: translateY(-50%) rotate(45deg);
}

.offerDistinction__pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.offerDistinction__pillar {
  position: relative;
  padding: clamp(22px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 280ms var(--ease2);
}

.offerDistinction__pillar:last-child {
  border-right: none;
}

.offerDistinction__pillar:hover {
  background: rgba(124, 92, 255, 0.06);
}

.offerDistinction__pillarGhost {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(124, 92, 255, 0.1);
  pointer-events: none;
  user-select: none;
}

.offerDistinction__pillarIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 11px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  background: rgba(124, 92, 255, 0.12);
  color: rgba(188, 166, 255, 0.95);
}

.offerDistinction__pillarTitle {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(246, 246, 248, 0.94);
}

.offerDistinction__pillarText {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: var(--muted);
}

/* Tarifs */
.offerPricing {
  position: relative;
  isolation: isolate;
}

.offerPricing__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(680px 360px at 50% 0%, rgba(124, 92, 255, 0.12), transparent 58%),
    radial-gradient(480px 280px at 100% 100%, rgba(188, 166, 255, 0.06), transparent 62%);
}

.offerPricing__stage {
  position: relative;
  z-index: 1;
}

.offerPricing__mast {
  margin-bottom: clamp(40px, 6vh, 56px);
}

.offerPricing__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.72);
}

.offerPricing__mastGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}

.offerPricing__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw + 14px, 48px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.06;
  color: rgba(246, 246, 248, 0.97);
}

.offerPricing__title em,
.offerPricing__titleSub {
  display: block;
  margin-top: 0.1em;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.038em;
  color: rgba(246, 246, 248, 0.97);
}

.offerPricing__deck {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(15px, 1.1vw + 12px, 17px);
  line-height: 1.65;
  color: var(--muted);
}

.offerPricing__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.offerPricing__anchor {
  position: sticky;
  top: clamp(88px, 12vh, 120px);
  padding: clamp(28px, 3.5vw, 36px);
  border-radius: 20px;
  border: 1px solid rgba(124, 92, 255, 0.32);
  background:
    radial-gradient(140% 90% at 50% 0%, rgba(124, 92, 255, 0.18), transparent 52%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.offerPricing__badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 92, 255, 0.35);
  background: rgba(124, 92, 255, 0.12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.92);
}

.offerPricing__from {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.48);
}

.offerPricing__price {
  margin: 10px 0 0;
  font-size: clamp(44px, 5.5vw + 14px, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(246, 246, 248, 0.98);
}

.offerPricing__price span {
  display: block;
  margin-top: 0.2em;
  font-size: 0.38em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.offerPricing__note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.offerPricing__terms {
  margin: clamp(22px, 3vh, 28px) 0 0;
  padding: clamp(18px, 2.5vw, 22px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
}

.offerPricing__terms li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(246, 246, 248, 0.72);
}

.offerPricing__terms li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.75);
}

.offerPricing__cta {
  width: 100%;
  margin-top: clamp(20px, 3vh, 24px);
  justify-content: center;
}

.offerPricing__roiHeading {
  margin: 0 0 clamp(18px, 3vh, 24px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.45);
}

.offerPricing__roiList {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
}

.offerPricing__roiItem {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 14px 16px;
  align-items: start;
  padding: clamp(18px, 2.2vw, 22px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 280ms var(--ease2), background 280ms var(--ease2);
}

.offerPricing__roiItem:hover {
  border-color: rgba(124, 92, 255, 0.28);
  background: rgba(124, 92, 255, 0.05);
}

.offerPricing__roiNum {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(124, 92, 255, 0.55);
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}

.offerPricing__roiIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  background: rgba(124, 92, 255, 0.1);
  color: rgba(188, 166, 255, 0.95);
}

.offerPricing__roiTitle {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(246, 246, 248, 0.94);
}

.offerPricing__roiText {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: var(--muted);
}

.offerPricing__bundle {
  margin-top: clamp(20px, 3vh, 28px);
  padding: clamp(16px, 2.2vw, 20px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.2);
}

.offerPricing__bundleLabel {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.75);
}

.offerPricing__bundleTags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offerPricing__bundleTags li {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 600;
  color: rgba(246, 246, 248, 0.78);
}

/* FAQ */
.offerFaq {
  position: relative;
  isolation: isolate;
}

.offerFaq__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 340px at 0% 30%, rgba(124, 92, 255, 0.09), transparent 58%),
    radial-gradient(480px 280px at 100% 80%, rgba(188, 166, 255, 0.05), transparent 62%);
}

.offerFaq__stage {
  position: relative;
  z-index: 1;
}

.offerFaq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.offerFaq__aside {
  position: sticky;
  top: clamp(88px, 12vh, 120px);
}

.offerFaq__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.72);
}

.offerFaq__title {
  margin: 0;
  font-size: clamp(26px, 2.8vw + 14px, 44px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.06;
  color: rgba(246, 246, 248, 0.97);
}

.offerFaq__title em {
  display: block;
  margin-top: 0.1em;
  font-style: normal;
  color: rgba(188, 166, 255, 0.95);
}

.offerFaq__deck {
  margin: clamp(16px, 2.5vh, 22px) 0 0;
  max-width: 32ch;
  font-size: clamp(15px, 1vw + 13px, 17px);
  line-height: 1.65;
  color: var(--muted);
}

.offerFaq__count {
  margin: clamp(20px, 3vh, 28px) 0 0;
  padding-top: clamp(16px, 2.5vh, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(188, 166, 255, 0.7);
}

.offerFaq__cta {
  width: 100%;
  margin-top: clamp(20px, 3vh, 24px);
  justify-content: center;
}

.offerFaq__main {
  display: grid;
  gap: clamp(24px, 4vh, 32px);
}

.offerFaq__groupTitle {
  margin: 0 0 12px;
  padding-left: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 248, 0.42);
}

.offerFaq__list {
  display: grid;
  gap: 8px;
}

.offerFaq__item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 280ms var(--ease2), background 280ms var(--ease2);
}

.offerFaq__item[open] {
  border-color: rgba(124, 92, 255, 0.3);
  background: rgba(124, 92, 255, 0.06);
}

.offerFaq__question {
  padding: clamp(16px, 2vw, 18px) clamp(16px, 2vw, 20px);
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px 14px;
  align-items: center;
}

.offerFaq__question::-webkit-details-marker {
  display: none;
}

.offerFaq__qNum {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(124, 92, 255, 0.55);
  font-variant-numeric: tabular-nums;
}

.offerFaq__qText {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(246, 246, 248, 0.92);
}

.offerFaq__chevron {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  flex-shrink: 0;
  transition: background 280ms var(--ease2), border-color 280ms var(--ease2), transform 280ms var(--ease2);
}

.offerFaq__chevron::before,
.offerFaq__chevron::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: rgba(188, 166, 255, 0.9);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 280ms var(--ease2);
}

.offerFaq__chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.offerFaq__item[open] .offerFaq__chevron {
  background: rgba(124, 92, 255, 0.15);
  border-color: rgba(124, 92, 255, 0.35);
}

.offerFaq__item[open] .offerFaq__chevron::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.offerFaq__answer {
  margin: 0;
  padding: 0 clamp(16px, 2vw, 20px) clamp(16px, 2vw, 20px);
  padding-left: calc(clamp(16px, 2vw, 20px) + 11px + 14px);
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* Section finale RDV */
/* Section finale RDV */
.offerFinal {
  text-align: center;
  padding-bottom: clamp(80px, 12vh, 128px);
  background:
    radial-gradient(800px 400px at 50% 100%, rgba(124, 92, 255, 0.18), transparent 65%);
}

.offerFinal__promise {
  margin: 0 auto clamp(32px, 5vh, 44px);
  max-width: 52ch;
  font-size: clamp(22px, 2.4vw + 12px, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(246, 246, 248, 0.96);
}

.offerFinal__ctaWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.offerFinal__fallback {
  margin: 0;
  font-size: 14px;
  color: rgba(246, 246, 248, 0.5);
}

.offerFinal__fallback a {
  color: rgba(188, 166, 255, 0.9);
  text-decoration: none;
}

.offerFinal__fallback a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .offerHero {
    min-height: auto;
  }

  .offerHero__grid {
    grid-template-columns: 1fr;
  }

  .offerHero__content {
    order: 1;
  }

  .offerHero__visualWrap {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .offerHero__visual {
    transform: none;
  }

  .offerHero__visualWrap:hover .offerHero__visual {
    transform: translateY(-4px);
  }

  .offerConstat__mastGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offerConstat__bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .offerConstat__card--feature {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .offerConstat__card--wide {
    grid-column: 1 / -1;
  }

  .offerDeliverables__mast {
    grid-template-columns: 1fr;
  }

  .offerDeliverables__deck {
    max-width: none;
    text-align: left;
  }

  .offerDeliverables__layout {
    grid-template-columns: 1fr;
  }

  .offerDeliverables__board {
    position: relative;
    top: auto;
  }

  .offerPromise__mastGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offerPromise__pipeline {
    grid-template-columns: 1fr;
  }

  .offerPromise__bridge {
    width: 100%;
    height: 24px;
  }

  .offerPromise__bridge span {
    width: 1px;
    height: 100%;
    min-height: 24px;
    background: linear-gradient(180deg, rgba(124, 92, 255, 0.15), rgba(124, 92, 255, 0.55), rgba(124, 92, 255, 0.15));
  }

  .offerPromise__bridge span::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .offerDistinction__mastGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offerDistinction__deck {
    max-width: none;
  }

  .offerDistinction__relay {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offerDistinction__relayBridge {
    width: 100%;
    height: clamp(28px, 4vh, 36px);
  }

  .offerDistinction__relayArrow {
    width: 2px;
    height: 100%;
    min-height: 28px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(124, 92, 255, 0.75));
  }

  .offerDistinction__relayArrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .offerDistinction__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offerDistinction__pillar:nth-child(2),
  .offerDistinction__pillar:nth-child(4) {
    border-right: none;
  }

  .offerDistinction__pillar:nth-child(1),
  .offerDistinction__pillar:nth-child(2),
  .offerDistinction__pillar:nth-child(3),
  .offerDistinction__pillar:nth-child(4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .offerPricing__mastGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offerPricing__deck {
    max-width: none;
  }

  .offerPricing__layout {
    grid-template-columns: 1fr;
  }

  .offerPricing__anchor {
    position: relative;
    top: auto;
  }

  .offerFaq__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offerFaq__aside {
    position: relative;
    top: auto;
  }

  .offerFaq__deck {
    max-width: none;
  }

  .offerFaq__cta {
    width: auto;
  }
}

@media (max-width: 720px) {
  .offerNav__cta {
    display: none;
  }

  .offerConstat__mastGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offerConstat__bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .offerFaq__answer {
    padding-left: clamp(16px, 2vw, 20px);
  }

  .offerDistinction__pillars {
    grid-template-columns: 1fr;
  }

  .offerDistinction__pillar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .offerDistinction__pillar:last-child {
    grid-column: auto;
    border-top: none;
    border-bottom: none;
  }

  .offerPricing__roiItem {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .offerPricing__roiNum {
    grid-column: 1;
    grid-row: 1;
  }

  .offerPricing__roiIcon {
    grid-column: 1;
    grid-row: 2;
  }

  .offerPricing__roiItem > div {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .offerConstat__card--feature,
  .offerConstat__card--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .offerPromise__mastGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offerPromise__pipeline {
    grid-template-columns: 1fr;
  }

  .offerPromise__bridge {
    width: 100%;
    height: clamp(20px, 4vh, 28px);
  }

  .offerPromise__bridge span {
    width: 1px;
    height: 100%;
    min-height: 24px;
    background: linear-gradient(180deg, rgba(124, 92, 255, 0.15), rgba(124, 92, 255, 0.55), rgba(124, 92, 255, 0.15));
  }

  .offerPromise__bridge span::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .offerDeliverables__mast {
    grid-template-columns: 1fr;
  }

  .offerDeliverables__deck {
    max-width: none;
    text-align: left;
  }

  .offerDeliverables__layout {
    grid-template-columns: 1fr;
  }

  .offerDeliverables__board {
    position: relative;
    top: auto;
  }

  .offerDeliverables__boardGrid {
    grid-template-columns: 1fr minmax(56px, 24%);
  }

  .offerProcess__event:hover .offerProcess__eventBody {
    transform: none;
  }

  .offerSection {
    padding-left: 20px;
    padding-right: 20px;
  }

  .offerHero__boardGrid {
    grid-template-columns: 1fr minmax(56px, 24%);
    gap: 8px;
  }

  .offerHero__titleSub {
    max-width: none;
  }

  .offerHero__highlight {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .offerHero__float {
    display: none;
  }

  .offerHero__ctaWrap.ctaRow {
    flex-direction: column;
    align-items: stretch;
  }

  .offerHero__ctaWrap.ctaRow .offerLeadCta,
  .offerHero__ctaWrap.ctaRow .aboutEditorial__ctaBtn,
  .offerHero__ctaWrap.ctaRow .btn--secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offerHero__orb {
    animation: none !important;
  }

  .offerHero__visual,
  .offerHero__visualWrap:hover .offerHero__visual {
    transform: none !important;
  }
}
