﻿:root {
  --orange: #ff7518;
  --blue: #242e67;
  --blue-deep: #171f4c;
  --blue-panel: #2f5677;
  --gray: #8e9297;
  --light-gray: #e9edf0;
  --paper: #fffaf2;
  --paper-strong: #f6efe2;
  --ink: #242e67;
  --ink-deep: #171f4c;
  --line: rgba(36, 46, 103, 0.16);
  --line-strong: rgba(36, 46, 103, 0.28);
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(23, 31, 76, 0.12);
  --max: 1180px;
  --header: 76px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 117, 24, 0.04), transparent 18rem),
    var(--paper);
  color: var(--ink);
  font-family: "Lato", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.52;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Lato", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 60;
  padding: 0.75rem 1rem;
  background: var(--orange);
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header);
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 2px solid var(--blue);
  box-shadow: 0 12px 28px rgba(23, 31, 76, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: none;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-copy em {
  color: var(--gray);
  font-size: 0.76rem;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a,
.nav-toggle,
.button,
.card-link {
  min-height: 44px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.78rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: var(--orange);
  color: #ffffff !important;
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 0.3rem;
  background: var(--orange);
  color: #ffffff !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  padding: 0.72rem 0.9rem;
  background: var(--orange);
  color: #ffffff !important;
  line-height: 1;
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  box-shadow: 0 10px 22px rgba(23, 31, 76, 0.12);
  outline: none;
}

.nav-toggle-icon {
  display: inline-grid;
  gap: 4px;
  width: 18px;
  flex: none;
}

.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform-origin: center;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.nav-toggle-label {
  display: block;
  line-height: 1;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sheet-shell {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.hero-sheet,
.paper-section {
  padding: clamp(1.4rem, 3.2vw, 3rem) 0;
}

.hero-sheet {
  position: relative;
}

.hero-rail {
  position: absolute;
  left: 0;
  top: 2.2rem;
  bottom: 2.2rem;
  display: grid;
  place-items: center;
  width: 42px;
  background: var(--orange);
  color: #ffffff !important;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-panel,
.paper-section .sheet-shell,
.final-panel {
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: clamp(0.65rem, 1.2vw, 1.1rem);
  padding: clamp(1.1rem, 2vw, 1.6rem) clamp(1.2rem, 3vw, 2rem) clamp(1.4rem, 2.5vw, 2rem);
  border-left: 1px solid var(--line);
}

.badge,
.section-label,
.offer-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: fit-content;
  padding: 0.32rem 0.62rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge-orange,
.section-label,
.offer-tag,
.section-label-on-blue {
  background: var(--orange);
  color: #ffffff !important;
}

.badge-gray {
  background: var(--gray);
  color: #ffffff !important;
}

.hero-head {
  display: grid;
  grid-template-columns: clamp(170px, 13vw, 220px) minmax(0, 1fr);
  gap: clamp(1.8rem, 3.5vw, 3.2rem);
  align-items: center;
}

.hero-head-copy {
  min-width: 0;
  max-width: 920px;
}

.hero-brandmark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 0.65rem 1rem;
}

.hero-brandmark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: clamp(116px, 9vw, 152px);
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 31, 76, 0.18) 0%, rgba(23, 31, 76, 0.08) 48%, rgba(23, 31, 76, 0) 76%);
  transform: translateX(-50%);
  filter: blur(8px);
  animation: robotShadow 4.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-robot {
  position: relative;
  display: block;
  width: clamp(170px, 13vw, 220px);
  max-width: 100%;
  transform-origin: center center;
  animation: robotFloat 4.4s ease-in-out infinite;
  will-change: transform;
}

.hero-robot img {
  display: block;
  width: clamp(170px, 13vw, 220px);
  max-width: 100%;
  height: auto;
  background: transparent;
}

.hero-robot-closed {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: robotBlink 9.6s ease-in-out infinite;
}

.hero-title {
  width: 100%;
  max-width: 920px;
  color: var(--blue);
  font-size: clamp(3.2rem, 4.25vw, 5rem);
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-title-line {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
}

.hero-title-line-decision {
  max-width: 100%;
}

.hero-subtitle {
  max-width: 980px;
  margin-top: clamp(0.55rem, 1vw, 0.85rem);
  color: var(--blue);
  font-size: clamp(1.06rem, 1.2vw, 1.28rem);
  line-height: 1.3;
  font-weight: 900;
}

.hero-target,
.hero-bio {
  max-width: 980px;
  color: rgba(36, 46, 103, 0.78);
}

.hero-target {
  margin-top: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 700;
}

.hero-bio {
  margin-top: 0.8rem;
  font-size: 0.96rem;
  line-height: 1.58;
}

@media (min-width: 1100px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

.nowrap-desktop {
  white-space: nowrap;
}

.hero-band {
  margin-top: 1.4rem;
  padding: 0.82rem 1rem;
  background: var(--blue);
  color: #ffffff !important;
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-intro-row {
  display: grid;
  gap: 0.85rem;
  width: 100%;
  max-width: 900px;
}

.hero-chatbot-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(0.5rem, 1vw, 0.9rem);
  margin-bottom: clamp(0.9rem, 1.6vw, 1.35rem);
}

.chatbot-demo-minimal {
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
}

.hero-head {
  display: grid;
  grid-template-columns: clamp(170px, 13vw, 220px) minmax(0, 1fr);
  gap: clamp(1.8rem, 3.5vw, 3.2rem);
  align-items: center;
}

.chatbot-demo {
  position: relative;
  inset: auto;
  display: block;
  min-width: 0;
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transform: none;
  z-index: auto;
}

.chatbot-input-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  height: 78px;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(36, 46, 103, 0.14);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 31, 76, 0.08);
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.chatbot-input-shell.is-sending,
.chatbot-demo.is-sending .chatbot-input-shell {
  border-color: rgba(191, 30, 46, 0.9);
  box-shadow:
    0 12px 28px rgba(23, 31, 76, 0.1),
    0 0 0 4px rgba(191, 30, 46, 0.1);
}

.chatbot-input-marker {
  flex: 0 0 auto;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 117, 24, 0.12);
}

.chatbot-input-text {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 0;
  max-height: none;
  color: var(--blue);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  overflow: visible;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.chatbot-input-text [data-chatbot-typing] {
  display: inline;
  white-space: normal;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.chatbot-input-text::after {
  content: attr(data-glitch-text);
  position: absolute;
  inset: 0;
  color: rgba(255, 117, 24, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  mix-blend-mode: multiply;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 0.08rem;
  vertical-align: -0.12em;
  background: var(--orange);
  animation: cursorBlink 900ms steps(2, start) infinite;
}

.chatbot-send {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  min-width: 54px;
  padding: 0;
  border: 1px solid rgba(36, 46, 103, 0.18);
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff !important;
  font-size: 1.02rem;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(23, 31, 76, 0.14);
  pointer-events: none;
  transition:
    transform 180ms var(--ease),
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.chatbot-send-icon {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
}

.chatbot-send.is-sending,
.chatbot-demo.is-sending .chatbot-send {
  background: #bf1e2e;
  border-color: #bf1e2e;
  box-shadow: 0 14px 26px rgba(191, 30, 46, 0.2);
  transform: translateX(2px) scale(1.04);
  animation: sendPulse 560ms var(--ease);
}

.chatbot-helper {
  margin-top: 0.35rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.2;
  color: rgba(36, 46, 103, 0.72);
}

.chatbot-input-shell.is-glitching,
.chatbot-demo.is-glitching .chatbot-input-shell {
  border-color: rgba(191, 30, 46, 0.96);
  box-shadow:
    0 0 0 1px rgba(191, 30, 46, 0.2),
    0 16px 30px rgba(191, 30, 46, 0.18);
  animation: chatbotGlitch 520ms steps(2, end);
}

.chatbot-demo.is-glitching .chatbot-input-shell::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 30, 46, 0.62), transparent);
  opacity: 0;
  transform: translateY(-50%);
  animation: chatbotScanline 460ms ease-out both;
  pointer-events: none;
}

.chatbot-demo.is-glitching .chatbot-input-text::after {
  opacity: 1;
  animation: chatbotGhostText 460ms ease-out both;
}

.chatbot-demo.is-glitching .chatbot-send {
  background: #bf1e2e;
  border-color: #bf1e2e;
  box-shadow: 0 0 0 6px rgba(191, 30, 46, 0.1);
}

.chatbot-demo.is-empty .chatbot-send {
  box-shadow: none;
  opacity: 0.92;
}

.chatbot-demo.is-static .typing-cursor {
  display: none;
}

.hero-lead {
  max-width: 900px;
  color: var(--blue);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.button,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    border-color 180ms var(--ease);
}

.button.primary,
.card-link {
  background: var(--orange);
  color: #ffffff !important;
}

.button.secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--line-strong);
}

.button:hover,
.button:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 31, 76, 0.12);
  outline: none;
}

