/* L'Atelier Copilot — Landing
   Palette: bleu nuit accent sur crème / blanc cassé / gris
   Typo: Geist (Vercel)
*/

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Neutrals */
  --bg: #FAF8F3;           /* crème / blanc cassé */
  --bg-elevated: #FFFFFF;
  --bg-muted: #F3F0E8;
  --border: #E8E3D6;
  --border-strong: #D6D0BE;
  --border-soft: #EFEBE0;

  /* Ink — bleu nuit du logo */
  --ink-900: #0E1F36;
  --ink-700: #253450;
  --ink-500: #5A6175;
  --ink-400: #858B9C;
  --ink-300: #B3B8C4;
  --ink-200: #D9DBE3;

  /* Accent — Coral from logo */
  --accent: #F18A64;
  --accent-hover: #E07954;
  --accent-soft: #FEF3F0;
  --accent-ink: #7C2D12;

  /* Type scale (fluid) */
  --fs-display: clamp(56px, 8vw, 112px);
  --fs-h1: clamp(40px, 5.2vw, 72px);
  --fs-h2: clamp(32px, 3.6vw, 52px);
  --fs-h3: clamp(22px, 2vw, 28px);
  --fs-lead: clamp(18px, 1.4vw, 22px);
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-micro: 12px;

  /* Radii & spacing */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows (very subtle) */
  --shadow-sm: 0 1px 2px rgba(11,16,32,0.04);
  --shadow-md: 0 2px 8px rgba(11,16,32,0.05), 0 1px 2px rgba(11,16,32,0.04);
  --shadow-lg: 0 20px 40px -16px rgba(11,16,32,0.12), 0 2px 6px rgba(11,16,32,0.04);

  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

.mono { font-family: 'Geist Mono', ui-monospace, monospace; }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Grain overlay — subtle texture */
.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.04  0 0 0 0 0.06  0 0 0 0 0.13  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  background: rgba(250, 248, 243, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border-soft);
  background: rgba(250, 248, 243, 0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--bg-elevated);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-size: 15px;
}
.brand-name em {
  font-style: normal;
  color: var(--ink-500);
  font-weight: 400;
}
.brand-tagline {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 500;
  margin-top: 1px;
}
.footer-brand .brand {
  margin-bottom: 2px;
}
.footer-brand .brand-mark {
  width: 34px; height: 34px;
  font-size: 13px;
  border-radius: 8px;
}
.footer-brand .brand-logo {
  height: 40px;
}
.footer-brand .brand-name {
  font-size: 19px;
}
.footer-brand .brand-tagline {
  font-size: 11px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-500);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink-900); }

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

/* Mobile nav (burger) */
.nav-menu { display: contents; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--bg-elevated);
  color: var(--ink-900);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 2px rgba(20,30,55,0.05);
}
.nav-toggle .icon-close { display: none; }
.nav.open .nav-toggle .icon-open { display: none; }
.nav.open .nav-toggle .icon-close { display: block; }

