/* ==========================================================================
   ReadyDoc — jetons de design
   Encre froide + indigo. Surfaces claires, ombres douces et étagées,
   courbes d'animation communes. La géométrie (blocs, arrondis discrets)
   reste celle du site : seuls la couleur, la profondeur et le mouvement
   sont modernisés.
   ========================================================================== */
:root {
  /* Marque */
  --lp-brand: #4F46E5;
  --lp-brand-deep: #4338CA;
  --lp-brand-bright: #6366F1;
  --lp-brand-soft: #EEF2FF;
  --lp-brand-line: #DCE1FA;
  --lp-ink: #0D1224;
  --lp-ink-soft: #171E36;

  /* Sémantique */
  --lp-success: #059669;
  --lp-success-soft: #ECFDF5;
  --lp-danger: #DC2626;
  --lp-danger-soft: #FEF2F2;
  --lp-warning: #D97706;
  --lp-warning-soft: #FFFAEB;

  /* Surfaces */
  --lp-bg: #F5F7FC;
  --lp-bg-elevated: #FFFFFF;
  --lp-surface: #FFFFFF;
  --lp-surface-muted: #F8FAFF;
  --lp-border: #E5E8F2;
  --lp-border-strong: #CDD4E6;
  --lp-text: #101528;
  --lp-text-muted: #5C6685;
  --lp-text-inverse: #F7F8FF;

  /* Profondeur */
  --lp-shadow-xs: 0 1px 2px rgba(16, 22, 48, 0.06);
  --lp-shadow-sm: 0 2px 6px -1px rgba(16, 22, 48, 0.07), 0 1px 2px rgba(16, 22, 48, 0.05);
  --lp-shadow: 0 8px 20px -6px rgba(16, 22, 48, 0.12), 0 2px 6px -2px rgba(16, 22, 48, 0.06);
  --lp-shadow-lg: 0 22px 48px -16px rgba(16, 22, 48, 0.22), 0 6px 14px -8px rgba(16, 22, 48, 0.1);
  --lp-ring: 0 0 0 3px rgba(99, 102, 241, 0.28);

  /* Géométrie — même forme, arrondis à peine adoucis */
  --lp-radius: 8px;
  --lp-radius-lg: 14px;
  --lp-radius-pill: 999px;

  /* Typographie */
  --lp-font: "Plus Jakarta Sans", "IBM Plex Sans", "Segoe UI", sans-serif;
  --lp-font-display: "Fraunces", Georgia, "Times New Roman", serif;

  /* Mouvement */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur: 0.22s;
  --dur-slow: 0.6s;

  /* Alias historiques — conservés pour ne rien casser */
  --v-bg: var(--lp-bg);
  --v-surface: var(--lp-surface);
  --v-border: var(--lp-border);
  --v-text: var(--lp-text);
  --v-muted: var(--lp-text-muted);
  --v-accent: var(--lp-brand);
  --v-accent-soft: var(--lp-brand-soft);
  --v-radius: var(--lp-radius-lg);
  --v-radius-sm: var(--lp-radius);
  --v-shadow: var(--lp-shadow-xs);
  --v-shadow-lg: var(--lp-shadow-lg);
  --blue-primary: var(--lp-brand);
  --blue-deep: var(--lp-brand-deep);
  --bg: var(--lp-bg);
  --card: var(--lp-surface);
  --border: var(--lp-border);
  --text: var(--lp-text);
  --text-muted: var(--lp-text-muted);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.vitrine {
  margin: 0;
  font-family: var(--lp-font);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.006em;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--lp-brand); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
::selection { background: rgba(99, 102, 241, 0.22); color: var(--lp-text); }
:focus-visible { outline: 2px solid var(--lp-brand); outline-offset: 2px; border-radius: 4px; }
input, textarea, select, button { accent-color: var(--lp-brand); }
h1, h2, h3, .serif {
  font-family: var(--lp-font-display);
  font-weight: 650;
  letter-spacing: -0.02em;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left)); }
.skip { position: absolute; left: -999px; }
.skip:focus {
  left: 12px; top: 12px; z-index: 99;
  background: var(--v-surface); color: var(--lp-brand);
  padding: 10px 14px; border-radius: var(--lp-radius);
  border: 1px solid var(--lp-brand-line); box-shadow: var(--lp-shadow);
  font-weight: 700;
}
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 16px 0 0; font-size: 13px; color: var(--v-muted);
}
.crumbs a { color: var(--v-muted); text-decoration: underline; text-underline-offset: 2px; }
.crumbs a:hover { color: var(--v-text); }

/* Logo */
.lp-logo { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 0; }
.lp-logo svg { display: block; width: 100%; height: 100%; }
.lp-logo--sm { width: 32px; height: 32px; }
.lp-logo--md { width: 36px; height: 36px; }

/* Header — identical shell to /pro */
.v-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245, 247, 252, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--v-border);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.v-header--pro { border-bottom: 1px solid var(--v-border); }
.v-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}
.v-brand-cluster {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.v-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--v-text);
  flex-shrink: 0;
}
.v-brand:hover { text-decoration: none; }
.v-brand .brand-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.zone-line {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--v-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow-xs);
  flex-shrink: 0;
  background: var(--v-surface);
}
.zone-line-item {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  color: var(--v-muted);
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.zone-line-item:hover {
  color: var(--lp-brand);
  background: rgba(99, 102, 241, 0.09);
  text-decoration: none;
}
.zone-line-item.is-active {
  background: var(--lp-brand);
  color: #FFFFFF;
  pointer-events: none;
}
.v-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.v-nav a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--v-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--lp-radius);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.v-nav a:not(.btn):hover {
  color: var(--lp-brand);
  background: rgba(99, 102, 241, 0.08);
  text-decoration: none;
}
.v-nav a.active:not(.btn) {
  color: var(--lp-brand-deep);
  background: var(--v-accent-soft);
  font-weight: 700;
}
.v-nav .nav-auth-cta { margin-left: 4px; }
.v-header-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--lp-radius);
  background: var(--card);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--lp-shadow-xs);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav-toggle:hover { border-color: var(--lp-brand); box-shadow: var(--lp-shadow-sm); }
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  margin: 0 auto;
  background: var(--text);
}