.hero-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.evidence-card {
  padding: 0.95rem;
  background: var(--blue-panel);
  border-radius: var(--radius);
}

.evidence-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.evidence-card strong {
  display: block;
  color: #ffffff !important;
  font-size: 1.06rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes robotFloat {
  0%,
  100% {
    transform: translate3d(0, 2px, 0) rotate(-0.6deg);
  }

  50% {
    transform: translate3d(0, -7px, 0) rotate(0.7deg);
  }
}

@keyframes robotShadow {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-50%) scaleX(0.94);
  }

  50% {
    opacity: 0.11;
    transform: translateX(-50%) scaleX(0.82);
  }
}

@keyframes robotBlink {
  0%,
  46%,
  48%,
  89%,
  91%,
  100% {
    opacity: 0;
  }

  46.8%,
  47.4%,
  89.8%,
  90.35% {
    opacity: 1;
  }
}

@keyframes sendPulse {
  0% {
    transform: translateX(0) scale(1);
  }

  50% {
    transform: translateX(2px) scale(1.08);
  }

  100% {
    transform: translateX(2px) scale(1.04);
  }
}

@keyframes chatbotGlitch {
  0% {
    transform: translateX(0);
  }

  12% {
    transform: translateX(-2px);
  }

  24% {
    transform: translateX(3px);
  }

  36% {
    transform: translateX(-1px);
  }

  52% {
    transform: translateX(2px);
  }

  70% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes chatbotGhostText {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  18% {
    opacity: 0.42;
    transform: translateX(4px);
  }

  38% {
    opacity: 0.18;
    transform: translateX(-3px);
  }

  100% {
    opacity: 0;
    transform: translateX(0);
  }
}

@keyframes chatbotScanline {
  0% {
    opacity: 0;
    transform: translateY(-7px);
  }

  20% {
    opacity: 0.82;
  }

  60% {
    opacity: 0.2;
    transform: translateY(5px);
  }

  100% {
    opacity: 0;
    transform: translateY(9px);
  }
}

.paper-section .sheet-shell,
.final-panel {
  padding: clamp(1rem, 2vw, 1.45rem);
}

.paper-section-contrast .sheet-shell {
  background: var(--blue);
  color: #ffffff !important;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.section-heading h2,
.approach-copy h2,
.method-copy h2,
.about-copy h2,
.final-panel h2 {
  max-width: none;
  font-size: clamp(1.6rem, 2.95vw, 2.45rem);
}

#probleme .section-heading h2 {
  max-width: none;
  text-wrap: normal;
}

#offres .section-heading h2 {
  max-width: 26ch;
}

#apropos .about-copy h2 {
  max-width: 34ch;
}

#apropos .about-copy h2 span {
  display: block;
  white-space: nowrap;
}

@media (min-width: 1100px) {
  #probleme .section-heading h2 {
    max-width: none;
    font-size: clamp(2.35rem, 3.05vw, 3.55rem);
  }

  #offres .section-heading h2 {
    max-width: 30ch;
  }

  #apropos .about-copy h2 {
    max-width: 24ch;
    font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  }

  #probleme .section-heading h2.section-title-split {
    max-width: 26ch;
  }

  #offres .section-heading h2.section-title-split {
    max-width: 20ch;
  }

  #apropos .about-copy h2.section-title-split {
    max-width: 22ch;
    white-space: normal;
    font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  }
}

.section-title-one-line {
  max-width: none !important;
  white-space: nowrap;
  font-size: clamp(1.42rem, 2.38vw, 2.05rem) !important;
}

.section-title-split {
  max-width: none !important;
  font-size: clamp(1.42rem, 2.38vw, 2.05rem) !important;
  white-space: normal !important;
}

.section-title-split span {
  display: block;
  white-space: normal;
}

.paper-section .sheet-shell h2,
.paper-section .sheet-shell h3,
.paper-section .sheet-shell p,
.paper-section .sheet-shell dt,
.paper-section .sheet-shell dd,
.paper-section .sheet-shell li {
  color: inherit;
}

.paper-section .sheet-shell p,
.approach-copy p,
.method-copy p,
.about-copy p,
.final-panel p {
  color: inherit;
  font-size: clamp(0.98rem, 1.24vw, 1.08rem);
}

.section-intro {
  max-width: 42rem;
  color: var(--blue);
}

.section-intro-one-line {
  max-width: none;
  font-size: clamp(0.92rem, 1.02vw, 0.98rem) !important;
}

.on-dark {
  color: rgba(255, 255, 255, 0.86) !important;
}

#methode .section-intro {
  max-width: none;
  width: 100%;
  text-wrap: pretty;
}

.paper-section .sheet-shell {
  color: var(--blue);
}

.paper-section-contrast .sheet-shell {
  color: #ffffff !important;
}

.problem-grid,
.benefit-grid,
.offers-grid,
.target-grid {
  display: grid;
  gap: 1rem;
}

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

.problem-grid-compact .issue-card {
  background: var(--paper-strong);
  border-top: 5px solid var(--blue);
  box-shadow: var(--shadow);
}