@media (max-width: 960px) {
  .brand-name, .brand-tagline { white-space: nowrap; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 12px 24px 24px;
    background: #FAF8F3;
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 24px 32px -18px rgba(11,16,32,0.32);
  }
  .nav.open .nav-menu { display: flex; }
  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-menu .nav-links a {
    display: block;
    padding: 14px 2px;
    font-size: 16px;
    color: var(--ink-900);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-menu .nav-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
    width: 100%;
  }
  .nav-menu .nav-cta .btn { width: 100%; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all .18s var(--ease);
  border: 1px solid transparent;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--ink-900);
  color: var(--bg);
  border-color: var(--ink-900);
}
.btn-primary:hover { background: #1a2238; border-color: #1a2238; transform: translateY(-0.5px); }
.btn-ghost {
  background: transparent;
  color: var(--ink-700);
}
.btn-ghost:hover { color: var(--ink-900); background: var(--bg-muted); }
.btn-outline {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFBF9 100%);
  color: var(--ink-900);
  border: 1px solid rgba(20,30,55,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 1px 2px rgba(20,30,55,0.05), 0 2px 8px -2px rgba(20,30,55,0.08);
}
.btn-outline:hover {
  border-color: rgba(20,30,55,0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 4px 12px -2px rgba(20,30,55,0.14);
  transform: translateY(-1px);
}
.btn-sm { padding: 8px 12px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 13px 22px; font-size: 15px; border-radius: 12px; }
.btn-accent {
  background: linear-gradient(to right, #A855F7, #6366F1);
  color: #ffffff;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 4px 14px 0 rgba(99, 102, 241, 0.39);
  text-shadow: none;
}
.btn-accent:hover { 
  background: linear-gradient(to right, #B66CFF, #7477F6);
  box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Reveal — minimal */
/* Reveal — pure-CSS entrance. The animation self-completes to opacity:1,
   so content is NEVER left hidden if the reveal JS fails or is delayed.
   JS adding `.in` remains compatible (also resolves to opacity:1). */
.reveal {
  animation: reveal-in .5s var(--ease) both;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { animation-delay: .05s; }
.reveal-delay-2 { animation-delay: .1s; }
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* Logo image */
.logo-img { height: 128px; width: auto; display: block; }
.logo-img-lg { height: 256px; width: auto; display: block; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(30,58,138,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30,58,138,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hero h1 {
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin: 24px 0 24px;
  color: var(--ink-900);
}
.hero h1 .em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-family: 'Geist', serif;
  letter-spacing: -0.04em;
}
.hero-lead {
  font-size: var(--fs-lead);
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-400);
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { color: var(--accent); }

/* Prompt showcase below hero */
.prompt-showcase {
  margin-top: 72px;
  position: relative;
}
.prompt-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.prompt-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-muted);
}
.prompt-tabs { display: flex; gap: 4px; }
.prompt-tab {
  padding: 6px 12px;
  font-size: 13px;
  color: var(--ink-500);
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  transition: all .15s var(--ease);
}
.prompt-tab.active {
  background: var(--bg-elevated);
  color: var(--ink-900);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.prompt-tab:hover:not(.active) { color: var(--ink-700); }
.prompt-meta {
  font-size: 12px;
  color: var(--ink-400);
  display: flex; gap: 12px; align-items: center;
}
.prompt-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.prompt-col {
  padding: 28px 32px;
}
.prompt-col + .prompt-col { border-left: 1px solid var(--border-soft); }
.prompt-col-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prompt-col-head .pill {
  padding: 2px 8px;
  background: var(--bg-muted);
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 10px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.prompt-col-head .pill.accent {
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-color: transparent;
}
.prompt-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  font-family: 'Geist Mono', monospace;
  letter-spacing: -0.005em;
}
.prompt-text.plain {
  color: var(--ink-500);
}
.prompt-text mark {
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 500;
}

/* ============ SECTIONS ============ */
.section {
  padding: 80px 0;
  position: relative;
}
section[id], header[id] { scroll-margin-top: 80px; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--ink-900);
}
.section-head p {
  font-size: var(--fs-lead);
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
  text-wrap: pretty;
}

/* ============ USE CASES (SIMPLE) ============ */
.usecases-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usecase-col {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.uc-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.uc-app.word { color: #185ABD; }
.uc-app.outlook { color: #0078D4; }
.uc-app.teams { color: #5B5FC7; }

.usecase-col h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.3;
  margin: 0 0 24px;
}

.uc-box {
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.uc-box-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 8px;
}

.uc-box.prompt {
  background: var(--bg-muted);
  color: var(--ink-700);
}
.uc-box.prompt .uc-box-label {
  color: var(--ink-500);
}

.uc-arrow {
  text-align: center;
  color: var(--border-strong);
  margin: 12px 0;
  font-size: 18px;
}

.uc-box.result {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--ink-900);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  flex: 1;
}
.uc-box.result .uc-box-label {
  color: var(--accent);
}

@media (max-width: 900px) {
  .usecases-simple {
    grid-template-columns: 1fr;
  }
}

/* ============ HOW IT WORKS ============ */
.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.how::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: left;
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px dashed var(--border-strong);
  opacity: 0.5;
}
.step h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-500);
  margin: 0;
}

/* ============ PRICING ============ */
.pricing-wrap {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--accent-soft) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.6;
}
.pricing-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}
.pricing-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.pricing-badge {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  position: relative;
}
.pricing-amount {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  line-height: 1;
}
.pricing-unit {
  font-size: 16px;
  color: var(--ink-500);
}
.pricing-sub {
  color: var(--ink-500);
  font-size: 15px;
  margin-bottom: 32px;
  position: relative;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.pricing-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.4;
}
.pricing-features svg {
  flex: 0 0 16px;
  margin-top: 3px;
  color: var(--accent);
}
.pricing-card .btn { width: 100%; position: relative; }
.pricing-footer {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-400);
  text-align: center;
  position: relative;
}

/* ============ FORMATION CARDS ============ */
.formation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.formation-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.formation-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.formation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.formation-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 20px;
}
.formation-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 14px;
}
.formation-kicker .dot {
  width: 6px; height: 6px; border-radius: 999px;
}
.formation-card h3 {
  font-size: 1.375rem;
  color: var(--ink-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.formation-card p {
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 22px;
}
.formation-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: gap .2s var(--ease);
}
.formation-cta svg { transition: transform .2s var(--ease); }
.formation-card:hover .formation-cta svg { transform: translateX(3px); }

.card-avocats::before { background: #F18A64; }
.card-avocats:hover { border-color: #F18A64; }
.card-avocats .formation-icon { background: var(--accent-soft); color: #F18A64; }
.card-avocats .formation-kicker, .card-avocats .formation-cta { color: #F18A64; }
.card-avocats .formation-kicker .dot { background: #F18A64; }

.card-syndics::before { background: #6366F1; }
.card-syndics:hover { border-color: #6366F1; }
.card-syndics .formation-icon { background: #EEF0FF; color: #6366F1; }
.card-syndics .formation-kicker, .card-syndics .formation-cta { color: #6366F1; }
.card-syndics .formation-kicker .dot { background: #6366F1; }

/* ============ KEYWORD ACCENTS ============ */
.kw {
  font-weight: 600;
  white-space: nowrap;
}
.kw-copilot { color: #4F5BD5; }
.kw-chatgpt { color: #0C8264; }
.kw-claude  { color: #C0603D; }

/* ============ OFFERS (3-tier) ============ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}
.offer {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: 0 1px 2px rgba(11,16,32,0.04), 0 16px 32px -22px rgba(11,16,32,0.18);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.offer:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(11,16,32,0.05), 0 26px 44px -24px rgba(11,16,32,0.28); }
.offer-guide     { background: radial-gradient(135% 90% at 50% 0%, rgba(90,97,117,0.055), transparent 52%), var(--bg-elevated); }
.offer-guide:hover     { border-color: var(--ink-300); }
.offer-formation { background: radial-gradient(135% 90% at 50% 0%, rgba(99,102,241,0.07), transparent 52%), var(--bg-elevated); }
.offer-formation:hover { border-color: #A5A9F0; }
.offer.featured {
  background: radial-gradient(135% 95% at 50% 0%, rgba(241,138,100,0.12), transparent 55%), var(--bg-elevated);
  border-color: var(--accent);
  box-shadow: 0 2px 4px rgba(241,138,100,0.08), 0 26px 50px -22px rgba(241,138,100,0.45);
}
.offer-flag {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(155deg, #F7A07E, #E07954);
  color: #fff;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(224,121,84,0.4);
}
.offer-tag {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.offer h3 {
  font-size: 1.3rem; color: var(--ink-900); margin: 0 0 12px; letter-spacing: -0.01em;
}
.offer-price {
  font-size: 2.1rem; font-weight: 600; color: var(--ink-900); letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 6px;
}
.offer-price small { font-size: 0.8rem; font-weight: 500; color: var(--ink-400); letter-spacing: 0; }
.offer-price.small { font-size: 1.5rem; }
.offer-desc {
  color: var(--ink-500); font-size: 0.95rem; line-height: 1.55; margin: 0 0 22px;
}
.offer-features {
  list-style: none; margin: 0 0 26px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  flex-grow: 1;
}
.offer-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.93rem; color: var(--ink-700); line-height: 1.45;
}
.offer-features svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.offer .btn { width: 100%; }
@media (max-width: 880px) {
  .offers-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ============ BIBLIO SHOWCASE ============ */
.biblio-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
.biblio-values { display: flex; flex-direction: column; gap: 24px; }
.biblio-value { display: flex; gap: 16px; align-items: flex-start; }
.biblio-value-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}
.biblio-value h4 { font-size: 1.06rem; color: var(--ink-900); margin: 0 0 4px; letter-spacing: -0.01em; }
.biblio-value p { font-size: 0.95rem; color: var(--ink-500); line-height: 1.55; margin: 0; }
.biblio-showcase .pricing-wrap { margin: 0; }
@media (max-width: 900px) {
  .biblio-showcase { grid-template-columns: 1fr; gap: 44px; max-width: 480px; }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px -24px rgba(11,16,32,0.4), 0 2px 6px rgba(11,16,32,0.06);
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; justify-items: center; text-align: left; }
  .about-photo { max-width: 260px; justify-self: center; }
  .about-grid > div { width: 100%; }
}

/* ============ ABOUT LINKEDIN ============ */
.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--ink-700);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(20,30,55,0.04);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.about-linkedin svg { color: #0A66C2; flex-shrink: 0; width: 16px; height: 16px; }
.about-linkedin:hover {
  transform: translateY(-1px);
  color: var(--ink-900);
  border-color: rgba(20,30,55,0.18);
  box-shadow: 0 4px 12px -4px rgba(20,30,55,0.14);
}

/* ============ FAQ ============ */
.faq {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-q .icon {
  flex: 0 0 20px;
  color: var(--ink-400);
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner {
  padding: 0 4px 28px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.6;
  max-width: 90%;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(30,58,138,0.04), transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0 0 20px;
  position: relative;
}
.final-cta h2 .em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.final-cta p {
  font-size: var(--fs-lead);
  color: var(--ink-500);
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}
.final-cta .btns {
  display: flex; gap: 10px; justify-content: center;
  position: relative;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 40px;
  background: var(--bg-muted);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--ink-700);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-400);
}
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom a { color: var(--ink-400); text-decoration: none; }
.footer-bottom a:hover { color: var(--ink-700); }

/* Responsive */
@media (max-width: 960px) {
  .prompt-body { grid-template-columns: 1fr; }
  .prompt-col + .prompt-col { border-left: none; border-top: 1px solid var(--border-soft); }
  .usecases { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; gap: 40px; }
  .how::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 80px 0; }
  .container, .container-wide { padding: 0 20px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .hero { padding: 56px 0 40px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { margin-top: 24px; }
  .hero-meta svg { display: none; }
  .hero-meta span { text-align: center; }
  .how { gap: 30px; }
  .step-num { width: 64px; height: 64px; margin-bottom: 18px; }
}

/* ============================================================
   LE PARCOURS — fil conducteur (journey timeline)
   Reusable + themeable via --jn* variables.
   ============================================================ */
.journey {
  position: relative;
  --jn: #E4835A;          /* line + icons (coral, avocats/default) */
  --jn-soft: #FBF1EB;
  --jn-line: #EBC3AD;     /* hairline connector */
  --jn-ink: #8A3B1E;
  --jn-a: #F2A184;        /* core node gradient start */
  --jn-b: #DD7B53;        /* core node gradient end */
  --jn-glow: 221,123,83;  /* core node glow (rgb) */
}
.journey--indigo {
  --jn: #6366F1;
  --jn-soft: #EEF0FF;
  --jn-line: #C7CAF6;
  --jn-ink: #312E81;
  --jn-a: #818CF8;
  --jn-b: #6366F1;
  --jn-glow: 99,102,241;
}
.journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
/* staggered fade-in of each step */
.journey-track > .reveal:nth-child(1) { animation-delay: .04s; }
.journey-track > .reveal:nth-child(2) { animation-delay: .12s; }
.journey-track > .reveal:nth-child(3) { animation-delay: .20s; }
.journey-track > .reveal:nth-child(4) { animation-delay: .28s; }
.journey-track > .reveal:nth-child(5) { animation-delay: .40s; }

.journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
}
/* the sequence, drawn step by step (1 -> 4) */
.journey-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(-50% - 4px);
  width: calc(100% + 8px);
  height: 2px;
  background: var(--jn-line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .6s var(--ease);
  z-index: 0;
}
.journey-step.in::before { transform: scaleX(1); }
.journey-step:nth-child(2).in::before { transition-delay: .16s; }
.journey-step:nth-child(3).in::before { transition-delay: .40s; }
.journey-step:nth-child(4).in::before { transition-delay: .64s; }
.journey-step.bonus.in::before { transition-delay: .88s; }
/* the bonus is detached — dashed lead-in */
.journey-step.bonus::before {
  background: none;
  border-top: 2px dashed var(--jn-line);
  height: 0;
}
.journey-node {
  width: 64px; height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(130% 130% at 50% 0%, #ffffff, var(--bg-elevated));
  border: 1px solid var(--border);
  color: var(--jn);
  box-shadow:
    0 1px 2px rgba(11,16,32,.05),
    0 12px 26px -14px rgba(11,16,32,.28),
    inset 0 1px 0 rgba(255,255,255,.9);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
}
.journey-node svg { width: 25px; height: 25px; }
.journey-step:hover .journey-node {
  transform: translateY(-4px);
  border-color: var(--jn);
  box-shadow: 0 2px 4px rgba(11,16,32,.05), 0 20px 36px -16px rgba(var(--jn-glow), .5);
}
.journey-num {
  position: absolute;
  top: -5px; right: -5px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--ink-400);
  font-family: 'Geist Mono', monospace;
  font-size: 10px; font-weight: 500;
  display: grid; place-items: center;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(11,16,32,.07);
}
/* Core step — the workshop, "le cœur" */
.journey-step.core .journey-node {
  background: linear-gradient(150deg, var(--jn-a), var(--jn-b));
  border-color: transparent;
  color: #fff;
  transform: scale(1.09);
  box-shadow:
    0 4px 10px -2px rgba(var(--jn-glow), .3),
    0 22px 42px -14px rgba(var(--jn-glow), .6),
    inset 0 1px 0 rgba(255,255,255,.4);
}
.journey-step.core:hover .journey-node { transform: scale(1.09) translateY(-4px); }
.journey-step.core .journey-num { background: var(--jn); border-color: transparent; color: #fff; }
.journey-node .pulse {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(var(--jn-glow), .55);
  animation: journeyPulse 3.4s ease-out infinite;
  pointer-events: none;
}
@keyframes journeyPulse {
  0%   { transform: scale(.92); opacity: .75; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
/* Bonus step — ghosted, clearly optional */
.journey-step.bonus .journey-node {
  background: var(--bg);
  border: 1.5px dashed var(--jn-line);
  color: var(--jn);
  box-shadow: none;
}
.journey-step.bonus .journey-num { color: var(--ink-300); }

.journey-body { display: flex; flex-direction: column; flex: 1; width: 100%; max-width: 218px; }
/* reserve the badge's height on badge-less steps so titles align */
.journey-step:not(.core):not(.bonus) .journey-body { padding-top: 30px; }
.journey-badge {
  display: inline-flex; align-items: center; align-self: center; gap: 5px;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.11em;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 11px;
}
.journey-badge.core {
  background: linear-gradient(135deg, var(--jn-a), var(--jn-b));
  color: #fff;
  box-shadow: 0 4px 11px -3px rgba(var(--jn-glow), .55);
}
.journey-badge.option {
  background: transparent; color: var(--ink-400);
  border: 1px dashed var(--border-strong);
}
.journey-step h3 {
  font-size: 15.5px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.35;
  color: var(--ink-900); margin: 0 0 7px;
}
.journey-live {
  font-size: 13px; line-height: 1.55;
  color: var(--ink-500); margin: 0 0 16px;
}
.journey-deliverable {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 11.5px; line-height: 1.5; color: var(--ink-600);
}
.journey-deliverable svg {
  width: 12px; height: 12px; color: var(--jn);
  vertical-align: -1px; margin-right: 4px;
}
.journey-deliverable strong { color: var(--ink-800); font-weight: 600; }

@media (max-width: 980px) {
  .journey-track { grid-template-columns: 1fr; gap: 0; }
  .journey-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0 0 32px;
  }
  .journey-step::before { display: none; }
  .journey-node { margin-bottom: 0; }
  /* vertical rail linking the sequence */
  .journey-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 31px; top: 64px; bottom: 0;
    width: 2px;
    background: var(--jn-line);
    z-index: 0;
  }
  /* line into the bonus = dashed */
  .journey-step:nth-last-child(2)::after {
    background: none;
    border-left: 2px dashed var(--jn-line);
    width: 0;
  }
  .journey-body { max-width: none; text-align: left; }
  .journey-step:not(.core):not(.bonus) .journey-body { padding-top: 0; }
  .journey-badge { align-self: flex-start; }
  .journey-deliverable { text-align: left; }
  .journey-step.core .journey-node { transform: none; }
  .journey-step.core:hover .journey-node { transform: translateY(-4px); }
}

/* ============================================================
   POUR ALLER PLUS LOIN — automation showcase (before → AI → after)
   ============================================================ */
.soft-note {
  max-width: 720px;
  margin: -32px auto 52px;
  text-align: center;
  font-size: 15px; line-height: 1.6;
  color: var(--ink-500);
}
.automation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.automation-card {
  --ac: #E4835A;
  --ac-soft: #FBF1EB;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 32px 34px;
  box-shadow: 0 1px 2px rgba(11,16,32,.04), 0 30px 60px -34px rgba(11,16,32,.32);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
/* hairline top accent, whisper-subtle */
.automation-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ac), transparent);
  opacity: .35;
}
.automation-card.indigo { --ac: #6366F1; --ac-soft: #EEF0FF; }
.automation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(11,16,32,.05), 0 40px 70px -34px rgba(11,16,32,.42);
  border-color: var(--border-strong);
}
.automation-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 28px;
}
.automation-title {
  font-size: 1.2rem; font-weight: 600;
  color: var(--ink-900); margin: 0 0 6px; letter-spacing: -0.01em;
}
.automation-sub { font-size: 14.5px; color: var(--ink-500); margin: 0; line-height: 1.5; }
.automation-tag {
  flex: 0 0 auto;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--ac-soft); color: var(--ac);
  letter-spacing: 0.02em; white-space: nowrap;
}
.automation-flow {
  display: flex; align-items: center; gap: 10px;
}
.flow-panel {
  flex: 1 1 0; min-width: 0;
  border-radius: 16px;
  padding: 16px;
  min-height: 172px;
  display: flex; flex-direction: column;
}
.flow-panel.flow-in { background: var(--bg-muted); border: 1px solid var(--border); }
.flow-panel.flow-out { background: #fff; border: 1px solid var(--border); box-shadow: 0 8px 20px -10px rgba(11,16,32,0.16); }
.flow-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 700; margin-bottom: 12px;
}
.flow-panel.flow-in .flow-label { color: var(--ink-400); }
.flow-panel.flow-out .flow-label { color: var(--ac); }
.flow-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.flow-arrow { flex: 0 0 auto; color: var(--ink-300); display: grid; place-items: center; }
.flow-arrow svg { width: 22px; height: 22px; }
.flow-engine { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 0 2px; }
.flow-orb {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(140deg, #B072F5, #6366F1);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 20px -6px rgba(99,102,241,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
  position: relative;
}
.flow-orb svg { width: 24px; height: 24px; }
/* two concentric rings, drifting in opposite directions */
.flow-orb::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.32);
  animation: flowSpin 16s linear infinite;
}
.flow-orb::after {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed transparent;
  border-top-color: rgba(99,102,241,0.5);
  border-bottom-color: rgba(99,102,241,0.5);
  animation: flowSpin 9s linear infinite reverse;
}
@keyframes flowSpin { to { transform: rotate(360deg); } }
.flow-engine-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-400);
}

.automation-foot {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed var(--border);
  font-size: 13.5px; color: var(--ink-500);
}
.automation-foot svg { color: var(--ac); flex: 0 0 auto; }
.automation-foot strong { color: var(--ink-900); font-weight: 600; }
.automation-foot .note { color: var(--ink-400); font-size: 12px; }

/* --- mock visuals (pure CSS) --- */
.mock-doc { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.mock-doc-head {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; color: var(--ink-900);
  padding: 9px 11px; border-bottom: 1px solid var(--border-soft); background: var(--bg);
}
.mock-doc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ac); flex: 0 0 auto; }
.mock-doc-body { padding: 11px; display: flex; flex-direction: column; gap: 6px; }
.mock-seg { font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: var(--ac); margin-top: 5px; }
.mock-seg:first-child { margin-top: 0; }
.mock-l { height: 5px; border-radius: 3px; background: var(--border-strong); width: 100%; }
.mock-l.short { width: 52%; }
.mock-l.mid { width: 76%; }
.mock-l.accent { background: var(--ac); opacity: 0.32; }

.mock-stack { position: relative; height: 138px; }
.mock-page {
  position: absolute; left: 50%; top: 50%;
  width: 92px; height: 116px; margin: -58px 0 0 -46px;
  border-radius: 9px; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.mock-page.p1 { transform: rotate(-8deg) translate(-11px, 2px); }
.mock-page.p2 { transform: rotate(6deg) translate(11px, -2px); }
.mock-page.p3 { transform: rotate(-1deg); padding: 13px 11px; display: flex; flex-direction: column; gap: 7px; }
.mock-count {
  position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%);
  font-family: 'Geist Mono', monospace; font-size: 10.5px; color: var(--ink-500);
  background: var(--bg-elevated); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}

.mock-audio { display: flex; align-items: center; justify-content: center; gap: 3px; height: 138px; position: relative; }
.wave-bar { width: 4px; border-radius: 2px; background: var(--ink-300); transform-origin: center; animation: wave 1.5s ease-in-out infinite; }
@keyframes wave { 0%, 100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }

.mock-versus { display: flex; align-items: center; justify-content: center; gap: 8px; height: 138px; }
.mock-mini {
  width: 66px; height: 92px; border-radius: 8px; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); padding: 9px 8px; display: flex; flex-direction: column; gap: 5px;
}
.mock-mini .tag {
  font-family: 'Geist Mono', monospace; font-size: 9px; color: var(--ink-400);
  margin-bottom: 2px;
}
.mock-vs {
  font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--ink-400);
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 999px;
  width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto;
}
.mock-inbox { display: flex; flex-direction: column; gap: 7px; justify-content: center; height: 138px; }
.mock-row { display: flex; align-items: center; gap: 8px; }
.mock-row .mock-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ac); flex: 0 0 auto; opacity: 0.7; }
.mock-row .lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }

@media (max-width: 760px) {
  .automation-flow { flex-direction: column; align-items: stretch; }
  .flow-arrow { transform: rotate(90deg); margin: 4px auto; }
  .flow-panel { flex: 0 0 auto; width: 100%; min-height: 0; }
  .automation-head { flex-direction: column; gap: 10px; }
  .automation-tag { align-self: flex-start; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .journey-step::before,
  .journey-step:not(:first-child)::before { transition: none; transform: none; }
  .journey-node .pulse,
  .flow-orb::before,
  .flow-orb::after,
  .wave-bar { animation: none; }
  .reveal { animation: none; }   /* no motion, but content stays visible */
}

/* ============================================================
   CONTACT FORM — real form (FormSubmit) replacing mailto links
   ============================================================ */
.contact-section { position: relative; overflow: hidden; }
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.contact-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: radial-gradient(circle at top right, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.contact-form { position: relative; display: flex; flex-direction: column; gap: 18px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form .form-field { display: flex; flex-direction: column; gap: 7px; }
.contact-form label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -0.01em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--ink-900);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 13px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-300); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form .btn { margin-top: 4px; width: 100%; justify-content: center; }
.contact-form .form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-reassure {
  margin-top: 18px;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--ink-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.contact-reassure svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 560px) {
  .contact-wrap { padding: 28px 22px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CONVERSION — réassurance qualitative, bandes CTA répétées,
   section "Pourquoi", barre CTA collante mobile
   ============================================================ */

/* ---- Bande de réassurance (qualitative, sans chiffres) ---- */
.reassure-bar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-soft);
}
.reassure-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 34px;
  padding: 20px 0;
}
.reassure-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -0.01em;
}
.reassure-item svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 640px) {
  .reassure-inner { gap: 12px 20px; padding: 16px 0; }
  .reassure-item { font-size: 12.5px; gap: 7px; }
}