/* Buttons — same as /pro */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--lp-radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  line-height: 1.25;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--lp-brand);
  border-color: var(--lp-brand);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--lp-brand-deep);
  border-color: var(--lp-brand-deep);
  color: #FFFFFF;
}
.btn-outline {
  background: var(--v-surface);
  border-color: var(--v-border);
  color: var(--v-text);
  box-shadow: var(--lp-shadow-xs);
}
.btn-outline:hover {
  border-color: var(--lp-brand);
  color: var(--lp-brand-deep);
  background: var(--v-accent-soft);
}
.btn-lg { padding: 12px 22px; font-size: 15px; min-height: 48px; border-radius: var(--lp-radius); }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--v-text);
  border: 1px solid var(--v-border);
}
.btn-ghost:hover { border-color: var(--lp-brand); color: var(--lp-brand-deep); background: var(--v-accent-soft); }
.v-header .btn, .v-nav .btn {
  flex: 0 0 auto;
  width: auto;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.v-hero-cta .btn { flex: 0 0 auto; }

/* Hero convert — /pro */
.v-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--lp-brand-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.v-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--lp-brand);
}
.page-pro .v-hero--convert {
  padding: 16px 0 20px;
  text-align: left;
}
.page-pro .cv-hero h1 {
  margin: 0 0 12px;
  max-width: 22ch;
  font-size: clamp(1.85rem, 7vw, 3.1rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--v-text);
}
.page-pro .v-hero--convert .v-hero-lead {
  margin: 0 0 14px;
  max-width: 38rem;
  font-size: 15px;
  line-height: 1.45;
  color: var(--v-muted);
}
.page-pro .v-hero--convert .v-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}
.page-pro .v-hero--convert .v-hero-cta .btn {
  min-height: 48px;
  padding: 14px 20px;
  font-size: 16px;
}
.page-pro .v-hero--convert .v-trust {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  font-size: 14px;
  color: var(--v-muted);
}
.v-trust li { display: flex; align-items: center; gap: 8px; }
.v-trust li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--lp-brand);
  font-weight: 700;
}
.page-pro .cv-hero-seats {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text-muted);
}

/* Flow + dashboard */
.page-pro .cv-flow-section { padding: 8px 0 48px; }
.v-section-head { max-width: 560px; margin-bottom: 36px; }
.v-section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.v-section-head h2, .v-steps-heading {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--v-text);
}
.v-section-head p, .v-section-lead {
  margin: 0;
  font-size: 17px;
  color: var(--v-muted);
  line-height: 1.6;
}
.page-pro .cv-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-pro .cv-flow li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-xs);
}
.page-pro .cv-flow li:hover {
  border-color: var(--lp-brand-line);
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}
.page-pro .cv-flow-icon { font-size: 1.25rem; text-align: center; }
.page-pro .cv-flow strong { font-size: 15px; font-weight: 600; font-family: var(--lp-font); }

.page-pro .cv-demo-split {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  align-items: start;
}
.page-pro .cv-listen {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
}
.page-pro .cv-listen .btn { min-height: 48px; justify-content: center; }
.page-pro .cv-listen textarea {
  width: 100%;
  min-height: 140px;
  border: 1px solid var(--lp-border-strong);
  border-radius: var(--lp-radius-lg);
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--lp-text);
  resize: vertical;
  box-shadow: var(--lp-shadow-xs);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.page-pro .cv-listen textarea:focus {
  outline: none;
  border-color: var(--lp-brand);
  box-shadow: var(--lp-ring);
}
.page-pro .cv-listen-hint {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--lp-text-muted);
}
.examples { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--v-border);
  background: var(--v-surface);
  border-radius: var(--lp-radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--v-muted);
  font-family: inherit;
  box-shadow: var(--lp-shadow-xs);
}
a.chip { text-decoration: none; display: inline-flex; align-items: center; }
.chip:hover { border-color: var(--lp-brand); color: var(--lp-brand-deep); background: var(--lp-brand-soft); }

