/* ============================================================
   Klyrio — Landing v7 (LangChain-inspired navy + blue gradient)
   Inspirations : LangChain · LangSmith · Linear · Vercel
   ============================================================ */

:root {
  /* COLOR — navy bleu LangChain-style */
  --bg:            #0A0F1C;
  --bg-tinted:     #0E1426;
  --bg-elev:       #131A2C;
  --bg-card:       #131A2C;
  --bg-card-h:     #1A2238;

  --border:        rgba(96,165,250,0.10);
  --border-bright: rgba(96,165,250,0.22);
  --border-glow:   rgba(59,130,246,0.40);

  --text:          #F4F7FB;
  --text-2:        rgba(244,247,251,0.62);
  --text-3:        rgba(244,247,251,0.42);
  --text-4:        rgba(244,247,251,0.20);

  --blue-deep:     #1E40AF;
  --blue:          #3B82F6;
  --blue-bright:   #60A5FA;
  --cyan:          #22D3EE;

  --gradient:      linear-gradient(110deg, #1E40AF 0%, #3B82F6 35%, #60A5FA 65%, #22D3EE 100%);
  --gradient-soft: linear-gradient(110deg, rgba(59,130,246,0.10), rgba(34,211,238,0.06));

  /* TYPOGRAPHY */
  --font-sans:     "Geist", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-title:    "Geist", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:     "Geist Mono", "JetBrains Mono", "SF Mono", "Menlo", monospace;

  /* SCALE */
  --radius-lg:     14px;
  --radius-md:     10px;
  --radius-sm:     6px;

  --container:     1200px;
  --pad-x:         clamp(20px, 4vw, 56px);
  --section-y:     clamp(80px, 10vh, 120px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1001;
  padding: 8px 14px;
  background: var(--text); color: var(--bg);
  border-radius: 6px; font-weight: 500; font-size: 13px;
}
.skip-link:focus { left: 16px; top: 16px; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0;
  font-kerning: normal;
  font-stretch: 88%;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 88;
  line-height: 1.08;
  color: var(--text);
}
h1, h2 {
  transform: scaleX(0.94);
  transform-origin: left center;
  width: calc(100% / 0.94);
}
.hero-title,
.section-head h2,
.showcase-copy h2,
.logic-copy h2 {
  transform-origin: center;
}
h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}
h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}
h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

p { color: var(--text-2); }

.grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(.16,.86,.30,1), transform 700ms cubic-bezier(.16,.86,.30,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
}

section { padding: var(--section-y) 0; position: relative; }
section + section { padding-top: 0; }

/* Tinted section (lighter blue navy) */
.section-tinted {
  background: var(--bg-tinted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.section-tinted::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 0%, rgba(59,130,246,0.10), transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(34,211,238,0.06), transparent 70%);
  pointer-events: none;
}
.section-tinted + section { padding-top: var(--section-y); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10,15,28,0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, background 200ms;
}
.topbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10,15,28,0.88);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-logo { width: 26px; height: 26px; flex-shrink: 0; }
.brand-logo-full {
  width: clamp(90px, 10vw, 112px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(34,211,238,0.12));
}
.brand-word {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.015em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-2);
  transition: color 150ms;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border-radius: 7px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 180ms, border-color 180ms, color 180ms, transform 180ms, box-shadow 180ms;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-arrow {
  width: 12px; height: 12px;
  transition: transform 180ms cubic-bezier(.16,.86,.30,1);
}
.btn:hover .btn-arrow { transform: translateX(2px); }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.30);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(59,130,246,0.45); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-bright);
}
.btn-ghost:hover { border-color: var(--blue-bright); background: rgba(96,165,250,0.06); color: var(--blue-bright); }

.btn-lg { height: 44px; padding: 0 20px; font-size: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(72px, 10vh, 120px) 0 clamp(56px, 8vh, 96px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(59,130,246,0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(34,211,238,0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(30,64,175,0.12), transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 30%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--text);
}

@media (min-width: 900px) {
  .hero-inner {
    max-width: 980px;
  }
  .hero-title {
    width: auto;
    transform: none;
    font-stretch: 96%;
    font-variation-settings: "wdth" 96;
    line-height: 1.06;
  }
}

@media (max-width: 640px) {
  h1,
  h2,
  .proof-headline {
    width: auto;
    transform: none;
    font-stretch: 92%;
    font-variation-settings: "wdth" 92;
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.08;
  }
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 600px;
  margin: 4px auto 0;
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 12px auto 0;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-mockup {
  position: relative;
  margin-top: clamp(48px, 7vh, 80px);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--pad-x);
}
.hero-mockup-glow {
  position: absolute;
  inset: -42px;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 44% at 50% 54%, rgba(34,211,238,0.24), transparent 70%),
    radial-gradient(ellipse 80% 54% at 48% 44%, rgba(59,130,246,0.32), transparent 72%);
  filter: blur(64px);
}

/* ============================================================
   HERO CHAT MOCKUP
   ============================================================ */
.hero-chat {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    radial-gradient(ellipse 86% 58% at 50% 0%, rgba(59,130,246,0.14), transparent 64%),
    var(--bg-elev);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(96,165,250,0.04),
    0 34px 92px rgba(0,0,0,0.64),
    0 0 124px rgba(59,130,246,0.22);
  transform:
    perspective(1400px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    rotateZ(var(--tilt-z, 0deg));
  transition: transform 400ms ease;
  font-size: 14px;
  text-align: left;
}

.is-tilt-surface {
  transform:
    perspective(1400px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    rotateZ(var(--tilt-z, 0deg));
  transform-style: preserve-3d;
  transform-origin: center;
  will-change: transform;
  transition: transform 420ms cubic-bezier(.16,.86,.30,1);
}
.hero-chat::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(34,211,238,0.22), transparent) top / 100% 1px no-repeat,
    radial-gradient(circle at 18% 0%, rgba(34,211,238,0.08), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(96,165,250,0.08), transparent 32%);
  z-index: 2;
}

/* Chat window header */
.chat-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012)),
    rgba(10,15,28,0.52);
  gap: 12px;
  position: relative;
  z-index: 3;
}
.chat-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(96,165,250,0.18), 0 8px 22px rgba(0,0,0,0.25);
}
.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-avatar svg { width: 22px; height: 22px; }
.chat-avatar.user {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.chat-header-meta { min-width: 0; }
.chat-header-meta strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.chat-header-meta small {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 2px;
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.chat-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: chat-pulse 2.4s infinite;
}
@keyframes chat-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Chat body */
.chat-body {
  padding: 22px 20px;
  display: grid;
  gap: 16px;
  position: relative;
  background:
    linear-gradient(rgba(96,165,250,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,0.022) 1px, transparent 1px),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(59,130,246,0.075), transparent 70%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
}
.chat-body::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(34,211,238,0.035));
  pointer-events: none;
}

/* Message rows */
.msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.msg-user { flex-direction: row-reverse; }
.msg-content {
  display: grid;
  gap: 8px;
  max-width: 88%;
  min-width: 0;
}

/* User bubble */
.msg-user .msg-bubble {
  background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026));
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  border-radius: 14px 14px 4px 14px;
  padding: 9px 13px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Tool call (LangSmith / Claude style) */
.msg-tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(96,165,250,0.18);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(96,165,250,0.08), rgba(96,165,250,0.025));
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  width: fit-content;
  letter-spacing: -0.005em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 8px 22px rgba(0,0,0,0.14);
}
.msg-tool svg {
  width: 11px; height: 11px;
  color: var(--cyan);
  flex-shrink: 0;
}
.msg-tool code {
  color: var(--blue-bright);
  font-family: inherit;
}
.msg-tool .tool-arrow { color: var(--text-4); margin: 0 2px; }
.msg-tool .tool-meta { color: var(--text-3); }
.msg-tools { display: flex; flex-wrap: wrap; gap: 6px; }

.typing-row {
  display: none;
  min-height: 32px;
}
.typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 4px 14px 14px 14px;
  border: 1px solid rgba(59,130,246,0.20);
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(34,211,238,0.04));
}
.typing-bubble span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
  opacity: 0.38;
  animation: typing-dot 900ms ease-in-out infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 120ms; }
.typing-bubble span:nth-child(3) { animation-delay: 240ms; }
@keyframes typing-dot {
  0%, 80%, 100% { opacity: 0.32; transform: translateY(0); }
  35% { opacity: 1; transform: translateY(-3px); }
}

/* Agent text bubble */
.msg-bubble-agent {
  background:
    linear-gradient(135deg, rgba(59,130,246,0.12), rgba(34,211,238,0.055)),
    rgba(10,15,28,0.52);
  border: 1px solid rgba(59,130,246,0.24);
  border-radius: 4px 14px 14px 14px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  min-height: 43px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.msg-bubble-agent strong {
  color: var(--blue-bright);
  font-weight: 500;
}

/* Result cards (dossier mini-cards inside chat) */
.msg-result {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}
.result-card {
  border: 1px solid rgba(96,165,250,0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.014)),
    rgba(8,13,25,0.44);
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  transition: border-color 200ms;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.026), 0 10px 24px rgba(0,0,0,0.16);
}
.result-card:hover { border-color: var(--border-bright); }
.result-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.result-card-head strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}
.result-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.result-tag.urgent {
  background: rgba(248,113,113,0.10);
  color: #FCA5A5;
  border: 1px solid rgba(248,113,113,0.25);
}
.result-tag.warn {
  background: rgba(251,191,36,0.10);
  color: #FCD34D;
  border: 1px solid rgba(251,191,36,0.22);
}
.result-tag.info {
  background: rgba(96,165,250,0.08);
  color: var(--blue-bright);
  border: 1px solid rgba(96,165,250,0.22);
}
.result-card-body {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  line-height: 1.5;
  letter-spacing: -0.005em;
}