.problem-grid-compact .issue-card h3,
.problem-grid-compact .issue-card p {
  color: var(--blue) !important;
}

/* ============================
   CAS CONCRET
   ============================ */

.scene-chapter-label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.scene-quote {
  margin-top: 0.75rem;
}

.scene-quote + .scene-quote {
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-light);
}

.scene-speaker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.scene-speech {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--blue);
}

.scene-ux {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.scene-ux-window {
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.scene-ux-heading {
  margin: 0;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}

.scene-ux-detail {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  color: var(--text-body);
}

.scene-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0.5rem auto 0;
  filter: drop-shadow(0 12px 24px rgba(23, 31, 76, 0.12));
}

.scene-outro {
  margin-top: 1.5rem;
  max-width: 42rem;
}

.scene-outro p {
  margin-top: 0.4rem;
  line-height: 1.55;
}

.scene-highlight {
  margin-top: 0.75rem !important;
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 700;
}

.scene-disclaimer {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
}

/* ============================
   CAS CONCRET
   ============================ */
.case-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(23, 31, 76, 0.06);
  overflow: hidden;
}

.case-top {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 1fr);
  gap: 0;
}

.case-story {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0.65rem 0.9rem;
  justify-content: space-between;
}

.case-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1rem 0.9rem;
  border-top: 1px solid var(--line);
}

.case-visual {
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f2f5;
  padding: 0;
}

.case-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 2px;
}

.case-speech {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.case-speech:last-of-type {
  border-bottom: none;
}

.case-who {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 3px;
}

.case-say {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--blue);
}

.case-hl {
  background: rgba(255, 117, 24, 0.15);
  color: inherit;
  padding: 1px 4px;
  border-radius: 2px;
}

.case-cr {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-synth {
  padding: 0.7rem 0.85rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 8px;
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  background: var(--blue);
  border-radius: 3px;
}

.case-syn-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
}

.case-synth ul {
  margin: 2px 0 0;
  padding: 0 0 0 16px;
}

.case-synth li {
  margin-top: 3px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-body);
}

.case-after {
  display: block;
}

.case-after p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-body);
  display: inline;
}

.case-after p + p::before {
  content: " ";
}

.case-strong {
  background: var(--blue);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-top: 0;
  text-align: center;
}

#probleme .case-strong p {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.28;
  text-wrap: normal;
}

@media (min-width: 1100px) {
  #probleme .case-strong p {
    white-space: nowrap;
  }
}

.case-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-synth {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.case-synth-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: 100%;
}

.case-synth-icon img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 100px;
  max-width: 90px;
}

.case-synth-text {
  min-width: 0;
}

@media (max-width: 920px) {
  .case-top {
    grid-template-columns: 1fr;
  }
  .case-visual {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    order: 4;
  }
  .case-story {
    order: 1;
  }
}

/* ============================
   PARCOURS â€” Grille 2Ã-2
   ============================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(23, 31, 76, 0.04);
  overflow: hidden;
}

/* En-tÃªte pleine largeur */
.product-card__header {
  width: 100%;
  padding: 14px 20px 10px;
  border-bottom: 1px solid var(--line);
}

.product-card__meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.product-step {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  background: rgba(255, 117, 24, 0.1);
  padding: 2px 8px;
  border-radius: 3px;
}

.product-name {
  font-size: 0.68rem;
  color: var(--gray);
  font-weight: 600;
}

#offres .product-title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  color: var(--blue);
  line-height: 1.15;
  font-weight: 800;
}

#offres .product-title span {
  display: block;
  white-space: nowrap;
}

/* Zone principale deux colonnes */
.product-card__main {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
  min-width: 0;
}

/* Colonne visuelle */
.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--orange);
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.product-card__media--art {
  padding: 0;
  background: var(--blue);
  min-height: 100%;
  max-height: none;
}

.product-card__media--art img {
  object-fit: cover;
  object-position: center;
}

.product-card--conference .product-card__main {
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 0.62fr);
}

.product-card--conference .product-card__media {
  min-height: 100%;
  max-height: none;
}

.product-card--conference .product-card__media img {
  object-fit: cover;
  object-position: 72% 34%;
}

.product-card__media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 46, 103, 0.82);
  opacity: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.product-card__media:hover .product-card__media-overlay {
  opacity: 1;
}

.product-card__media:hover img {
  opacity: 0.7;
}

.product-card__media-overlay span {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 16px;
}

.product-card__media--viz {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--blue);
  height: 100%;
  box-sizing: border-box;
}

.product-viz-item {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff !important;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.product-viz-arrow {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 300;
  line-height: 1;
}

/* Colonne contenu */
.product-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px 14px 18px;
}

.product-desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-body);
}

.product-format {
  display: inline-block;
  font-size: 0.65rem;
  color: var(--gray);
  background: var(--paper-strong);
  padding: 3px 9px;
  border-radius: 3px;
  align-self: flex-start;
}

.product-result {
  padding: 12px;
  background: var(--paper-strong);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-result__label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
}

#offres .product-card .product-result .product-result__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--text-body);
}

.product-card__action {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--orange);
  color: #ffffff !important;
  border: none;
  border-radius: 5px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.product-card__action:hover {
  background: #e06800;
}

/* ============================
   BATAILLE DE L'IA
   ============================ */
.battle-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.26fr) minmax(0, 0.74fr);
  gap: 0;
  margin-top: 28px;
  background: var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
}

.battle-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  padding: 18px;
  position: relative;
}

.battle-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  background: var(--orange);
  border-radius: 3px;
  z-index: 1;
}

.battle-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.battle-card:hover .battle-card__media img {
  transform: scale(1.045);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.battle-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 1rem 1.2rem;
  color: #ffffff;
}

.battle-label {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.battle-card__content h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  color: #ffffff !important;
  line-height: 1.15;
}

.battle-card__content .battle-desc {
  margin: 2px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.battle-card__content .battle-text {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.battle-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 2px 0;
}

.battle-meta__label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
}