.page-pro .cv-live-dash {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  padding: 14px 14px 12px;
  display: grid;
  gap: 12px;
  min-width: 0;
}
.page-pro .cv-live-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.page-pro .cv-live-dash-hi { margin: 0; font-size: 12px; color: var(--lp-text-muted); }
.page-pro .cv-live-dash-top h3 {
  margin: 2px 0 0;
  font-family: var(--lp-font-display);
  font-size: 1.15rem;
  color: var(--lp-text);
}
.page-pro .cv-live-dash-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--lp-radius-pill);
  background: var(--lp-border);
  color: var(--lp-text-muted);
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.page-pro .cv-live-dash-status {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-brand-line);
  background: var(--lp-brand-soft);
  color: var(--lp-brand-deep);
}
.page-pro .cv-live-kpis {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}
.page-pro .cv-live-kpis li {
  background: var(--lp-surface-muted);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 8px 6px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.page-pro .cv-live-kpis li:hover { border-color: var(--lp-brand-line); background: var(--lp-brand-soft); }
.page-pro .cv-live-kpis strong {
  display: block;
  font-size: 1.15rem;
  color: var(--lp-text);
  letter-spacing: -0.03em;
  font-family: var(--lp-font);
}
.page-pro .cv-live-kpis span {
  font-size: 10px;
  font-weight: 600;
  color: var(--lp-text-muted);
  line-height: 1.2;
}
.page-pro .cv-live-leads h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-text-muted);
}
.page-pro .cv-live-empty { margin: 0; font-size: 13px; color: var(--lp-text-muted); }
.page-pro .cv-live-dash [data-from] { display: none; }
.page-pro .cv-live-lead {
  padding: 10px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-surface-muted);
}
.page-pro .cv-live-lead-head { display: flex; gap: 8px; align-items: flex-start; }
.page-pro .cv-live-avatar {
  width: 28px; height: 28px; border-radius: var(--lp-radius);
  background: var(--lp-brand); color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.page-pro .cv-live-badge {
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: var(--lp-radius-pill); background: var(--lp-brand-soft); color: var(--lp-brand-deep);
}
.page-pro .cv-live-issue, .page-pro .cv-live-address {
  margin: 8px 0 0; font-size: 13px; color: var(--lp-text-muted);
}

/* Dark problem band */
.v-problem-section {
  background: var(--lp-ink);
  color: #fff;
  padding: 72px 0;
}
.v-problem-section .v-kicker { color: #A5B4FC; }
.v-problem-section .v-kicker::before { background: #A5B4FC; }
.v-problem-section h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}
.v-problem-section .v-section-lead {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}
.v-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.v-problem-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--v-radius);
}
.v-problem-card:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }
.v-problem-card h3 { margin: 0 0 8px; font-size: 16px; color: #FDA4AF; font-family: var(--lp-font); font-weight: 700; }
.v-problem-card p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.75); }
.page-pro .cv-solution {
  margin-top: 28px;
  padding: 28px 22px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-brand-line);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  text-align: center;
}
.page-pro .cv-solution h2 {
  margin: 0 0 8px;
  font-family: var(--lp-font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  color: var(--lp-text);
}
.page-pro .cv-solution p { margin: 0 0 16px; color: var(--lp-text-muted); }

/* Timeline */
.v-section { padding: 80px 0; }
.v-section--steps {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--lp-surface) 0%, var(--lp-surface-muted) 100%);
  border-top: 1px solid var(--v-border);
}
.v-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.v-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: var(--lp-border-strong);
}
.v-timeline-step { text-align: center; padding: 0 16px; position: relative; }
.v-timeline-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--lp-surface);
  font-family: var(--lp-font);
}
.v-timeline-step strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--lp-font);
}
.v-timeline-step p {
  margin: 0 auto;
  font-size: 14px;
  color: var(--v-muted);
  line-height: 1.5;
  max-width: 240px;
}

/* Docs */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc-card {
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  min-height: 180px;
  box-shadow: var(--lp-shadow-xs);
}
.doc-card:hover { border-color: var(--lp-border-strong); box-shadow: var(--lp-shadow); text-decoration: none; }
.doc-card:hover h3 { color: var(--lp-brand-deep); }
.doc-card h3 { margin: 0; font-size: 20px; transition: color var(--dur) var(--ease); }
.doc-card p { margin: 0; color: var(--v-muted); font-size: 14px; flex: 1; }
.meta-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--v-muted); }
.cat {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-brand-deep);
}
.center-cta { margin-top: 28px; text-align: center; }

/* Compare */
.v-impact-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--lp-surface-muted) 0%, var(--lp-surface) 100%);
  border-top: 1px solid var(--v-border);
  border-bottom: 1px solid var(--v-border);
}
.v-roi-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.v-roi-col {
  padding: 28px 24px;
  border-radius: var(--v-radius);
  border: 1px solid var(--v-border);
  box-shadow: var(--lp-shadow-xs);
}
.v-roi-col--before { background: linear-gradient(180deg, #FFF5F5 0%, #FEF2F2 100%); border-color: #FBCFCF; }
.v-roi-col--after { background: linear-gradient(180deg, #F1FDF7 0%, #ECFDF5 100%); border-color: #A7F3D0; }
.v-roi-col h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--lp-font);
}
.v-roi-col--before h3 { color: #BE123C; }
.v-roi-col--after h3 { color: #047857; }
.v-roi-col ul { margin: 0; padding: 0; list-style: none; }
.v-roi-col li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(16, 22, 48, 0.07);
}
.v-roi-col li:last-child { border-bottom: 0; }

/* FAQ */
.faq-list { width: 100%; max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--lp-radius-lg);
  margin-bottom: 10px;
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--lp-shadow-xs);
}
.faq-item[open] { border-color: var(--lp-brand-line); box-shadow: var(--lp-shadow-sm); }
.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* Chevron maison : le marqueur natif est masqué juste en dessous. */
.faq-item summary::after {
  content: "";
  width: 8px; height: 8px; flex-shrink: 0;
  border-right: 2px solid var(--lp-brand);
  border-bottom: 2px solid var(--lp-brand);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA band */
.v-cta-band {
  padding: 64px 0;
  background: var(--lp-ink);
  color: #fff;
  text-align: center;
}
.v-cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #fff;
}
.v-cta-band p {
  margin: 0 auto 28px;
  font-size: 17px;
  opacity: 0.75;
  max-width: 480px;
}
.v-cta-band-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.v-cta-band .btn-primary {
  background: #fff;
  color: var(--lp-brand-deep);
  border-color: #fff;
}
.v-cta-band .btn-primary:hover { background: var(--lp-brand-soft); color: var(--lp-brand-deep); }
.v-cta-band .v-cta-band-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.v-cta-band .v-cta-band-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}
.v-cta-band-note {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

/* Footer */
.v-footer {
  border-top: 1px solid var(--v-border);
  padding: 48px 0 32px;
  margin-top: 0;
  background: linear-gradient(180deg, var(--lp-surface) 0%, var(--lp-surface-muted) 100%);
}
.v-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.v-footer-brand p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--v-muted);
  line-height: 1.55;
  max-width: 280px;
}
.v-footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--v-muted);
  font-family: var(--lp-font);
}
.v-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--v-text);
  text-decoration: none;
  padding: 4px 0;
  opacity: 0.75;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.v-footer-col a:hover { opacity: 1; color: var(--lp-brand); text-decoration: none; transform: translateX(3px); }