/* Action buttons inside agent message */
.msg-actions {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.msg-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid var(--border-bright);
  background: rgba(255,255,255,0.026);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
  transition: background 200ms, border-color 200ms;
}
.msg-action-btn:hover { background: rgba(96,165,250,0.06); border-color: var(--blue-bright); }
.msg-action-btn.primary {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 12px rgba(59,130,246,0.30);
}
.msg-action-btn svg { width: 10px; height: 10px; }

.chat-sequence-active .seq-tool,
.chat-sequence-active .seq-agent-bubble,
.chat-sequence-active .seq-card,
.chat-sequence-active .seq-action {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}
.chat-sequence-active .seq-typing {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.chat-sequence-active .seq-typing.is-hidden {
  display: none;
}
.chat-sequence-active .seq-tool.is-visible,
.chat-sequence-active .seq-agent-bubble.is-visible,
.chat-sequence-active .seq-card.is-visible,
.chat-sequence-active .seq-action.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 420ms cubic-bezier(.16,.86,.30,1), transform 420ms cubic-bezier(.16,.86,.30,1);
}
.seq-agent-bubble.is-typing::after {
  content: '';
  display: inline-block;
  width: 1.5px;
  height: 1em;
  margin-left: 2px;
  background: var(--cyan);
  vertical-align: -0.15em;
  animation: cursor-blink 780ms steps(1) infinite;
  box-shadow: 0 0 8px rgba(34,211,238,0.42);
}
@keyframes cursor-blink {
  0%, 46% { opacity: 1; }
  47%, 100% { opacity: 0; }
}

/* Chat input (decorative) */
.chat-input {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-input-field {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text-2);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 6px 4px;
  letter-spacing: -0.005em;
}
.chat-input-field:focus { outline: none; }
.chat-input-field::placeholder { color: var(--text-3); }
.chat-input-send {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(59,130,246,0.32);
  transition: opacity 180ms, transform 180ms;
}
.chat-input-send:hover { opacity: 0.92; transform: translateY(-1px); }
.chat-input-send svg { width: 13px; height: 13px; }
.chat-input-hint {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .chat-body { padding: 16px 14px; }
  .chat-header { padding: 12px 14px; }
  .chat-input { padding: 10px 12px; }
  .msg-tool { font-size: 10.5px; padding: 5px 8px; }
  .chat-input-hint { display: none; }
  .msg-content { max-width: 92%; }
  .hero-mockup { padding: 0 12px; }
  .hero-chat { transform: none; transition: none; }
}

@media (max-width: 480px) {
  .msg-tool .tool-arrow,
  .msg-tool .tool-meta { display: none; }
  .msg-tool { gap: 5px; padding: 4px 8px; }
  .result-card-body { font-size: 11px; word-break: break-word; }
  .result-card { padding: 8px 10px; }
  .chat-body { padding: 12px 10px; }
  .chat-header { padding: 10px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-sequence-active .seq-tool,
  .chat-sequence-active .seq-agent-bubble,
  .chat-sequence-active .seq-card,
  .chat-sequence-active .seq-action {
    opacity: 1;
    transform: none;
  }
  .chat-sequence-active .seq-typing {
    display: none;
  }
  .seq-agent-bubble.is-typing::after {
    display: none;
  }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
  display: grid;
  gap: 14px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-top: 4px; }
.section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
}
.section-head.left p { margin: 0; }

/* ============================================================
   AUDIENCE (panel 2-col)
   ============================================================ */
.audience {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.audience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(59,130,246,0.08), transparent 70%);
  pointer-events: none;
}
.audience-text { display: grid; gap: 14px; position: relative; }
.audience-text h2 { max-width: 18ch; }
.audience-text p { font-size: 15px; line-height: 1.6; }
.audience-tags {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.audience-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.audience-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--cyan);
}

.audience-visual {
  display: grid;
  gap: 10px;
  position: relative;
}
.audience-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
}
.audience-card-key {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.005em;
  min-width: 68px;
  flex-shrink: 0;
}
.audience-card-val {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 820px) {
  .audience { grid-template-columns: 1fr; }
}

/* ============================================================
   FRICTIONS — 2-col split (header + numbered list, NO CARDS)
   ============================================================ */
.frictions-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.frictions-aside {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 100px;
}
.frictions-aside h2 { max-width: 14ch; }
.frictions-aside p {
  font-size: 15px;
  line-height: 1.6;
}
.frictions-callout {
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(34,211,238,0.04));
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.frictions-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.frictions-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 200ms;
}
.frictions-list li:hover { background: rgba(96,165,250,0.03); }
.frictions-list-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-bright);
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.frictions-list h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0;
  color: var(--text);
}
.frictions-list p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .frictions-split { grid-template-columns: 1fr; gap: 32px; }
  .frictions-aside { position: static; }
}