.battle-card__content .battle-meta__value {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.battle-format {
  font-size: 0.62rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

.battle-card__content .button.primary {
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  background: var(--orange);
  color: #ffffff !important;
  border: none;
}

.battle-card__content .button.primary:hover {
  background: #e06800;
}

.battle-cta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.battle-cta-row__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

@media (max-width: 800px) {
  .battle-card {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: 0;
  }
  .battle-card__media {
    padding: 14px;
  }
  .battle-card__media img {
    max-width: 140px;
  }
  .battle-card__content {
    padding: 0.8rem 1rem;
  }
  .battle-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .battle-card__content .button.primary {
    text-align: center;
    padding: 0.6rem 0.75rem;
  }
}

@media (max-width: 900px) {
  .product-card__main {
    grid-template-columns: 1fr;
  }
  .product-card__media {
    max-height: 220px;
    padding: 12px;
  }
  .product-card__media--art {
    padding: 0;
  }
  .product-card__media--viz {
    flex-direction: row;
    gap: 6px;
    padding: 12px;
    max-height: none;
  }
  .product-card__media img {
    max-height: 190px;
    width: auto;
  }
  .product-card__media--art img {
    max-height: none;
    width: 100%;
    height: 100%;
  }
  .product-card--conference .product-card__media {
    min-height: 208px;
    max-height: 208px;
    padding: 0;
  }
  .product-card--conference .product-card__media img {
    max-height: none;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card {
    min-height: 0;
  }
  .product-card__header {
    padding: 12px 16px 8px;
  }
  .product-card__main {
    grid-template-columns: 1fr;
  }
  .product-card__media {
    max-height: 220px;
    padding: 12px;
  }
  .product-card__media--art {
    padding: 0;
  }
  .product-card__media--viz {
    flex-direction: row;
    gap: 6px;
    padding: 12px;
    max-height: none;
  }
  .product-card__media img {
    max-height: 180px;
    width: auto;
  }
  .product-card__media--art img {
    max-height: none;
    width: 100%;
    height: 100%;
  }
  .product-card--conference .product-card__media {
    min-height: 196px;
    max-height: 196px;
    padding: 0;
  }
  .product-card--conference .product-card__media img {
    max-height: none;
    width: 100%;
  }
  .product-card__content {
    padding: 12px 16px;
  }
  .product-card__action {
    width: 100%;
    text-align: center;
  }
  #offres .product-title {
    font-size: 1.6rem;
  }

  .cinema-editorial {
    padding: 1.35rem 1.1rem;
  }

  .cinema-editorial__copy h2 {
    max-width: none;
    text-wrap: pretty;
  }

  .cinema-editorial__motif {
    display: none;
  }
}

.issue-index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  background: var(--white);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.approach-layout,
.method-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.recognition-layout {
  display: grid;
  gap: 1.1rem;
}

.verbatim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.verbatim-card {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
}

.verbatim-outro {
  margin: 1.5rem 0 1rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.approach-copy,
.method-copy,
.about-copy {
  display: grid;
  gap: 1.1rem;
}

.about-copy {
  align-content: start;
}

.about-copy p {
  max-width: 42rem;
  line-height: 1.58;
}

.method-stack {
  display: grid;
  gap: 0.9rem;
}

.method-stack article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.method-stack span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-strong {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.3rem;
}

.cinema-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(220px, 0.36fr);
  gap: clamp(1.1rem, 3vw, 2.2rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-top: 5px solid var(--orange);
  background: linear-gradient(180deg, rgba(247, 242, 232, 0.9), rgba(247, 242, 232, 0.6));
}

.cinema-editorial__copy {
  display: grid;
  gap: 0.9rem;
  max-width: none;
  min-width: 0;
}

.cinema-editorial__copy h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.02;
  text-wrap: normal;
}

.cinema-editorial__copy h2 span {
  display: block;
  white-space: nowrap;
}

.cinema-editorial__copy p {
  margin: 0;
  max-width: 58rem;
  line-height: 1.62;
}

.cinema-editorial__emphasis {
  font-weight: 700;
  color: var(--blue);
}

.cinema-editorial__motif {
  position: relative;
  margin: 0;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  justify-self: end;
  overflow: hidden;
  border-top: 3px solid var(--orange);
  border-left: 1px solid rgba(36, 46, 103, 0.14);
  border-right: 1px solid rgba(36, 46, 103, 0.14);
  border-bottom: 1px solid rgba(36, 46, 103, 0.14);
  background: #ffffff;
}

.cinema-editorial__motif img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Encart MÃ©thode sur fond sombre */
.method-blocks {
  margin-top: 0;
  padding-top: 0;
}

.method-block {
  background: var(--blue);
  color: #ffffff;
  padding: 2rem 2.2rem;
  border-radius: 8px;
  display: grid;
  gap: 0.7rem;
}

.method-block__title {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}

.method-block__title--sub {
  margin-top: -0.3rem;
}

.method-block p {
  max-width: 50rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.method-block .about-strong {
  color: #ffffff;
  font-size: 1.02rem;
  margin-top: 0.2rem;
}

.method-stack strong {
  display: block;
  color: #ffffff !important;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 900;
  text-transform: none;
  line-height: 1.25;
}

.method-proof {
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 700;
  padding: 0.9rem 1rem;
  background: var(--orange);
  color: var(--white) !important;
}

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

.benefit-card,
.target-card,
.offer-card,
.comparison-card {
  min-height: 100%;
}

.benefit-card,
.target-card {
  padding: 1.05rem;
  background: var(--paper-strong);
  border-top: 5px solid var(--blue);
}

.benefit-card h3,
.target-card h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
}

.benefit-card p,
.target-card p {
  margin-top: 0.75rem;
  color: var(--blue);
}

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

.offers-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offres-intro {
  max-width: 56rem;
  margin: 0 0 1.1rem;
  color: rgba(36, 46, 103, 0.84) !important;
}

.parcours-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.parcours-track span {
  display: block;
  padding: 0.65rem 0.8rem;
  background: var(--blue);
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.offers-grid-journey .offer-card {
  gap: 0.85rem;
}

.offre-context,
.offre-result {
  color: inherit !important;
  font-size: 0.94rem !important;
  line-height: 1.45;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--paper-strong);
  border-top: 6px solid var(--orange);
}

.offer-card-blue {
  background: var(--blue);
  color: #ffffff !important;
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offer-index {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  background: var(--blue);
  color: #ffffff !important;
  font-weight: 900;
}

.offer-tag-inverse {
  background: var(--white);
  color: var(--blue);
}

.offer-index-inverse {
  background: var(--orange);
}

.offer-card h3 {
  font-size: clamp(1.22rem, 1.9vw, 1.7rem);
}

.offer-card .offer-subtitle {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 700;
}

.offre-livrable {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(36, 46, 103, 0.14);
  color: inherit !important;
  font-size: 0.9rem !important;
  line-height: 1.45;
}

.offer-card-blue .offre-livrable {
  border-color: rgba(255, 255, 255, 0.18);
}

.offer-meta {
  margin-top: auto;
  color: inherit;
  font-size: 0.9rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.offer-card dl div {
  padding-top: 0.7rem;
  border-top: 1px solid currentColor;
  border-color: rgba(36, 46, 103, 0.16);
}

.offer-card-blue dl div {
  border-color: rgba(255, 255, 255, 0.18);
}

.offer-card dt {
  margin-bottom: 0.2rem;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card dd {
  margin: 0;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.card-link {
  align-self: flex-start;
  margin-top: 0;
}

.card-link-inverse {
  background: var(--white);
  color: var(--blue);
}

.card-link-download {
  background: transparent;
  color: var(--blue);
  border-color: rgba(36, 46, 103, 0.24);
}

.card-link-download-inverse {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.28);
}

.card-link.is-disabled,
.card-link.is-disabled:hover,
.card-link.is-disabled:focus-visible {
  transform: none;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  opacity: 0.52;
}

.secondary-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  background: var(--paper-strong);
  border-top: 5px solid var(--blue);
}

.secondary-offer h3 {
  margin: 0.7rem 0 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.secondary-offer-copy {
  display: grid;
  gap: 0.7rem;
}

.secondary-offer p {
  max-width: 44rem;
}

.method-journey {
  position: relative;
  margin-top: 1.25rem;
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1.05rem;
  height: 1px;
  background: rgba(255, 117, 24, 0.65);
}

.method-step {
  position: relative;
  display: grid;
  gap: 0.8rem;
  min-width: 0;
  padding: 1.7rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.method-step::after {
  content: "";
  position: absolute;
  top: 0.74rem;
  right: -0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 1px solid rgba(255, 117, 24, 0.72);
  border-right: 1px solid rgba(255, 117, 24, 0.72);
  transform: rotate(45deg);
}

.method-step:last-child::after {
  display: none;
}

.method-step__topline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.method-step__index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: none;
  background: var(--orange);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.method-step__verb {
  margin: 0;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-step__question {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  font-weight: 900;
  line-height: 1.18;
}

.method-step__detail {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  line-height: 1.45;
  max-width: 28ch;
}

.method-state {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: start;
  gap: 0.7rem;
  min-height: 6rem;
  padding-top: 0.2rem;
}

.method-state--see {
  grid-template-columns: auto;
}

.method-state--question,
.method-state--reframe {
  grid-template-columns: auto;
}

.method-doc {
  position: relative;
  display: grid;
  gap: 0.4rem;
  width: 5.4rem;
  padding: 0.9rem 0.7rem 0.7rem;
  background: rgba(246, 241, 231, 0.98);
  border: 1px solid rgba(36, 46, 103, 0.32);
}

.method-doc__tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 0.28rem;
  background: var(--orange);
}

.method-doc__line {
  display: block;
  height: 0.22rem;
  background: rgba(36, 46, 103, 0.28);
}

.method-doc__line--wide {
  width: 100%;
}

.method-doc__line--alert {
  width: 84%;
  background: linear-gradient(90deg, rgba(36, 46, 103, 0.24) 0%, rgba(36, 46, 103, 0.24) 62%, rgba(255, 117, 24, 0.95) 62%, rgba(255, 117, 24, 0.95) 100%);
}

.method-anchor {
  width: 3rem;
  height: 1px;
  background: rgba(255, 117, 24, 0.72);
  transform: translateY(-1.15rem);
}

.method-eye {
  display: block;
  width: clamp(7.25rem, 11.25vw, 9.375rem);
  height: auto;
  transform: translateY(-0.15rem);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.12));
}

.method-symbol {
  display: block;
  width: clamp(5.8rem, 9vw, 7.5rem);
  height: auto;
  transform: translateY(-0.15rem);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.12));
}

.method-symbol--question {
  width: clamp(3.22rem, 5.04vw, 4.2rem);
}

.method-note {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 117, 24, 0.72);
  transform: translateY(-0.4rem);
}

.method-note::before,
.method-note::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.method-note::before {
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.45rem;
  height: 0.14rem;
}

.method-note::after {
  top: 0.45rem;
  bottom: 0.45rem;
  right: 0.55rem;
  width: 0.14rem;
}

.method-decision {
  display: grid;
  gap: 0.42rem;
  transform: translateY(-0.25rem);
}

.method-pill {
  width: 3.4rem;
  height: 0.8rem;
  background: rgba(255, 117, 24, 0.92);
}

.method-pill--soft {
  width: 2.45rem;
  background: rgba(255, 255, 255, 0.84);
}

.method-outro {
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.45;
  text-align: center;
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.offers-footnote {
  margin-top: 1.2rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.method-proof-grid {
  margin-top: 1.2rem;
}

.method-proof-copy {
  display: grid;
  gap: 0.95rem;
}

.method-proof-intro {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.5;
}

.method-card ul,
.deliverable-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.method-card li,
.deliverable-card li {
  margin-top: 0.35rem;
  line-height: 1.45;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.deliverable-card {
  padding: 1rem;
  background: var(--paper-strong);
  border-top: 5px solid var(--orange);
}

.deliverable-card h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
}

.offer-card-battle {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 1.3rem;
}

.important-note {
  padding: 0.85rem 0.95rem;
  background: rgba(255, 117, 24, 0.1);
  border-left: 4px solid var(--orange);
  color: var(--blue);
  font-weight: 700;
}

.battle-visual {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  justify-self: center;
  padding: 0.35rem;
}

.battle-image {
  width: min(100%, 132px);
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(179, 157, 116, 0.18));
  transition:
    transform 220ms var(--ease),
    filter 220ms var(--ease);
  transform-origin: center center;
}

.secondary-offer:hover .battle-image,
.secondary-offer:focus-within .battle-image {
  transform: translateY(-4px) rotate(-1deg);
  filter: drop-shadow(0 16px 24px rgba(179, 157, 116, 0.22));
}

.method-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.method-table div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-table div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.method-table span {
  min-height: 108px;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.method-table span:last-child {
  border-right: 0;
}

.method-table [role="columnheader"] {
  min-height: auto;
  background: var(--orange);
  color: #ffffff !important;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-card {
  padding: 1.15rem;
  background: var(--paper-strong);
}

.comparison-card-highlight {
  background: var(--blue);
  color: #ffffff !important;
}

.comparison-card h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.comparison-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  padding: 0.8rem 0.85rem;
  background: rgba(255, 255, 255, 0.58);
  border-left: 4px solid var(--orange);
  font-weight: 700;
}

.comparison-card-highlight li {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
}

.about-layout {
  align-items: start;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
}

.about-media {
  display: grid;
  gap: 0.9rem;
}

.about-stage {
  margin: 0;
  border: 1px solid rgba(36, 46, 103, 0.12);
  background: #ffffff;
}

.about-stage img {
  width: 100%;
  border-radius: 0;
  display: block;
  box-shadow: none;
}

.about-logos {
  margin: 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(36, 46, 103, 0.1);
  box-shadow: var(--shadow);
}

.about-logos img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 0.95rem;
}

.contact-copy h2 {
  max-width: 18ch;
}

.contact-note,
.contact-fallback {
  color: var(--gray) !important;
  font-size: 0.94rem !important;
}

.contact-note {
  max-width: 46ch;
}

.contact-fallback a {
  color: var(--blue);
  font-weight: 700;
}

.contact-form-card {
  padding: 1rem;
  background: var(--paper-strong);
  border-top: 5px solid var(--orange);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--blue);
  font-weight: 700;
}

