/* Design system — fidèle aux maquettes Devantio */

/* Polices auto-hébergées (latin + latin-ext) — évite le CSS bloquant Google Fonts */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-500-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: oklch(0.19 0.02 265);
  --ink-2: oklch(0.35 0.03 265);
  --ink-soft: oklch(0.45 0.03 265);
  --ink-mute: oklch(0.5 0.03 265);
  --brand: oklch(0.55 0.22 265);
  --brand-hover: oklch(0.45 0.2 265);
  /* Couleurs texte : assombries pour contraste AA (≥ 4.5:1 sur fond blanc) */
  --orange: oklch(0.55 0.17 45);
  --teal: oklch(0.45 0.12 175);
  --pink: oklch(0.52 0.24 350);
  --green: oklch(0.48 0.14 145);
  /* Accents UI (pastilles, barres) — plus saturés */
  --orange-bright: oklch(0.72 0.19 45);
  --teal-bright: oklch(0.75 0.17 175);
  --green-bright: oklch(0.7 0.19 145);
  --bg-soft: oklch(0.975 0.006 265);
  --line: oklch(0.19 0.02 265 / 0.1);
  --font: "Manrope", Helvetica, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); }
button, input, select, textarea { font: inherit; }
/* overflow-x: clip (pas hidden) pour ne pas casser position:sticky du sommaire */
.dc-page { overflow-x: clip; min-height: 100vh; display: flex; flex-direction: column; }
.dc-page > * { min-width: 0; max-width: 100%; box-sizing: border-box; }
.dc-page > main, .dc-page > .dc-main { flex: 1; }
.dc-page > section,
.dc-section,
.dc-section-sm,
.dc-legal,
.dc-footer,
.dc-auth-wrap,
.dc-cta-band {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.dc-scroll-x {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.dc-shell-menu-btn,
.dc-shell-backdrop { display: none; }

/* Header */
.dc-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 44px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
}
.dc-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-size: 20px; font-weight: 800; letter-spacing: -.03em;
}
.dc-brand:hover { color: var(--ink); }
.dc-brand-sm { font-size: 16px; }
.dc-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 600; }
.dc-nav a { color: var(--ink); }
.dc-nav a:hover, .dc-nav a.is-active { color: var(--brand); }
.dc-header-actions { display: flex; align-items: center; gap: 20px; }
.dc-link { font-size: 15px; font-weight: 600; color: var(--ink); }
.dc-nav-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px; padding: 10px;
}
.dc-nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
.dc-nav-mobile {
  display: none; flex-direction: column; gap: 8px; padding: 12px 18px 20px;
  border-bottom: 1px solid var(--line); background: #fff;
}
.dc-nav-mobile a {
  padding: 12px 14px; border-radius: 10px; font-weight: 700; color: var(--ink);
}
.dc-nav-mobile[hidden] { display: none !important; }