/* ============================================================
   SHOWCASE — full-width mockup with copy (tinted section)
   ============================================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.showcase-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.showcase-copy h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  max-width: 18ch;
  margin: 0 auto;
}
.showcase-copy p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto;
}
.showcase-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.showcase-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.showcase-points li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gradient);
  margin-top: 11px;
}
.showcase-visual {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--bg-elev);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(59,130,246,0.18);
  transform:
    perspective(1600px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 420ms cubic-bezier(.16,.86,.30,1), box-shadow 220ms ease;
  isolation: isolate;
}
.showcase-visual:hover {
  box-shadow:
    0 28px 70px rgba(0,0,0,0.54),
    0 0 96px rgba(59,130,246,0.22);
}
.showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.showcase-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.case-mockup {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(380px, 1.6fr) minmax(210px, 0.82fr);
  gap: 14px;
  min-height: 440px;
  padding: clamp(14px, 2vw, 22px);
  background:
    radial-gradient(ellipse 46% 42% at 50% 0%, rgba(59,130,246,0.18), transparent 72%),
    radial-gradient(ellipse 38% 44% at 91% 86%, rgba(34,211,238,0.10), transparent 70%),
    linear-gradient(135deg, rgba(7,12,25,0.96), rgba(3,7,17,0.88));
}
.case-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(96,165,250,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 74%);
}
.case-panel,
.case-rail {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.case-panel {
  border: 1px solid rgba(96,165,250,0.18);
  background:
    linear-gradient(180deg, rgba(13,24,48,0.72), rgba(7,12,25,0.54));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 44px rgba(0,0,0,0.24);
  border-radius: 12px;
}
.case-sidebar {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 12px;
  padding: 18px;
}
.case-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
}
.case-filter {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(96,165,250,0.16);
  background:
    linear-gradient(90deg, transparent 8px, rgba(244,247,251,0.64) 8px 10px, transparent 10px),
    linear-gradient(90deg, transparent 14px, rgba(244,247,251,0.42) 14px 16px, transparent 16px),
    rgba(255,255,255,0.025);
  background-size: 100% 8px;
  background-position: 0 8px, 0 14px, 0 0;
  background-repeat: no-repeat;
}
.case-client {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(96,165,250,0.10);
  border-radius: 10px;
  background: rgba(6,12,26,0.50);
  color: var(--text);
  font-size: 13px;
}
.case-client.active {
  border-color: rgba(34,211,238,0.52);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.16), 0 0 26px rgba(34,211,238,0.08);
}
.case-client-icon,
.case-company-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(96,165,250,0.38);
  background: rgba(59,130,246,0.10);
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 10px;
}
.case-client-icon {
  width: 34px;
  height: 34px;
}
.case-client span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.case-client em,
.case-main-head em {
  padding: 5px 8px;
  border-radius: 7px;
  border: 1px solid rgba(59,130,246,0.22);
  background: rgba(59,130,246,0.08);
  color: var(--blue-bright);
  font-style: normal;
  font-size: 11px;
  white-space: nowrap;
}
.case-client em.ok {
  border-color: rgba(16,185,129,0.24);
  background: rgba(16,185,129,0.08);
  color: #34d399;
}
.case-link {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 9px;
  border: 1px solid rgba(96,165,250,0.12);
  background: rgba(255,255,255,0.025);
  color: var(--text-2);
  font-size: 12px;
}
.case-main {
  padding: clamp(18px, 2.6vw, 28px);
  min-width: 0;
}
.case-main-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(96,165,250,0.12);
}
.case-company-icon {
  width: 58px;
  height: 58px;
  font-size: 13px;
  box-shadow: 0 0 30px rgba(59,130,246,0.10);
}
.case-main-head strong {
  display: block;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
}
.case-main-head small,
.case-alert small,
.case-human small,
.case-action small {
  display: block;
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.4;
}
.case-table {
  display: grid;
  gap: 10px;
  padding-top: 22px;
}
.case-row {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) minmax(110px, 0.8fr) minmax(104px, 0.72fr) minmax(70px, 0.42fr);
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(96,165,250,0.10);
  background: rgba(5,11,24,0.42);
  color: var(--text);
  font-size: 14px;
  min-width: 0;
}
.case-row-head {
  min-height: auto;
  padding-top: 0;
  padding-bottom: 6px;
  border: 0;
  background: transparent;
  color: var(--text-3);
  font-size: 12px;
}
.case-status {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 12px;
}
.case-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.case-status.danger {
  color: #f87171;
  border-color: rgba(248,113,113,0.24);
  background: rgba(248,113,113,0.10);
}
.case-status.danger::before { background: #f87171; }
.case-status.success {
  color: #34d399;
  border-color: rgba(52,211,153,0.20);
  background: rgba(52,211,153,0.08);
}
.case-status.success::before { background: #34d399; }
.case-status.warn {
  color: #fbbf24;
  border-color: rgba(251,191,36,0.22);
  background: rgba(251,191,36,0.08);
}
.case-status.warn::before { background: #fbbf24; }
.case-check {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 17px;
  line-height: 1;
}
.case-check.danger { color: #f87171; }
.case-check.success { color: #34d399; }
.case-check.muted {
  width: auto;
  border: 0;
  color: var(--text-3);
}
.case-rail {
  display: grid;
  gap: 14px;
}
.case-rail .case-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.case-kicker {
  color: var(--text);
  font-size: 14px;
}
.case-kicker.danger { color: #f87171; }
.case-alert {
  min-height: 134px;
  align-content: center;
  border-color: rgba(248,113,113,0.24);
  background:
    radial-gradient(ellipse 82% 100% at 100% 100%, rgba(248,113,113,0.12), transparent 70%),
    linear-gradient(180deg, rgba(13,24,48,0.74), rgba(7,12,25,0.54));
}
.case-alert strong,
.case-human strong,
.case-action strong {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}
.case-human div {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(167,139,250,0.16);
  background: rgba(99,102,241,0.07);
}
.case-action {
  align-content: center;
  border-color: rgba(34,211,238,0.32);
  background:
    radial-gradient(ellipse 70% 120% at 0% 100%, rgba(34,211,238,0.12), transparent 72%),
    linear-gradient(180deg, rgba(13,24,48,0.74), rgba(7,12,25,0.54));
}

@media (max-width: 980px) {
  .showcase-points { grid-template-columns: 1fr; }
  .showcase-copy { text-align: left; margin: 0; }
  .showcase-copy h2,
  .showcase-copy p { margin: 0; }
  .case-mockup {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .case-sidebar {
    grid-template-rows: auto;
  }
  .case-client:not(.active),
  .case-link {
    display: none;
  }
  .case-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .case-row,
  .case-row-head {
    grid-template-columns: minmax(90px, 1fr) minmax(110px, 0.8fr) minmax(90px, 0.72fr);
    gap: 12px;
  }
  .case-row span:nth-child(4),
  .case-row-head span:nth-child(4) { display: none; }
  .case-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-row { padding: 0 12px; min-height: 50px; font-size: 13px; }
  .case-main { padding: 14px; }
  .case-rail .case-panel { padding: 14px; }
  .case-alert { min-height: 100px; }
}
@media (max-width: 700px) {
  .case-mockup { padding: 12px; }
  .case-main-head {
    grid-template-columns: 42px 1fr;
  }
  .case-company-icon {
    width: 42px;
    height: 42px;
  }
  .case-main-head em {
    grid-column: 2;
    justify-self: start;
  }
  .case-row,
  .case-row-head {
    grid-template-columns: 1fr auto;
  }
  .case-row span:nth-child(3),
  .case-row span:nth-child(4),
  .case-row-head span:nth-child(3),
  .case-row-head span:nth-child(4) {
    display: none;
  }
  .case-rail {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SOLUTIONS (3 rich cards — kept)
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.solution {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  gap: 16px;
  align-content: start;
  transition: border-color 200ms, background 200ms;
  position: relative;
  overflow: hidden;
}
.solution:hover {
  border-color: var(--border-bright);
}
.solution.featured {
  border-color: rgba(59,130,246,0.45);
  background: linear-gradient(160deg, rgba(59,130,246,0.10) 0%, transparent 60%), var(--bg-card);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.20), 0 12px 40px rgba(0,0,0,0.4);
}
.solution.featured::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.solution-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solution-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.solution.featured .solution-tag { color: var(--blue-bright); }
.solution-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.solution h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
}
.solution-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.solution-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.45;
}
.solution-list li::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--text-4);
  margin-top: 9px;
  flex-shrink: 0;
}
.solution.featured .solution-list li::before { background: var(--cyan); }

@media (max-width: 980px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LOGIQUE KLYRIO — moteur opérationnel
   ============================================================ */
.logic-section {
  padding-top: 0;
}
.logic-copy {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  display: grid;
  gap: 14px;
}
.logic-copy h2 {
  max-width: 16ch;
  margin: 0 auto;
}
.logic-copy p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
}
.logic-visual {
  position: relative;
  width: min(100%, 1120px);
  margin: clamp(8px, 2vw, 18px) auto 0;
  overflow: visible;
  background: transparent;
  transform:
    perspective(1600px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 420ms cubic-bezier(.16,.86,.30,1);
}
.logic-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 26px 42px rgba(0,0,0,0.42))
    drop-shadow(0 0 34px rgba(34,211,238,0.08));
}

/* ============================================================
   MÉTHODE (horizontal flow — line connector, no card bg)
   ============================================================ */
.method-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  position: relative;
}
.method-flow::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue) 20%, var(--cyan) 80%, transparent);
  opacity: 0.5;
  z-index: 0;
}
.flow-step {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.flow-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-bright);
  position: relative;
  transition: border-color 200ms, color 200ms, box-shadow 200ms;
}
.flow-step:hover .flow-num {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.10);
}
.flow-step h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 4px;
}
.flow-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
}

@media (max-width: 980px) {
  .method-flow { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .method-flow::before { display: none; }
}
@media (max-width: 560px) {
  .method-flow { grid-template-columns: 1fr; }
}

/* ============================================================
   PREUVE (statement + checklist — NO CARDS)
   ============================================================ */
.proof-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.proof-headline {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  font-stretch: 88%;
  font-variation-settings: "wdth" 88;
  transform: scaleX(0.94);
  transform-origin: left center;
  width: calc(100% / 0.94);
  color: var(--text);
  max-width: 14ch;
}
.proof-headline .grad { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.proof-quote {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 2px solid var(--blue-bright);
  background: rgba(96,165,250,0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 42ch;
}
.proof-checks {
  display: grid;
  border-top: 1px solid var(--border);
}
.proof-checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 180ms;
}
.proof-checks li:hover { background: rgba(96,165,250,0.03); }
.proof-checks-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34,211,238,0.12);
  border: 1px solid rgba(34,211,238,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.proof-checks-icon svg { width: 10px; height: 10px; color: var(--cyan); }
.proof-checks p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .proof-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   OUTILS — minimal band
   ============================================================ */
.outils-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2.8vw, 34px);
}
.logo-orb {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms, filter 200ms, opacity 200ms;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.22));
}
.logo-orb:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 28px rgba(34,211,238,0.16));
}
.tool-logo { width: 30px; height: 30px; object-fit: contain; }
.tool-logo.pipedrive-icon { border-radius: 5px; }
.tool-logo.outlook-logo {
  width: 36px;
  height: 36px;
}
.logo-orb.more-tools {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  filter: none;
}

/* ============================================================
   PILOTAGE À DISTANCE
   ============================================================ */
.remote-section { isolation: isolate; }
.remote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.remote-copy {
  display: grid;
  gap: 18px;
}
.remote-copy h2 {
  max-width: 18ch;
}
.remote-copy p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
}
.remote-points {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.remote-points li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
}
.remote-points li::before {
  content: '';
  width: 12px;
  height: 1px;
  margin-top: 11px;
  background: var(--gradient);
}
.remote-orbit {
  position: relative;
  min-height: 340px;
  display: block;
  overflow: visible;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 48% 58% at 50% 50%, rgba(34,211,238,0.12), transparent 72%),
    linear-gradient(135deg, rgba(13,24,48,0.28), rgba(13,24,48,0.04));
}
.remote-orbit::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  border: 1px solid rgba(96,165,250,0.08);
  background-image:
    linear-gradient(rgba(96,165,250,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}
.remote-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.remote-lines path {
  fill: none;
  stroke: url(#remote-line-gradient);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 11;
  filter: drop-shadow(0 0 12px rgba(34,211,238,0.35));
}
.remote-card,
.remote-core {
  position: absolute;
  border-radius: 16px;
  border: 1px solid var(--border-bright);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--bg-card);
  display: grid;
  place-items: center;
  box-shadow:
    0 20px 48px rgba(0,0,0,0.38),
    0 0 40px rgba(59,130,246,0.12);
  z-index: 1;
}
.remote-card {
  width: 92px;
  height: 78px;
  gap: 6px;
}
.remote-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.remote-card svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.remote-card span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.06em;
}
.remote-core {
  left: 50%;
  top: 50%;
  width: 156px;
  min-height: 128px;
  padding: 18px;
  transform: translate(-50%, -50%);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% 10%, rgba(34,211,238,0.16), transparent 68%),
    linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    var(--bg-card);
}
.remote-core-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
}
.remote-core strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}
.remote-core small {
  color: var(--text-3);
  font-size: 11px;
}
.remote-crm {
  left: 7%;
  top: 23%;
}
.remote-mail {
  left: 7%;
  bottom: 23%;
}
.remote-whatsapp {
  right: 7%;
  top: 8%;
}
.remote-sms {
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
}
.remote-telegram {
  right: 7%;
  bottom: 8%;
}