.contact-form label span {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 46, 103, 0.24);
  background: var(--white);
  color: var(--blue);
  padding: 0.82rem 0.9rem;
  font: inherit;
  border-radius: 0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
}

.contact-microcopy {
  margin: -0.15rem 0 0;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-qualification {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(36, 46, 103, 0.12);
  background: rgba(255, 250, 242, 0.72);
}

.contact-qualification legend {
  padding: 0 0.3rem 0 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-qualification label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  font-weight: 400;
}

.contact-qualification label span {
  font-size: 0.96rem;
  line-height: 1.45;
  text-transform: none;
}

.contact-qualification input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--orange);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 117, 24, 0.32);
  border-color: var(--orange);
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
}

.final-panel {
  overflow: hidden;
}

.final-topline {
  height: 12px;
  margin: -2rem -2rem 1.1rem;
  background: var(--blue);
}

.section-temoignages .sheet-shell {
  display: grid;
  gap: 0.8rem;
}

.section-temoignages .section-heading {
  gap: 0.42rem;
  margin-bottom: 0.1rem;
}

.section-temoignages .section-label {
  padding: 0.4rem 0.72rem;
  font-size: 0.72rem;
}

.section-temoignages .section-heading h2 {
  max-width: none;
  font-size: clamp(2.15rem, 3vw, 2.85rem);
  line-height: 0.98;
}