/* Buttons — a.dc-* bat le style global a / a:hover */
.dc-btn,
a.dc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px; border: 0;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: .15s ease;
  text-decoration: none;
}
.dc-btn-primary,
a.dc-btn-primary { background: var(--brand); color: #fff; }
.dc-btn-primary:hover,
a.dc-btn-primary:hover { background: var(--brand-hover); color: #fff; }
.dc-btn-lg,
a.dc-btn-lg { padding: 20px 40px; font-size: 19px; font-weight: 800; }
.dc-btn-xl,
a.dc-btn-xl { padding: 22px 44px; font-size: 21px; font-weight: 800; }
.dc-btn-ghost,
a.dc-btn-ghost {
  border: 2px solid oklch(0.19 0.02 265 / 0.14); background: transparent; color: var(--ink);
}
.dc-btn-ghost:hover,
a.dc-btn-ghost:hover { border-color: var(--ink); background: oklch(0.19 0.02 265 / 0.04); color: var(--ink); }
.dc-btn-white,
a.dc-btn-white { background: #fff; color: var(--ink); }
.dc-btn-white:hover,
a.dc-btn-white:hover { background: var(--orange-bright); color: #fff; }
.dc-btn-outline-light,
a.dc-btn-outline-light {
  border: 2px solid rgba(255,255,255,.45); background: transparent; color: #fff;
}
.dc-btn-outline-light:hover,
a.dc-btn-outline-light:hover {
  border-color: #fff; background: rgba(255,255,255,.12); color: #fff;
}

.dc-eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--pink);
}
.dc-mono { font-family: var(--mono); }

/* Hero */
.dc-hero {
  position: relative; min-height: calc(100vh - 72px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 44px 0; text-align: center; overflow: hidden;
}
.dc-blob { position: absolute; border-radius: 999px; filter: blur(10px); pointer-events: none; }
.dc-blob-a { top: -160px; left: -120px; width: 520px; height: 520px; background: oklch(0.55 0.22 265 / 0.14); }
.dc-blob-b { top: 40px; right: -140px; width: 460px; height: 460px; background: oklch(0.72 0.19 45 / 0.16); }
.dc-blob-c { bottom: 120px; left: 42%; width: 320px; height: 320px; background: oklch(0.75 0.17 175 / 0.16); }
.dc-pill {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  box-shadow: 0 4px 14px oklch(0.19 0.02 265 / 0.06);
}
.dc-pill-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--green-bright); }
.dc-hero h1 {
  position: relative; margin: 26px 0 0; max-width: 17ch;
  font-size: clamp(40px, 6.6vw, 92px); line-height: .98; letter-spacing: -.045em;
  font-weight: 800; text-wrap: balance;
}
.dc-hero h1 em { font-style: normal; color: var(--brand); }
.dc-hero-lead {
  position: relative; margin: 28px 0 0; max-width: 52ch;
  font-size: clamp(17px, 2.2vw, 22px); line-height: 1.5; font-weight: 500; color: var(--ink-soft);
}
.dc-hero-cta {
  position: relative; display: flex; align-items: center; gap: 16px;
  margin-top: 38px; flex-wrap: wrap; justify-content: center;
}
.dc-hero-note {
  position: relative; margin-top: 18px; font-family: var(--mono);
  font-size: 13px; color: var(--ink-mute);
}
.dc-mockups {
  position: relative; display: flex; align-items: end; justify-content: center;
  gap: 20px; margin-top: 54px; width: 100%; max-width: 1180px;
}
.dc-mock {
  flex: 1; border-radius: 16px 16px 0 0; border: 1px solid var(--line); border-bottom: 0;
  overflow: hidden; box-shadow: 0 -6px 40px oklch(0.19 0.02 265 / 0.09); background: #fff;
}
.dc-mock-side { transform: translateY(14px); }
.dc-mock-center { flex: 1.35; border-radius: 18px 18px 0 0; box-shadow: 0 -10px 56px oklch(0.19 0.02 265 / 0.13); }

/* Sections */
.dc-stats {
  padding: 30px 44px; border-top: 1px solid oklch(0.19 0.02 265 / 0.08);
  border-bottom: 1px solid oklch(0.19 0.02 265 / 0.08);
}
.dc-stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.dc-stat-n { font-size: 30px; font-weight: 800; letter-spacing: -.035em; }
.dc-stat-l { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.dc-section { padding: 96px 44px; max-width: 1280px; width: 100%; margin: 0 auto; box-sizing: border-box; }
.dc-section-sm { padding: 0 44px 100px; max-width: 1280px; width: 100%; margin: 0 auto; box-sizing: border-box; }
.dc-center { text-align: center; }
.dc-section h2, .dc-h2 {
  margin: 14px 0 0; font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  letter-spacing: -.04em; text-wrap: balance;
}
.dc-lead {
  margin: 16px auto 0; max-width: 54ch; font-size: 19px; font-weight: 500;
  line-height: 1.5; color: var(--ink-soft);
}

.dc-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.dc-site-card {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #fff;
  box-shadow: 0 8px 28px oklch(0.19 0.02 265 / 0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.dc-site-card:hover { box-shadow: 0 16px 40px oklch(0.19 0.02 265 / 0.12); transform: translateY(-3px); }
.dc-site-shot {
  height: 250px; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12.5px;
}
.dc-site-meta {
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.dc-tag {
  padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; white-space: nowrap;
}

.dc-editor-band {
  background: var(--ink); border-radius: 24px; padding: 60px; color: #fff;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.dc-editor-shot {
  margin: 0; border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  background: #fff;
}
.dc-editor-shot img { display: block; width: 100%; height: auto; }
.dc-module-shots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 40px;
}
.dc-module-shot {
  margin: 0; border-radius: 14px; overflow: hidden;
  border: 1px solid oklch(0.19 0.02 265 / 0.1);
  background: #fff;
  box-shadow: 0 10px 28px oklch(0.19 0.02 265 / 0.07);
}
.dc-module-shot-btn {
  display: block; width: 100%; margin: 0; padding: 0;
  border: 0; background: transparent; cursor: zoom-in;
  font: inherit; color: inherit; text-align: left;
}
.dc-module-shot-btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}
.dc-module-shot img {
  display: block; width: 100%; height: auto;
  transition: transform .25s ease, filter .25s ease;
}
.dc-module-shot-btn:hover img,
.dc-module-shot-btn:focus-visible img {
  transform: scale(1.02);
  filter: brightness(1.03);
}
.dc-lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 16px;
  border: 0;
  background: transparent;
  overflow: visible;
}
.dc-lightbox[open] {
  display: grid;
  place-items: center;
}
.dc-lightbox::backdrop {
  background: oklch(0.19 0.02 265 / 0.72);
  backdrop-filter: blur(4px);
}
.dc-lightbox-panel {
  position: relative;
  width: min(1120px, 100%);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}
.dc-lightbox-panel img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 32px);
  object-fit: contain;
  background: #fff;
}
.dc-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: oklch(0.19 0.02 265 / 0.78);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.dc-lightbox-close:hover { background: var(--ink); }
.dc-lightbox-close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.dc-welcome {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 16px;
  border: 0;
  background: transparent;
  overflow: visible;
}
.dc-welcome[open] {
  display: grid;
  place-items: center;
}
.dc-welcome::backdrop {
  background: oklch(0.19 0.02 265 / 0.72);
  backdrop-filter: blur(4px);
}
.dc-welcome-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 36px 36px 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}
.dc-welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: oklch(0.19 0.02 265 / 0.06);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.dc-welcome-close:hover { background: oklch(0.19 0.02 265 / 0.12); }
.dc-welcome-close:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}
.dc-welcome-eyebrow {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.dc-welcome-panel h2 {
  margin: 10px 0 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.dc-welcome-lead {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-soft);
}
.dc-welcome-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dc-welcome-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--bg-soft);
}
.dc-welcome-list .dc-mono {
  flex: none;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
}
.dc-welcome-list strong {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.dc-welcome-list li div > span {
  display: block;
  margin-top: 3px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-soft);
}
.dc-welcome-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
@media (max-width: 520px) {
  .dc-welcome-panel { padding: 28px 22px 24px; }
  .dc-welcome-panel h2 { font-size: 24px; }
  .dc-welcome-actions { flex-direction: column; align-items: stretch; }
  .dc-welcome-actions .dc-btn { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .dc-module-shot img { transition: none; }
  .dc-module-shot-btn:hover img,
  .dc-module-shot-btn:focus-visible img { transform: none; }
}
.dc-modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.dc-module {
  padding: 26px 24px; border-radius: 14px; background: var(--bg-soft);
  border: 1px solid oklch(0.19 0.02 265 / 0.07); transition: .15s ease;
}
.dc-module:hover {
  background: #fff; border-color: oklch(0.55 0.22 265 / 0.35);
  box-shadow: 0 10px 30px oklch(0.19 0.02 265 / 0.08);
}

.dc-price-box {
  border-radius: 24px; border: 2px solid var(--brand); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.1fr;
}
.dc-price-left { padding: 56px; background: var(--brand); color: #fff; }
.dc-price-right { padding: 48px 52px; background: #fff; }
.dc-inclus { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; margin-top: 24px; }

.dc-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dc-quote {
  margin: 0; padding: 32px; border-radius: 16px; background: var(--bg-soft);
  display: flex; flex-direction: column; gap: 22px;
}
.dc-faq { display: flex; flex-direction: column; gap: 12px; max-width: 1000px; margin: 0 auto; }
.dc-faq-item { border-radius: 14px; background: var(--bg-soft); overflow: hidden; }
.dc-faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font); font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.dc-faq-btn:hover { color: var(--brand); }
.dc-faq-a {
  margin: 0; padding: 0 70px 24px 26px; font-size: 17px; font-weight: 500;
  line-height: 1.6; color: oklch(0.42 0.03 265); display: none;
}
.dc-faq-item.is-open .dc-faq-a { display: block; }

.dc-cta-band {
  position: relative; overflow: hidden; border-radius: 24px; background: var(--ink);
  color: #fff; padding: 84px 60px; text-align: center;
}

/* Footer */
.dc-footer { padding: 44px 44px 56px; border-top: 1px solid oklch(0.19 0.02 265 / 0.08); }
.dc-footer-row, .dc-footer-meta {
  max-width: 1280px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.dc-footer-row { font-size: 14.5px; font-weight: 600; }
.dc-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.dc-footer-links a { color: var(--ink-2); }
.dc-footer-meta {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid oklch(0.19 0.02 265 / 0.07);
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-mute);
}
.dc-footer-meta a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dc-footer-meta a:hover { color: var(--brand-hover); }
.dc-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.dc-footer-legal a { color: var(--ink-mute); text-decoration: none; }
.dc-footer-legal a:hover { color: var(--ink); text-decoration: underline; }

/* Auth / forms */
.dc-auth-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 60px 44px 80px;
}
.dc-auth-card { width: 100%; max-width: 460px; }
.dc-field { display: grid; gap: 7px; }
.dc-field span { font-size: 14px; font-weight: 700; color: var(--ink-2); }
.dc-input {
  width: 100%; padding: 16px 18px; border: 1.5px solid oklch(0.19 0.02 265 / 0.13);
  border-radius: 12px; background: #fff; font-size: 16.5px; font-weight: 600; color: var(--ink);
}
.dc-input:focus { border-color: var(--brand); outline: none; }
.dc-input-wrap { position: relative; }
.dc-input-wrap .dc-input { padding-right: 46px; }
.dc-input-check {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green); pointer-events: none;
}
.dc-input-check[hidden] { display: none !important; }
.dc-field[data-city-search-root] { position: relative; }
.dc-alert {
  padding: 14px 16px; border-radius: 12px; font-weight: 600; margin-bottom: 16px;
}
.dc-alert-error { background: oklch(0.95 0.04 25); color: oklch(0.4 0.14 25); }
.dc-alert-ok { background: oklch(0.95 0.04 145); color: oklch(0.35 0.1 145); }