.v-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--v-border);
  font-size: 13px;
  color: var(--v-muted);
}

/* Inner pages */
.flash {
  width: min(1120px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 12px 16px;
  border-radius: var(--lp-radius);
  background: var(--lp-brand-soft);
  color: var(--lp-brand-deep);
  border: 1px solid var(--lp-brand-line);
  border-left: 3px solid var(--lp-brand);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--lp-shadow-xs);
  animation: flash-in 0.4s var(--ease) both;
}
.flash.error { background: var(--lp-danger-soft); color: var(--lp-danger); border-color: #FBCFCF; border-left-color: var(--lp-danger); }
.flash.success { background: var(--lp-success-soft); color: var(--lp-success); border-color: #A7F3D0; border-left-color: var(--lp-success); }
@keyframes flash-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.card {
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  box-shadow: var(--lp-shadow-xs);
}
.search-bar { display: flex; gap: 8px; margin: 18px 0 24px; }
.search-bar input {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border-strong);
  font: inherit;
  background: #fff;
  box-shadow: var(--lp-shadow-xs);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.search-bar input:focus { outline: none; border-color: var(--lp-brand); box-shadow: var(--lp-ring); }
.doc-hero { padding: 36px 0 64px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; }
.pay-card { padding: 22px; position: sticky; top: 88px; box-shadow: var(--lp-shadow); }
.prose { max-width: 68ch; }
.prose h2 { font-size: 24px; }
.faq details { border-top: 1px solid var(--v-border); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 700; }
.wizard { max-width: 680px; margin: 32px auto 64px; }
.progress { height: 6px; background: var(--v-border); border-radius: var(--lp-radius-pill); overflow: hidden; margin: 12px 0 22px; }
.progress span {
  display: block; height: 100%;
  background: var(--lp-brand);
  border-radius: inherit;
  transition: width 0.5s var(--ease);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--lp-border-strong);
  border-radius: var(--lp-radius);
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--v-text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--lp-brand);
  box-shadow: var(--lp-ring);
}
.field input::placeholder, .field textarea::placeholder { color: #97A0B8; }
.help { font-size: 12px; color: var(--v-muted); margin-top: 4px; }
.error { color: var(--lp-danger); font-size: 13px; }
.sub { color: var(--v-muted); }
.preview-sheet {
  background: #fff;
  border: 1px solid var(--v-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  padding: 36px 32px;
  font-family: "Times New Roman", Times, serif;
  white-space: pre-wrap;
  min-height: 420px;
  position: relative;
  line-height: 1.55;
}
.preview-blank {
  color: var(--lp-brand);
  background: var(--lp-brand-soft);
  border-bottom: 1px dashed var(--lp-brand-bright);
  border-radius: 3px;
  padding: 0 2px;
  font-family: inherit;
}
.live-sheet {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: inset 0 1px 2px rgba(16, 22, 48, 0.04);
  min-height: 220px;
  max-height: 420px;
  overflow: auto;
  padding: 14px 16px;
}
.live-sheet-idle {
  margin: 0;
  font-size: 13px;
  color: var(--lp-text-muted);
}
.live-sheet-body {
  margin: 0;
  white-space: pre-wrap;
  font-family: "Times New Roman", Times, serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lp-text);
}
.cv-live-dash-pill.is-live {
  background: var(--lp-brand);
  color: #FFFFFF;
}
.preview-layout { padding: 32px 0 64px; }
.preview-fields .field { margin-bottom: 12px; }
.preview-fade { position: relative; }
.preview-fade::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(transparent, #fff 70%);
}
.blurred { filter: blur(5px); user-select: none; opacity: .55; }
.auth-box {
  max-width: 420px;
  margin: 48px auto 80px;
  padding: 30px 28px;
  box-shadow: var(--lp-shadow-lg);
  animation: rise 0.5s var(--ease) both;
}
.split-2 { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th, table.data td { padding: 11px 10px; border-bottom: 1px solid var(--v-border); text-align: left; }
table.data th { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--v-muted); font-weight: 700; }
table.data tbody tr { transition: background var(--dur) var(--ease); }
table.data tbody tr:hover { background: var(--lp-surface-muted); }
.disclaimer {
  font-size: 13px;
  color: var(--lp-text-muted);
  background: var(--lp-surface-muted);
  border: 1px solid var(--v-border);
  border-left: 3px solid var(--lp-brand-line);
  padding: 12px 16px;
  border-radius: var(--lp-radius);
  margin: 16px 0;
}
.legal-tiny { font-size: 12px; color: var(--v-muted); max-width: 62ch; }
.section { padding: 28px 0 56px; }
.price-note { font-size: 13px; color: var(--v-muted); margin: 12px 0 0; }

.lp-logo--lg { width: 44px; height: 44px; }
.lp-logo .logo-ray {
  transform-origin: 44px 46px;
  animation: logo-ray 2.8s ease-in-out infinite;
}
@keyframes logo-ray {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.v-header.is-scrolled {
  background: rgba(245, 247, 252, 0.92);
  border-bottom-color: transparent;
  box-shadow: 0 10px 30px -12px rgba(16, 22, 48, 0.18);
}
.nav-toggle-bar { transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
    color var(--dur) var(--ease), transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.btn-outline:hover, .btn-ghost:hover { box-shadow: var(--lp-shadow-sm); }
.doc-card { transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.chip { transition: border-color 0.15s var(--ease), color 0.15s var(--ease), background 0.15s var(--ease); }
.v-problem-card, .v-roi-col, .cv-flow li, .faq-item {
  transition: box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero-enter .v-kicker { animation: rise 0.7s ease both; }
.hero-enter h1 { animation: rise 0.75s ease 0.08s both; }
.hero-enter .v-hero-lead { animation: rise 0.75s ease 0.16s both; }
.hero-enter .v-hero-cta { animation: rise 0.75s ease 0.24s both; }
.hero-enter .v-trust { animation: rise 0.75s ease 0.32s both; }
.hero-enter .cv-hero-seats { animation: rise 0.75s ease 0.4s both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

[data-reveal] {
  opacity: 1;
  transform: none;
}
html.motion [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
html.motion [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal].is-in .cv-flow li:nth-child(1) { animation: rise 0.55s ease 0.05s both; }
[data-reveal].is-in .cv-flow li:nth-child(2) { animation: rise 0.55s ease 0.12s both; }
[data-reveal].is-in .cv-flow li:nth-child(3) { animation: rise 0.55s ease 0.19s both; }
[data-reveal].is-in .cv-flow li:nth-child(4) { animation: rise 0.55s ease 0.26s both; }
[data-reveal].is-in .cv-flow li:nth-child(5) { animation: rise 0.55s ease 0.33s both; }
[data-reveal].is-in .v-problem-card:nth-child(1),
[data-reveal].is-in .v-timeline-step:nth-child(1),
[data-reveal].is-in .doc-card:nth-child(1),
[data-reveal].is-in .v-roi-col:nth-child(1) { animation: rise 0.6s ease 0.08s both; }
[data-reveal].is-in .v-problem-card:nth-child(2),
[data-reveal].is-in .v-timeline-step:nth-child(2),
[data-reveal].is-in .doc-card:nth-child(2),
[data-reveal].is-in .v-roi-col:nth-child(2) { animation: rise 0.6s ease 0.16s both; }
[data-reveal].is-in .v-problem-card:nth-child(3),
[data-reveal].is-in .v-timeline-step:nth-child(3),
[data-reveal].is-in .doc-card:nth-child(3) { animation: rise 0.6s ease 0.24s both; }
[data-reveal].is-in .doc-card:nth-child(4) { animation: rise 0.6s ease 0.28s both; }
[data-reveal].is-in .doc-card:nth-child(5) { animation: rise 0.6s ease 0.32s both; }
[data-reveal].is-in .doc-card:nth-child(6) { animation: rise 0.6s ease 0.36s both; }

.live-sheet.is-updating, .preview-sheet.is-updating { animation: ink-in 0.45s ease; }
@keyframes ink-in {
  from { opacity: 0.55; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
.faq-item summary { transition: background 0.15s var(--ease), color 0.15s var(--ease); }
.faq-item summary:hover { background: var(--lp-brand-soft); color: var(--lp-brand-deep); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-logo .logo-ray,
  .flash,
  .auth-box,
  .hero-enter .v-kicker,
  .hero-enter h1,
  .hero-enter .v-hero-lead,
  .hero-enter .v-hero-cta,
  .hero-enter .v-trust,
  .hero-enter .cv-hero-seats,
  [data-reveal].is-in .cv-flow li,
  [data-reveal].is-in .v-problem-card,
  [data-reveal].is-in .v-timeline-step,
  [data-reveal].is-in .doc-card,
  [data-reveal].is-in .v-roi-col,
  .live-sheet.is-updating,
  .cv-live-dash-pill.is-live {
    animation: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html.motion [data-reveal] { opacity: 1; transform: none; }
  .btn:active, .page-pro .cv-flow li:hover, .v-footer-col a:hover { transform: none; }
}

@media (min-width: 640px) {
  .page-pro .cv-flow {
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 10px;
  }
  .page-pro .cv-flow li {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 16px 10px;
    min-height: 100%;
  }
}
@media (min-width: 720px) {
  .page-pro .v-hero--convert {
    padding: 48px 0 56px;
    text-align: center;
  }
  .page-pro .cv-hero h1 { margin-left: auto; margin-right: auto; }
  .page-pro .v-hero--convert .v-hero-lead {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
  }
  .page-pro .v-hero--convert .v-hero-cta { justify-content: center; }
  .page-pro .v-hero--convert .v-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
}
@media (min-width: 960px) {
  .page-pro .cv-demo-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 16px 20px;
    align-items: start;
  }
  .page-pro .cv-live-dash { position: sticky; top: 88px; }
}

@media (max-width: 1080px) {
  .v-header-inner { min-height: 60px; gap: 12px; justify-content: flex-start; }
  /* La marque pousse le reste à droite, et le menu ferme la ligne :
     le pouce atteint le bouton sans traverser l'écran. */
  .v-brand-cluster { margin-right: auto; }
  .v-header-end { margin-left: 0; order: 2; }
  .v-brand .brand-text { font-size: 15px; }
  .nav-toggle { display: flex; order: 3; }
  .v-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    /* Opaque : un tiroir translucide laisse le titre du héros transparaître. */
    background: var(--lp-surface);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius);
    padding: 10px;
    box-shadow: var(--v-shadow-lg);
    z-index: 199;
  }
  .v-nav.is-open { display: flex; animation: drawer-in 0.24s var(--ease) both; }
  @keyframes drawer-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: none; }
  }
  .v-nav a:not(.btn) { width: 100%; padding: 12px 14px; min-height: 44px; }
  .v-nav .btn { width: 100%; justify-content: center; padding: 12px 16px; font-size: 14px; margin-top: 4px; min-height: 44px; }
  .zone-line-item { padding: 5px 8px; font-size: 11px; }
}

@media (max-width: 900px) {
  .v-problem-grid, .v-roi-compare, .doc-grid, .doc-hero, .split-2, .v-footer-grid { grid-template-columns: 1fr; }
  .v-timeline { grid-template-columns: 1fr; gap: 24px; }
  .v-timeline::before { display: none; }
  .v-timeline-step {
    text-align: left;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 4px 14px;
    padding: 0;
  }
  .v-timeline-dot { margin-bottom: 0; grid-row: span 2; box-shadow: none; align-self: start; }
  .v-timeline-step p { max-width: none; margin: 0; grid-column: 2; }
  .pay-card { position: static; }
  .v-hero-cta { flex-direction: column; align-items: stretch; }
  .v-hero-cta .btn-lg { width: 100%; min-height: 48px; }
  .page-pro .cv-live-kpis { grid-template-columns: 1fr 1fr; }
  .preview-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .search-bar { flex-direction: column; }
  .search-bar .btn { min-height: 48px; }
}

@media (max-width: 640px) {
  .zone-line { display: none; }
  .container { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .v-section, .v-problem-section, .v-section--steps, .v-impact-section, .v-cta-band { padding-top: 48px; padding-bottom: 48px; }
  .page-pro .cv-hero h1 { max-width: none; }
}

@media (max-width: 560px) {
  .v-footer-grid { grid-template-columns: 1fr; }
  .preview-sheet { padding: 20px 16px; min-height: 280px; }
  .auth-box { margin: 28px 16px 56px; padding: 22px 18px; }
  .page-pro .cv-live-dash { padding: 12px; }
}

.chip.is-active {
  background: var(--lp-brand);
  color: #FFFFFF;
  border-color: var(--lp-brand);
  pointer-events: none;
}
.btn.is-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-outline.is-loading::after, .btn-ghost.is-loading::after {
  border-color: rgba(79, 70, 229, 0.22);
  border-top-color: var(--lp-brand);
}
@keyframes spin { to { transform: rotate(360deg); } }
body.is-busy { cursor: progress; }
.cv-live-dash.is-loading .live-sheet {
  position: relative;
  min-height: 120px;
}
.cv-live-dash.is-loading .live-sheet::after {
  content: "Rédaction de l'aperçu…";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-brand-deep);
}
.pay-wait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}
.pay-wait .spinner {
  width: 30px;
  height: 30px;
  border: 3px solid var(--lp-brand-soft);
  border-top-color: var(--lp-brand);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.dl-intro { margin: 0 0 12px; color: var(--v-muted); font-size: 14px; max-width: 52ch; }
.dl-list { display: grid; gap: 8px; max-width: 560px; margin: 20px 0 8px; }
.dl-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 16px; border: 1px solid var(--v-border); border-radius: var(--lp-radius-lg);
  background: var(--v-surface); text-decoration: none; color: inherit;
  box-shadow: var(--lp-shadow-xs);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.dl-item:hover { border-color: var(--lp-brand); text-decoration: none; transform: translateY(-2px); box-shadow: var(--lp-shadow); }
.dl-item-main { background: var(--lp-brand); color: #FFFFFF; border-color: var(--lp-brand); }
.dl-item-main:hover { border-color: var(--lp-brand-deep); background: var(--lp-brand-deep); }
.dl-item-main em { color: rgba(255, 255, 255, .85); }
.dl-item strong { display: block; font-size: 15px; }
.dl-item em { display: block; font-style: normal; font-size: 13px; color: var(--v-muted); font-weight: 400; margin-top: 2px; }
.dl-ext { font-size: 12px; font-weight: 700; letter-spacing: .04em; opacity: .7; flex-shrink: 0; }
.dl-menu { position: relative; display: inline-block; }
.dl-menu summary {
  list-style: none; cursor: pointer; font-weight: 700; font-size: 13px;
  padding: 6px 12px; border: 1px solid var(--v-border); border-radius: var(--lp-radius); background: var(--v-surface);
  transition: border-color var(--dur) var(--ease);
}
.dl-menu summary:hover { border-color: var(--lp-brand); color: var(--lp-brand-deep); }
.dl-menu summary::-webkit-details-marker { display: none; }
.dl-menu-list {
  position: absolute; right: 0; top: calc(100% + 6px); z-index: 20; min-width: 220px;
  background: var(--v-surface); border: 1px solid var(--v-border); border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg); padding: 6px; display: flex; flex-direction: column;
  animation: menu-in 0.18s var(--ease) both;
}
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.dl-menu-list a { padding: 8px 10px; border-radius: var(--lp-radius); font-size: 13px; font-weight: 600; transition: background var(--dur) var(--ease); }
.dl-menu-list a:hover { background: var(--v-accent-soft); color: var(--lp-brand-deep); text-decoration: none; }
@media (max-width: 560px) {
  .dl-menu-list { right: auto; left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn.is-loading::after, .pay-wait .spinner { animation: none; border-top-color: var(--v-accent); }
}

/* ==========================================================================
   Document page — sample letter, field list, checklist, sticky buy bar
   ========================================================================== */
.doc-intro { margin-bottom: 8px; }
.doc-sample {
  margin: 0 0 20px;
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
}
.doc-sample pre {
  margin: 0;
  padding: 28px 26px;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--v-text);
  max-height: 620px;
  overflow-y: auto;
}
.doc-sample figcaption {
  padding: 10px 16px;
  border-top: 1px solid var(--lp-brand-line);
  background: var(--lp-brand-soft);
  font-size: 12px;
  color: var(--lp-brand-deep);
  font-weight: 600;
}
.doc-sample-note { color: var(--v-muted); font-size: 14px; }
.field-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 16px 0 8px;
}
.field-group {
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  background: var(--v-surface);
  padding: 14px 16px;
  box-shadow: var(--lp-shadow-xs);
}
.field-group h3 {
  margin: 0 0 8px;
  font-family: var(--lp-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--v-muted);
}
.field-group ul { margin: 0; padding-left: 18px; }
.field-group li { font-size: 14px; line-height: 1.5; margin-bottom: 4px; overflow-wrap: anywhere; }
.field-group em { color: var(--v-muted); font-style: normal; font-size: 13px; }
.doc-checklist, .doc-includes, .doc-steps { padding-left: 20px; }
.doc-checklist li, .doc-includes li, .doc-steps li { margin-bottom: 8px; line-height: 1.55; }
.doc-checklist { list-style: none; padding-left: 0; }
.doc-checklist li { display: flex; gap: 10px; align-items: flex-start; }
.doc-checklist li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--lp-brand);
  font-weight: 700;
}
.pay-price { margin: 12px 0 8px; font-size: 2rem; color: var(--lp-text); }
.pay-points { list-style: none; margin: 16px 0 0; padding: 0; }
.pay-points li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; color: var(--v-muted); padding: 5px 0;
}
.pay-points li::before { content: "✓"; color: var(--lp-brand); font-weight: 800; flex-shrink: 0; }
.category-prose { max-width: 68ch; margin-top: 48px; }

/* Mobile-only purchase bar. Hidden on wide screens where the card is visible. */
.sticky-buy { display: none; }

/* ==========================================================================
   Responsive
   Breakpoints: 1080 (nav collapses) · 900 (two-column layouts stack)
                720 (tablet portrait) · 560 (phone) · 380 (small phone)
   ========================================================================== */

/* Fluid body copy: 15px on a phone, 16px from tablet up. */
body.vitrine { font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem); }