@media (min-width: 1100px) {
  .section-temoignages .section-heading h2 {
    white-space: nowrap;
  }
}

.temoignages-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(1.75rem, 2.8vw, 2.5rem);
  align-items: start;
}

.temoignages-references {
  display: grid;
  gap: 0.6rem;
  padding: 1.15rem 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 46, 103, 0.1);
}

.temoignages-kicker {
  color: rgba(36, 46, 103, 0.68) !important;
  font-size: 0.74rem !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.carousel-temoignages {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1.75rem, 2.2vw, 2rem) clamp(1.85rem, 3vw, 2.35rem) clamp(0.85rem, 1.4vw, 1rem);
  background: var(--paper-strong);
  border-top: 6px solid var(--orange);
  box-shadow: 0 14px 28px rgba(23, 31, 76, 0.07);
}

.temoignages-stage {
  position: relative;
  min-height: 10.2rem;
}

.temoignage {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 0.54rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 0s linear 320ms;
}

.temoignage.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.temoignage blockquote {
  max-width: 40rem;
  margin: 0;
  color: var(--blue);
}

.temoignage blockquote p {
  font-size: clamp(1.15rem, 1.4vw, 1.3rem);
  line-height: 1.44;
  font-weight: 700;
}

.temoignage cite {
  color: rgba(36, 46, 103, 0.68);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.carousel-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-top: 0.05rem;
}

.carousel-nav .prev,
.carousel-nav .next {
  width: 2.2rem;
  min-width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(36, 46, 103, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease), opacity 180ms var(--ease);
}

.carousel-nav .prev:hover,
.carousel-nav .prev:focus-visible,
.carousel-nav .next:hover,
.carousel-nav .next:focus-visible {
  background: var(--white);
  border-color: rgba(36, 46, 103, 0.24);
  color: var(--orange);
  transform: translateY(-1px);
}

.dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  flex: 0 0 auto;
}

.dots button {
  width: 0.42rem;
  height: 0.42rem;
  border: 0;
  padding: 0;
  background: rgba(36, 46, 103, 0.22);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), opacity 180ms var(--ease);
}

.dots button.is-active {
  background: var(--orange);
  transform: scale(1.12);
}