/* Register */
.dc-register { flex: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; }
.dc-register-main { padding: 56px 64px 72px; max-width: 720px; width: 100%; margin-left: auto; }
.dc-register-aside {
  background: var(--bg-soft); padding: 56px 64px;
  border-left: 1px solid oklch(0.19 0.02 265 / 0.07);
}
.dc-steps { display: flex; align-items: center; gap: 10px; }
.dc-step-bar { flex: 1; height: 5px; border-radius: 999px; background: oklch(0.9 0.01 265); }
.dc-step-bar.is-on { background: var(--brand); }
.dc-trade-search { position: relative; margin-top: 28px; }
.dc-trade-search .dc-input { padding: 15px 18px; font-size: 16px; }
.dc-trade-suggest {
  position: absolute; z-index: 20; left: 0; right: 0; top: calc(100% + 6px);
  margin: 0; padding: 6px; list-style: none;
  border: 1.5px solid oklch(0.19 0.02 265 / 0.14); border-radius: 14px;
  background: #fff; box-shadow: 0 14px 36px oklch(0.19 0.02 265 / 0.12);
  max-height: 320px; overflow: auto;
}
.dc-trade-suggest[hidden] { display: none !important; }
.dc-trade-suggest-item {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border: 0; border-radius: 10px; background: transparent;
  font: inherit; font-size: 15.5px; font-weight: 700; color: var(--ink); cursor: pointer; text-align: left;
}
.dc-trade-suggest-item .dc-mono { font-size: 12px; color: var(--ink-mute); font-weight: 500; }
.dc-trade-suggest-item:hover,
.dc-trade-suggest-item.is-active { background: oklch(0.55 0.22 265 / 0.08); }
.dc-trade-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.dc-trade {
  text-align: left; cursor: pointer; padding: 18px 20px; border-radius: 14px;
  border: 2px solid transparent; background: var(--bg-soft);
  font-size: 16.5px; font-weight: 700; color: var(--ink);
  display: block;
}
.dc-trade[hidden] { display: none !important; }
.dc-trade.is-on { border-color: var(--brand); background: oklch(0.55 0.22 265 / 0.06); }
.dc-trade-search-fallback {
  margin: 16px 0 0; font-size: 15px; font-weight: 600; line-height: 1.45; color: var(--ink-soft);
}
.dc-trade-search-fallback[hidden] { display: none !important; }
.dc-trade-search-fallback-ok { color: oklch(0.42 0.12 145); font-weight: 800; }
.dc-trade-suggest-item.is-custom {
  background: oklch(0.55 0.22 265 / 0.06);
  border: 1.5px solid oklch(0.55 0.22 265 / 0.18);
}
.dc-trade-suggest-item.is-custom .dc-mono { color: var(--brand); font-family: var(--font); font-weight: 700; }
.dc-register-suggest { margin-top: 28px; }
.dc-register-suggest-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer; user-select: none;
  padding: 14px 0; font-size: 15px; font-weight: 700; color: var(--ink-soft);
  text-align: left;
}
.dc-register-suggest-summary::-webkit-details-marker { display: none; }
.dc-register-suggest-summary::marker { content: ""; }
.dc-register-suggest-summary:hover { color: var(--brand); }
.dc-register-suggest-sign {
  flex-shrink: 0; font-family: var(--mono); font-size: 18px; font-weight: 500; color: var(--ink-mute);
  line-height: 1;
}
.dc-register-suggest-sign::before { content: "+"; }
.dc-register-suggest[open] .dc-register-suggest-sign::before { content: "–"; }
.dc-register-suggest-list {
  display: grid; gap: 12px; padding-bottom: 4px; justify-items: stretch;
}
.dc-register-suggest-btn {
  width: 100%; box-sizing: border-box;
  justify-content: space-between !important; text-align: left;
  border-radius: 12px; padding: 15px 18px;
  font-family: var(--mono); font-size: 15px; font-weight: 500;
}
.dc-register-suggest-use {
  font-family: var(--font); font-size: 13.5px; font-weight: 700; color: var(--ink-mute);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* App shell */
.dc-shell {
  min-height: 100vh; display: grid; grid-template-columns: 250px 1fr; background: var(--bg-soft);
}
.dc-shell-aside {
  background: var(--ink); color: #fff; padding: 20px 16px;
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: 0; height: 100vh;
}
.dc-shell-nav { display: flex; flex-direction: column; gap: 3px; }
.dc-shell-nav a, .dc-shell-nav span {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 13px; border-radius: 10px; color: rgba(255,255,255,.68);
  font-size: 15px; font-weight: 700;
}
.dc-shell-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.dc-shell-nav a.is-on { background: rgba(255,255,255,.13); color: #fff; }
.dc-shell-top {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 16px 34px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid oklch(0.19 0.02 265 / 0.08);
}
.dc-shell-content { padding: 30px 34px 60px; display: flex; flex-direction: column; gap: 22px; }
.dc-kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.dc-card {
  padding: 22px 24px; border-radius: 16px; background: #fff;
  border: 1px solid oklch(0.19 0.02 265 / 0.07);
}

/* Legal */
.dc-legal { padding: 64px 44px 90px; max-width: 1100px; width: 100%; margin: 0 auto; box-sizing: border-box; }
.dc-legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.dc-legal-nav { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2px; }
.dc-legal-nav a {
  padding: 10px 14px; border-radius: 10px; font-size: 15px; font-weight: 700; color: var(--ink-2);
}
.dc-legal-nav a:hover { background: var(--bg-soft); color: var(--brand); }
.dc-fiche { margin-top: 8px; border-radius: 14px; border: 1px solid var(--line); overflow: hidden; }
.dc-fiche-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 20px; padding: 14px 20px;
  border-bottom: 1px solid oklch(0.19 0.02 265 / 0.06); font-size: 15.5px;
}
.dc-fiche-row:last-child { border-bottom: 0; }

/* Marketing pages */
.dc-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  padding: 18px 0 40px;
}
.dc-filter-pill {
  padding: 11px 20px; border-radius: 999px; border: 1.5px solid oklch(0.19 0.02 265 / 0.13);
  font-size: 15px; font-weight: 700; color: var(--ink-2); background: #fff;
  cursor: pointer; text-decoration: none; display: inline-block;
  font-family: inherit;
}
button.dc-filter-pill { appearance: none; }
.dc-filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.dc-filter-pill.is-on { background: var(--brand); border-color: var(--brand); color: #fff; }
.dc-filter-item[hidden] { display: none !important; }

.dc-toc-layout { display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: start; }
.dc-toc-nav {
  position: sticky; top: 96px; align-self: start;
  display: flex; flex-direction: column; gap: 4px;
  max-height: calc(100vh - 112px); overflow: auto;
}
.dc-toc-label {
  margin: 0 0 8px; padding: 0 14px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-mute);
}
.dc-toc-links { display: flex; flex-direction: column; gap: 4px; }
.dc-toc-nav a:not(.dc-btn) {
  padding: 11px 14px; border-radius: 10px; font-size: 15.5px; font-weight: 700; color: var(--ink-2);
}
.dc-toc-nav a:not(.dc-btn):hover { background: var(--bg-soft); color: var(--brand); }
.dc-toc-nav a:not(.dc-btn).is-active {
  background: oklch(0.55 0.22 265 / 0.08); color: var(--brand);
  box-shadow: inset 3px 0 0 var(--brand);
}
.dc-toc-cta { margin-top: 14px; text-align: center; padding: 14px; font-size: 15.5px; }