/* Nothing may push the page sideways. */
.prose, .doc-card p, .field-group, .faq-item p, .v-footer-col a { overflow-wrap: anywhere; }
.table-wrap { -webkit-overflow-scrolling: touch; }

@media (max-width: 1080px) {
  /* The drawer must not run past a phone's visible viewport: dvh accounts
     for the browser's collapsing address bar, vh does not. */
  .v-nav { max-height: calc(100dvh - 76px); }
}

@media (max-width: 1000px) {
  .doc-hero { grid-template-columns: 1fr; padding-bottom: 40px; }
  .doc-hero .pay-card { position: static; order: -1; }
  .prose { max-width: none; }
}

@media (max-width: 900px) {
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .v-section { padding: 56px 0; }
}

@media (max-width: 768px) {
  /* 16px is the threshold below which iOS Safari zooms into a focused field.
     Zooming mid-form is the fastest way to lose a mobile buyer. */
  .field input, .field textarea, .field select,
  .search-bar input, .page-pro .cv-listen textarea {
    font-size: 16px;
  }
  /* Comfortable, thumb-sized targets. */
  .btn, .chip, .field input, .field select, .search-bar input { min-height: 44px; }
  .field textarea { min-height: 88px; }
  .v-nav a:not(.btn), .dl-item, .dl-menu summary, .faq-item summary { min-height: 44px; }
  .dl-item, .faq-item summary { display: flex; align-items: center; }
  .doc-sample pre { padding: 20px 16px; font-size: 14px; max-height: 460px; }
  .prose h2 { font-size: 20px; }
  .pay-price { font-size: 1.65rem; }
}