.temoignages-logos {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.temoignages-logos img {
  width: 100%;
  max-height: 214px;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.temoignages-logos:hover img {
  opacity: 0.96;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  background: var(--blue);
  color: #ffffff !important;
}

.site-footer p {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mention-legale {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.site-footer a {
  color: #ffffff !important;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 520ms var(--ease);
}

.js .reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .approach-layout,
  .method-layout,
  .about-layout,
  .secondary-offer,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cinema-editorial {
    grid-template-columns: 1fr;
  }

  .cinema-editorial__motif {
    justify-self: start;
    width: min(180px, 42vw);
  }

  .method-columns,
  .method-proof-grid,
  .verbatim-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .case-study-body {
    grid-template-columns: 1fr;
  }

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

  .problem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .method-flow {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .method-flow::before {
    left: 1rem;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .method-step {
    padding: 1rem 1rem 1rem 1.7rem;
  }

  .method-step::after {
    top: auto;
    bottom: -0.52rem;
    left: 0.72rem;
    right: auto;
    transform: rotate(135deg);
  }

  .method-step:last-child::after {
    display: none;
  }

  .method-step__detail {
    max-width: none;
  }
}

@media (max-width: 920px) {
  :root {
    --header: 72px;
  }

  .hero-rail {
    display: none;
  }

  .hero-head {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .hero-robot,
  .hero-robot img {
    width: 138px;
  }

  .hero-chatbot-row {
    margin-top: 0.45rem;
    margin-bottom: 0.85rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    letter-spacing: -0.03em;
  }

  .hero-title-line {
    white-space: normal;
  }

  .nowrap-desktop,
  .section-title-one-line,
  .section-title-split span {
    white-space: normal;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 250, 242, 0.98);
    border-bottom: 2px solid var(--blue);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    background: var(--paper-strong);
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 720px) {

  .sheet-shell {
    width: min(100% - 1rem, var(--max));
  }

  .brand-copy {
    display: none;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 0.95;
  }

  .hero-title-line,
  .hero-subtitle {
    max-width: 100%;
    white-space: normal;
  }

  .hero-chatbot-row {
    width: 100%;
    margin-top: clamp(0.7rem, 2vw, 1rem);
    margin-bottom: clamp(1rem, 3vw, 1.4rem);
  }

  .chatbot-demo-minimal {
    width: 100%;
    max-width: 100%;
  }

  .chatbot-input-shell {
    width: 100%;
    min-height: 112px;
    height: 112px;
    gap: 0.65rem;
    padding: 0.85rem 0.75rem;
    border-radius: 28px;
  }

  .chatbot-input-text {
    display: block;
    min-width: 0;
    min-height: calc(2 * 1.25em);
    max-height: calc(2 * 1.25em);
    font-size: clamp(0.92rem, 4.1vw, 1.05rem);
    line-height: 1.25;
    color: var(--blue);
    overflow: visible;
  }

  .chatbot-input-text [data-chatbot-typing],
  .chatbot-input-text .typing-cursor {
    display: inline;
  }

  .chatbot-input-marker {
    width: 0.68rem;
    height: 0.68rem;
  }

  .chatbot-send {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    line-height: 1;
    font-size: 1.15rem;
  }

  .chatbot-helper {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.25;
    color: rgba(36, 46, 103, 0.72);
  }

  .chatbot-input-shell.is-glitching,
  .chatbot-demo.is-glitching .chatbot-input-shell {
    animation: chatbotGlitchMobile 420ms steps(2, end);
  }

  .section-heading h2,
  .approach-copy h2,
  .method-copy h2,
  .about-copy h2,
  .final-panel h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.6vw, 2.8rem);
  }

  .section-title-one-line {
    font-size: clamp(1.85rem, 8.6vw, 2.8rem) !important;
  }

  .section-title-split {
    font-size: clamp(1.85rem, 8.6vw, 2.8rem) !important;
  }

  .hero-actions,
  .site-footer,
  .offers-grid,
  .offers-grid-four,
  .hero-evidence-grid {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .offers-progression {
    gap: 0.35rem;
    font-size: 0.72rem;
  }

  .hero-actions,
  .site-footer {
    display: grid;
  }

  .button,
  .card-link {
    width: 100%;
  }

  .parcours-track,
  .offer-actions {
    display: grid;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .section-temoignages .section-heading {
    gap: 0.38rem;
  }

  .section-temoignages .section-label {
    padding: 0.36rem 0.62rem;
    font-size: 0.68rem;
  }

  .section-temoignages .section-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.25rem);
    line-height: 1;
    white-space: normal;
  }

  .temoignages-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .temoignages-references {
    order: 2;
    padding: 0.9rem;
  }

  .carousel-temoignages {
    order: 1;
    padding: 0.95rem 0.95rem 0.72rem;
  }

  .temoignages-stage {
    min-height: 12.9rem;
  }

  .temoignage {
    gap: 0.46rem;
  }

  .temoignage blockquote p {
    font-size: clamp(1rem, 4.8vw, 1.12rem);
    line-height: 1.45;
  }

  .temoignage cite {
    font-size: 0.88rem;
  }


  .carousel-nav {
    gap: 0.55rem;
    margin-top: 0.2rem;
  }

  .carousel-nav .prev,
  .carousel-nav .next {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    font-size: 0.88rem;
  }

  .dots {
    justify-content: flex-start;
    gap: 0.38rem;
  }

  .dots button {
    width: 0.38rem;
    height: 0.38rem;
  }

  .temoignages-logos img {
    width: 100%;
    max-height: 132px;
  }

  .hero-evidence-grid {
    display: grid;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-panel,
  .paper-section .sheet-shell,
  .final-panel {
    padding: 1rem;
  }

  .hero-band {
    font-size: 0.92rem;
  }

  .chatbot-input-shell {
    gap: 0.62rem;
    padding: 0.82rem 0.74rem 0.82rem 0.78rem;
  }

  .chatbot-send {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 1.08rem;
  }

  .battle-image {
    width: min(100%, 124px);
  }

  .final-topline {
    margin: -1rem -1rem 1rem;
  }

  .method-table div {
    grid-template-columns: 1fr;
  }

  .method-table span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .method-table span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .chatbot-input-shell {
    min-height: 112px;
    height: 112px;
  }
}

@media (max-width: 420px) {
  .chatbot-input-shell {
    gap: 0.6rem;
  }

  .chatbot-send {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1rem;
  }
}

@keyframes chatbotGlitchMobile {
  0% { transform: translateX(0); }
  25% { transform: translateX(-1px); }
  50% { transform: translateX(1px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .typing-cursor {
    animation: none;
  }

  .chatbot-demo.is-glitching .chatbot-input-shell,
  .chatbot-demo.is-glitching .chatbot-input-shell::after,
  .chatbot-demo.is-glitching .chatbot-input-text::after {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* === FAQ === */
.faq-list {
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper-strong);
  border-top: 2px solid var(--blue);
  transition: background 0.2s ease;
}

.faq-item.is-open {
  background: var(--white);
}

.faq-item + .faq-item {
  margin-top: 0.5rem;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  font-size: 0.96rem;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  gap: 1rem;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.faq-trigger:hover {
  color: var(--orange);
}

.faq-q {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  transition: transform 0.15s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(0deg);
}

.faq-icon.is-minus::after {
  content: "âˆ’";
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.faq-panel.is-open {
  max-height: 500px;
  opacity: 1;
}

.faq-panel p {
  margin: 0;
  padding: 0.5rem 1.25rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-body);
}

.faq-panel p + p {
  padding-top: 0;
}

@media (max-width: 720px) {
  .faq-trigger {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }
  .faq-panel p {
    padding: 0.4rem 0.75rem 0.65rem;
    font-size: 0.84rem;
  }
  .faq-item + .faq-item {
    margin-top: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel,
  .faq-icon {
    transition: none;
  }
}

/* ============================
   PAGE CARTOGRAPHIE
   ============================ */
.cartography-main {
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.cartography-product-hero {
  padding: clamp(1.2rem, 2.8vw, 2.4rem) 0 0;
}

.cartography-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.7fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.15rem, 2.8vw, 2.2rem);
  background: var(--white);
  border-top: 7px solid var(--orange);
  box-shadow: var(--shadow);
}

.cartography-hero-copy {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  min-width: 0;
}

.cartography-title {
  max-width: 28ch;
  color: var(--blue);
  font-size: clamp(2.35rem, 3vw, 3.1rem);
  font-style: italic;
  line-height: 0.92;
  text-wrap: balance;
  overflow-wrap: normal;
}

.cartography-title span {
  display: block;
  text-wrap: balance;
}

.cartography-hero-lead {
  max-width: 58ch;
  color: var(--blue);
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  font-weight: 800;
  line-height: 1.38;
}

.cartography-map {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: var(--paper-strong);
  border-left: 6px solid var(--blue);
}

.cartography-map-zone {
  padding: 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.cartography-map-zone p {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cartography-map-zone ul {
  display: grid;
  gap: 0.42rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.cartography-map-zone li {
  color: var(--blue);
  font-size: 0.96rem;
  line-height: 1.35;
}

.cartography-map-hidden {
  position: relative;
  border-color: rgba(36, 46, 103, 0.34);
}

.cartography-map-hidden::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--orange);
}

.cartography-product-section {
  display: grid;
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
  margin-top: clamp(0.95rem, 2vw, 1.25rem);
  padding: clamp(1rem, 2.4vw, 1.65rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cartography-section-kicker {
  display: grid;
  gap: 0.75rem;
  max-width: 62rem;
}

.cartography-product-section h2,
.cartography-final-cta h2 {
  max-width: 30ch;
  color: var(--blue);
  font-size: clamp(1.55rem, 2.45vw, 2.28rem);
  line-height: 0.98;
  text-wrap: balance;
}

.cartography-product-section h3 {
  color: var(--blue);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.12;
}

.cartography-product-section p,
.cartography-product-section li,
.cartography-final-cta p {
  max-width: 68ch;
  color: var(--blue);
  font-size: clamp(0.94rem, 0.98vw, 1.02rem);
  line-height: 1.45;
}

.cartography-three-grid,
.cartography-angle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.cartography-three-grid article {
  min-width: 0;
  padding: 0.95rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.cartography-three-grid article:nth-child(2) {
  border-top: 5px solid var(--orange);
}

.cartography-three-grid p,
.cartography-angle-grid p {
  margin-top: 0.45rem;
}

.cartography-inline-note {
  padding-left: 0.85rem;
  border-left: 5px solid var(--orange);
  font-weight: 800;
}

.cartography-observe-section {
  background: var(--blue);
}

.cartography-observe-section .section-label {
  background: var(--orange);
}

.cartography-observe-section h2,
.cartography-observe-section h3 {
  color: #ffffff !important;
}

.cartography-observe-section p {
  color: rgba(255, 255, 255, 0.9);
}

.cartography-angle-grid article {
  min-width: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cartography-angle-grid article:nth-child(2) {
  border-top: 5px solid var(--orange);
}

.cartography-observe-note {
  color: #ffffff !important;
  font-weight: 800;
}

.cartography-result-section {
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.7fr);
  align-items: start;
}

.cartography-result-main {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.cartography-result-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cartography-result-list li {
  position: relative;
  padding-left: 1.2rem;
  font-weight: 900;
}

.cartography-result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange);
}

.cartography-status-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  min-width: 0;
}

.cartography-status-board article {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.85rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.cartography-status-board article:nth-child(even) {
  border-left: 5px solid var(--blue);
}

.cartography-status-board article:nth-child(odd) {
  border-left: 5px solid var(--orange);
}

.cartography-status-board span {
  color: rgba(36, 46, 103, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
}

.cartography-status-board strong {
  color: var(--blue);
  font-size: 0.86rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.cartography-final-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.95rem 1.25rem;
  align-items: center;
  margin-top: 0.2rem;
  padding: 1rem;
  background: var(--blue);
  border-top: 6px solid var(--orange);
}

.cartography-final-cta h2,
.cartography-final-cta p {
  color: #ffffff !important;
}

.cartography-final-cta .cartography-microcopy {
  grid-column: 1 / -1;
  max-width: 76ch;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .cartography-hero-panel,
  .cartography-result-section {
    grid-template-columns: 1fr;
  }

  .cartography-title {
    max-width: 28ch;
    font-size: clamp(2.25rem, 5.35vw, 3.15rem);
  }
}

@media (max-width: 768px) {
  .cartography-three-grid,
  .cartography-angle-grid,
  .cartography-status-board,
  .cartography-final-cta {
    grid-template-columns: 1fr;
  }

  .cartography-product-section h2,
  .cartography-final-cta h2 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .cartography-title {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .cartography-title span {
    display: inline;
  }

  .cartography-title span + span::before {
    content: " ";
  }
}

/* ============================
   PAGE CONFERENCE
   ============================ */
.conference-main {
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.conference-hero {
  padding: clamp(1.2rem, 2.8vw, 2.4rem) 0 0;
}

.conference-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.72fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: stretch;
  padding: clamp(1.15rem, 2.8vw, 2.2rem);
  background: var(--white);
  border-top: 7px solid var(--orange);
  box-shadow: var(--shadow);
}

.conference-hero-copy {
  display: grid;
  align-content: center;
  gap: clamp(0.72rem, 1.35vw, 1rem);
  min-width: 0;
}

.conference-title {
  max-width: 18ch;
  color: var(--blue);
  font-size: clamp(2.55rem, 4.35vw, 4.9rem);
  font-style: italic;
  line-height: 0.9;
  text-wrap: balance;
}

.conference-lead {
  max-width: 62ch;
  color: var(--blue);
  font-size: clamp(1.06rem, 1.25vw, 1.24rem);
  font-weight: 800;
  line-height: 1.38;
}

.conference-hook {
  display: grid;
  gap: 0.18rem;
  max-width: 44rem;
  padding-left: 0.85rem;
  border-left: 5px solid var(--orange);
  color: var(--blue);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.42;
}

.conference-hook strong {
  font-size: clamp(1.08rem, 1.25vw, 1.25rem);
  font-weight: 900;
}

.conference-hero-media {
  min-height: 100%;
  margin: 0;
  border-left: 6px solid var(--blue);
  overflow: hidden;
  background: var(--paper-strong);
}

.conference-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  object-position: 78% center;
  filter: saturate(0.9) contrast(1.04);
}

.conference-tension,
.conference-questions,
.conference-final {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-top: clamp(0.95rem, 2vw, 1.25rem);
  padding: clamp(1rem, 2.4vw, 1.65rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.conference-section-heading {
  display: grid;
  gap: 0.7rem;
  max-width: 58rem;
}

.conference-section-heading h2,
.conference-final-copy h2 {
  max-width: 24ch;
  color: var(--blue);
  font-size: clamp(1.6rem, 2.6vw, 2.55rem);
  line-height: 0.96;
  text-wrap: balance;
}

.conference-section-heading p:not(.section-label),
.conference-final-copy p:not(.section-label),
.conference-conclusion,
.conference-footnote {
  max-width: 70ch;
  color: var(--blue);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.48;
}

.conference-triptych,
.conference-sequence-grid,
.conference-contexts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.conference-triptych article {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.conference-triptych article:nth-child(2) {
  border-top: 5px solid var(--orange);
}

.conference-triptych span {
  color: rgba(36, 46, 103, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
}

.conference-triptych h3,
.conference-sequence-grid h3 {
  margin-top: 0.55rem;
  color: var(--blue);
  font-size: clamp(0.98rem, 1.12vw, 1.1rem);
  line-height: 1.12;
}

.conference-triptych p,
.conference-sequence-grid p {
  margin-top: 0.42rem;
  color: var(--blue);
  font-size: 0.94rem;
  line-height: 1.42;
}

.conference-experience {
  margin-top: clamp(0.95rem, 2vw, 1.25rem);
}

.conference-experience-panel {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2.4vw, 1.65rem);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.conference-experience-panel h2,
.conference-experience-panel h3 {
  color: #ffffff !important;
}

.conference-experience-panel .conference-section-heading p:not(.section-label),
.conference-experience-panel .conference-sequence-grid p {
  color: rgba(255, 255, 255, 0.9);
}

.conference-sequence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.conference-sequence-grid article {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.conference-sequence-grid article:nth-child(2),
.conference-sequence-grid article:nth-child(4) {
  border-top: 5px solid var(--orange);
}

.conference-question-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 1.1fr;
  gap: 0.75rem;
}

.conference-question-wall p {
  display: grid;
  min-height: 8.2rem;
  margin: 0;
  padding: 1rem;
  place-items: center;
  background: var(--blue);
  color: #ffffff !important;
  font-size: clamp(1.25rem, 2.1vw, 2.1rem);
  font-weight: 900;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.conference-question-wall p:nth-child(2) {
  background: var(--orange);
}

.conference-final {
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.78fr);
  align-items: start;
}

.conference-final-copy {
  display: grid;
  gap: 0.75rem;
}

.conference-contexts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.conference-contexts li {
  min-width: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.conference-final-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.conference-footnote {
  grid-column: 1 / -1;
  padding-left: 0.85rem;
  border-left: 5px solid var(--orange);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .conference-hero-panel,
  .conference-final {
    grid-template-columns: 1fr;
  }

  .conference-title {
    max-width: 20ch;
    font-size: clamp(2.35rem, 7vw, 4.4rem);
  }

  .conference-hero-media img {
    min-height: 18rem;
  }

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

@media (max-width: 768px) {
  .conference-triptych,
  .conference-sequence-grid,
  .conference-question-wall,
  .conference-contexts {
    grid-template-columns: 1fr;
  }

  .conference-section-heading h2,
  .conference-final-copy h2 {
    max-width: 100%;
  }

  .conference-question-wall p {
    min-height: auto;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .conference-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }
}