@media (max-width: 860px) {
  .remote-grid { grid-template-columns: 1fr; }
  .remote-copy h2 { max-width: 22ch; }
  .remote-orbit { min-height: 330px; }
}

@media (max-width: 520px) {
  .remote-orbit { min-height: 420px; }
  .remote-lines { display: none; }
  .remote-card {
    width: 84px;
    height: 70px;
    border-radius: 14px;
  }
  .remote-core { width: 138px; min-height: 116px; }
  .remote-crm { left: 8%; top: 8%; }
  .remote-mail { left: 8%; bottom: 8%; }
  .remote-whatsapp { right: 8%; top: 8%; }
  .remote-sms { right: 8%; top: 50%; }
  .remote-telegram { right: 8%; bottom: 8%; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.015);
  transition: border-color 180ms, background 180ms;
  overflow: hidden;
}
.faq-list details:hover,
.faq-list details[open] {
  border-color: var(--border-bright);
  background: rgba(96,165,250,0.035);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.4;
  color: var(--text);
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--blue-bright);
  font-weight: 300;
  line-height: 1;
  transition: transform 240ms cubic-bezier(.16,.86,.30,1);
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: -4px 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 60ch;
}

/* ============================================================
   CTA + FORM
   ============================================================ */
.cta {
  background: linear-gradient(160deg, rgba(59,130,246,0.10) 0%, transparent 60%), var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(59,130,246,0.10);
}
.cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-content { position: relative; display: grid; gap: 18px; align-content: start; }
.cta-content h2 { max-width: 16ch; }
.cta-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 460px;
}
.cta-meta {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.cta-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--text-2);
  text-transform: uppercase;
}
.cta-meta li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gradient);
}

/* form */
.contact-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.contact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.contact-card-head-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.contact-accordion { display: grid; gap: 8px; margin-bottom: 16px; }
.contact-step {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 180ms;
}
.contact-step[open] { border-color: var(--border-bright); }
.contact-step summary {
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.contact-step summary::-webkit-details-marker { display: none; }
.contact-step summary strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: block;
  letter-spacing: -0.005em;
}
.contact-step summary small {
  font-size: 11.5px;
  color: var(--text-3);
  display: block;
  margin-top: 1px;
  letter-spacing: -0.005em;
}
.step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(96,165,250,0.10);
  border: 1px solid rgba(96,165,250,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.contact-choice {
  border: 0;
  padding: 0 14px 14px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.contact-choice legend { display: none; }
.choice-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 180ms, background 180ms;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.choice-card:hover { border-color: var(--border-bright); background: rgba(96,165,250,0.04); }
.choice-card input[type="radio"] {
  width: 13px; height: 13px;
  margin-top: 1px;
  accent-color: var(--blue);
  flex-shrink: 0;
}
.choice-card:has(input:checked) {
  border-color: var(--blue-bright);
  background: rgba(59,130,246,0.08);
}
.choice-card strong { display: block; font-size: 12.5px; font-weight: 500; color: var(--text); }
.choice-card small { display: block; font-size: 11px; color: var(--text-3); margin-top: 1px; }

.contact-fields {
  padding: 0 14px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact-fields label { display: grid; gap: 5px; }
.contact-fields label.full { grid-column: 1 / -1; }
.contact-fields label span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-fields input,
.contact-fields textarea {
  background: rgba(96,165,250,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13.5px;
  transition: border-color 180ms, background 180ms;
  width: 100%;
}
.contact-fields input:focus,
.contact-fields textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: rgba(96,165,250,0.08);
}
.contact-fields input::placeholder,
.contact-fields textarea::placeholder { color: var(--text-3); }
.contact-fields textarea { resize: vertical; min-height: 80px; }

.hidden-field { display: none; }

.calendly-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0 0 14px;
  background: #fff;
}
.calendly-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
}
.calendly-panel-head strong { font-size: 12px; color: var(--text); }
.calendly-panel-head button {
  color: var(--text-3);
  font-size: 18px;
  line-height: 1;
}
.calendly-panel-head button:hover { color: var(--text); }
.calendly-embed { min-height: 460px; }

.form-submit {
  width: 100%;
  height: 44px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 200ms, transform 180ms, box-shadow 200ms;
  box-shadow: 0 4px 20px rgba(59,130,246,0.32);
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(59,130,246,0.45); }

.form-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.form-trust li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-width: 0;
}
.form-trust svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--blue-bright);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(59,130,246,0.25));
}
.form-trust span {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.form-trust strong {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
}
.form-trust small {
  color: var(--text-3);
  font-size: 11.5px;
  line-height: 1.35;
}

.form-reply {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.form-reply .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
.form-reply small {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.4;
  font-family: var(--font-mono);
}
.form-status {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  font-family: var(--font-mono);
}
.form-status:empty { display: none; }
[data-state="success"] { color: var(--cyan); }
[data-state="error"]   { color: #FF6B6B; }
[data-state="info"]    { color: var(--text-3); }

@media (max-width: 820px) {
  .cta { grid-template-columns: 1fr; }
  .contact-fields, .contact-choice { grid-template-columns: 1fr; }
  .calendly-panel { margin: 0 0 14px; border-radius: 0; }
  .contact-card { padding: 16px; }
  .calendly-embed { min-height: 420px; }
}

/* ============================================================
   OFFRES — mini-mockups internes aux cartes
   ============================================================ */

/* Workflow n8n-style (Automatisation) */
.offer-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(96,165,250,0.04);
  border: 1px solid var(--border);
  margin: 4px 0;
  flex-wrap: wrap;
}
.flow-node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-bright);
  background: var(--bg-elev);
  font-size: 11.5px;
  color: var(--text-2);
  white-space: nowrap;
}
.flow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.flow-trigger .flow-dot { background: var(--blue-bright); box-shadow: 0 0 6px var(--blue); }
.flow-check .flow-dot { background: #fbbf24; }
.flow-out .flow-dot { background: #34d399; }
.flow-arrow {
  color: var(--text-4);
  font-size: 12px;
  flex-shrink: 0;
}

/* Mini-dashboard KPI (Analytics) */
.offer-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(96,165,250,0.04);
  border: 1px solid var(--border);
  margin: 4px 0;
}
.dash-kpi {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  text-align: center;
}
.dash-num {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--blue-bright);
  line-height: 1;
}
.dash-label {
  font-size: 10px;
  color: var(--text-3);
  line-height: 1.3;
  font-family: var(--font-mono);
}
.dash-danger .dash-num { color: #f87171; }
.dash-warn .dash-num   { color: #fbbf24; }

/* Mini-chat simplifié (Agentique) */
.offer-chat {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(96,165,250,0.04);
  border: 1px solid var(--border);
  margin: 4px 0;
}
.offer-chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.offer-chat-user { flex-direction: row-reverse; }
.offer-chat-user .msg-bubble {
  font-size: 12px;
  padding: 6px 10px;
}
.offer-chat-bubble {
  background:
    linear-gradient(135deg, rgba(59,130,246,0.12), rgba(34,211,238,0.055)),
    rgba(10,15,28,0.52);
  border: 1px solid rgba(59,130,246,0.24);
  border-radius: 4px 10px 10px 10px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
}
.offer-chat-bubble strong { color: var(--blue-bright); font-weight: 500; }
.offer-chat .chat-avatar {
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.offer-chat .chat-avatar.user { font-size: 9px; }
.offer-chat .chat-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Livrable + audit label */
.solution-deliverable {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(96,165,250,0.04);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--font-mono);
  line-height: 1.55;
}
.solution-deliverable-label {
  display: block;
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.solution-audit {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  padding-top: 4px;
}

/* ============================================================
   EXEMPLES DE RÉALISATIONS (bento — 3 colonnes par offre)
   ============================================================ */
.realisations-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.real-column {
  display: grid;
  gap: 14px;
  align-content: start;
}
.real-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--border);
}
.real-col-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.real-col-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.real-col-tag-auto  { color: #34d399; background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.28); }
.real-col-tag-pilo  { color: var(--blue-bright); background: rgba(96,165,250,0.08); border: 1px solid rgba(96,165,250,0.28); }
.real-col-tag-agent { color: var(--cyan); background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.28); }

.real-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: grid;
  gap: 10px;
  align-content: start;
  transition: border-color 200ms, transform 200ms;
}
.real-card:hover { border-color: var(--border-bright); }