@media (max-width: 720px) {
  .doc-grid { grid-template-columns: 1fr; }
  .field-groups { grid-template-columns: 1fr; }
  .v-roi-compare { grid-template-columns: 1fr; }
  .doc-card { min-height: 0; }
  .crumbs { font-size: 12px; }
  .preview-sheet { padding: 24px 18px; min-height: 320px; font-size: 15px; }
  .cv-live-kpis { grid-template-columns: 1fr 1fr; }

  /* The pay card scrolls away on a phone, so keep the price and the action
     reachable at all times on a document page. */
  .page-document .sticky-buy {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 150;
    background: var(--lp-surface);
    border-top: 1px solid var(--v-border);
    box-shadow: 0 -8px 24px -8px rgba(16, 22, 48, 0.18);
    padding: 10px max(12px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  }
  .sticky-buy-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    max-width: 640px; margin: 0 auto;
  }
  .sticky-buy-label { min-width: 0; }
  .sticky-buy-label strong {
    display: block; font-size: 14px; line-height: 1.25;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .sticky-buy-label em { display: block; font-style: normal; font-size: 12px; color: var(--v-muted); }
  .sticky-buy .btn { flex-shrink: 0; min-height: 44px; }
  .page-document .sticky-buy.is-hidden { transform: translateY(110%); }
  .page-document .sticky-buy { transition: transform .2s ease; }
  /* Room so the bar never covers the last paragraph or the footer links. */
  .page-document main { padding-bottom: 84px; }
}

@media (max-width: 560px) {
  .v-section, .v-problem-section, .v-section--steps, .v-impact-section, .v-cta-band {
    padding-top: 40px; padding-bottom: 40px;
  }
  .v-hero-cta .btn, .v-cta-band-actions .btn { width: 100%; }
  .v-cta-band-actions { flex-direction: column; align-items: stretch; }
  .search-bar { flex-direction: column; }
  .search-bar .btn { width: 100%; }
  .doc-sample pre { padding: 16px 13px; font-size: 13.5px; }
  .doc-sample figcaption { font-size: 11px; }
  .field-group { padding: 12px 14px; }
  .v-problem-card, .v-roi-col { padding: 18px 16px; }
  .card, .pay-card { padding: 16px; }
  .wizard { margin: 20px auto 48px; }
  .dl-item { flex-wrap: wrap; gap: 6px 12px; }
  table.data { font-size: 13px; }
}

@media (max-width: 380px) {
  .container { padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .v-brand .brand-text { font-size: 14px; }
  .btn { padding: 10px 14px; font-size: 13.5px; }
  .btn-lg { padding: 12px 16px; font-size: 14.5px; }
  .sticky-buy-label em { font-size: 11px; }
}

/* Freeze the page behind an open drawer so a scroll gesture moves the menu,
   not the article underneath it. */
body.vitrine.nav-open { overflow: hidden; }

/* A pointer that cannot hover gets no hover-only affordances. */
@media (hover: none) {
  .doc-card:hover, .chip:hover { transform: none; }
}

/* Reassurance block at the moment of payment. */
.pay-ready {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-success);
}
.pay-ready::before { content: "✓"; font-weight: 700; }
.preview-layout .pay-card .pay-points { border-top: 1px solid var(--v-border); margin-top: 14px; padding-top: 10px; }

/* Rendition chooser and the withdrawal-right consent, at the pay step. */
.variant-choice { border: 0; padding: 0; margin: 18px 0; }
.variant-choice legend {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--v-muted); padding: 0; margin-bottom: 8px;
}
.variant-option {
  display: flex; gap: 10px; align-items: flex-start;
  border: 1px solid var(--v-border); border-radius: var(--v-radius);
  padding: 13px 15px; margin-bottom: 8px; cursor: pointer;
  background: var(--v-surface);
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.variant-option:hover { border-color: var(--lp-brand); box-shadow: var(--lp-shadow-sm); }
.variant-option.is-selected {
  border-color: var(--lp-brand);
  background: var(--lp-brand-soft);
  box-shadow: var(--lp-ring);
}
.variant-option input { margin: 3px 0 0; width: auto; flex-shrink: 0; }
.variant-body { min-width: 0; flex: 1; }
.variant-head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.variant-head strong { font-size: 14.5px; }
.variant-head em { font-style: normal; font-weight: 700; white-space: nowrap; }
.variant-help {
  display: block; margin-top: 4px; font-size: 12.5px;
  color: var(--v-muted); line-height: 1.45;
}
.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; line-height: 1.5; color: var(--v-text);
  margin: 4px 0 14px;
}
.consent input { margin: 2px 0 0; width: auto; flex-shrink: 0; min-width: 18px; min-height: 18px; }
.legal-callout {
  border-left: 3px solid var(--lp-brand); background: var(--lp-brand-soft);
  padding: 14px 18px; margin: 18px 0; border-radius: 0 var(--lp-radius) var(--lp-radius) 0;
}
.legal-callout p { margin: 0 0 8px; }
.legal-callout p:last-child { margin-bottom: 0; }
.legal-todo {
  border-left: 3px solid var(--lp-danger); background: var(--lp-danger-soft);
  padding: 14px 18px; margin: 18px 0; border-radius: 0 var(--lp-radius) var(--lp-radius) 0; font-size: 14px;
}