.dc-features-main { min-width: 0; }
.dc-feature-group {
  border-radius: 20px; border: 1px solid oklch(0.19 0.02 265 / 0.09); overflow: hidden;
  scroll-margin-top: 110px;
}
.dc-feature-group + .dc-feature-group { margin-top: 28px; }
.dc-feature-group-head {
  padding: 24px 28px; display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid oklch(0.19 0.02 265 / 0.07); background: oklch(0.985 0.004 265);
}
.dc-feature-group-body {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: stretch; background: #fff;
}
.dc-feature-group.is-flip .dc-feature-group-body { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
.dc-feature-group.is-flip .dc-feature-visual { order: 2; }
.dc-feature-visual {
  margin: 0; padding: 20px; background: oklch(0.985 0.004 265);
  display: flex; align-items: stretch;
  border-right: 1px solid oklch(0.19 0.02 265 / 0.07);
}
.dc-feature-group.is-flip .dc-feature-visual {
  border-right: 0; border-left: 1px solid oklch(0.19 0.02 265 / 0.07);
}
.dc-feature-items {
  display: flex; flex-direction: column; min-width: 0;
}
.dc-feature-item {
  padding: 18px 26px; border-bottom: 1px solid oklch(0.19 0.02 265 / 0.06);
  flex: 1;
}
.dc-feature-item:last-child { border-bottom: 0; }

/* Mini UI plateforme (à la place des captures) */
.dc-feature-mock {
  width: 100%; border-radius: 14px; background: #fff;
  border: 1px solid oklch(0.19 0.02 265 / 0.1);
  box-shadow: 0 14px 36px oklch(0.19 0.02 265 / 0.08);
  overflow: hidden; font-size: 13px; line-height: 1.35;
}
.dc-fm-chrome {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 10px 12px; background: oklch(0.19 0.02 265); color: #fff;
}
.dc-fm-dot {
  width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.28);
}
.dc-fm-chrome-label, .dc-fm-chrome-title {
  font-size: 12.5px; font-weight: 700; letter-spacing: -.01em;
}
.dc-fm-chrome-label { margin-left: 4px; color: rgba(255,255,255,.82); flex: 1; }
.dc-fm-chrome-title { flex: 1; }
.dc-fm-muted { font-size: 11.5px; font-weight: 600; color: var(--ink-mute); }
.dc-fm-chrome .dc-fm-muted { color: rgba(255,255,255,.62); }
.dc-fm-pill {
  padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,.12); color: #fff;
}
.dc-fm-pill-ok { background: oklch(0.7 0.19 145 / 0.28); color: #d8ffe8; }
.dc-fm-pill-warn { background: oklch(0.72 0.19 45 / 0.3); color: #ffe8c8; }
.dc-fm-btn-sm {
  margin-left: auto; padding: 6px 11px; border-radius: 999px;
  background: var(--brand); color: #fff; font-size: 11.5px; font-weight: 800;
}
.dc-fm-editor { display: grid; grid-template-columns: 148px 1fr; min-height: 250px; }
.dc-fm-sidebar {
  padding: 10px; background: oklch(0.985 0.004 265);
  border-right: 1px solid oklch(0.19 0.02 265 / 0.08);
}
.dc-fm-tabs { display: flex; gap: 4px; margin-bottom: 10px; }
.dc-fm-tabs button {
  flex: 1; border: 0; background: transparent; padding: 6px 4px; border-radius: 8px;
  font: inherit; font-size: 11px; font-weight: 700; color: var(--ink-mute); cursor: pointer;
}
.dc-fm-tabs button.is-on { background: #fff; color: var(--brand); box-shadow: 0 1px 4px oklch(0.19 0.02 265 / 0.08); }
.dc-fm-block {
  display: flex; align-items: center; gap: 8px; padding: 8px 9px; margin-bottom: 5px;
  border-radius: 9px; background: #fff; border: 1px solid oklch(0.19 0.02 265 / 0.07);
  font-size: 12px; font-weight: 700; color: var(--ink);
}
.dc-fm-block.is-on { border-color: var(--brand); background: oklch(0.55 0.22 265 / 0.06); }
.dc-fm-block span { width: 8px; height: 8px; border-radius: 3px; flex: none; }
.dc-fm-canvas { padding: 12px; display: flex; flex-direction: column; gap: 10px; background: #fff; }
.dc-fm-site-bar {
  font-size: 11.5px; font-weight: 700; color: var(--ink-2);
  padding-bottom: 8px; border-bottom: 1px solid oklch(0.19 0.02 265 / 0.08);
}
.dc-fm-hero-block {
  padding: 16px; border-radius: 12px; background: oklch(0.19 0.02 265);
  color: #fff; display: flex; flex-direction: column; gap: 6px;
}
.dc-fm-hero-block strong { font-size: 16px; letter-spacing: -.02em; }
.dc-fm-hero-block span { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; }
.dc-fm-hero-block em {
  align-self: start; margin-top: 4px; font-style: normal;
  padding: 7px 12px; border-radius: 999px; background: oklch(0.72 0.19 45);
  font-size: 11.5px; font-weight: 800;
}
.dc-fm-drop {
  flex: 1; min-height: 54px; border-radius: 10px;
  border: 1.5px dashed oklch(0.19 0.02 265 / 0.18);
  display: grid; place-items: center; color: var(--ink-mute);
  font-size: 12px; font-weight: 600; background: oklch(0.985 0.004 265);
}
.dc-fm-kpis {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 12px;
}
.dc-fm-kpi {
  padding: 10px; border-radius: 10px; background: var(--bg-soft);
  display: flex; flex-direction: column; gap: 2px;
}
.dc-fm-kpi strong { font-size: 16px; font-weight: 800; letter-spacing: -.03em; }
.dc-fm-kpi span { font-size: 11px; font-weight: 700; color: var(--green); }
.dc-fm-list { padding: 0 12px 10px; display: flex; flex-direction: column; gap: 6px; }
.dc-fm-row {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 10px; align-items: center;
  padding: 9px 10px; border-radius: 10px; background: var(--bg-soft);
}
.dc-fm-row strong { display: block; font-size: 12.5px; font-weight: 800; }
.dc-fm-row small { display: block; font-size: 11px; font-weight: 500; color: var(--ink-soft); margin-top: 1px; }
.dc-feature-mock[data-feature-mock="clients"] .dc-fm-row { grid-template-columns: 1fr auto; }
.dc-fm-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 10px 12px; border-top: 1px solid oklch(0.19 0.02 265 / 0.07);
  font-size: 11.5px; font-weight: 600; color: var(--ink-soft);
}
.dc-fm-foot .dc-fm-pill { background: oklch(0.7 0.19 145 / 0.14); color: var(--green); }
.dc-fm-filters {
  display: flex; gap: 6px; flex-wrap: wrap; padding: 10px 12px 0;
}
.dc-fm-filters .dc-filter-pill { padding: 7px 12px; font-size: 12px; }
.dc-fm-rdv {
  margin: 4px 12px 12px; padding: 12px; border-radius: 12px;
  background: oklch(0.985 0.004 265); border: 1px solid oklch(0.19 0.02 265 / 0.07);
  display: flex; flex-direction: column; gap: 6px;
}
.dc-fm-creneau {
  display: flex; gap: 10px; align-items: baseline; padding: 8px 10px; border-radius: 9px;
  border-left: 3px solid var(--brand); background: #fff;
}
.dc-fm-creneau-pose { border-left-color: var(--orange); }
.dc-fm-creneau strong { font-size: 12px; min-width: 72px; }
.dc-fm-creneau span { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.dc-fm-periods { display: flex; gap: 4px; margin-left: auto; }
.dc-fm-periods button {
  border: 0; background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
  padding: 5px 9px; border-radius: 999px; font: inherit; font-size: 11px; font-weight: 700; cursor: pointer;
}
.dc-fm-periods button.is-on { background: #fff; color: var(--ink); }
.dc-fm-chart {
  display: flex; align-items: end; gap: 4px; height: 88px;
  padding: 0 12px 8px;
}
.dc-fm-bar {
  flex: 1; height: 100%; display: flex; flex-direction: column; justify-content: end; gap: 2px;
}
.dc-fm-bar i, .dc-fm-bar b {
  display: block; width: 100%; border-radius: 3px 3px 0 0;
}
.dc-fm-bar i { background: var(--brand); }
.dc-fm-bar b { background: var(--orange-bright); }
.dc-fm-sources { padding: 0 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.dc-fm-source > div:first-child {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 12px; font-weight: 700; margin-bottom: 4px;
}
.dc-fm-progress {
  height: 6px; border-radius: 999px; background: oklch(0.19 0.02 265 / 0.08); overflow: hidden;
}
.dc-fm-progress i { display: block; height: 100%; border-radius: inherit; }
.dc-fm-settings { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.dc-fm-card {
  padding: 12px; border-radius: 12px; background: var(--bg-soft);
  border: 1px solid oklch(0.19 0.02 265 / 0.06);
}
.dc-fm-card strong { display: block; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.dc-fm-card-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.dc-fm-card-row strong { margin-bottom: 2px; }
.dc-fm-card-dark {
  background: var(--ink); color: #fff; border-color: transparent;
}
.dc-fm-card-dark .dc-fm-muted { color: rgba(255,255,255,.65); }
.dc-fm-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.dc-fm-swatches button {
  width: 26px; height: 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; padding: 0;
}
.dc-fm-swatches button.is-on { border-color: var(--ink); box-shadow: 0 0 0 2px #fff inset; }
.dc-fm-preview-btn {
  display: inline-flex; margin-top: 10px; padding: 8px 14px; border-radius: 999px;
  color: #fff; font-size: 12px; font-weight: 800;
}
.dc-fm-domain {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin: 4px 0 6px;
}

.dc-help-search { padding: 68px 44px 44px; background: var(--bg-soft); }
.dc-help-search-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.dc-help-search-bar {
  display: flex; align-items: center; gap: 10px; margin-top: 28px;
  padding: 6px 6px 6px 22px; background: #fff; border-radius: 999px;
  box-shadow: 0 10px 30px oklch(0.19 0.02 265 / 0.08);
}
.dc-help-search-bar input {
  flex: 1; border: 0; background: none; font-family: inherit; font-size: 17px;
  font-weight: 600; color: var(--ink); padding: 14px 0; min-width: 0;
}
.dc-help-search-bar input:focus { outline: none; }
.dc-help-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.dc-help-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.dc-help-shot {
  margin: 16px 0 0; border-radius: 12px; overflow: hidden;
  border: 1px solid oklch(0.19 0.02 265 / 0.1);
  box-shadow: 0 8px 24px oklch(0.19 0.02 265 / 0.07);
}
.dc-help-shot img { display: block; width: 100%; height: auto; }
.dc-help-video-thumb {
  width: 74px; height: auto; border-radius: 8px; flex: none;
  display: block;
  border: 1px solid oklch(0.19 0.02 265 / 0.1);
}

.dc-help-list { display: flex; flex-direction: column; gap: 12px; }
.dc-help-card {
  display: flex; align-items: stretch; gap: 18px;
  padding: 18px 20px; border-radius: 14px; background: var(--bg-soft);
  text-decoration: none; color: inherit; transition: background .15s ease, transform .15s ease;
}
.dc-help-card:hover { background: oklch(0.55 0.22 265 / 0.07); }
.dc-help-card:hover .dc-help-card-title { color: var(--brand); }
.dc-help-card-thumb {
  width: 96px; height: 64px; object-fit: cover; border-radius: 10px; flex: none;
  border: 1px solid oklch(0.19 0.02 265 / 0.1); background: #fff;
}
.dc-help-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.dc-help-card-title {
  font-size: 17.5px; font-weight: 800; letter-spacing: -.02em; line-height: 1.25;
  transition: color .15s ease;
}
.dc-help-card-excerpt {
  margin: 0; font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--ink-soft);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dc-help-card-meta { font-size: 12px; color: var(--ink-mute); }
.dc-help-card-arrow {
  align-self: center; flex: none; font-size: 20px; font-weight: 700; color: var(--brand);
}

.dc-help-article {
  padding: 56px 44px 80px; max-width: 760px; margin: 0 auto;
}
.dc-help-article-header { margin-bottom: 8px; }
.dc-help-back {
  font-size: 14px; font-weight: 700; color: var(--ink-mute); text-decoration: none;
}
.dc-help-back:hover { color: var(--brand); }
.dc-help-article-meta {
  margin-top: 22px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--brand);
}
.dc-help-article h1 {
  margin: 14px 0 0; font-size: clamp(34px, 4.5vw, 52px); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.08; text-wrap: balance;
}
.dc-help-article-chapo {
  margin: 18px 0 0; font-size: 19px; font-weight: 500; line-height: 1.55; color: var(--ink-soft);
}
.dc-help-article-hero { margin-top: 34px; }
.dc-help-article-body {
  margin-top: 36px; display: grid; gap: 18px;
}
.dc-help-article-body h2 {
  margin: 14px 0 0; font-size: 24px; font-weight: 800; letter-spacing: -.03em; line-height: 1.2;
}
.dc-help-article-body p {
  margin: 0; font-size: 18px; font-weight: 500; line-height: 1.65; color: oklch(0.32 0.03 265);
}
.dc-help-article-body ul,
.dc-help-article-body ol {
  margin: 0; padding-left: 1.35em; font-size: 17.5px; font-weight: 500;
  line-height: 1.6; color: oklch(0.32 0.03 265); display: grid; gap: 8px;
}
.dc-help-article-body .dc-help-shot { margin: 6px 0; }
.dc-help-article-body .dc-help-shot figcaption {
  margin: 10px 12px 0; font-family: var(--mono, 'IBM Plex Mono', monospace);
  font-size: 12px; color: var(--ink-mute);
}
.dc-help-tip {
  margin: 4px 0; padding: 18px 20px; border-radius: 14px;
  background: oklch(0.75 0.17 175 / 0.12); border: 1px solid oklch(0.75 0.17 175 / 0.28);
  font-size: 16.5px; font-weight: 600; line-height: 1.55; color: oklch(0.28 0.04 175);
}
.dc-help-related { margin-top: 52px; }
.dc-help-related h2 {
  margin: 0 0 16px; font-size: 22px; font-weight: 800; letter-spacing: -.025em;
}
.dc-help-related-list { display: flex; flex-direction: column; gap: 10px; }
.dc-help-related .dc-help-card { padding: 16px 18px; }
.dc-help-article-cta {
  margin-top: 48px; padding: 28px 30px; border-radius: 16px; background: var(--bg-soft);
}
.dc-help-article-cta h2 {
  margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.025em;
}
.dc-help-article-cta p {
  margin: 10px 0 0; font-size: 16px; font-weight: 500; color: var(--ink-soft);
}
.dc-help-article-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px;
}

.dc-cat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dc-cat-tile {
  cursor: pointer; text-align: left; padding: 24px; border-radius: 16px;
  border: 2px solid oklch(0.19 0.02 265 / 0.09); background: #fff;
  font-family: inherit; width: 100%; text-decoration: none; color: inherit;
}
.dc-cat-tile.is-on { border-color: var(--brand); background: oklch(0.55 0.22 265 / 0.05); }

.dc-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dc-blog-featured { display: grid; grid-template-columns: 1.25fr 1fr; gap: 30px; align-items: stretch; margin-bottom: 34px; }

.dc-blog-article {
  padding: 56px 44px 80px; max-width: 1120px; margin: 0 auto;
}
.dc-blog-article-header { max-width: 760px; }
.dc-blog-article-header h1 {
  margin: 14px 0 0; font-size: clamp(34px, 4.5vw, 52px); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.08; text-wrap: balance;
}
.dc-blog-article-byline {
  margin-top: 16px; font-size: 12.5px; color: var(--ink-mute);
}
.dc-blog-article-hero { margin-top: 34px; height: 280px; border-radius: 16px; }
.dc-blog-article-layout { margin-top: 40px; }
.dc-blog-article-main { min-width: 0; }
.dc-blog-article-body { margin-top: 0; }
.dc-blog-quote {
  margin: 8px 0; padding: 22px 24px 20px;
  border-left: 3px solid var(--brand);
  background: var(--bg-soft); border-radius: 0 14px 14px 0;
}
.dc-blog-quote p {
  margin: 0; font-size: 19px; font-weight: 650; line-height: 1.45;
  letter-spacing: -.015em; color: oklch(0.28 0.03 265);
}
.dc-blog-quote cite {
  display: block; margin-top: 12px;
  font-family: var(--mono, 'IBM Plex Mono', monospace);
  font-size: 12px; font-style: normal; color: var(--ink-mute);
}
.dc-blog-faq { margin-top: 48px; display: grid; gap: 18px; }
.dc-blog-faq > h2 {
  margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -.03em;
}
.dc-blog-faq-item h3 {
  margin: 0 0 8px; font-size: 17.5px; font-weight: 800; letter-spacing: -.02em;
}
.dc-blog-faq-item p {
  margin: 0; font-size: 17px; font-weight: 500; line-height: 1.6;
  color: oklch(0.32 0.03 265);
}

.dc-shot {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12.5px; color: oklch(0.46 0.04 265);
  background: repeating-linear-gradient(135deg, oklch(0.94 0.02 265) 0 10px, oklch(0.975 0.01 265) 10px 20px);
}

.dc-model-card {
  border-radius: 16px; overflow: hidden; border: 1px solid oklch(0.19 0.02 265 / 0.1);
  background: #fff; box-shadow: 0 8px 28px oklch(0.19 0.02 265 / 0.06);
  display: flex; flex-direction: column;
}
.dc-model-card:hover { box-shadow: 0 16px 40px oklch(0.19 0.02 265 / 0.12); transform: translateY(-3px); }
.dc-model-shot { height: 300px; }
.dc-model-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }

.dc-metier-card {
  display: flex; flex-direction: column; padding: 24px 24px 26px;
  border-radius: 16px; border: 1px solid oklch(0.19 0.02 265 / 0.1);
  background: #fff; box-shadow: 0 8px 28px oklch(0.19 0.02 265 / 0.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.dc-metier-card:hover {
  box-shadow: 0 16px 40px oklch(0.19 0.02 265 / 0.12);
  transform: translateY(-3px);
  border-color: oklch(0.19 0.02 265 / 0.18);
}
.dc-metier-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

.dc-pagination {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 12px 16px; margin: 28px 0 8px; padding-top: 8px;
}
.dc-pagination-pages { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.dc-pagination-btn,
.dc-pagination-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 16px; border-radius: 999px;
  border: 1.5px solid oklch(0.19 0.02 265 / 0.13);
  background: #fff; color: var(--ink-2); font-size: 14.5px; font-weight: 700;
  text-decoration: none; font-family: inherit;
}
.dc-pagination-num { min-width: 40px; padding: 0 12px; }
.dc-pagination-btn:hover,
.dc-pagination-num:hover { border-color: var(--ink); color: var(--ink); }
.dc-pagination-num.is-on {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.dc-pagination-btn.is-disabled {
  opacity: .4; pointer-events: none; cursor: default;
}
.dc-pagination-ellipsis {
  padding: 0 4px; font-weight: 700; color: var(--ink-mute);
}

.dc-contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.dc-story-layout { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 56px; align-items: start; }
.dc-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 32px 0; border-top: 1px solid oklch(0.19 0.02 265 / 0.1);
  border-bottom: 1px solid oklch(0.19 0.02 265 / 0.1);
}
.dc-sujet-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.dc-sujet-pill {
  cursor: pointer; padding: 10px 18px; border-radius: 999px; border: 1.5px solid oklch(0.19 0.02 265 / 0.13);
  background: #fff; font-family: inherit; font-size: 14.5px; font-weight: 700; color: var(--ink-2);
}
.dc-sujet-pill.is-on { border-color: var(--brand); background: oklch(0.55 0.22 265 / 0.08); color: var(--brand); }

/* App components */
.dc-user-chip { display: flex; align-items: center; gap: 10px; }
.dc-user-chip-avatar {
  width: 36px; height: 36px; border-radius: 999px; background: var(--orange-bright); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800;
}
.dc-user-chip-name { font-size: 14.5px; font-weight: 700; color: var(--ink); }

.dc-shell-grid { display: grid; gap: 18px; align-items: start; }
.dc-shell-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dc-shell-grid-2wide { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
.dc-shell-grid-rdv { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
.dc-shell-grid-boutique { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
.dc-shell-grid-billing { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.dc-shell-grid-stats { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.dc-checklist-item {
  display: flex; align-items: start; gap: 12px; padding: 12px 14px; border-radius: 12px;
  border: 1px solid oklch(0.19 0.02 265 / 0.08);
}
.dc-checklist-dot { margin-top: 2px; width: 18px; height: 18px; border-radius: 999px; flex: none; }

.dc-bar-chart { display: flex; align-items: end; gap: 12px; height: 150px; }
.dc-bar-chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.dc-bar-chart-bar { width: 100%; border-radius: 7px 7px 0 0; min-height: 4px; }
.dc-bar-chart-stacked { gap: 8px; }
.dc-bar-stack { width: 100%; display: flex; flex-direction: column; justify-content: end; gap: 2px; }
.dc-bar-stack-contact { width: 100%; border-radius: 4px 4px 0 0; background: var(--orange-bright); min-height: 2px; }
.dc-bar-stack-visit { width: 100%; border-radius: 0 0 4px 4px; background: oklch(0.55 0.22 265 / 0.75); min-height: 2px; }

.dc-table {
  border-radius: 16px; background: #fff; border: 1px solid oklch(0.19 0.02 265 / 0.07); overflow: hidden;
}
.dc-table-filters {
  display: flex; align-items: center; gap: 9px; padding: 18px 24px;
  border-bottom: 1px solid oklch(0.19 0.02 265 / 0.07); flex-wrap: wrap;
}
.dc-table-head {
  display: grid; gap: 18px; padding: 14px 24px; background: oklch(0.985 0.004 265);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute);
}
.dc-table-row {
  display: grid; gap: 18px; align-items: center; padding: 16px 24px;
  border-top: 1px solid oklch(0.19 0.02 265 / 0.06);
}
.dc-table-cols-demandes { grid-template-columns: 1fr 1.4fr 0.8fr auto auto; }
.dc-table-cols-orders { grid-template-columns: 100px 1fr 1.2fr 110px auto auto; }
.dc-table-cols-invoices { grid-template-columns: 130px 1fr 120px auto auto; }
.dc-table-row-leads { grid-template-columns: 1.1fr 1.5fr auto auto; padding: 14px 0; border-top-color: oklch(0.19 0.02 265 / 0.07); }

.dc-status {
  padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; white-space: nowrap;
}
.dc-status-new { background: oklch(0.72 0.19 45 / 0.16); color: oklch(0.5 0.16 45); }
.dc-status-open { background: oklch(0.55 0.22 265 / 0.12); color: oklch(0.45 0.2 265); }
.dc-status-done { background: oklch(0.7 0.19 145 / 0.16); color: oklch(0.42 0.14 145); }

.dc-page-row {
  display: flex; align-items: center; gap: 20px; padding: 18px 22px; border-radius: 14px;
  background: #fff; border: 1px solid oklch(0.19 0.02 265 / 0.07); flex-wrap: wrap;
}
.dc-page-thumb {
  width: 96px; height: 66px; border-radius: 8px; flex: none;
  background: repeating-linear-gradient(135deg, oklch(0.93 0.02 265) 0 7px, oklch(0.97 0.01 265) 7px 14px);
}

.dc-week-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: oklch(0.19 0.02 265 / 0.07); }
.dc-week-day { background: #fff; padding: 16px 12px; min-height: 260px; }
.dc-week-day-head { text-align: center; padding-bottom: 12px; border-bottom: 1px solid oklch(0.19 0.02 265 / 0.07); }
.dc-creneau { padding: 10px 11px; border-radius: 10px; border-left: 3px solid; }

.dc-rdv-request {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 16px 24px;
  border-top: 1px solid oklch(0.19 0.02 265 / 0.06);
}

.dc-toggle {
  width: 42px; height: 24px; flex: none; border-radius: 999px; padding: 3px; display: flex;
  justify-content: flex-start; background: oklch(0.88 0.01 265); transition: .15s ease;
}
.dc-toggle span { width: 18px; height: 18px; border-radius: 999px; background: #fff; }
.dc-toggle.is-on { justify-content: flex-end; background: var(--green-bright); }
.dc-toggle-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 0; border-top: 1px solid oklch(0.19 0.02 265 / 0.07);
}
.dc-toggle-row:first-of-type { border-top: 0; }

.dc-card-dark { background: var(--ink); color: #fff; }
.dc-card-brand { background: var(--brand); color: #fff; }

.dc-product-row {
  display: flex; align-items: center; gap: 18px; padding: 16px 24px;
  border-top: 1px solid oklch(0.19 0.02 265 / 0.06); flex-wrap: wrap;
}
.dc-product-thumb {
  width: 62px; height: 52px; border-radius: 9px; flex: none;
  background: repeating-linear-gradient(135deg, oklch(0.93 0.02 265) 0 7px, oklch(0.97 0.01 265) 7px 14px);
}
.dc-payment-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 0; border-top: 1px solid oklch(0.19 0.02 265 / 0.07);
}
.dc-payment-row:first-of-type { border-top: 0; }

.dc-period-pills {
  display: flex; align-items: center; gap: 8px; padding: 4px; border-radius: 999px;
  background: oklch(0.19 0.02 265 / 0.06);
}
.dc-period-pill {
  padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 700; white-space: nowrap;
  color: oklch(0.4 0.03 265);
}
.dc-period-pill.is-on { background: var(--ink); color: #fff; }
.dc-period-pill:hover { color: var(--ink); }

.dc-progress { margin-top: 7px; height: 8px; border-radius: 999px; background: oklch(0.94 0.008 265); overflow: hidden; }
.dc-progress-bar { height: 100%; border-radius: 999px; }
.dc-stats-list-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 0; border-top: 1px solid oklch(0.19 0.02 265 / 0.06);
}
.dc-stats-list-row:first-child { border-top: 0; }

.dc-insight-box {
  padding: 30px 32px; border-radius: 16px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.dc-reglages-layout {
  padding: 26px 34px 60px; display: grid; grid-template-columns: 220px minmax(420px, 1fr);
  gap: 30px; align-items: start;
}
.dc-reglages-nav { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 3px; }
.dc-reglages-nav-link {
  padding: 11px 14px; border-radius: 10px; font-size: 15px; font-weight: 700; color: oklch(0.35 0.03 265);
}
.dc-reglages-nav-link:hover { background: var(--bg-soft); color: var(--brand); }
.dc-reglages-nav-link.is-on { background: var(--ink); color: #fff; }

.dc-color-swatch {
  width: 46px; height: 46px; border-radius: 13px; border: 3px solid transparent; cursor: pointer; padding: 0;
}
.dc-typo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.dc-typo-btn {
  text-align: left; padding: 16px 18px; border-radius: 12px; border: 1.5px solid oklch(0.19 0.02 265 / 0.1);
  background: #fff; cursor: pointer; font-family: var(--font);
}
.dc-typo-btn.is-on { border-color: var(--brand); background: oklch(0.55 0.22 265 / 0.05); }
.dc-logo-preview {
  width: 130px; height: 90px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11.5px; color: oklch(0.5 0.04 265);
  background: repeating-linear-gradient(135deg, oklch(0.93 0.02 265) 0 8px, oklch(0.97 0.01 265) 8px 16px);
}
.dc-logo-drop {
  flex: 1; min-width: 220px; padding: 26px; border: 1.5px dashed oklch(0.19 0.02 265 / 0.2);
  border-radius: 12px; text-align: center; font-family: var(--mono); font-size: 12.5px; color: var(--ink-mute);
}
.dc-settings-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 16px 0; border-top: 1px solid oklch(0.19 0.02 265 / 0.07);
}
.dc-settings-row:first-of-type { border-top: 0; }
.dc-access-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 15px 0;
  border-top: 1px solid oklch(0.19 0.02 265 / 0.07);
}
.dc-access-row:first-of-type { border-top: 0; }
.dc-access-avatar {
  width: 40px; height: 40px; border-radius: 999px; flex: none; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800;
}

.dc-kv-row {
  display: flex; justify-content: space-between; gap: 14px; padding: 11px 0;
  border-top: 1px solid oklch(0.19 0.02 265 / 0.07); font-size: 15px;
}
.dc-kv-row:first-of-type { border-top: 0; }
.dc-btn-danger {
  border: 1.5px solid oklch(0.6 0.2 25 / 0.3); background: #fff; color: oklch(0.55 0.2 25);
  padding: 12px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 700; cursor: pointer;
}
.dc-btn-danger:hover { background: oklch(0.6 0.2 25 / 0.07); }

/* Editor */
.dc-editor-shell {
  font-family: var(--font); color: var(--ink); background: oklch(0.94 0.008 265);
  height: 100vh; display: flex; flex-direction: column; overflow: hidden;
}
.dc-editor-top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 10px 18px; background: var(--ink); color: #fff; flex: none;
}
.dc-editor-back {
  display: flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 9px;
  background: rgba(255,255,255,.09); color: #fff; font-size: 14px; font-weight: 700; white-space: nowrap;
}
.dc-editor-back:hover { background: rgba(255,255,255,.18); color: #fff; }
.dc-editor-label { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.dc-editor-page-select {
  padding: 8px 14px; border-radius: 9px; background: rgba(255,255,255,.09);
  font-size: 14.5px; font-weight: 700; white-space: nowrap;
}
.dc-editor-devices {
  display: flex; align-items: center; gap: 6px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.09);
}
.dc-editor-devices button {
  cursor: pointer; padding: 7px 18px; border: 0; border-radius: 999px; background: transparent;
  color: rgba(255,255,255,.7); font-family: var(--font); font-size: 13.5px; font-weight: 700;
}
.dc-editor-devices button.is-on { background: #fff; color: var(--ink); }
.dc-editor-save { font-size: 11.5px; color: rgba(255,255,255,.5); white-space: nowrap; }
.dc-editor-preview {
  padding: 10px 18px; border: 1.5px solid rgba(255,255,255,.3); background: none; color: #fff; font-size: 14px;
}
.dc-editor-preview:hover { border-color: #fff; color: #fff; background: transparent; }
.dc-editor-publish { padding: 10px 22px; font-size: 14.5px; font-weight: 800; }

.dc-editor-grid {
  flex: 1; display: grid; grid-template-columns: 268px minmax(600px, 1fr) 300px;
  min-height: 0; overflow-x: auto;
}
.dc-editor-panel {
  background: #fff; display: flex; flex-direction: column; min-height: 0;
}
.dc-editor-panel-left { border-right: 1px solid oklch(0.19 0.02 265 / 0.09); }
.dc-editor-panel-right { border-left: 1px solid oklch(0.19 0.02 265 / 0.09); overflow-y: auto; padding: 18px; }
.dc-editor-tabs { display: flex; gap: 4px; padding: 12px; border-bottom: 1px solid oklch(0.19 0.02 265 / 0.07); }
.dc-editor-tabs button {
  cursor: pointer; flex: 1; padding: 9px 0; border: 0; border-radius: 9px;
  background: var(--bg-soft); color: oklch(0.4 0.03 265); font-family: var(--font); font-size: 14px; font-weight: 700;
}
.dc-editor-tabs button.is-on { background: var(--ink); color: #fff; }
.dc-editor-panel-scroll { flex: 1; overflow-y: auto; padding: 16px; }
.dc-editor-section-label { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-mute); }
.dc-editor-blocks { display: grid; gap: 8px; margin-top: 14px; }
.dc-editor-block-item {
  display: flex; align-items: center; gap: 11px; padding: 11px 13px;
  border: 1px solid oklch(0.19 0.02 265 / 0.1); border-radius: 11px; cursor: grab; background: #fff;
}
.dc-editor-block-item:hover { border-color: var(--brand); background: oklch(0.55 0.22 265 / 0.04); }
.dc-editor-block-dot { width: 22px; height: 22px; border-radius: 7px; flex: none; }

.dc-editor-canvas-wrap { overflow-y: auto; padding: 28px; display: flex; justify-content: center; }
.dc-editor-canvas {
  width: 100%; max-width: 820px; background: #fff; border-radius: 14px;
  box-shadow: 0 18px 50px oklch(0.19 0.02 265 / 0.12); overflow: hidden; height: fit-content;
}
.dc-editor-canvas-header {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 20px;
  border-bottom: 1px solid oklch(0.19 0.02 265 / 0.07);
}
.dc-editor-brand-dot { width: 20px; height: 20px; border-radius: 6px; }
.dc-editor-nav-dot { height: 6px; width: 32px; border-radius: 3px; background: oklch(0.9 0.01 265); }
.dc-editor-page-block {
  position: relative; cursor: pointer; padding: 26px 24px; border: 2px solid transparent; margin: 0;
}
.dc-editor-page-block.is-selected { border-color: var(--brand); margin: 10px 12px; }
.dc-editor-block-toolbar {
  position: absolute; top: -12px; left: 14px; display: flex; align-items: center; gap: 8px;
  padding: 3px 10px; border-radius: 999px; background: var(--brand); color: #fff;
  font-family: var(--mono); font-size: 10.5px;
}
.dc-editor-hero-shot {
  height: 130px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11.5px; color: oklch(0.5 0.04 265);
  background: repeating-linear-gradient(135deg, oklch(0.93 0.02 265) 0 9px, oklch(0.97 0.01 265) 9px 18px);
}
.dc-editor-presta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.dc-editor-presta-card { padding: 16px; border-radius: 10px; background: var(--bg-soft); }
.dc-editor-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.dc-editor-gallery-item {
  height: 84px; border-radius: 9px;
  background: repeating-linear-gradient(135deg, oklch(0.92 0.02 265) 0 8px, oklch(0.965 0.01 265) 8px 16px);
}
.dc-editor-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
.dc-editor-form-line { height: 34px; border-radius: 9px; border: 1px solid oklch(0.19 0.02 265 / 0.12); }
.dc-editor-form-submit { border: 0; }
.dc-editor-drop-zone {
  margin: 12px 16px 20px; padding: 18px; border: 2px dashed oklch(0.19 0.02 265 / 0.16);
  border-radius: 12px; text-align: center; font-family: var(--mono); font-size: 12px; color: var(--ink-mute);
}
.dc-editor-field {
  margin-top: 8px; padding: 12px 14px; border: 1.5px solid oklch(0.19 0.02 265 / 0.12);
  border-radius: 11px; font-size: 14.5px; font-weight: 600; color: oklch(0.25 0.03 265);
}
.dc-editor-field-area { font-size: 14px; font-weight: 500; line-height: 1.5; color: oklch(0.35 0.03 265); }
.dc-editor-choices { display: flex; gap: 6px; margin-top: 8px; }
.dc-editor-choices button {
  cursor: pointer; flex: 1; padding: 9px 0; border-radius: 9px; border: 1.5px solid oklch(0.19 0.02 265 / 0.12);
  background: #fff; font-family: var(--font); font-size: 13px; font-weight: 700; color: oklch(0.3 0.03 265);
}
.dc-editor-choices button.is-on { border-color: var(--brand); background: var(--brand); color: #fff; }
.dc-editor-toggle-btn {
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; margin-top: 8px; padding: 11px 14px; border: 1.5px solid oklch(0.19 0.02 265 / 0.12);
  border-radius: 11px; background: #fff; font-family: var(--font); font-size: 14px; font-weight: 600;
  color: oklch(0.3 0.03 265);
}
.dc-editor-block-actions {
  padding-top: 16px; border-top: 1px solid oklch(0.19 0.02 265 / 0.08);
  display: flex; flex-direction: column; gap: 8px;
}

@media (max-width: 980px) {
  .dc-header { padding: 14px 18px; }
  .dc-nav, .dc-header-actions { display: none; }
  .dc-nav-toggle { display: flex; }
  .dc-nav-mobile:not([hidden]) { display: flex; }
  .dc-hero { padding: 28px 18px 0; }
  .dc-mockups { display: none; }
  .dc-stats { padding: 24px 18px; }
  .dc-stats-inner, .dc-cards-3, .dc-modules, .dc-module-shots, .dc-quotes, .dc-inclus,
  .dc-price-box, .dc-editor-band, .dc-register, .dc-legal-grid, .dc-trade-grid,
  .dc-toc-layout, .dc-feature-group-body, .dc-help-layout, .dc-cat-tiles, .dc-blog-grid,
  .dc-blog-featured, .dc-contact-grid, .dc-story-layout, .dc-stats-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .dc-module-shots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-help-search { padding: 40px 18px 32px; }
  .dc-help-sidebar { position: static; }
  .dc-help-card { gap: 12px; padding: 14px 14px; }
  .dc-help-card-thumb { width: 72px; height: 52px; }
  .dc-help-card-title { font-size: 16px; }
  .dc-help-card-excerpt { -webkit-line-clamp: 3; }
  .dc-help-card-arrow { display: none; }
  .dc-help-article { padding: 36px 18px 64px; }
  .dc-blog-article { padding: 36px 18px 64px; }
  .dc-help-article-body h2,
  .dc-blog-faq > h2 { font-size: 21px; }
  .dc-help-article-body p,
  .dc-help-article-body ul,
  .dc-help-article-body ol,
  .dc-blog-faq-item p { font-size: 16.5px; }
  .dc-blog-quote p { font-size: 17.5px; }
  .dc-blog-article-hero { height: 200px; }
  .dc-toc-nav {
    position: sticky; top: 62px; z-index: 20;
    margin: 0 -18px 18px; padding: 12px 18px 14px;
    background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line); gap: 0;
  }
  .dc-toc-label { margin: 0 0 10px; padding: 0; }
  .dc-toc-links {
    flex-direction: row; gap: 8px; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-bottom: 2px;
  }
  .dc-toc-links::-webkit-scrollbar { display: none; }
  .dc-toc-nav a:not(.dc-btn) {
    flex: none; padding: 9px 14px; border-radius: 999px;
    border: 1.5px solid oklch(0.19 0.02 265 / 0.12); background: #fff;
    font-size: 14px; white-space: nowrap;
  }
  .dc-toc-nav a:not(.dc-btn).is-active {
    box-shadow: none; background: var(--brand); border-color: var(--brand); color: #fff;
  }
  .dc-toc-cta { display: none; }
  .dc-feature-group.is-flip .dc-feature-visual { order: 0; }
  .dc-feature-visual,
  .dc-feature-group.is-flip .dc-feature-visual {
    border-right: 0; border-left: 0;
    border-bottom: 1px solid oklch(0.19 0.02 265 / 0.07);
  }
  .dc-feature-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-feature-item { border-bottom: 1px solid oklch(0.19 0.02 265 / 0.06); }
  .dc-feature-item:nth-last-child(-n+2) { border-bottom: 0; }
  .dc-fm-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-fm-editor { grid-template-columns: minmax(0, 1fr); }
  .dc-fm-sidebar { border-right: 0; border-bottom: 1px solid oklch(0.19 0.02 265 / 0.08); }
  .dc-fm-row { grid-template-columns: 1fr auto; }
  .dc-fm-row .dc-mono { display: none; }
  .dc-section, .dc-section-sm, .dc-cta-band, .dc-footer, .dc-auth-wrap, .dc-legal,
  .dc-page > section, section.dc-pad {
    padding-left: 18px !important; padding-right: 18px !important;
  }
  .dc-editor-band, .dc-price-left, .dc-price-right, .dc-cta-band,
  .dc-register-main, .dc-register-aside { padding: 28px 22px; }
  .dc-register-aside { border-left: 0; border-top: 1px solid var(--line); }
  .dc-hero-cta .dc-btn,
  .dc-cta-band .dc-btn { width: 100%; max-width: 100%; }
  .dc-hero-cta { width: 100%; }
  .dc-faq-btn { font-size: 17px; gap: 16px; padding: 18px 18px; }
  .dc-faq-a { padding-right: 18px; }
  .dc-contact-canaux { grid-template-columns: minmax(0, 1fr) !important; }
  .dc-legal, .dc-legal-grid, .dc-legal p, .dc-legal li {
    overflow-wrap: anywhere; word-break: break-word;
  }

  /* App shell — drawer mobile */
  .dc-shell {
    display: block !important;
    min-width: 0;
    width: 100%;
  }
  .dc-shell > div { min-width: 0; width: 100%; }
  .dc-shell-menu-btn {
    display: flex; align-items: center; justify-content: center;
    position: fixed; top: 12px; left: 12px; z-index: 60;
    width: 44px; height: 44px; border: 0; border-radius: 12px;
    background: #fff; box-shadow: 0 4px 18px oklch(0.19 0.02 265 / 0.14);
    cursor: pointer; flex-direction: column; gap: 5px; padding: 0;
  }
  .dc-shell-menu-btn span {
    display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink);
  }
  .dc-shell-backdrop {
    display: block; position: fixed; inset: 0; z-index: 40;
    background: oklch(0.19 0.02 265 / 0.45); opacity: 0; pointer-events: none;
    transition: opacity .2s ease;
  }
  .dc-shell.is-nav-open .dc-shell-backdrop:not([hidden]) { opacity: 1; pointer-events: auto; }
  .dc-shell-aside {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 50;
    width: min(280px, 88vw); height: 100vh; height: 100dvh;
    transform: translateX(-105%); transition: transform .22s ease;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .dc-shell.is-nav-open .dc-shell-aside { transform: translateX(0); }
  .dc-shell-top { padding: 16px 18px 16px 66px; }
  .dc-shell-content { padding-left: 18px; padding-right: 18px; }
  .dc-legal-nav { position: static; }
  .dc-shell-grid-2, .dc-shell-grid-2wide, .dc-shell-grid-rdv, .dc-shell-grid-boutique,
  .dc-shell-grid-billing, .dc-shell-grid-stats, .dc-reglages-layout, .dc-week-grid,
  .dc-table-cols-demandes, .dc-table-cols-orders, .dc-table-cols-invoices,
  .dc-table-row-leads, .dc-editor-grid, .dc-editor-presta-grid, .dc-editor-gallery,
  .dc-editor-contact-grid { grid-template-columns: minmax(0, 1fr); }
  .dc-table-head { display: none; }
  .dc-table-row { grid-template-columns: 1fr !important; gap: 8px; }
  .dc-week-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-reglages-nav { position: static; }
  .dc-editor-grid { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto 1fr auto; }
  .dc-editor-canvas-wrap { padding: 16px; }
  .dc-insight-box { padding: 24px 20px; }
  .dc-page-row { gap: 12px; }
  .dc-kpi-grid { grid-template-columns: minmax(0, 1fr); }
  .dc-shell-grid-billing, .dc-shell-grid-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 420px) {
  .dc-module-shots { grid-template-columns: minmax(0, 1fr); }
  .dc-feature-items { grid-template-columns: minmax(0, 1fr); }
  .dc-feature-item:nth-last-child(-n+2) { border-bottom: 1px solid oklch(0.19 0.02 265 / 0.06); }
  .dc-feature-item:last-child { border-bottom: 0; }
  .dc-btn-lg, .dc-btn-xl { padding-left: 22px; padding-right: 22px; font-size: 16px; }
  .dc-hero h1 { font-size: clamp(34px, 9vw, 40px); }
}