.real-card-featured {
  padding: 0 22px 22px;
  overflow: hidden;
}
.real-card-featured h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-top: 4px;
}
.real-card-featured p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}
.real-card-featured p strong {
  color: var(--text-3);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.real-card-result {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  padding-top: 6px;
  margin-top: 2px;
  border-top: 1px dashed var(--border);
}

/* Illustrations subtiles en haut des cards featured */
.real-card-illu {
  position: relative;
  height: 90px;
  margin: 0 -22px 12px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(96,165,250,0.05), transparent 60%),
    rgba(10,15,28,0.45);
}
.real-illu-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  transform: translateY(-50%);
  color: var(--cyan);
  opacity: 0.6;
}
.real-illu-auto .real-illu-dot {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid currentColor;
  transform: translateY(-50%);
  color: #34d399;
}
.real-illu-auto .real-illu-dot-1 { left: 20%; color: var(--cyan); }
.real-illu-auto .real-illu-dot-2 { left: 50%; color: #fbbf24; }
.real-illu-auto .real-illu-dot-3 { left: 80%; color: #34d399; }

.real-illu-pilo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.real-illu-agent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
}
.real-illu-tool {
  display: grid;
  grid-template-columns: 14px 1fr 14px;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(10,15,28,0.55);
}
.real-illu-tool code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.real-illu-spark {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  color: var(--cyan);
}
.real-illu-spark svg { width: 12px; height: 12px; }
.real-illu-check {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  color: #34d399;
}
.real-illu-check svg { width: 12px; height: 12px; }
.real-illu-tool-done { border-color: rgba(52,211,153,0.24); }
.real-illu-tool-done code { color: var(--text); }
.real-illu-tool-running {
  border-color: rgba(34,211,238,0.32);
  background: linear-gradient(135deg, rgba(34,211,238,0.08), rgba(96,165,250,0.03));
}
.real-illu-tool-running code { color: var(--cyan); }
.real-illu-dots {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.real-illu-dots span {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--cyan);
  animation: illu-dots 1.4s ease-in-out infinite;
}
.real-illu-dots span:nth-child(2) { animation-delay: 0.2s; }
.real-illu-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes illu-dots {
  0%, 80%, 100% { opacity: 0.25; }
  40%           { opacity: 1; }
}

/* Card mini secondaire */
.real-card-mini {
  padding: 16px 18px;
  background:
    linear-gradient(160deg, rgba(96,165,250,0.025), transparent 60%),
    var(--bg-tinted);
  gap: 6px;
}
.real-card-mini h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.real-card-mini p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .realisations-bento { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   AUDIENCE — signaux qualitatifs (douleurs vécues)
   ============================================================ */
.audience-signals {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(96,165,250,0.05), transparent 60%),
    var(--bg-card);
}
.audience-signals-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.audience-signal-list {
  display: grid;
  gap: 14px;
}
.audience-signal {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.audience-signal:last-child { border-bottom: none; padding-bottom: 0; }
.audience-signal:first-child { padding-top: 0; }
.audience-signal-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(96,165,250,0.06);
  border: 1px solid var(--border-bright);
  display: grid;
  place-items: center;
  color: var(--blue-bright);
}
.audience-signal-icon svg { width: 16px; height: 16px; }
.audience-signal p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
}
.audience-signal p strong {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   À QUOI RESSEMBLE CHAQUE INTERVENTION
   ============================================================ */
.livrables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.livrable-col {
  display: grid;
  gap: 12px;
  align-content: start;
}
.livrable-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-bright);
}
.livrable-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  gap: 8px;
}
.livrable-block-title {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.livrable-block ul { display: grid; gap: 5px; }
.livrable-block li {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.livrable-block li::before {
  content: '';
  width: 10px;
  height: 1px;
  background: var(--text-4);
  margin-top: 8px;
  flex-shrink: 0;
}
.livrable-out {
  border-color: rgba(34,211,238,0.22);
  background: linear-gradient(160deg, rgba(34,211,238,0.06), transparent 70%), var(--bg-card);
}
.livrable-out .livrable-block-title { color: var(--cyan); }
.livrable-out li::before { background: var(--cyan); }
@media (max-width: 980px) {
  .livrables-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 32px;
  margin-top: var(--section-y);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-left .brand-logo { width: 22px; height: 22px; }
.footer-logo-full {
  width: 92px;
  height: auto;
  object-fit: contain;
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 12.5px;
  color: var(--text-2);
  transition: color 150ms;
}
.footer-nav a:hover { color: var(--text); }

/* ============================================================
   STATIC FOOTER PAGES
   ============================================================ */
.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0 24px;
  display: grid;
  gap: 20px;
}
.legal-page .back {
  width: fit-content;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 12px;
  transition: color 160ms;
}
.legal-page .back:hover { color: var(--blue-bright); }
.legal-page h1 {
  max-width: 11ch;
}
.legal-page h2 {
  margin-top: 20px;
  font-size: clamp(22px, 2.2vw, 30px);
}
.legal-page .lead {
  max-width: 720px;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.65;
}
.legal-page p,
.legal-page li {
  color: var(--text-2);
  line-height: 1.7;
}
.legal-page a:not(.back):not(.btn) {
  color: var(--blue-bright);
}
.legal-page ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  list-style: disc;
}
.about-block {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.about-block.highlighted {
  padding: 24px;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(34,211,238,0.04));
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.about-values article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}
.about-values strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
}
.about-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid transparent;
}
.button.primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 4px 20px rgba(59,130,246,0.30);
}
.button.ghost {
  border-color: var(--border-bright);
  color: var(--text);
}

@media (max-width: 760px) {
  .topbar-inner { gap: 12px; }
  .brand-logo-full { width: 94px; }
  .nav-actions .btn-ghost { display: none; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .topbar-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-actions .btn-primary {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }
}


/* ============================================================
   OFFRES — layout Langsmith split-screen alterné
   ============================================================ */
#solutions { padding-bottom: 0; }
#solutions > .container { margin-bottom: 56px; }

.offer-row {
  position: relative;
  padding: clamp(56px, 8vh, 96px) 0;
}
.offer-row + .offer-row { border-top: 1px solid var(--border); }
.offer-row-tinted {
  background:
    linear-gradient(180deg, rgba(96,165,250,0.025), rgba(34,211,238,0.015)),
    var(--bg-tinted);
}

.offer-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.offer-row-reverse .offer-split {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.offer-copy { display: grid; gap: 18px; align-content: start; }
.offer-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-bright);
  background: rgba(96,165,250,0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.offer-copy h3 {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.offer-copy > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}
.offer-copy > p strong { color: var(--text); font-weight: 500; }
.offer-points {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.offer-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}
.offer-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px;
  height: 1px;
  background: var(--cyan);
}
.btn-offer {
  width: fit-content;
  margin-top: 12px;
}

.offer-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   OFFRE 01 — Workflow mockup (vertical flow + branches Y)
   ============================================================ */
.workflow-mockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
}

/* Header / footer status bars */
.wf-header,
.wf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0 12px;
  border-bottom: 1px solid var(--border);
}
.wf-footer {
  padding: 12px 0 0;
  border-bottom: none;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.wf-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wf-status-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: wf-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes wf-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.wf-status-text { display: grid; gap: 1px; }
.wf-status-text strong {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
}
.wf-status-text small {
  font-size: 10.5px;
  color: var(--text-3);
  font-family: var(--font-mono);
}
.wf-header-mono,
.wf-footer-mono {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wf-footer-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}
.wf-footer-success {
  color: #34d399;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(52,211,153,0.28);
  background: rgba(52,211,153,0.08);
}

/* Data line dans chaque step (mono) */
.wf-data {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  background: rgba(10,15,28,0.6);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wf-data em {
  font-style: normal;
  color: var(--blue-bright);
}
.wf-data-warn {
  color: #fbbf24;
  font-style: normal;
  font-weight: 500;
}

/* Header dans chaque branche out (tag + icon) */
.wf-out-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-bottom: 2px;
}

/* Card commune : badge | icon | content | pill */
.wf-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-bright);
  background: linear-gradient(160deg, rgba(96,165,250,0.05), transparent 60%), var(--bg-card);
  box-shadow: 0 4px 18px -10px rgba(96,165,250,0.16);
}
.wf-step-trigger {
  border-color: rgba(34,211,238,0.32);
  background:
    linear-gradient(135deg, rgba(34,211,238,0.10), transparent 55%),
    var(--bg-card);
}
.wf-step-check {
  border-color: rgba(96,165,250,0.32);
  background:
    linear-gradient(135deg, rgba(96,165,250,0.08), transparent 55%),
    var(--bg-card);
}

.wf-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-align: center;
}
.wf-step-trigger .wf-badge { color: var(--cyan); }
.wf-step-check   .wf-badge { color: var(--blue-bright); }