@media (max-width: 560px) {
  .variant-head { flex-direction: column; gap: 2px; }
  .variant-option { padding: 12px; }
}


/* ==========================================================================
   Finitions modernes
   Détails qui n'existaient pas : barre de défilement, en-têtes de section,
   fil d'Ariane, sections de contenu. Aucune structure n'est déplacée.
   ========================================================================== */

/* Barre de défilement discrète, accordée à la marque. */
@supports (scrollbar-color: auto) {
  html { scrollbar-color: var(--lp-border-strong) transparent; scrollbar-width: thin; }
}
.live-sheet::-webkit-scrollbar, .doc-sample pre::-webkit-scrollbar, .table-wrap::-webkit-scrollbar {
  width: 10px; height: 10px;
}
.live-sheet::-webkit-scrollbar-thumb, .doc-sample pre::-webkit-scrollbar-thumb, .table-wrap::-webkit-scrollbar-thumb {
  background: var(--lp-border-strong); border-radius: var(--lp-radius-pill);
  border: 3px solid transparent; background-clip: content-box;
}
.live-sheet::-webkit-scrollbar-thumb:hover, .doc-sample pre::-webkit-scrollbar-thumb:hover,
.table-wrap::-webkit-scrollbar-thumb:hover { background: var(--lp-brand-bright); background-clip: content-box; }

/* Fil d'Ariane : séparateurs légers plutôt qu'un simple espace. */
.crumbs a { transition: color var(--dur) var(--ease); }
.crumbs a:hover { color: var(--lp-brand); }

/* Blocs de contenu longs. */
.prose h2 { margin-top: 34px; }
.prose a:not(.btn) { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose a:not(.btn):hover { color: var(--lp-brand-deep); }
.faq details { transition: border-color var(--dur) var(--ease); }
.faq details[open] { border-top-color: var(--lp-brand-line); }

/* Le formulaire du tunnel respire dans une carte, comme les autres blocs. */
.wizard .field label { color: var(--lp-text); letter-spacing: -0.01em; }
.help { line-height: 1.45; }
.error { font-weight: 600; }

/* Cases à cocher et boutons radio à la couleur de la marque. */
.consent input, .variant-option input { accent-color: var(--lp-brand); }

@media (prefers-reduced-motion: reduce) {
  .v-nav.is-open, .dl-menu-list, .flash, .auth-box { animation: none !important; }
}