/* ---- Rappel CTA discret (élégant, non intrusif) ---- */
.cta-soft {
  text-align: center;
  padding: 68px 0;
}
.cta-soft-text {
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink-900);
  max-width: 620px;
  margin: 0 auto 24px;
}
.cta-soft-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.cta-soft-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-soft { padding: 52px 0; }
  .cta-soft-btns { flex-direction: column; align-items: stretch; }
}

/* ---- Section "Pourquoi" (remplace les cas d'usage) ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.why-card p {
  font-size: var(--fs-small);
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   « ÇA, C'EST DÉJÀ POSSIBLE » — vitrine de capacités
   ============================================================ */
.possible-head { max-width: 730px; margin-left:auto; margin-right:auto; }
.possible-toggle-wrap { text-align:center; }
.possible-toggle {
  display:inline-flex; gap:4px; padding:5px;
  background:var(--bg-muted); border:1px solid var(--border);
  border-radius:999px; margin:4px auto 46px;
}
.possible-toggle button {
  border:none; background:transparent; padding:11px 30px; border-radius:999px;
  font-family:inherit; font-size:15px; font-weight:600; color:var(--ink-500);
  cursor:pointer; transition:all .18s ease; display:inline-flex; align-items:center; gap:8px;
}
.possible-toggle button.active {
  background:var(--bg-elevated); color:var(--ink-900); box-shadow:var(--shadow-sm);
}
.possible-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:22px; align-items:stretch;
}
.possible-grid[hidden] { display:none; }