.wf-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(10,15,28,0.7);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--blue-bright);
}
.wf-icon svg { width: 20px; height: 20px; }
.wf-step-trigger .wf-icon { color: var(--cyan); border-color: rgba(34,211,238,0.32); background: rgba(34,211,238,0.06); }
.wf-step-check   .wf-icon { color: var(--blue-bright); border-color: rgba(96,165,250,0.32); background: rgba(96,165,250,0.06); }
.wf-icon-warn { color: #fbbf24; border-color: rgba(251,191,36,0.32); background: rgba(251,191,36,0.06); }
.wf-icon-ok   { color: #34d399; border-color: rgba(52,211,153,0.32); background: rgba(52,211,153,0.06); }

.wf-content { display: grid; gap: 2px; min-width: 0; }
.wf-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wf-content strong {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.wf-content small {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.4;
}

.wf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  background: rgba(96,165,250,0.04);
  color: var(--text-2);
}
.wf-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.wf-pill-cyan { color: var(--cyan); border-color: rgba(34,211,238,0.32); background: rgba(34,211,238,0.06); }
.wf-pill-blue { color: var(--blue-bright); border-color: rgba(96,165,250,0.32); background: rgba(96,165,250,0.06); }
.wf-pill-warn { color: #fbbf24; border-color: rgba(251,191,36,0.32); background: rgba(251,191,36,0.06); }
.wf-pill-ok   { color: #34d399; border-color: rgba(52,211,153,0.32); background: rgba(52,211,153,0.06); }

/* Connecteur vertical sobre entre étapes */
.wf-link {
  display: block;
  width: 1.5px;
  height: 24px;
  margin: 0 auto;
  background: rgba(96,165,250,0.5);
  border-radius: 999px;
}

/* Fork sobre (sous le check) — mêmes traits, même couleur, sans flèche */
.wf-fork {
  height: 40px;
  margin: 2px 0;
}
.wf-fork svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Branches Oui/Non */
.wf-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wf-step-out {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  align-items: flex-start;
}
.wf-step-out .wf-icon { width: 32px; height: 32px; }
.wf-step-out .wf-icon svg { width: 16px; height: 16px; }
.wf-step-out strong { font-size: 14px; color: var(--text); font-weight: 500; line-height: 1.25; }
.wf-step-out small  { font-size: 11.5px; color: var(--text-3); line-height: 1.45; }
.wf-step-out .wf-pill { margin-top: 2px; }
.wf-out-no { border-color: rgba(251,191,36,0.24); }
.wf-out-yes { border-color: rgba(52,211,153,0.24); }

.wf-branch-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wf-branch-no  { color: #fbbf24; background: rgba(251,191,36,0.10); border: 1px solid rgba(251,191,36,0.32); }
.wf-branch-yes { color: #34d399; background: rgba(52,211,153,0.10); border: 1px solid rgba(52,211,153,0.32); }

/* ============================================================
   OFFRE 01 — Sub-block pilotage à distance (orbite)
   ============================================================ */
.offer-subblock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(48px, 6vh, 80px);
  padding-top: clamp(40px, 5vh, 56px);
  border-top: 1px solid var(--border);
}
.offer-subblock-copy { display: grid; gap: 14px; align-content: start; }
.offer-subblock-copy h4 {
  font-family: var(--font-title);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}
.offer-subblock-copy p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
}

/* ============================================================
   OFFRE 01 — Sub-block : Stack de notifications canaux (Pilotage à distance)
   ============================================================ */
.channels-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
}
.ch-header,
.ch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.ch-footer {
  padding: 12px 0 0;
  border-bottom: none;
  border-top: 1px solid var(--border);
  margin-top: 2px;
}
.ch-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.ch-source-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(10,15,28,0.6);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-2);
  flex-shrink: 0;
}
.ch-source-icon svg { width: 16px; height: 16px; }
.ch-source-crm { color: var(--blue-bright); border-color: rgba(96,165,250,0.28); background: rgba(96,165,250,0.06); }
.ch-source-mail { color: var(--cyan); border-color: rgba(34,211,238,0.28); background: rgba(34,211,238,0.06); }
.ch-arrow {
  font-family: var(--font-mono);
  color: var(--text-3);
  font-size: 14px;
  margin: 0 2px;
}
.ch-header-text { display: grid; gap: 1px; min-width: 0; }
.ch-header-text strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.ch-header-text small {
  font-size: 10.5px;
  color: var(--text-3);
  font-family: var(--font-mono);
}
.ch-header-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--cyan);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,0.32);
  background: rgba(34,211,238,0.06);
  flex-shrink: 0;
}
.ch-header-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.ch-feed {
  display: grid;
  gap: 10px;
}
.ch-notif {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-bright);
  background: var(--bg-card);
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.ch-notif:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -10px rgba(96,165,250,0.35);
}
.ch-notif-wa:hover  { border-color: rgba(37,211,102,0.5); }
.ch-notif-sms:hover { border-color: rgba(96,165,250,0.5); }
.ch-notif-tg:hover  { border-color: rgba(41,182,246,0.5); }
.ch-notif::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--cyan);
}
.ch-notif-wa::before  { background: #25D366; }
.ch-notif-sms::before { background: #60A5FA; }
.ch-notif-tg::before  { background: #29B6F6; }

.ch-notif-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10,15,28,0.7);
  border: 1px solid var(--border);
}
.ch-notif-wa  .ch-notif-icon { background: rgba(37,211,102,0.10); border-color: rgba(37,211,102,0.32); }
.ch-notif-tg  .ch-notif-icon { background: rgba(41,182,246,0.10); border-color: rgba(41,182,246,0.32); }
.ch-notif-sms .ch-notif-icon { color: var(--blue-bright); background: rgba(96,165,250,0.10); border-color: rgba(96,165,250,0.32); }
.ch-icon-sms svg { width: 18px; height: 18px; }

.ch-notif-body { display: grid; gap: 4px; min-width: 0; }
.ch-notif-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.ch-notif-head strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.ch-notif-head time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  flex-shrink: 0;
}
.ch-notif p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.45;
}
.ch-notif p em {
  font-style: normal;
  font-weight: 500;
  color: var(--text);
}

.ch-footer-mono {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ch-footer-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,0.6);
}

@media (max-width: 640px) {
  .ch-header { flex-wrap: wrap; }
  .ch-header-text strong { font-size: 12.5px; }
  .ch-notif { padding: 11px 12px; }
  .ch-notif-head strong { font-size: 12.5px; }
  .ch-notif p { font-size: 12px; }
}

/* ============================================================
   OFFRE 02 — Cockpit Performance équipe (manager dashboard)
   ============================================================ */
.cockpit-mockup {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(96,165,250,0.08), transparent 60%),
    rgba(10,15,28,0.62);
  width: 100%;
}
.ckp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.ckp-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.ckp-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.ckp-period {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue-bright);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(96,165,250,0.28);
  background: rgba(96,165,250,0.06);
}

/* Hero KPI + sparkline */
.ckp-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(34,211,238,0.10), rgba(96,165,250,0.04) 50%, transparent 80%),
    var(--bg-card);
  border: 1px solid rgba(96,165,250,0.18);
}
.ckp-hero-left { display: grid; gap: 4px; }
.ckp-hero-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ckp-hero-val {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 2px;
}
.ckp-hero-val strong {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ckp-hero-val strong em {
  font-style: normal;
  font-size: 20px;
  color: var(--text-2);
  margin-left: 1px;
}
.ckp-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 999px;
}
.ckp-trend svg { width: 12px; height: 12px; }
.ckp-trend-up {
  color: #34d399;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.28);
}
.ckp-hero-sub {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--font-mono);
}
.ckp-spark {
  display: grid;
  gap: 6px;
}
.ckp-spark svg {
  width: 100%;
  height: 70px;
  display: block;
}
.ckp-spark-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-4);
  letter-spacing: 0.04em;
}