.demo-card {
  position:relative; display:flex; flex-direction:column;
  background:var(--bg-elevated); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:28px 30px 24px;
  box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.demo-card:hover {
  transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--border-strong);
}
.demo-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.demo-ic {
  width:48px; height:48px; border-radius:14px;
  background:var(--accent-soft); color:var(--accent);
  border:1px solid #F6DCD1;
  display:grid; place-items:center;
  transition:transform .2s ease;
}
.demo-card:hover .demo-ic { transform:scale(1.06) rotate(-3deg); }
.demo-ic svg { width:23px; height:23px; }
.demo-tag {
  font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  color:var(--ink-500); background:var(--bg-muted); border:1px solid var(--border-soft);
  padding:6px 12px; border-radius:999px;
}
.demo-title {
  font-size:21px; line-height:1.25; letter-spacing:-.02em; font-weight:600;
  color:var(--ink-900); margin:0 0 20px;
}
.demo-block { margin-bottom:15px; }
.demo-label {
  font-size:10.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--accent); margin-bottom:5px;
}
.demo-text { font-size:14.5px; line-height:1.55; color:var(--ink-700); margin:0; }
.demo-outcome {
  display:flex; gap:11px; align-items:flex-start;
  background:var(--accent-soft); border-left:3px solid var(--accent);
  border-radius:0 10px 10px 0; padding:13px 16px; margin:6px 0 18px;
  font-size:14.5px; line-height:1.5; color:var(--ink-900);
}
.demo-outcome .chk { color:var(--accent); flex-shrink:0; margin-top:1px; }
.demo-limit {
  margin-top:auto; display:flex; gap:8px; align-items:flex-start;
  font-size:12.5px; line-height:1.5; color:var(--ink-400); font-style:italic;
  border-top:1px solid var(--border-soft); padding-top:14px;
}
.demo-limit svg { flex-shrink:0; margin-top:2px; color:var(--ink-300); }
.possible-cta { text-align:center; margin-top:46px; }
.possible-cta p { font-size:var(--fs-lead); color:var(--ink-700); font-weight:500; margin:0 0 18px; }

@media (max-width: 820px) {
  .possible-grid { grid-template-columns:1fr; }
  .possible-toggle { margin-bottom:34px; }
}

/* ============================================================
   ILS NOUS FONT CONFIANCE — hero proof strip + section
   ============================================================ */

/* --- Hero proof strip --- */
.hero-proof {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero-proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.hero-proof-row {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof-logo {
  height: 34px;
  width: auto;
  display: block;
}
.hero-proof-sep {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}
.hero-proof-stats {
  display: flex;
  gap: clamp(22px, 3.5vw, 42px);
  flex-wrap: wrap;
  justify-content: center;
}
.hp-stat { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.hp-stat b {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hp-stat span {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 500;
}
.u { color: var(--accent); }

/* --- Hero "Nos succès" — clickable teaser leading to the references --- */
.hero-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding: 30px 28px 26px;
  border-top: 1px solid var(--border-soft);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: background .2s var(--ease);
}
.hero-success:hover { background: rgba(241, 138, 100, 0.05); }
.hero-success-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hero-success-more svg { flex: none; transition: transform .2s var(--ease); }
.hero-success:hover .hero-success-more { color: var(--accent-hover); }
.hero-success:hover .hero-success-more svg { transform: translateX(4px); }

/* --- Hero chips (4 arguments) + discreet guide link --- */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 26px 0 6px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: var(--shadow-sm);
}
.hero-chip svg { color: var(--accent); flex: none; }
.hero-guide { margin-top: 14px; }
.hero-guide-link {
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
  transition: color .2s var(--ease);
}
.hero-guide-link:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* --- Section grid --- */
.confiance-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.client-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 34px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* Featured (ENGIE) — accent wash + top bar so it stands tall */
.client-card.is-featured {
  border-color: rgba(241, 138, 100, 0.40);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-elevated) 46%);
}
.client-card.is-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}
.client-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}
.client-logo-img {
  height: 46px;
  width: auto;
  max-width: 190px;
  display: block;
}
.client-name-lead {
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1.1;
}
.client-name-lead .loc {
  font-weight: 600;
  color: var(--ink-400);
  font-size: 0.68em;
  letter-spacing: 0;
}
.client-sector {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 500;
  line-height: 1.5;
}
.client-tag {
  align-self: flex-start;
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid rgba(241, 138, 100, 0.35);
  padding: 5px 11px;
  border-radius: 999px;
}
.client-tag.is-nda {
  color: var(--ink-500);
  background: var(--bg-muted);
  border-color: var(--border-strong);
}