/* Panel classement */
.ckp-panel {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.ckp-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.ckp-panel-head strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.ckp-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-3);
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(96,165,250,0.04);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ckp-team-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1.2fr) minmax(60px, 1.4fr) auto 14px;
  align-items: center;
  gap: 10px;
  padding: 7px 2px;
  font-size: 12px;
  color: var(--text-2);
  border-bottom: 1px solid rgba(96,165,250,0.05);
}
.ckp-team-row:last-child { border-bottom: none; }
.ckp-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96,165,250,0.18), rgba(34,211,238,0.12));
  border: 1px solid var(--border-bright);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  color: var(--blue-bright);
  display: grid;
  place-items: center;
  letter-spacing: 0;
}
.ckp-team-name {
  font-size: 12.5px;
  color: var(--text);
}
.ckp-team-row em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--blue-bright);
  text-align: right;
}
.ckp-team-row-alert .ckp-team-name { color: #fbbf24; }
.ckp-team-row-alert em { color: #fbbf24; }
.ckp-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(96,165,250,0.08);
  overflow: hidden;
}
.ckp-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 999px;
}
.ckp-bar-warn > span { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.ckp-trend-mini {
  font-size: 11px;
  text-align: center;
  width: 14px;
}
.ckp-trend-mini.up   { color: #34d399; }
.ckp-trend-mini.flat { color: var(--text-3); }
.ckp-trend-mini.down { color: #fbbf24; }

/* Alerte performance */
.ckp-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(251,191,36,0.24);
  background:
    linear-gradient(135deg, rgba(251,191,36,0.06), transparent 70%),
    var(--bg-card);
}
.ckp-alert-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.28);
  display: grid;
  place-items: center;
  color: #fbbf24;
}
.ckp-alert-icon svg { width: 14px; height: 14px; }
.ckp-alert strong {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.ckp-alert small {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.45;
}

/* ============================================================
   OFFRE 03 — Chat : intégration naturelle, pas de compression
   ============================================================ */
.offer-mockup-chat {
  align-self: stretch;
}
.offer-mockup-chat .hero-chat {
  max-width: 100%;
  margin: 0;
  transform:
    perspective(1400px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    rotateZ(var(--tilt-z, 0deg));
  width: 100%;
}
.offer-mockup-chat .chat-body { padding: 18px 16px; gap: 16px; }

/* ============================================================
   RESPONSIVE — Langsmith split → empilé sur tablette/mobile
   ============================================================ */
@media (max-width: 980px) {
  .offer-split,
  .offer-row-reverse .offer-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* En layout reverse desktop, on garde mockup en bas sur mobile */
  .offer-row-reverse .offer-split > .offer-mockup { order: 2; }
  .offer-row-reverse .offer-split > .offer-copy { order: 1; }

  .offer-subblock {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ckp-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }
  .ckp-spark svg { height: 60px; }
}

@media (max-width: 640px) {
  .offer-row { padding: 56px 0; }
  .offer-copy h3 { font-size: 26px; }
  .offer-copy > p { font-size: 15px; }

  .workflow-mockup {
    padding: 20px 14px;
    gap: 10px;
  }
  .wf-step {
    grid-template-columns: 22px 36px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 14px;
  }
  .wf-icon { width: 36px; height: 36px; }
  .wf-icon svg { width: 17px; height: 17px; }
  .wf-content strong { font-size: 13.5px; }
  .wf-content small { font-size: 11px; }
  .wf-pill { font-size: 10px; padding: 3px 8px; }
  .wf-link { margin-left: 32px; height: 14px; }
  .wf-branches { grid-template-columns: 1fr; gap: 10px; }
  .wf-fork {
    height: 24px;
    width: 1.5px;
    margin: 0 auto;
    background: rgba(96,165,250,0.5);
    border-radius: 999px;
  }
  .wf-fork svg { display: none; }
  .wf-step-out { padding: 12px 14px; }

  .cockpit-mockup { padding: 14px; }
  .ckp-kpi-val { font-size: 20px; }
  .ckp-row { grid-template-columns: 1.4fr 0.8fr 0.9fr; }
}

/* ============================================================
   PAGES OFFRE PREMIUM (/automatisation, /analytics, /agentique)
   ============================================================ */

.page-offer { --op-accent: var(--cyan); --op-accent-soft: rgba(34,211,238,0.32); --op-accent-bg: rgba(34,211,238,0.06); }
.page-offer-analytics  { --op-accent: var(--blue-bright); --op-accent-soft: rgba(96,165,250,0.32); --op-accent-bg: rgba(96,165,250,0.08); }
.page-offer-agentique  { --op-accent: #818CF8; --op-accent-soft: rgba(129,140,248,0.32); --op-accent-bg: rgba(129,140,248,0.08); }

.op-page { padding-bottom: clamp(80px, 10vh, 120px); }

.op-hero {
  padding: clamp(40px, 6vh, 72px) 0 clamp(48px, 7vh, 96px);
  position: relative;
}
.op-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  transition: color 160ms;
}
.op-back:hover { color: var(--op-accent); }

.op-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.op-hero-copy { display: grid; gap: 18px; align-content: start; }

.op-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid var(--op-accent-soft);
  background: var(--op-accent-bg);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--op-accent);
}
.op-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }

.op-hero-copy h1 {
  font-family: var(--font-title);
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
.op-grad {
  background: linear-gradient(110deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.page-offer-agentique .op-grad {
  background: linear-gradient(110deg, #A78BFA, #22D3EE);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.op-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
}
.op-lead strong { color: var(--text); font-weight: 500; }

.op-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.op-meta-item {
  display: grid; gap: 2px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.op-meta-key {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.op-meta-val { font-size: 12.5px; color: var(--text); font-weight: 500; }

.op-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.op-hero-mockup { position: relative; display: flex; align-items: center; justify-content: center; }

.op-section-head {
  display: grid; gap: 12px;
  max-width: 720px;
  margin-bottom: clamp(36px, 4vh, 56px);
}
.op-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--op-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.op-section-head h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.op-section-head > p { font-size: 15px; line-height: 1.65; color: var(--text-2); }

.op-capabilities { padding: clamp(60px, 8vh, 96px) 0; border-top: 1px solid var(--border); }
.op-cap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vh, 64px) 0;
}
.op-cap-right .op-cap-copy { order: 2; }
.op-cap-right .op-cap-visual { order: 1; }

.op-cap-copy { display: grid; gap: 12px; align-content: start; }
.op-cap-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--op-accent);
  letter-spacing: 0.08em;
}
.op-cap h3 {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}
.op-cap p { font-size: 15px; line-height: 1.65; color: var(--text-2); }
.op-cap-points { display: grid; gap: 8px; margin-top: 6px; }
.op-cap-points li {
  position: relative; padding-left: 22px;
  font-size: 14px; color: var(--text-2); line-height: 1.55;
}
.op-cap-points li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: var(--op-accent);
}
.op-cap-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.op-mini-deadline,
.op-mini-pieces,
.op-mini-kpi,
.op-mini-team,
.op-mini-alert,
.op-mini-chat,
.op-mini-tools,
.op-mini-guard {
  width: 100%;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 100% at 0% 0%, var(--op-accent-bg), transparent 60%),
    var(--bg-card);
  padding: 20px;
  display: grid; gap: 12px;
}
.op-mini-deadline header,
.op-mini-pieces header,
.op-mini-team header,
.op-mini-guard header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.op-mini-label {
  font-family: var(--font-mono);
  font-size: 10.5px; color: var(--text-3);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.op-mini-count {
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 500; color: var(--text);
}

.op-mini-deadline ul { display: grid; gap: 8px; }
.op-mini-deadline li {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 12px; align-items: center;
  padding: 8px 10px; border-radius: 6px;
  border: 1px solid var(--border); background: rgba(10,15,28,0.55);
}
.op-mini-pill {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  padding: 3px 7px; border-radius: 4px; text-align: center;
}
.op-pill-red    { color: #f87171; background: rgba(248,113,113,0.10); border: 1px solid rgba(248,113,113,0.30); }
.op-pill-orange { color: #fb923c; background: rgba(251,146,60,0.10); border: 1px solid rgba(251,146,60,0.30); }
.op-pill-yellow { color: #fbbf24; background: rgba(251,191,36,0.10); border: 1px solid rgba(251,191,36,0.30); }
.op-mini-name { font-size: 13px; color: var(--text); }
.op-mini-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); }

.op-mini-pieces ul { display: grid; gap: 7px; }
.op-mini-pieces li {
  display: grid; grid-template-columns: 24px 1fr auto;
  align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 6px;
  border: 1px solid var(--border); background: rgba(10,15,28,0.55);
  font-size: 13px; color: var(--text-2);
}
.op-mini-pieces li em { font-style: normal; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); }
.op-piece-check {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
}
.op-piece-check.ok     { color: #34d399; background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.32); }
.op-piece-check.warn   { color: #fbbf24; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.32); }
.op-piece-check.danger { color: #f87171; background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.32); }

.op-mini-kpi { text-align: left; }
.op-mini-kpi-val { display: flex; align-items: baseline; gap: 12px; }
.op-mini-kpi-val strong {
  font-family: var(--font-mono); font-size: 44px; font-weight: 500;
  color: var(--text); line-height: 1;
}
.op-mini-kpi-val strong em { font-style: normal; font-size: 24px; color: var(--text-2); }
.op-mini-kpi-trend {
  font-family: var(--font-mono); font-size: 12px; color: #34d399;
  padding: 3px 8px; border-radius: 999px;
  border: 1px solid rgba(52,211,153,0.32); background: rgba(52,211,153,0.10);
}
.op-mini-kpi-spark { width: 100%; height: 50px; margin-top: 4px; }

.op-mini-team ul { display: grid; gap: 10px; }
.op-mini-team li {
  display: grid; grid-template-columns: 24px 1fr 1fr auto;
  align-items: center; gap: 10px; font-size: 13px; color: var(--text-2);
}
.op-mini-team li.alert .op-team-name,
.op-mini-team li.alert em { color: #fbbf24; }
.op-team-name { font-size: 13px; color: var(--text); }

.op-mini-alert {
  display: flex; gap: 14px; align-items: flex-start;
  border-color: rgba(251,191,36,0.28);
  background: linear-gradient(135deg, rgba(251,191,36,0.08), transparent 60%), var(--bg-card);
}
.op-mini-alert-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.32);
  display: grid; place-items: center; color: #fbbf24; flex-shrink: 0;
}
.op-mini-alert-icon svg { width: 18px; height: 18px; }
.op-mini-alert-body { display: grid; gap: 4px; }
.op-mini-alert-tag {
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.06em; color: #fbbf24;
}
.op-mini-alert strong { font-size: 14px; color: var(--text); font-weight: 500; }
.op-mini-alert p { font-size: 13px; line-height: 1.5; color: var(--text-2); }
.op-mini-alert p em {
  font-style: normal; color: #fbbf24;
  font-family: var(--font-mono); font-size: 12px;
}

.op-mini-chat { gap: 8px; }
.op-mini-chat-msg { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; }
.op-mini-chat-msg.op-mini-chat-agent { flex-direction: row-reverse; }
.op-mini-chat-bubble {
  padding: 8px 12px; border-radius: 12px 12px 12px 2px;
  border: 1px solid var(--border-bright);
  background: rgba(96,165,250,0.06);
  color: var(--text-2); max-width: 75%; line-height: 1.45;
}
.op-mini-chat-bubble.agent {
  border-radius: 12px 12px 2px 12px;
  background: linear-gradient(135deg, var(--op-accent-bg), rgba(96,165,250,0.04));
  border-color: var(--op-accent-soft); color: var(--text);
}
.op-mini-chat-bubble.agent strong { color: var(--op-accent); font-weight: 500; }
.ckp-avatar.agent {
  background: var(--op-accent-bg);
  border-color: var(--op-accent-soft);
  color: var(--op-accent);
}

.op-mini-tools { gap: 8px; }

.op-guard-action {
  padding: 12px; border-radius: 8px;
  border: 1px solid var(--border); background: rgba(10,15,28,0.55);
  display: grid; gap: 6px;
}
.op-guard-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--op-accent); width: fit-content;
  padding: 2px 8px; border-radius: 4px;
  background: var(--op-accent-bg); border: 1px solid var(--op-accent-soft);
}
.op-guard-action p { font-size: 12.5px; color: var(--text-2); line-height: 1.45; }
.op-guard-action strong { color: var(--text); font-weight: 500; }
.op-guard-buttons { display: flex; gap: 8px; }
.op-guard-btn {
  font-family: var(--font-mono); font-size: 11.5px;
  padding: 7px 14px; border-radius: 6px;
  border: 1px solid var(--border-bright);
  background: var(--bg-card); color: var(--text-2);
  cursor: pointer; transition: all 160ms;
}
.op-guard-approve {
  color: #34d399; border-color: rgba(52,211,153,0.32);
  background: rgba(52,211,153,0.08);
}
.op-guard-edit { color: var(--text-2); }

.op-process { padding: clamp(60px, 8vh, 96px) 0; border-top: 1px solid var(--border); }
.op-steps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px; list-style: none;
}
.op-step {
  position: relative; padding: 24px 20px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg-card);
  display: grid; gap: 8px; align-content: start;
}
.op-step-num { font-family: var(--font-mono); font-size: 11px; color: var(--op-accent); letter-spacing: 0.06em; }
.op-step-duration {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3);
  padding: 3px 8px; border-radius: 999px;
  border: 1px solid var(--border-bright); background: rgba(96,165,250,0.04);
  width: fit-content; letter-spacing: 0.02em;
}
.op-step strong { font-size: 17px; font-weight: 500; color: var(--text); margin-top: 4px; }
.op-step p { font-size: 13px; line-height: 1.55; color: var(--text-2); }
.op-step-deliv {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--op-accent); letter-spacing: 0.02em;
}