/* KPIs — clean and elegant */
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  margin-top: auto;
}
.kpi {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.kpi-num {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.kpi-num .u { color: var(--accent); }
.kpi-num.is-word {
  font-size: clamp(19px, 2.1vw, 24px);
  letter-spacing: -0.01em;
}
.kpi-label {
  font-size: 12.5px;
  color: var(--ink-500);
  font-weight: 500;
  line-height: 1.4;
}
/* Highlighted KPI — « heures gagnées / mois » : le chiffre en effet glossy */
.kpi.is-highlight .kpi-num {
  background: linear-gradient(180deg, #FBB392 0%, #F18A64 50%, #D9663C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--accent); /* fallback si background-clip non supporté */
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(217, 102, 60, 0.22));
}

/* --- Quality statement --- */
.confiance-quality {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  padding: 22px 28px;
  background: var(--accent-soft);
  border: 1px solid rgba(241, 138, 100, 0.35);
  border-radius: var(--r-lg);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: var(--fs-lead);
  line-height: 1.4;
}
.confiance-quality svg { flex: none; color: var(--accent); }

@media (max-width: 820px) {
  .confiance-grid { grid-template-columns: 1fr; }
  .hero-proof-sep { display: none; }
}
@media (max-width: 440px) {
  .kpi-grid { grid-template-columns: 1fr; gap: 22px; }
}