.op-case { padding: clamp(60px, 8vh, 96px) 0; border-top: 1px solid var(--border); }
.op-case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.op-case-panel {
  padding: 28px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright); background: var(--bg-card);
  display: grid; gap: 10px; align-content: start;
}
.op-case-stage {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.op-case-before .op-case-stage { color: #f87171; }
.op-case-during .op-case-stage { color: var(--blue-bright); }
.op-case-after .op-case-stage  { color: #34d399; }
.op-case-panel h3 {
  font-family: var(--font-title); font-size: 18px;
  font-weight: 500; line-height: 1.3; color: var(--text); margin-top: 4px;
}
.op-case-panel p { font-size: 14px; line-height: 1.6; color: var(--text-2); }
.op-case-after {
  border-color: rgba(52,211,153,0.32);
  background: linear-gradient(160deg, rgba(52,211,153,0.05), transparent 60%), var(--bg-card);
}
.op-case-metrics {
  display: grid; gap: 14px;
  margin-top: 8px; padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.op-case-metrics li {
  display: grid; grid-template-columns: auto 1fr;
  align-items: baseline; gap: 12px;
}
.op-case-metrics strong {
  font-family: var(--font-mono); font-size: 22px; font-weight: 500;
  color: #34d399; line-height: 1;
}
.op-case-metrics span { font-size: 12.5px; color: var(--text-2); line-height: 1.45; }

.op-diff { padding: clamp(60px, 8vh, 96px) 0; border-top: 1px solid var(--border); }
.op-compare { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.op-compare-card {
  padding: 24px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--bg-card);
  display: grid; gap: 12px; align-content: start;
}
.op-compare-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; width: fit-content;
}
.op-compare-tag-other { color: var(--text-3); background: rgba(96,165,250,0.04); border: 1px solid var(--border); }
.op-compare-tag-klyrio { color: var(--op-accent); background: var(--op-accent-bg); border: 1px solid var(--op-accent-soft); }
.op-compare-card p { font-size: 14px; line-height: 1.6; color: var(--text-2); }
.op-compare-klyrio {
  border-color: var(--op-accent-soft);
  background: linear-gradient(160deg, var(--op-accent-bg), transparent 60%), var(--bg-card);
}
.op-compare-klyrio p { color: var(--text); }

.op-final { padding: clamp(60px, 8vh, 96px) 0 0; }
.op-final-card {
  padding: clamp(48px, 6vh, 72px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--op-accent-soft);
  background:
    radial-gradient(120% 100% at 50% 0%, var(--op-accent-bg), transparent 60%),
    var(--bg-card);
  text-align: center; display: grid; gap: 16px; justify-items: center;
}
.op-final-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 13px; border-radius: 999px;
  border: 1px solid var(--op-accent-soft); background: var(--op-accent-bg);
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--op-accent);
}
.op-final-card h2 {
  font-family: var(--font-title); font-size: clamp(26px, 3vw, 36px);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text); max-width: 720px;
}
.op-final-card p { font-size: 15px; line-height: 1.6; color: var(--text-2); max-width: 580px; }
.op-final-card .op-actions { justify-content: center; margin-top: 8px; }

@media (max-width: 980px) {
  .op-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .op-cap { grid-template-columns: 1fr; gap: 24px; }
  .op-cap-right .op-cap-visual { order: 2; }
  .op-cap-right .op-cap-copy   { order: 1; }
  .op-steps { grid-template-columns: 1fr 1fr; }
  .op-case-grid { grid-template-columns: 1fr; }
  .op-compare { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .op-steps { grid-template-columns: 1fr; }
  .op-final-card { padding: 32px 20px; }
  .op-case-panel { padding: 22px 18px; }
}

/* ============================================================
   ANCIENS STYLES PAGES OFFRES (à retirer)
   ============================================================ */
.offer-page-LEGACY {
  padding: clamp(60px, 9vh, 100px) 0 clamp(80px, 10vh, 120px);
}
.offer-back-LEGACY {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  transition: color 160ms;
}
.offer-back:hover { color: var(--blue-bright); }

.offer-page-hero {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: clamp(48px, 6vh, 72px);
}
.offer-page-hero .offer-eyebrow { width: fit-content; }
.offer-page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
.offer-page-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--text-2);
}
.offer-page-lead strong { color: var(--text); font-weight: 500; }
.offer-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

/* Mockup wrap — centré, max-width */
.offer-page-mockup-wrap {
  max-width: 720px;
  margin: 0 auto clamp(56px, 8vh, 96px);
}

/* Section block — séparateur subtil entre sections */
.offer-section-block {
  padding: clamp(48px, 6vh, 72px) 0;
  border-top: 1px solid var(--border);
}
.offer-section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 32px;
}
.offer-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer-section-head h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.offer-section-head > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
}
.offer-section-head > p strong { color: var(--text); font-weight: 500; }

/* Section note (texte seulement, sans contenu après) */
.offer-section-note {
  padding-bottom: 0;
}

/* Liste détaillée */
.offer-detail-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.offer-detail-list li {
  position: relative;
  padding: 14px 16px 14px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.offer-detail-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.offer-detail-list li strong {
  color: var(--text);
  font-weight: 500;
}

/* Livrables — réutilise le style global, ajustements pour la page */
.offer-section-block .livrables-grid {
  margin-top: 0;
}

/* Cas d'usage — grille 2 colonnes pour les pages dédiées */
.cas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.cas-grid .real-card-featured {
  padding: 22px;
}
.cas-grid .real-card-featured h3 {
  font-size: 17px;
  margin-top: 0;
}

/* Final CTA */
.offer-final-cta {
  margin-top: clamp(56px, 8vh, 96px);
  padding: clamp(40px, 6vh, 64px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(96,165,250,0.08), transparent 60%),
    var(--bg-card);
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}
.offer-final-cta h2 {
  font-family: var(--font-title);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}
.offer-final-cta p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 540px;
}
.offer-final-cta .offer-page-actions {
  justify-content: center;
  margin-top: 8px;
}

/* Pour les livrables-grid sur pages d'offres, ajouter les block-title si nécessaire */
.offer-section-block .livrable-block ul li::before {
  content: '';
  width: 10px;
  height: 1px;
  background: var(--text-4);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 760px) {
  .cas-grid { grid-template-columns: 1fr; }
  .offer-final-cta { padding: 32px 20px; }
}
