/* =====================================================
   Oomnius — Shared stylesheet
   ===================================================== */
:root {
  --ink:        oklch(0.18 0.012 250);
  --ink-2:      oklch(0.32 0.014 250);
  --ink-3:      oklch(0.52 0.012 250);
  --ink-4:      oklch(0.53 0.008 250);
  --line:       oklch(0.92 0.006 250);
  --line-2:     oklch(0.96 0.004 250);
  --paper:      oklch(0.995 0.003 240);
  --paper-2:    oklch(0.975 0.006 240);
  --paper-warm: oklch(0.97 0.014 240);

  /* Modern professional blue */
  --blue:        oklch(0.52 0.18 250);
  --blue-deep:   oklch(0.42 0.20 252);
  --blue-soft:   oklch(0.95 0.04 250);
  --blue-tint:   oklch(0.97 0.025 250);
  --warm:        oklch(0.60 0.18 45);
  --good:        oklch(0.62 0.14 155);
  --good-soft:   oklch(0.95 0.05 155);

  --shadow-sm: 0 1px 2px rgba(15,25,55,.05);
  --shadow:    0 4px 16px -4px rgba(15,25,55,.10), 0 2px 4px rgba(15,25,55,.04);
  --shadow-lg: 0 30px 80px -30px rgba(15,25,55,.30), 0 10px 30px -15px rgba(15,25,55,.15);

  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  /* === Legacy token aliases for older pages === */
  --color-primary:        var(--blue);
  --color-primary-light:  var(--blue-soft);
  --color-primary-dark:   var(--blue-deep);
  --color-accent:         var(--warm);
  --color-white:          #ffffff;
  --color-black:          var(--ink);
  --color-text:           var(--ink);
  --color-text-light:     var(--ink-2);
  --color-text-muted:     var(--ink-3);
  --color-border:         var(--line);
  --color-border-light:   var(--line-2);
  --color-bg:             var(--paper);
  --color-bg-light:       var(--paper-2);
  --color-bg-warm:        var(--blue-tint);
  --color-success:        var(--good);

  --radius-xl:   18px;
  --radius-2xl:  24px;
  --radius-full: 999px;

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* === Legacy headings used by older pages === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(36px, 4.8vw, 56px); letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.03em; line-height: 1.1; }
h3 { font-size: clamp(20px, 2.2vw, 26px); letter-spacing: -0.02em; }
h4 { font-size: 1.0625rem; letter-spacing: -0.015em; }
h5 { font-size: 0.875rem; letter-spacing: 0; }
h6 { font-size: 0.8125rem; letter-spacing: 0; }

/* Accent in headings — color only, no font switch */
h1 em, h2 em, h3 em, .page-title em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--blue-deep);
}

/* Page-title class used on sub-page page-hero h1 */
.page-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 920px;
  color: var(--ink);
}

/* === Legacy section + container === */
.section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }

/* === Section header (used by formations etc.) === */
.section-header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-header .section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--blue-soft); color: var(--blue-deep);
  font-size: 12.5px; font-weight: 500;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--ink-2); line-height: 1.55; }

/* === Icon circle (used by formations) === */
.icon-circle {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.formation-section-title {
  display: flex; align-items: center; gap: 18px;
  margin: 3rem 0 1.5rem;
}

/* === Floating CTA (legacy) === */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: white;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 60;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .15s;
}
.floating-cta.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta:hover { background: var(--blue-deep); }
.floating-cta.show:hover { transform: translateY(-2px) scale(1); }

/* === Back to top === */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: white; color: var(--ink);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  z-index: 59;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .15s, color .15s;
  cursor: pointer;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--ink); color: white; }
.back-to-top.show:hover { transform: translateY(-2px); }
.back-to-top.has-cta { bottom: 92px; }
@media (max-width: 600px) {
  .back-to-top { bottom: 16px; right: 16px; }
  .back-to-top.has-cta { bottom: 80px; }
}

/* === Shared CTA banner === */
.svc-cta {
  padding: 100px 0;
  background: radial-gradient(ellipse at 30% 0%, oklch(0.42 0.20 252), transparent 60%), var(--ink);
  color: white;
}
.svc-cta .inner { max-width: 820px; }
.svc-cta h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
  color: white;
}
.svc-cta h2 em { font-family: inherit; font-style: normal; font-weight: inherit; color: oklch(0.85 0.12 240); }
.svc-cta p { margin-top: 18px; font-size: 17.5px; color: oklch(0.85 0.012 240); max-width: 620px; line-height: 1.55; }
.svc-cta .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.svc-cta .btn-primary { background: white; color: var(--ink); }
.svc-cta .btn-primary:hover { background: var(--blue); color: white; }
.svc-cta .btn-ghost { color: white; border-color: oklch(0.45 0.014 250); background: transparent; }
.svc-cta .btn-ghost:hover { background: oklch(0.28 0.014 250); }

/* === Force AOS animations to be visible (AOS often fails to trigger when content is below the fold) === */
[data-aos] { opacity: 1 !important; transform: none !important; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.55;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 28px; }

/* Accessible heading kept out of view for screen readers / SEO outline */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* === Accessibility: skip link, focus, reduced motion === */
/* Skip link — visible uniquement au focus clavier [O-164] [RGAA 12.7] */
.skip-link {
  position: absolute;
  left: 12px; top: -56px;
  z-index: 200;
  background: var(--blue-deep); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
#contenu { outline: none; }

/* Focus visible global [WCAG 2.4.7] [O-166] */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Respect de prefers-reduced-motion [WCAG 2.3.3] */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto !important; }
}

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.99 0.004 240 / 0.55);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid oklch(0.88 0.01 240 / 0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; font-size: 18px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: grid; place-items: center; color: white; font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 14px -6px var(--blue);
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px;
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--paper-2); color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  padding: 10px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 6px 14px -8px var(--blue);
}
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 10px 20px -8px var(--blue); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: transform .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: white;
  box-shadow: 0 8px 20px -10px var(--blue);
}
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 12px 24px -10px var(--blue); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: white; }
.btn-ghost:hover { background: var(--paper-2); }
.btn-warm { background: var(--warm); color: white; }
.btn-warm:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* === Eyebrow / labels === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line); border-radius: 999px;
  background: white;
  font-size: 12.5px; color: var(--ink-2); font-weight: 500;
  margin-top: 20px;
}
.eyebrow .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue); display: grid; place-items: center;
  color: white; font-size: 10px; font-weight: 700;
}
.eyebrow b { color: var(--ink); font-weight: 600; }

/* === Headings === */
.h1, h1.page-title {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(38px, 5.2vw, 60px);
  letter-spacing: -0.035em; line-height: 1.04;
}
.h1 .acc, h1 .acc { color: var(--blue-deep); }

/* === Section === */
.section { padding: 100px 0; }
.section-bg { background: var(--paper-2); }
.section-blue { background: var(--blue-tint); }
.section-warm { background: var(--paper-warm); }
.section-dark { background: var(--ink); color: var(--paper); }

.section-head { max-width: 720px; margin-bottom: 48px; }
/* Canonical "eyebrow" label shown above section <h2> — identical on every page */
.section-head .label,
.manifesto .label,
.modules-head .label,
.process-head .label,
.editions .ed-head .label,
.video-intro .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-family: var(--mono); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue); margin-bottom: 16px;
}
.section-head .label::before,
.manifesto .label::before,
.modules-head .label::before,
.process-head .label::before,
.editions .ed-head .label::before,
.video-intro .label::before { content: ''; width: 18px; height: 1px; background: currentColor; flex-shrink: 0; }
/* Variante sur fond sombre (section Éditions) */
.editions .ed-head .label { color: oklch(0.78 0.14 240); }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 14px;
}
.section-head h2 .acc { color: var(--blue-deep); }
.section-head p { font-size: 17px; color: var(--ink-2); line-height: 1.55; max-width: 600px; }
.section-dark .section-head .label { color: oklch(0.78 0.14 240); }
.section-dark .section-head h2 .acc { color: oklch(0.78 0.14 240); }
.section-dark .section-head p { color: oklch(0.78 0.012 240); }

/* === Reveal === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* === Footer === */
.footer { background: var(--ink); color: white; padding: 70px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer .brand { color: white; }
.footer .brand-mark { background: white; color: var(--blue-deep); }
.footer p { margin-top: 14px; font-size: 14px; color: oklch(0.7 0.012 240); max-width: 380px; }
.footer h2 {
  font-size: 12px; font-family: var(--mono);
  font-weight: 600; line-height: 1.15;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: oklch(0.7 0.008 240); margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: oklch(0.85 0.008 240); font-size: 14px; transition: color .15s; }
.footer ul a:hover { color: white; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid oklch(0.32 0.014 240);
  display: flex; justify-content: space-between; font-size: 13px;
  color: oklch(0.65 0.008 240); flex-wrap: wrap; gap: 14px;
}

/* === Page hero (for sub-pages) === */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--blue-tint), var(--paper));
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { background: white; }
.page-hero p.lede {
  margin-top: 18px;
  font-size: 18px; color: var(--ink-2);
  max-width: 640px; line-height: 1.55;
}


/* =====================================================
   Page-specific styles (relocated from inline <style>)
   ===================================================== */

/* ===== accessibilite.html ===== */
.legal-container { max-width: 800px; margin: 0 auto; }
.legal-header {
      margin-bottom: 3rem; padding-bottom: 2rem;
      border-bottom: 2px solid var(--color-border);
    }
.legal-header h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--color-text); }
.legal-header .update-date { color: var(--color-text-light); font-size: 0.95rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h3 {
      font-size: 1.25rem; font-weight: 600; color: var(--color-primary);
      margin-bottom: 1.25rem; padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--color-border);
    }
.legal-section p, .legal-section li {
      font-size: 0.95rem; line-height: 1.7;
      color: var(--color-text-light); margin-bottom: 1rem;
    }
.legal-section ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-section ul li { margin-bottom: 0.5rem; padding-left: 0.5rem; }
.legal-section a { color: var(--color-primary); text-decoration: underline; }
.legal-section dl { display: grid; grid-template-columns: 220px 1fr; gap: 0.5rem 1.5rem; margin-bottom: 1rem; }
.legal-section dt { font-weight: 600; color: var(--color-text); font-size: 0.95rem; }
.legal-section dd { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7; }
.conformity-badge {
      display: inline-block; padding: 0.4rem 1rem; border-radius: 999px;
      font-size: 0.9rem; font-weight: 600;
      background: var(--color-bg-warm); color: var(--blue-deep);
    }
.back-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--color-primary); text-decoration: none; font-weight: 500;
      margin-bottom: 2rem; transition: all var(--transition);
    }
.back-link:hover { color: var(--color-primary-dark); transform: translateX(-4px); }
@media (max-width: 768px) {
      .legal-header h2 { font-size: 1.5rem; }
      .legal-section dl { grid-template-columns: 1fr; gap: 0.2rem; }
      .legal-section dt { margin-top: 0.75rem; }
    }

/* ===== blog.html ===== */
.blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 2rem;
    }
.blog-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: all var(--transition);
      display: flex;
      flex-direction: column;
    }
.blog-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--color-primary-light);
    }
.blog-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      cursor: pointer;
      transition: opacity var(--transition), transform var(--transition);
    }
.blog-card-img:hover {
      opacity: 0.88;
    }
.blog-card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
.blog-card-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: var(--color-text-muted);
      margin-bottom: 0.75rem;
    }
.blog-card-tag {
      display: inline-flex;
      align-items: center;
      padding: 0.2rem 0.6rem;
      background: var(--color-bg-warm);
      color: var(--color-primary);
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 50px;
    }
.blog-card h2 {
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }
.blog-card p {
      font-size: 0.9rem;
      color: var(--color-text-light);
      line-height: 1.6;
      margin-bottom: 1.25rem;
      flex: 1;
    }
.blog-card .read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-primary);
      transition: all var(--transition);
    }
.blog-card .read-more:hover {
      color: var(--color-primary-light);
      gap: 0.6rem;
    }
.blog-coming-soon {
      text-align: center;
      padding: 4rem 2rem;
      background: var(--color-white);
      border: 2px dashed var(--color-border);
      border-radius: var(--radius-2xl);
    }
.blog-coming-soon svg {
      color: var(--color-primary-light);
      margin-bottom: 1.5rem;
    }
.blog-coming-soon h3 {
      margin-bottom: 0.75rem;
    }
.blog-coming-soon p {
      color: var(--color-text-light);
      max-width: 450px;
      margin: 0 auto;
    }

/* ===== confidentialite.html ===== */
.legal-section h4 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--color-text);
      margin: 1.5rem 0 0.75rem;
    }
.legal-section table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }
.legal-section th, .legal-section td {
      text-align: left;
      padding: 0.75rem 1rem;
      border: 1px solid var(--color-border);
      color: var(--color-text-light);
      line-height: 1.5;
    }
.legal-section th {
      background: var(--color-bg-light);
      color: var(--color-text);
      font-weight: 600;
    }
@media (max-width: 768px) {
      .legal-header h2 { font-size: 1.5rem; }
      .legal-section table, .legal-section thead, .legal-section tbody,
      .legal-section th, .legal-section td, .legal-section tr { display: block; }
      .legal-section thead { display: none; }
      .legal-section td { border: none; border-bottom: 1px solid var(--color-border); padding: 0.5rem 0; }
      .legal-section tr { border: 1px solid var(--color-border); border-radius: 8px; padding: 0.5rem 1rem; margin-bottom: 1rem; }
    }

/* ===== contact.html ===== */
.booking-full-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-2xl);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
    }
.booking-full-card .booking-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
.booking-full-card .booking-header-text h2 {
      margin-bottom: 0.4rem;
    }
.booking-full-card .booking-header-text p {
      color: var(--color-text-light);
      font-size: 0.95rem;
      margin: 0;
    }
.booking-full-card iframe {
      width: 100%;
      min-height: 520px;
      border: none;
      border-radius: var(--radius-xl);
      display: block;
    }
.contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
.contact-form-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-2xl);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
    }
.contact-form-card h2 {
      margin-bottom: 0.5rem;
    }
.contact-form-card > p {
      color: var(--color-text-light);
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }
.form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
.form-group {
      margin-bottom: 1.25rem;
    }
.form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 0.4rem;
    }
.form-group label .required,
    .form-required-note .required {
      color: #EF4444;
    }
.form-required-note {
      font-size: 0.85rem;
      color: var(--color-text-light);
      margin-bottom: 1.25rem;
    }
.field-error {
      display: none;
      margin-top: 0.35rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: #B91C1C;
    }
.form-group input[aria-invalid="true"],
    .form-group select[aria-invalid="true"],
    .form-group textarea[aria-invalid="true"] {
      border-color: #B91C1C;
    }
.form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.7rem 1rem;
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--color-text);
      background: var(--color-bg-light);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      transition: all var(--transition);
      outline: none;
    }
.form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--color-primary-light);
      box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
      background: var(--color-white);
    }
.form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--color-text-muted);
    }
.form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
.form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      padding-right: 2.5rem;
    }
.form-fields {
      border: 0;
      padding: 0;
      margin: 0;
      min-width: 0;
    }
.hp-field {
      position: absolute !important;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
.form-consent {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin-top: 0.5rem;
    }
.form-consent input[type="checkbox"] {
      width: 1.15rem;
      height: 1.15rem;
      margin-top: 0.15rem;
      flex-shrink: 0;
      accent-color: var(--blue);
      cursor: pointer;
    }
.form-consent label {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--color-text-light);
      line-height: 1.5;
      margin: 0;
    }
.form-consent label a { color: var(--color-primary); }
.form-submit {
      margin-top: 1.5rem;
    }
.form-submit .btn {
      width: 100%;
      justify-content: center;
      padding: 0.9rem 2rem;
      font-weight: 600;
      background: var(--blue);
      color: #fff;
      border: 2px solid var(--blue-deep);
      box-shadow: 0 6px 18px -6px rgba(37,99,235,0.55);
      transition: background .15s, box-shadow .15s, transform .15s;
    }
.form-submit .btn:hover {
      background: var(--blue-deep);
      box-shadow: 0 10px 24px -6px rgba(37,99,235,0.6);
      transform: translateY(-1px);
    }
.form-submit .btn[disabled] {
      opacity: 0.65;
      cursor: progress;
      transform: none;
    }
.form-global-error {
      display: none;
      margin-bottom: 1.25rem;
      padding: 0.85rem 1rem;
      border: 1px solid #B91C1C;
      border-radius: var(--radius-md);
      background: #FEF2F2;
      color: #B91C1C;
      font-size: 0.9rem;
    }
.form-global-error.show { display: block; }
.form-success {
      display: none;
      text-align: center;
      padding: 2rem;
    }
.form-success.show {
      display: block;
    }
.form-success svg {
      color: var(--color-success);
      margin-bottom: 1rem;
    }
.form-success h2 {
      color: var(--color-success);
      margin-bottom: 0.5rem;
    }
.contact-info-side {
      position: sticky;
      top: calc(var(--navbar-height) + 2rem);
    }
.contact-info-card-block {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-2xl);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
    }
.contact-info-card-block h2 {
      margin-bottom: 0.25rem;
    }
.contact-info-card-block > p {
      color: var(--color-text-light);
      font-size: 0.95rem;
      margin-bottom: 1.75rem;
    }
.contact-info-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--color-border);
    }
.contact-info-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
.contact-info-row:first-child {
      padding-top: 0;
    }
.contact-info-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
.contact-info-row .label {
      font-size: 0.78rem;
      color: var(--color-text-muted);
      margin-bottom: 0.2rem;
    }
.contact-info-row a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--color-primary);
    }
.contact-info-row a:hover {
      text-decoration: underline;
    }
.click2call-block {
      margin-top: 1.75rem;
      padding: 1.5rem;
      background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
      border: 1px solid #bfdbfe;
      border-radius: var(--radius-xl);
    }
.click2call-block .c2c-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 0.4rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
.click2call-block .c2c-desc {
      font-size: 0.82rem;
      color: var(--color-text-light);
      margin-bottom: 1rem;
      line-height: 1.5;
    }
.click2call-block a img {
      height: 44px;
      width: auto;
      display: block;
      transition: opacity 0.2s;
    }
.click2call-block a:hover img {
      opacity: 0.85;
    }
@media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      .contact-info-side {
        position: static;
      }
      .booking-full-card iframe {
        min-height: 400px;
      }
    }

/* ===== formations.html ===== */
.formation-module {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 1.75rem;
      transition: all var(--transition);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
.formation-module:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--color-primary-light);
    }
.formation-module-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
.formation-module-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
.formation-module h4 {
      font-family: var(--font-body);
      font-size: 1.05rem;
    }
.formation-module p {
      font-size: 0.88rem;
      line-height: 1.6;
    }
.formation-module-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: auto;
    }
.formation-module-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--color-text-muted);
      background: var(--color-bg-light);
      padding: 0.3rem 0.65rem;
      border-radius: 50px;
    }
.formation-module-tag svg {
      width: 14px;
      height: 14px;
    }
.qualiopi-banner {
      background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
      border-radius: var(--radius-2xl);
      padding: 3rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      color: var(--color-white);
      margin-bottom: 4rem;
    }
.qualiopi-banner-img {
      flex-shrink: 0;
      width: 260px;
      background: var(--color-white);
      border-radius: var(--radius-xl);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
.qualiopi-banner-img img {
      max-width: 100%;
      height: auto;
      display: block;
    }
.qualiopi-banner h2 {
      color: var(--color-white);
      margin-bottom: 0.75rem;
    }
.qualiopi-banner p {
      color: rgba(255,255,255,0.85);
      font-size: 1rem;
    }
.qualiopi-stats {
      display: flex;
      gap: 2rem;
      margin-top: 1.5rem;
    }
.qualiopi-stat {
      text-align: center;
    }
.qualiopi-stat-number {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      font-weight: 700;
    }
.qualiopi-stat-text {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
    }
.formation-section-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
.formation-section-title .icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
.formation-section-title h3 {
      font-size: 1.5rem;
    }
.formation-intro {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
    }
.formation-intro-text p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--color-text-light);
      margin-bottom: 1rem;
    }
.formation-intro-text .highlight-box {
      background: var(--color-bg-warm);
      border-left: 4px solid var(--color-primary);
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.5rem;
      margin: 1.5rem 0;
      font-size: 0.95rem;
      color: var(--color-text);
    }
.formation-intro-visual {
      background: linear-gradient(135deg, var(--color-bg-warm) 0%, #FEF3C7 100%);
      border-radius: var(--radius-2xl);
      align-self: start;
      position: sticky;
      top: 100px;
      padding: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 320px;
    }
.formation-intro-visual img {
      max-width: 100%;
      max-height: 280px;
      object-fit: contain;
    }
.formation-intro-visual .intro-visual-content {
      text-align: center;
    }
.formation-intro-visual .intro-visual-content svg {
      width: 80px;
      height: 80px;
      color: var(--color-primary);
      margin-bottom: 1rem;
    }
.info-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
.info-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 1.75rem;
      transition: all var(--transition);
    }
.info-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-3px);
    }
.info-card-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
.info-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.75rem;
    }
.info-card p, .info-card li {
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--color-text-light);
    }
.info-card ul {
      padding-left: 0;
      list-style: none;
      margin: 0;
    }
.info-card ul li {
      padding: 0.4rem 0;
      padding-left: 1.5rem;
      position: relative;
    }
.info-card ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.75rem;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-primary);
    }
.key-figures {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
.key-figure {
      text-align: center;
      padding: 2rem 1.5rem;
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
    }
.key-figure-number {
      font-family: var(--font-heading);
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--color-primary);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
.key-figure-label {
      font-size: 0.88rem;
      color: var(--color-text-light);
    }
.formation-timeline {
      position: relative;
      padding-left: 3rem;
      margin-bottom: 4rem;
    }
.formation-timeline::before {
      content: '';
      position: absolute;
      left: 15px;
      top: 1.75rem;
      bottom: 1.75rem;
      width: 2px;
      background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
    }
.timeline-step {
      position: relative;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      transition: all var(--transition);
    }
.timeline-step:hover {
      box-shadow: var(--shadow-md);
    }
.timeline-step::before {
      content: '';
      position: absolute;
      left: calc(-3rem + 10px);
      top: 1.625rem;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--color-primary);
      box-shadow: 0 0 0 4px var(--color-bg-warm);
    }
.timeline-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--color-bg-warm);
      color: var(--color-primary);
      font-weight: 700;
      font-size: 0.85rem;
      margin-right: 0.75rem;
    }
.timeline-step h3 {
      display: inline;
      font-size: 1rem;
    }
.timeline-step p {
      margin-top: 0.5rem;
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--color-text-light);
    }
.info-contact-box {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-2xl);
      padding: 2rem;
      margin-bottom: 3rem;
    }
.info-contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }
.info-contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
.info-contact-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
.info-contact-item h4 {
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }
.info-contact-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.5rem;
      border-top: 1px solid var(--color-border);
    }
@media (max-width: 768px) {
      .qualiopi-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
      }
      .qualiopi-stats {
        justify-content: center;
      }
      .formation-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .info-cards-grid {
        grid-template-columns: 1fr;
      }
      .key-figures {
        grid-template-columns: repeat(2, 1fr);
      }
      .info-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .info-contact-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }
    }

/* ===== index.html ===== */
.hero {
  position: relative;
  padding: 60px 0 50px;
  background:
    radial-gradient(ellipse at 80% -10%, var(--blue-soft), transparent 50%),
    radial-gradient(ellipse at 0% 10%, oklch(0.96 0.04 200), transparent 40%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 880px;
  gap: 0;
}
@media (max-width: 1040px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.04em; line-height: 1.02;
  margin: 0 0 18px;
}
.hero h1 .acc { color: var(--blue-deep); }
.hero-sub {
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  max-width: 520px;
  text-wrap: pretty;
}
.hero-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-meta .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 10px;
  background: white; border: 1px solid var(--line);
  color: var(--ink-2); font-size: 13px; font-weight: 500;
}
.hero-meta .badge svg { color: var(--blue); }
.hero-visual {
  position: relative;
  aspect-ratio: 5/4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.hv-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  padding: 18px;
  display: flex; flex-direction: column;
  transition: transform .3s;
}
.hv-card:hover { transform: translateY(-3px); }
.hv-photo {
  grid-row: 1 / span 2;
  padding: 0;
  background: #1e293b;
}
.hv-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hv-photo .ovl {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0.18 0.012 250 / 0.85));
}
.hv-photo .quote {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  color: white;
}
.hv-photo .quote p { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.25; }
.hv-photo .quote span { font-size: 12px; opacity: 0.8; margin-top: 8px; display: block; }
.hv-stat .v {
  font-size: 42px; font-weight: 600; letter-spacing: -0.03em;
  line-height: 1; color: var(--blue-deep);
}
.hv-stat .v small { font-size: 22px; }
.hv-stat .l { color: var(--ink-3); font-size: 13px; margin-top: 8px; }
.hv-stat .icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--blue-soft); color: var(--blue-deep);
  display: grid; place-items: center;
  margin-bottom: auto;
}
.hv-chart .label { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); margin-bottom: 10px; }
.hv-chart .label b { color: var(--ink); font-weight: 600; }
.hv-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: auto; }
.hv-bars span {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--blue-soft);
  transition: height .8s ease-out;
}
.hv-bars span.hi { background: var(--blue); }
.hv-chart .delta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--good); font-weight: 600;
  margin-top: 8px;
}
.demo-section {
  padding: 80px 0 100px;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.demo-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .demo-head { grid-template-columns: 1fr; gap: 16px; } }
.demo-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.demo-head h2 .acc { color: var(--blue-deep); }
.demo-head .demo-intro {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 480px;
}
.demo-frame {
  position: relative;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  cursor: default;
  min-height: 600px; 
}
.demo-frame.loaded { min-height: 0; }
.demo-start {
  position: absolute;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 20px;
  background: rgba(15, 25, 55, 0.42);
  backdrop-filter: blur(7px) saturate(120%);
  -webkit-backdrop-filter: blur(7px) saturate(120%);
  cursor: pointer;
  transition: opacity .4s ease, visibility .4s ease;
}
.demo-start.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.demo-start .play-btn {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -10px rgba(15,25,55,.55);
  transition: transform .2s ease;
}
.demo-start:hover .play-btn, .demo-start:focus-visible .play-btn { transform: scale(1.07); }
.demo-start .play-btn svg { color: var(--blue-deep); margin-left: 4px; }
.demo-start .play-label { color: white; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.demo-start .play-sub { color: rgba(255,255,255,0.85); font-size: 13.5px; margin-top: -6px; }
.demo-start:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }
@media (max-width: 600px) {
  .demo-start .play-btn { width: 62px; height: 62px; }
  .demo-start .play-label { font-size: 15px; }
  .demo-start .play-sub { font-size: 12.5px; }
}
.click-hint {
  position: absolute;
  width: 60px; height: 60px;
  pointer-events: none;
  z-index: 80;
  transform: translate(-50%, -50%);
  display: none;
}
.click-hint.show { display: block; }
.click-hint::before, .click-hint::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  animation: hintPulse 1.8s ease-out infinite;
}
.click-hint::after { animation-delay: 0.9s; }
.click-hint .core {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px white, 0 4px 12px rgba(15,25,55,.2);
  animation: hintCore 1.8s ease-in-out infinite;
}
@keyframes hintPulse {
  0%   { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes hintCore {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(0.85); }
}
.demo-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  background: oklch(0.97 0.005 240);
  border-bottom: 1px solid var(--line);
}
.demo-chrome .dots { display: flex; gap: 6px; }
.demo-chrome .ch-dot { width: 11px; height: 11px; border-radius: 50%; }
.demo-chrome .ch-dot.r { background: #ff5f57; }
.demo-chrome .ch-dot.y { background: #ffbd2e; }
.demo-chrome .ch-dot.g { background: #28c941; }
.demo-chrome .url {
  flex: 1; margin: 0 12px;
  background: white; border: 1px solid var(--line);
  height: 28px; border-radius: 7px;
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px;
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-3);
}
.demo-chrome .url svg { color: var(--good); }
.demo-chrome .url b { color: var(--ink-2); font-weight: 500; }
.demo-chrome .demo-tag {
  font-size: 10px; font-family: var(--mono); color: white;
  background: var(--blue); padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.06em;
}
.odoo-bar {
  display: flex; align-items: center;
  height: 38px;
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 0 14px;
  font-size: 12.5px;
}
.odoo-bar .logo { display: flex; align-items: center; gap: 7px; font-weight: 600; color: var(--ink); margin-right: 18px; }
.odoo-bar .logo .glyph {
  width: 18px; height: 18px; border-radius: 5px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: grid; place-items: center;
  color: white; font-weight: 700; font-size: 11px;
}
.odoo-bar .menu { display: flex; gap: 2px; color: var(--blue-deep); }
.odoo-bar .menu span {
  padding: 6px 10px; border-radius: 6px;
  font-weight: 500;
}
.odoo-bar .menu span.active { background: var(--blue-soft); }
.odoo-bar .right { margin-left: auto; display: flex; align-items: center; gap: 12px; color: var(--ink-3); }
.odoo-bar .right .pill { padding: 3px 10px; background: var(--paper-2); border-radius: 999px; font-size: 11px; color: var(--ink-2); }
.odoo-bar .right .avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white; display: grid; place-items: center;
  font-size: 10px; font-weight: 700;
}
.odoo-toolbar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: oklch(0.98 0.004 240);
  border-bottom: 1px solid var(--line);
}
.odoo-toolbar .tbtn {
  padding: 6px 11px; border-radius: 5px;
  border: 1px solid var(--line); background: white;
  color: var(--ink-2); font-weight: 500; font-size: 12px;
  transition: all .15s;
  position: relative;
}
.odoo-toolbar .tbtn.primary {
  background: var(--blue-deep); border-color: var(--blue-deep); color: white;
}
.odoo-toolbar .breadcrumb {
  display: flex; align-items: center; gap: 6px;
  margin-left: 8px; color: var(--ink-3); font-size: 11.5px;
}
.odoo-toolbar .breadcrumb .sep { color: var(--ink-4); }
.odoo-toolbar .breadcrumb .now { color: var(--ink); font-weight: 500; }
.odoo-toolbar .status { margin-left: auto; display: flex; gap: 4px; }
.odoo-toolbar .status .pill {
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; color: var(--ink-3);
  background: white; border: 1px solid var(--line);
}
.odoo-toolbar .status .pill.active {
  color: var(--good); border-color: var(--good); font-weight: 600;
}
.odoo-body {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: white;
}
.screen {
  position: absolute; inset: 0;
  padding: 22px 26px;
  opacity: 0; transform: translateX(20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  overflow-y: auto;
}
.screen.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.inv-head { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.inv-status {
  font-weight: 600; font-size: 30px;
  letter-spacing: -0.02em; color: var(--ink);
  margin: 4px 0 22px;
}
.inv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.inv-row {
  display: grid; grid-template-columns: 130px 1fr;
  align-items: start; margin-bottom: 14px; font-size: 13px;
}
.inv-row .label { color: var(--ink); font-weight: 600; }
.inv-row .val { color: var(--ink-2); }
.inv-row .val.link { color: var(--blue-deep); }
.inv-row .val.muted { color: var(--ink-4); }
.field-search {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}
.field-search input {
  width: 100%; border: none; outline: none; background: transparent;
  font: inherit; font-size: 13px; color: var(--ink);
  padding: 4px 0;
}
.field-search input::placeholder { color: var(--ink-4); }
.field-search .caret { position: absolute; right: 0; top: 4px; color: var(--ink-3); font-size: 10px; }
.field-search.open { border-bottom-color: var(--blue); }
.dropdown {
  position: absolute;
  top: calc(100% + 4px); left: -8px; right: -8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 4px 0;
  max-height: 260px; overflow-y: auto;
  z-index: 30;
  opacity: 0; transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.dropdown.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown .item {
  padding: 7px 14px; font-size: 13px; color: var(--ink-2);
  cursor: pointer;
  display: flex; justify-content: space-between; gap: 8px;
}
.dropdown .item:hover, .dropdown .item.hover {
  background: var(--blue-soft); color: var(--blue-deep);
}
.dropdown .item .sub { color: var(--ink-3); font-size: 12px; }
.dropdown .footer {
  padding: 7px 14px; font-size: 12px; color: var(--blue);
  border-top: 1px solid var(--line); margin-top: 4px;
}
.inv-tabs {
  margin-top: 28px; display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
}
.inv-tab {
  padding: 9px 16px; font-size: 12.5px;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; font-weight: 500;
}
.inv-tab.active { color: var(--blue-deep); border-bottom-color: var(--blue-deep); }
.line-table { margin-top: 14px; width: 100%; border-collapse: collapse; font-size: 13px; }
.line-table th { text-align: left; font-size: 11.5px; font-weight: 500; color: var(--ink-3); padding: 6px 10px; border-bottom: 1px solid var(--line-2); }
.line-table th.right { text-align: right; }
.line-table td { padding: 12px 10px; border-bottom: 1px solid var(--line-2); }
.line-table td.right { text-align: right; }
.line-table .add-line {
  color: var(--blue-deep); font-size: 13px; padding: 12px 10px; cursor: pointer;
}
.line-table .add-line:hover { background: var(--blue-tint); }
.line-table .tax-pill {
  display: inline-block; padding: 2px 8px;
  background: var(--paper-2); border-radius: 999px;
  font-size: 11px; color: var(--ink-3);
}
.totals { margin-top: 28px; display: flex; justify-content: flex-end; }
.totals-box { width: 320px; }
.totals-box .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13px; color: var(--ink-2); }
.totals-box .row.grand {
  border-top: 1px solid var(--ink); margin-top: 6px;
  padding-top: 8px; font-weight: 700; font-size: 16px; color: var(--ink);
}
.cat-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cat-search {
  flex: 1; height: 34px;
  border: 1px solid var(--line); border-radius: 8px;
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px; background: white;
  color: var(--ink-3); font-size: 13px;
  position: relative;
}
.cat-search.open { border-color: var(--blue); }
.cat-search input {
  border: none; outline: none; background: transparent;
  flex: 1; font: inherit; font-size: 13px; color: var(--ink);
}
.cat-counter { font-size: 12px; color: var(--ink-3); }
.cat-layout {
  display: grid; grid-template-columns: 168px 1fr;
  gap: 18px;
  height: calc(100% - 50px);
}
.cat-side {
  border-right: 1px solid var(--line-2);
  padding-right: 14px;
  font-size: 12px; color: var(--ink-2);
}
.cat-side .cat-label {
  display: block;
  font-size: 11px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px; margin-top: 14px;
}
.cat-side .cat-label:first-child { margin-top: 0; }
.cat-side .item {
  padding: 5px 8px; border-radius: 5px; cursor: pointer;
  display: flex; justify-content: space-between; font-size: 12px;
}
.cat-side .item.active { background: var(--blue-soft); color: var(--blue-deep); font-weight: 500; }
.cat-side .item .count { color: var(--ink-4); font-size: 11px; }
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; align-content: start;
  overflow-y: auto; padding-right: 4px;
}
.product {
  border: 1px solid var(--line); border-radius: 8px;
  padding: 12px;
  background: white;
  transition: all .2s;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 96px;
  cursor: pointer;
}
.product:hover { border-color: var(--blue); }
.product.highlight {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.product .name { font-size: 13px; color: var(--ink); font-weight: 500; line-height: 1.25; }
.product .star { color: var(--warm); font-size: 11px; }
.product .price { font-size: 13px; color: var(--ink-2); font-weight: 600; margin-top: auto; }
.product .add {
  align-self: flex-end; font-size: 11px;
  padding: 4px 9px; background: var(--paper-2);
  border-radius: 4px; color: var(--ink-2);
}
.product.added .add { background: var(--good); color: white; }
.sent-overlay {
  position: absolute; inset: 0;
  background: oklch(0.995 0.003 240 / 0.96);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s; z-index: 50;
}
.sent-overlay.show { opacity: 1; pointer-events: auto; }
.sent-card { text-align: center; max-width: 380px; padding: 30px; }
.sent-check {
  width: 72px; height: 72px;
  border-radius: 50%; background: var(--good-soft);
  margin: 0 auto 18px;
  display: grid; place-items: center;
  color: var(--good);
  animation: checkPop .5s ease-out;
}
@keyframes checkPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.sent-card .sent-title { display: block; font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.sent-card p { color: var(--ink-2); font-size: 14px; margin-bottom: 20px; }
.sent-card .meta { display: flex; justify-content: center; gap: 18px; font-size: 12px; color: var(--ink-3); margin-bottom: 20px; }
.sent-card .meta b { color: var(--ink); font-weight: 600; display: block; font-size: 14px; margin-top: 2px; }
.sent-card .replay {
  display: inline-flex; gap: 6px; align-items: center;
  padding: 10px 18px; border-radius: 999px;
  background: var(--blue); color: white; font-size: 13px;
}
.sent-card .replay:hover { background: var(--blue-deep); }
.cta-overlay {
  position: absolute; inset: 0;
  background: oklch(0.16 0.014 250 / 0.96);
  backdrop-filter: blur(8px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .55s ease, backdrop-filter .55s;
  z-index: 60;
  padding: 24px;
}
.cta-overlay.show { opacity: 1; pointer-events: auto; }
.cta-overlay-card {
  text-align: center; max-width: 440px;
  color: white;
  transform: translateY(12px) scale(0.97);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.cta-overlay.show .cta-overlay-card { transform: translateY(0) scale(1); }
.cta-spark {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: grid; place-items: center; color: white;
  margin: 0 auto 18px;
  box-shadow: 0 8px 32px -6px var(--blue),
              0 0 0 6px oklch(0.52 0.18 250 / 0.18);
  animation: ctaSparkPulse 2.4s ease-in-out infinite;
}
@keyframes ctaSparkPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.cta-overlay .cta-title {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-wrap: balance;
}
.cta-overlay .cta-title .acc {
  color: oklch(0.78 0.16 240);
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
}
.cta-overlay p {
  font-size: 15.5px;
  color: oklch(0.85 0.012 240);
  margin-bottom: 26px;
  text-wrap: pretty;
}
.cta-overlay-actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.cta-overlay .btn-primary {
  background: white; color: var(--ink);
}
.cta-overlay .btn-primary:hover { background: var(--blue); color: white; }
.cta-overlay .btn-ghost {
  color: white;
  border: 1px solid oklch(0.85 0.012 240 / 0.35);
  background: transparent;
}
.cta-overlay .btn-ghost:hover { background: oklch(0.85 0.012 240 / 0.12); }
.demo-controls {
  margin-top: 18px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.demo-steps {
  display: flex; gap: 0;
  flex: 1; min-width: 320px;
}
.demo-step {
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 14px 12px;
  border-top: 2px solid var(--line);
  font-size: 12px; color: var(--ink-3);
}
.demo-step .num { font-family: var(--mono); font-size: 10px; color: var(--ink-4); }
.demo-step .ttl { font-weight: 500; color: var(--ink-2); }
.demo-step.active { color: var(--ink); }
.demo-step.active { border-top-color: var(--blue); }
.demo-step.active .ttl { color: var(--ink); }
.demo-step.done { border-top-color: var(--good); }
.demo-step.done .ttl { color: var(--ink-3); }
.demo-replay {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--line); font-size: 13px; color: var(--ink-2);
  background: white; white-space: nowrap;
}
.demo-replay:hover { background: var(--paper-2); }
.demo-caption {
  margin-top: 12px;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 18px;
  background: white;
  border-radius: 12px; border: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-2);
}
.demo-caption .ic {
  flex-shrink: 0; width: 26px; height: 26px;
  border-radius: 50%; background: var(--blue-soft);
  color: var(--blue-deep);
  display: grid; place-items: center; margin-top: -2px;
}
.demo-caption b { color: var(--ink); font-weight: 600; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.exp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.exp-card .img {
  height: 50px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  position: relative;
  overflow: hidden;
}
.exp-card .img.v2 { background: linear-gradient(135deg, oklch(0.55 0.18 280), oklch(0.42 0.20 252)); }
.exp-card .img.v3 { background: linear-gradient(135deg, oklch(0.52 0.16 220), oklch(0.42 0.20 252)); }
.exp-card .img.v4 { background: linear-gradient(135deg, oklch(0.6 0.14 200), oklch(0.45 0.18 240)); }
.exp-card .img.v5 { background: linear-gradient(135deg, oklch(0.5 0.18 260), oklch(0.4 0.18 280)); }
.exp-card .img.v6 { background: linear-gradient(135deg, oklch(0.55 0.16 240), oklch(0.4 0.2 260)); }
.exp-card .img svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.25;
  color: white;
}
.exp-card .img .num {
  position: absolute; top: 16px; left: 18px;
  color: white; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; opacity: 0.7;
}
.exp-card .img .glyph {
  position: absolute; bottom: 16px; left: 18px;
  color: white; opacity: 0.95;
}
.exp-card .body { padding: 24px 24px 28px; }
.exp-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.exp-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 14px; }
.exp-card ul { list-style: none; padding: 0; }
.exp-card ul li {
  font-size: 13px; color: var(--ink-2);
  padding: 6px 0;
  border-top: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 8px;
}
.exp-card ul li::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.sb-grid {
  display: flex;
  gap: 16px;
}
@media (max-width: 1040px) { .sb-grid { display: grid; grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .sb-grid { grid-template-columns: 1fr; } }
.sb-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  min-width: 0;
  height: 420px;
  display: block;
  color: white;
  transition: flex .5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1041px) {
  .sb-grid:has(.sb-card:hover) .sb-card       { flex: 0.67; }
  .sb-grid:has(.sb-card:hover) .sb-card:hover { flex: 2; }
}
.sb-card img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 600px;
  max-width: none;
  object-fit: cover;
  transition: filter .3s;
  filter: brightness(0.6) saturate(0.95);
}
.sb-card:hover img { filter: brightness(0.7) saturate(1); }
@media (max-width: 1040px) {
  .sb-card img { width: 100%; left: 0; transform: none; }
}
.sb-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,25,55,.65) 100%);
  pointer-events: none;
}
.sb-card .content {
  position: absolute; inset: 0;
  padding: 22px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.sb-card .num {
  font-family: var(--mono); font-size: 11px;
  opacity: 0.8; letter-spacing: 0.05em;
}
.sb-card h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.05;
  color: white;
}
.stats {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 980px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } }
.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 230px;
}
.stat .label {
  font-size: 11.5px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.stat .v {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat .v small {
  font-size: 22px;
  color: var(--blue-deep);
  font-weight: 500;
  margin-left: 2px;
}
.stat .l {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.4;
}
.stat .visual { margin-top: auto; padding-top: 16px; }
.stat-hero {
  background: linear-gradient(135deg, var(--ink) 0%, oklch(0.22 0.04 252) 100%);
  color: white;
  border: none;
}
.stat-hero .label { color: oklch(0.78 0.04 240); }
.stat-hero .v { color: white; font-size: 64px; }
.stat-hero .v small { color: oklch(0.85 0.10 230); }
.stat-hero .l { color: oklch(0.85 0.012 240); }
.stat-hero .clients-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.stat-hero .avatars { display: inline-flex; }
.stat-hero .avatars .a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(0.7 0.12 230), oklch(0.5 0.18 250));
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  color: white; font-size: 11px; font-weight: 600;
  margin-left: -10px;
}
.stat-hero .avatars .a:first-child { margin-left: 0; }
.stat-hero .avatars .a:nth-child(2) { background: linear-gradient(135deg, oklch(0.72 0.14 60), oklch(0.55 0.18 40)); }
.stat-hero .avatars .a:nth-child(3) { background: linear-gradient(135deg, oklch(0.75 0.14 155), oklch(0.55 0.16 165)); }
.stat-hero .avatars .a:nth-child(4) { background: linear-gradient(135deg, oklch(0.72 0.14 320), oklch(0.55 0.18 295)); }
.stat-hero .clients-row span { font-size: 12.5px; color: oklch(0.85 0.012 240); }
.ring { width: 92px; height: 92px; position: relative; }
.ring svg { transform: rotate(-90deg); }
.ring .ring-bg { stroke: var(--blue-soft); }
.ring .ring-fg { stroke: var(--blue); }
.ring .pct {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 19px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.stat-google .visual { display: flex; flex-direction: column; gap: 6px; }
.stat-google .stars { display: inline-flex; gap: 2px; }
.stat-google .source {
  font-size: 11.5px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badges-stack { display: flex; flex-direction: column; gap: 10px; }
.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
}
.badge-row .b-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: white;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--blue-deep);
  flex-shrink: 0;
}
.badge-row b { font-size: 13px; color: var(--ink); font-weight: 600; display: block; line-height: 1.2; }
.badge-row span { font-size: 11px; color: var(--ink-3); display: block; line-height: 1.2; margin-top: 2px; }
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr; } }
.proc-step {
  padding: 26px 26px 28px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.proc-step .step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-soft); color: var(--blue-deep);
  display: grid; place-items: center;
  font-weight: 700; font-size: 18px;
  margin-bottom: 16px;
}
.proc-step h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.proc-step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.proc-step .timeline {
  margin-top: 18px;
  font-size: 12px; color: var(--ink-3);
  display: inline-flex; gap: 6px; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  font-weight: 500;
}
.testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .testimonial { grid-template-columns: 1fr; } }
.t-slider { display: grid; }
.t-slide {
  grid-area: 1 / 1;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s ease;
}
.t-slide.is-active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.t-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  transition: background .15s, color .15s, transform .15s, border-color .15s;
  box-shadow: 0 2px 6px -2px rgba(15,25,55,.06);
}
.t-arrow:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-1px);
}
.t-dots { display: inline-flex; gap: 8px; }
.t-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: oklch(0.85 0.018 240);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, width .25s;
}
.t-dot.is-active {
  background: var(--blue);
  width: 26px;
  border-radius: 5px;
}
.t-author .av-malt {
  background: linear-gradient(135deg, #FF7B72, #E94B45);
}
.g-review-head.malt .g-logo { border-color: oklch(0.92 0.04 25); }
.g-review-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 2px 6px -2px rgba(15,25,55,.06);
}
.g-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  flex-shrink: 0;
}
.g-meta { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.g-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.g-stars { display: inline-flex; gap: 1px; }
.t-quote {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.3; color: var(--ink);
  text-wrap: pretty;
}
.t-quote::before { content: '“'; color: var(--blue); margin-right: 4px; font-size: 1.4em; line-height: 0; }
.t-author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.t-author .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, oklch(0.7 0.12 230), oklch(0.5 0.18 250));
  display: grid; place-items: center; color: white; font-weight: 600;
}
.t-author .who { font-size: 14px; }
.t-author .who b { display: block; color: var(--ink); font-weight: 600; }
.t-author .who span { color: var(--ink-3); font-size: 13px; }
.t-meta {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
}
.t-meta h3 { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.t-meta dl { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.t-meta dl div { display: flex; flex-direction: column; gap: 2px; }
.t-meta dt { font-size: 11px; color: var(--ink-3); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.04em; }
.t-meta dd { font-size: 14px; color: var(--ink); font-weight: 500; }
.section-dark .t-quote { color: white; }
.section-dark .t-author .who b { color: white; }
.section-dark .t-author .who span { color: oklch(0.62 0.015 240); }
.section-dark .t-arrow { background: oklch(0.18 0.02 240); border-color: oklch(0.28 0.02 240); color: white; }
.section-dark .t-arrow:hover { background: var(--blue); border-color: var(--blue); }
.section-dark .t-dot { background: oklch(0.40 0.02 240); }
.section-dark .t-dot.is-active { background: var(--blue); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } }
.form-card {
  padding: 0;
  border-radius: var(--radius);
  background: oklch(0.22 0.014 250);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .2s;
}
.form-card:hover { transform: translateY(-3px); }
.form-card .head {
  height: 130px;
  background-size: cover; background-position: center;
  position: relative;
}
.form-card .head::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, oklch(0.22 0.014 250));
}
.form-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.form-card .tag {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: oklch(0.78 0.14 240);
}
.form-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: white; }
.form-card p { color: oklch(0.78 0.008 240); font-size: 14px; line-height: 1.55; flex: 1; }
.form-card .meta { font-size: 12.5px; color: oklch(0.65 0.008 240); display: flex; gap: 12px; margin-top: 6px; }
@media (max-width: 720px) {
  .odoo-body { height: 540px; }
  .inv-grid { grid-template-columns: 1fr; gap: 12px; }
  .cat-layout { grid-template-columns: 1fr; }
  .cat-side { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-steps { display: none; }
  .totals { justify-content: stretch; }
  .totals-box { width: 100%; }
}
.qualiopi-banner-img.is-lg {
  flex-shrink: 0;
  width: 360px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.qualiopi-banner-img.is-lg img { max-width: 100%; height: auto; display: block; transform: translateY(14px); }
@media (max-width: 768px) {
  .qualiopi-banner { flex-direction: column; text-align: center; padding: 2rem; gap: 1.5rem; }
  .qualiopi-stats { justify-content: center; }
}

/* ===== odoo.html ===== */
.odoo-hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(ellipse at 85% 0%, var(--blue-soft), transparent 55%),
    radial-gradient(ellipse at 0% 30%, oklch(0.96 0.04 200), transparent 45%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.odoo-hero .crumb {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3); letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.odoo-hero .crumb a { color: var(--ink-3); }
.odoo-hero .crumb a:hover { color: var(--blue); }
.odoo-hero .crumb .sep { color: var(--ink-4); margin: 0 8px; }
.odoo-hero h1 {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.04em; line-height: 1.05;
  max-width: 920px;
  margin-top: 0;
}
.odoo-hero h1 .acc {
  font-family: inherit; font-style: normal;
  font-weight: inherit; color: var(--blue-deep);
  letter-spacing: -0.02em;
}
.odoo-hero .lede {
  margin-top: 18px;
  font-size: 19px; color: var(--ink-2);
  max-width: 640px; line-height: 1.55;
  text-wrap: pretty;
}
.odoo-hero .meta {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.odoo-hero .meta > div {
  padding: 18px 22px 18px 10px;
  border-right: 1px solid var(--line);
}
.odoo-hero .meta > div:last-child { border-right: 0; padding-right: 0; }
.odoo-hero .meta .k {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.odoo-hero .meta .v { font-size: 17px; color: var(--ink); font-weight: 500; }
@media (max-width: 880px) {
  .odoo-hero .meta { grid-template-columns: 1fr 1fr; }
  .odoo-hero .meta > div { border-right: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .odoo-hero .meta > div:nth-last-child(-n+2) { border-bottom: 0; }
}
.manifesto { padding: 100px 0; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  max-width: 1100px;
}
@media (max-width: 880px) { .manifesto-grid { grid-template-columns: 1fr; gap: 28px; } }
.manifesto h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.1;
}
.manifesto h2 em {
  font-family: inherit; font-style: normal;
  font-weight: inherit; color: var(--blue-deep);
}
.manifesto p {
  font-size: 17.5px; line-height: 1.6;
  color: var(--ink-2);
  margin-top: 18px; max-width: 640px;
  text-wrap: pretty;
}
.manifesto p + p { margin-top: 14px; }
.manifesto p strong { color: var(--ink); font-weight: 600; }
.modules { padding: 100px 0; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.modules-head { max-width: 760px; margin-bottom: 56px; }
.modules-head h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
}
.modules-head h2 em {
  font-family: inherit; font-style: normal; font-weight: inherit;
  color: var(--blue-deep);
}
.modules-head p {
  margin-top: 18px; font-size: 17px; line-height: 1.55;
  color: var(--ink-2); max-width: 600px;
}
.mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .mod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .mod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .mod-grid { grid-template-columns: 1fr; } }
.mod-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.mod-card:hover {
  transform: translateY(-3px);
  border-color: oklch(0.85 0.06 250);
  box-shadow: var(--shadow);
}
.mod-card .visual {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mod-card .visual img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.mod-card .visual.v-compta     { background: linear-gradient(135deg, oklch(0.55 0.18 280), oklch(0.42 0.20 252)); }
.mod-card .visual.v-stock      { background: linear-gradient(135deg, oklch(0.52 0.16 220), oklch(0.42 0.20 252)); }
.mod-card .visual.v-achats     { background: linear-gradient(135deg, oklch(0.6  0.14 200), oklch(0.45 0.18 240)); }
.mod-card .visual.v-rh         { background: linear-gradient(135deg, oklch(0.5  0.18 260), oklch(0.4  0.18 280)); }
.mod-card .visual.v-production { background: linear-gradient(135deg, oklch(0.55 0.16 240), oklch(0.4  0.2  260)); }
.mod-card .visual.v-website    { background: linear-gradient(135deg, oklch(0.62 0.16 195), oklch(0.45 0.2  235)); }
.mod-card .visual.v-marketing  { background: linear-gradient(135deg, oklch(0.58 0.18 290), oklch(0.42 0.2  250)); }

.mod-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.mod-card h3 {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.mod-card p {
  font-size: 14px; color: var(--ink-2);
  line-height: 1.55; margin-bottom: 16px;
  flex: 1;
}
.mod-card ul { list-style: none; padding: 0; margin: 0; }
.mod-card ul li {
  font-size: 13px; color: var(--ink-2);
  padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
}
.mod-card ul li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}
.odoo-process { padding: 110px 0; }
.process-head { max-width: 700px; margin-bottom: 60px; }
.process-head h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
}
.process-head h2 em {
  font-family: inherit; font-style: normal;
  font-weight: inherit; color: var(--blue-deep);
}
.process-head p {
  margin-top: 16px; font-size: 17px;
  color: var(--ink-2); line-height: 1.55;
}
.steps {
  display: flex;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .steps { flex-wrap: wrap; } }
@media (max-width: 540px) { .steps { flex-direction: column; } }
.step {
  flex: 1;
  min-width: 0;
  padding: 36px 30px 36px 10px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.step:last-child { border-right: 0; padding-right: 0; }
@media (max-width: 880px) {
  .step { flex: 1 1 calc(50% - 1px); }
  .step:nth-child(2n) { border-right: 0; padding-right: 0; }
  .step { border-bottom: 1px solid var(--line); }
  .step:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) { .step { flex: 1 1 100%; border-right: 0; } }
.step .num {
  font-family: var(--mono); font-size: 12px;
  color: var(--blue); letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.step p {
  font-size: 14.5px; color: var(--ink-2);
  line-height: 1.55;
}
.step .dur {
  margin-top: 18px;
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--blue-tint); color: var(--blue-deep);
  letter-spacing: 0.04em;
}
.editions {
  padding: 110px 0;
  background: var(--ink); color: white;
}
.editions .ed-head { max-width: 760px; margin-bottom: 56px; }
.editions .ed-head h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
}
.editions .ed-head h2 em {
  font-family: inherit; font-style: normal;
  font-weight: inherit; color: oklch(0.78 0.14 240);
}
.editions .ed-head p {
  margin-top: 16px; font-size: 17px;
  color: oklch(0.78 0.012 240); line-height: 1.55;
}
.ed-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 820px) { .ed-grid { grid-template-columns: 1fr; gap: 48px; } }
.ed-card {
  position: relative;
  background: oklch(0.22 0.014 250);
  border: 1px solid oklch(0.32 0.014 250);
  border-radius: 18px;
  padding: 56px 40px 44px;
  display: flex; flex-direction: column;
  text-align: center;
}
.ed-card.featured {
  background: oklch(0.26 0.04 252);
  border-color: oklch(0.55 0.18 250);
  box-shadow: 0 0 0 1px oklch(0.55 0.18 250 / 0.4), 0 28px 60px -25px oklch(0.45 0.18 250 / 0.5);
}
.ed-card .pill {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px;
  background: oklch(0.36 0.014 250); color: oklch(0.92 0.008 240);
  white-space: nowrap;
}
.ed-card.featured .pill {
  background: var(--blue); color: white;
}
.ed-card h3 {
  font-size: 32px; font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 10px;
  color: white;
}
.ed-card .tagline {
  font-size: 15px; color: oklch(0.78 0.012 240);
  line-height: 1.5;
  max-width: 320px; margin: 0 auto;
}
.ed-card .ed-divider {
  height: 1px; background: oklch(0.32 0.014 250);
  margin: 32px 0;
}
.ed-card.featured .ed-divider { background: oklch(0.4 0.06 250); }
.ed-card .lic-cta {
  display: inline-flex; align-items: center; justify-content: center;
  align-self: center;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent;
  border: 1px solid oklch(0.42 0.014 250);
  color: oklch(0.92 0.008 240);
  padding: 14px 32px; border-radius: 999px;
  cursor: default;
}
.ed-card.featured .lic-cta {
  border-color: oklch(0.6 0.18 250);
  color: white;
  background: oklch(0.4 0.12 250 / 0.2);
}
.tier-stack {
  display: flex; flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.tier-or {
  font-family: var(--mono); font-size: 10.5px;
  color: oklch(0.65 0.012 240); letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: center;
  background: oklch(0.22 0.014 250);
  padding: 5px 16px; border-radius: 999px;
  border: 1px solid oklch(0.32 0.014 250);
  margin: 14px 0;
  position: relative; z-index: 2;
}
.ed-card.featured .tier-or {
  background: oklch(0.26 0.04 252);
  border-color: oklch(0.4 0.06 250);
}
.tier-box {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 18px; align-items: center;
  text-align: left;
  padding: 22px 24px;
  background: oklch(0.18 0.014 250 / 0.7);
  border: 1px solid oklch(0.3 0.014 250);
  border-radius: 14px;
}
.tier-box .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: oklch(0.32 0.06 250 / 0.5);
  color: oklch(0.85 0.14 240);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tier-box .label {
  font-size: 13.5px; color: oklch(0.78 0.012 240);
  font-weight: 500; line-height: 1.3;
  margin-bottom: 4px;
}
.tier-box .amt {
  font-size: 24px; font-weight: 600; color: white;
  letter-spacing: -0.02em; line-height: 1.1;
  font-family: var(--sans);
}
.tier-box .amt small {
  font-size: 12px; font-weight: 400;
  color: oklch(0.7 0.012 240);
  letter-spacing: 0;
  margin-left: 4px;
}
.tier-box .sub {
  margin-top: 4px;
  font-size: 12.5px; color: oklch(0.7 0.012 240);
  line-height: 1.45;
}
.ed-features {
  list-style: none; padding: 0; margin: 0;
  text-align: left;
}
.ed-features li {
  font-size: 14.5px; color: oklch(0.88 0.008 240);
  padding: 8px 0;
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.5;
}
.ed-features li svg {
  flex-shrink: 0; margin-top: 3px;
  color: oklch(0.78 0.16 155);
}
.ed-features li.muted {
  color: oklch(0.5 0.012 240);
}
.ed-features li.muted svg { color: oklch(0.45 0.012 240); }
.ed-card .ed-final {
  margin-top: 32px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  align-self: center;
  font-size: 14.5px; font-weight: 500;
  background: white; color: var(--ink);
  padding: 14px 30px; border-radius: 999px;
  border: 1px solid white;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.ed-card .ed-final:hover { transform: translateY(-1px); }
.ed-card.featured .ed-final {
  background: var(--blue); color: white; border-color: var(--blue);
}
.ed-card.featured .ed-final:hover { background: oklch(0.55 0.2 250); }
.cta-band {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 30% 0%, oklch(0.42 0.20 252), transparent 60%),
    var(--ink);
  color: white;
}
.cta-band .inner {
  max-width: 820px;
}
.cta-band h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
}
.cta-band h2 em {
  font-family: inherit; font-style: normal;
  font-weight: inherit; color: oklch(0.85 0.12 240);
}
.cta-band p {
  margin-top: 18px;
  font-size: 17.5px; color: oklch(0.85 0.012 240);
  max-width: 620px; line-height: 1.55;
}
.cta-band .actions {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cta-band .btn-primary {
  background: white; color: var(--ink);
}
.cta-band .btn-primary:hover { background: var(--blue); color: white; }
.cta-band .btn-ghost {
  color: white; border-color: oklch(0.45 0.014 250);
  background: transparent;
}
.cta-band .btn-ghost:hover { background: oklch(0.28 0.014 250); }

/* ===== plan-du-site.html ===== */
.sitemap-container { max-width: 900px; margin: 0 auto; }
.sitemap-group { margin-bottom: 2.5rem; }
.sitemap-group h2 {
      font-size: 1.25rem; font-weight: 600; color: var(--color-primary);
      margin-bottom: 1rem; padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--color-border);
    }
.sitemap-group ul { list-style: none; padding: 0; margin: 0;
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.4rem 1.5rem; }
.sitemap-group li { margin: 0; }
.sitemap-group a {
      display: inline-block; padding: 0.4rem 0;
      color: var(--color-text); text-decoration: none; font-size: 0.95rem;
    }
.sitemap-group a:hover { color: var(--color-primary); text-decoration: underline; }

/* ===== reglement-interieur.html ===== */
.reglement-container {
      max-width: 800px;
      margin: 0 auto;
    }
.reglement-header {
      text-align: center;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid var(--color-border);
    }
.reglement-header h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--color-text);
    }
.reglement-header .update-date {
      color: var(--color-text-light);
      font-size: 0.95rem;
    }
.reglement-section {
      margin-bottom: 3rem;
    }
.reglement-section h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--color-primary);
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--color-border);
    }
.reglement-section h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-text);
      margin: 1.5rem 0 0.75rem;
    }
.reglement-section p, .reglement-section li {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--color-text-light);
      margin-bottom: 1rem;
    }
.reglement-section ul {
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }
.reglement-section ul li {
      margin-bottom: 0.5rem;
      padding-left: 0.5rem;
    }
.reglement-section .article-number {
      font-weight: 700;
      color: var(--color-primary);
      margin-right: 0.5rem;
    }
.reglement-section .subsection {
      margin-left: 2rem;
      margin-top: 1rem;
    }
.reglement-section .subsection h4 {
      font-size: 1rem;
      color: var(--color-text);
    }
.reglement-footer {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid var(--color-border);
      text-align: center;
    }
@media (max-width: 768px) {
      .reglement-header h2 {
        font-size: 1.5rem;
      }
      .reglement-section .subsection {
        margin-left: 1rem;
      }
    }

/* ===== secteurs.html ===== */
.sector-card-large {
      position: relative;
      border-radius: var(--radius-2xl);
      overflow: hidden;
      min-height: 380px;
      display: flex;
      align-items: flex-end;
      cursor: pointer;
      transition: all var(--transition);
    }
.sector-card-large::before {
      content: '';
      position: absolute;
      inset: 0;
      
      background: linear-gradient(to right, rgba(15,25,55,.93) 0%, rgba(15,25,55,.85) 30%, rgba(15,25,55,.55) 50%, rgba(15,25,55,.15) 72%, transparent 88%);
      z-index: 1;
      transition: all var(--transition);
      pointer-events: none;
    }
.sector-card-large img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6) saturate(0.95);
      transition: transform var(--transition-slow), filter .3s;
    }
.sector-card-large:hover img {
      transform: scale(1.05);
      filter: brightness(0.7) saturate(1);
    }
.sector-card-large-content {
      position: relative;
      z-index: 2;
      padding: 2.5rem;
      color: var(--color-white);
      width: 100%;
    }
.sector-card-large h2 {
      color: var(--color-white);
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
    }
.sector-card-large p {
      color: rgba(255,255,255,0.85);
      font-size: 1rem;
      max-width: 500px;
      margin-bottom: 1.25rem;
    }
.sector-card-large .sector-features {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
.sector-feature-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      padding: 0.4rem 0.85rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--color-white);
    }
.sector-card-large .btn {
      border-color: var(--color-white);
      color: var(--color-white);
    }
.sector-card-large .btn:hover {
      background: var(--color-white);
      color: var(--color-primary);
    }
@media (max-width: 768px) {
      .sector-card-large::before {
        background: linear-gradient(180deg, rgba(15,25,55,.2) 0%, rgba(15,25,55,.55) 28%, rgba(15,25,55,.88) 58%, rgba(15,25,55,.97) 100%);
      }
      .sector-card-large-content {
        padding: 1.75rem;
      }
    }

/* ===== services.html ===== */
.svc-hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(ellipse at 85% 0%, var(--blue-soft), transparent 55%),
    radial-gradient(ellipse at 0% 30%, oklch(0.96 0.04 200), transparent 45%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.svc-hero .crumb { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; margin-bottom: 18px; }
.svc-hero .crumb a { color: var(--ink-3); }
.svc-hero .crumb a:hover { color: var(--blue); }
.svc-hero .crumb .sep { color: var(--ink-4); margin: 0 8px; }
.svc-hero h1 {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.04em; line-height: 1.05;
  margin-top: 0; max-width: 920px;
}
.svc-hero h1 em {
  font-family: inherit; font-style: normal; font-weight: inherit;
  color: var(--blue-deep);
}
.svc-hero .lede { margin-top: 18px; font-size: 18px; color: var(--ink-2); max-width: 620px; line-height: 1.55; }
.svc-list { padding: 100px 0; }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 880px) { .svc-row { grid-template-columns: 1fr; gap: 16px; } }
.svc-row .num {
  font-family: var(--mono); font-size: 12px;
  color: var(--blue); letter-spacing: 0.08em;
  padding-top: 6px;
}
.svc-row h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.1;
}
.svc-row .tag {
  display: inline-block; margin-top: 14px;
  font-family: var(--mono); font-size: 11px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--blue-tint); color: var(--blue-deep);
  letter-spacing: 0.04em;
}
.svc-row p { font-size: 16.5px; color: var(--ink-2); line-height: 1.6; max-width: 560px; }
.svc-row p + p { margin-top: 12px; }
.svc-row ul { list-style: none; padding: 0; margin-top: 18px; }
.svc-row ul li {
  font-size: 14.5px; color: var(--ink-2);
  padding: 6px 0; display: flex; gap: 10px; align-items: flex-start;
  border-top: 1px solid var(--line-2);
}
.svc-row ul li:first-child { border-top: 0; }
.svc-row ul li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--blue); border-radius: 50%;
  flex-shrink: 0; margin-top: 9px;
}

/* ===== tutoriels.html ===== */
.tuto-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 2rem;
    }
.tuto-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-2xl);
      overflow: hidden;
      transition: all var(--transition);
      display: flex;
      flex-direction: column;
    }
.tuto-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--color-primary-light);
    }
.tuto-card-header {
      padding: 1.5rem 1.5rem 1rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
.tuto-card-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-lg);
      background: var(--color-bg-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
.tuto-card-icon svg {
      width: 24px;
      height: 24px;
      color: var(--color-primary);
      stroke: var(--color-primary);
    }
.tuto-card-info h2 {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
    }
.tuto-card-info .tuto-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: var(--color-text-muted);
    }
.tuto-card-info .tuto-tag {
      display: inline-flex;
      align-items: center;
      padding: 0.15rem 0.55rem;
      background: var(--color-bg-warm);
      color: var(--color-primary);
      font-size: 0.72rem;
      font-weight: 600;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
.tuto-card-body {
      padding: 0 1.5rem;
      flex: 1;
    }
.tuto-card-body p {
      font-size: 0.9rem;
      color: var(--color-text-light);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }
.tuto-embed {
      margin: 0 1.5rem 1.5rem;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: var(--color-bg-light);
      border: 2px dashed var(--color-border);
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
.tuto-embed iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: var(--radius-xl);
    }
.tuto-embed-placeholder {
      text-align: center;
      padding: 2rem;
    }
.tuto-embed-placeholder svg {
      color: var(--color-text-muted);
      opacity: 0.4;
      margin-bottom: 1rem;
    }
.tuto-embed-placeholder p {
      font-size: 0.85rem;
      color: var(--color-text-muted);
    }
.tuto-embed-placeholder code {
      display: block;
      margin-top: 0.5rem;
      font-size: 0.75rem;
      color: var(--color-primary);
      background: var(--color-bg-warm);
      padding: 0.4rem 0.8rem;
      border-radius: var(--radius-md);
    }
@media (max-width: 768px) {
      .tuto-grid {
        grid-template-columns: 1fr;
      }
    }

/* ===== formations.html (suite) ===== */
.formation-category {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            margin-bottom: 1.5rem;
            overflow: hidden;
          }
.formation-category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            cursor: pointer;
            transition: background 0.2s ease;
          }
.formation-category-header:hover {
            background: var(--color-bg-light);
          }
.formation-category-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
          }
.formation-category-icon img {
            width: 32px;
            height: 32px;
            object-fit: contain;
          }
.formation-category-title {
            flex: 1;
          }
.formation-category-title h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
          }
.formation-category-title p {
            font-size: 0.9rem;
            color: var(--color-text-light);
            margin: 0;
          }
.formation-category-toggle {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--color-bg-light);
            transition: transform 0.3s ease;
          }
.formation-category.active .formation-category-toggle {
            transform: rotate(180deg);
          }
.formation-category-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
          }
.formation-category.active .formation-category-content {
            max-height: 2000px;
          }
.formation-category-inner {
            padding: 0 1.5rem 1.5rem;
            border-top: 1px solid var(--color-border);
          }
.skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
          }
.skill-module {
            background: var(--color-bg-light);
            border-radius: var(--radius-lg);
            padding: 1rem;
          }
.skill-module h5 {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            color: var(--color-primary);
          }
.skill-module ul {
            margin: 0;
            padding-left: 1.2rem;
            font-size: 0.85rem;
            color: var(--color-text-light);
          }
.skill-module li {
            margin-bottom: 0.25rem;
          }

/* ===== odoo.html (suite) ===== */
.video-intro { padding: 100px 0; background: var(--paper); }
.video-intro .vi-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.video-intro h2 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; }
.video-intro h2 em { font-family: inherit; font-style: normal; font-weight: inherit; color: var(--blue-deep); }
.video-intro .vi-head p { font-size: 16.5px; color: var(--ink-2); line-height: 1.6; }
.video-frame {
      max-width: 880px; margin: 0 auto;
      border-radius: 18px; overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-lg);
      background: #000;
    }
.video-frame video { width: 100%; height: auto; display: block; }


/* =====================================================
   Sub-page styles (relocated from inline <style>, scoped per page)
   ===================================================== */

/* ===== secteurs/commercants.html (scopé sous .p-sec-commercants) ===== */
.p-sec-commercants { --sector: oklch(0.55 0.16 155);
  --sector-deep: oklch(0.42 0.18 158);
  --sector-soft: oklch(0.95 0.05 155);
  --sector-tint: oklch(0.97 0.025 150); }
.p-sec-commercants .s-hero { position: relative; overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--line); }
.p-sec-commercants .s-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; padding: 80px 0 90px; }
@media (max-width: 880px) {
.p-sec-commercants .s-hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
}
.p-sec-commercants .s-hero .crumb { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .04em; margin-bottom: 18px; }
.p-sec-commercants .s-hero .crumb a { color: var(--ink-3); }
.p-sec-commercants .s-hero .crumb span.sep { color: var(--ink-4); margin: 0 8px; }
.p-sec-commercants .s-hero .label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--sector); margin-bottom: 20px; }
.p-sec-commercants .s-hero .label::before { content:''; width: 18px; height: 1px; background: var(--sector); }
.p-sec-commercants .s-hero h1 { font-family: var(--sans); font-weight: 600; font-size: clamp(40px, 5.4vw, 64px); letter-spacing: -0.04em; line-height: 1.05; }
.p-sec-commercants .s-hero h1 em { font-family: inherit; font-style: normal; font-weight: inherit; color: var(--sector-deep); }
.p-sec-commercants .s-hero .lede { margin-top: 22px; font-size: 18px; color: var(--ink-2); max-width: 540px; line-height: 1.55; }
.p-sec-commercants .s-hero .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-sec-commercants .s-hero .btn-primary { background: var(--sector); box-shadow: 0 8px 20px -10px var(--sector); }
.p-sec-commercants .s-hero .btn-primary:hover { background: var(--sector-deep); box-shadow: 0 12px 24px -10px var(--sector); }
.p-sec-commercants .s-hero .quick-stats { margin-top: 40px; display: flex; gap: 36px; flex-wrap: wrap; }
.p-sec-commercants .s-hero .quick-stats > div { border-left: 2px solid var(--sector); padding-left: 14px; }
.p-sec-commercants .s-hero .quick-stats b { display: block; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.p-sec-commercants .s-hero .quick-stats span { font-size: 13px; color: var(--ink-3); }
.p-sec-commercants .s-hero-visual { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(135deg, var(--sector-soft), var(--sector-tint)); }
.p-sec-commercants .s-hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-sec-commercants .s-hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(15,30,20,0.55)); }
.p-sec-commercants .s-hero-card { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); border-radius: 16px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 24px -8px rgba(0,0,0,.25); }
.p-sec-commercants .s-hero-card .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--sector); color: white; display: grid; place-items: center; flex-shrink: 0; }
.p-sec-commercants .s-hero-card b { font-size: 14.5px; display: block; margin-bottom: 2px; }
.p-sec-commercants .s-hero-card span { font-size: 12.5px; color: var(--ink-3); }
.p-sec-commercants .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 880px) {
.p-sec-commercants .pain-grid { grid-template-columns: 1fr; }
}
.p-sec-commercants .pain-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.p-sec-commercants .pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sector-soft); }
.p-sec-commercants .pain-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sector-soft); color: var(--sector-deep); display: grid; place-items: center; margin-bottom: 16px; }
.p-sec-commercants .pain-card h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.p-sec-commercants .pain-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.p-sec-commercants .pain-card .arrow { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--sector); font-weight: 500; }
.p-sec-commercants .mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 1080px) {
.p-sec-commercants .mod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
.p-sec-commercants .mod-grid { grid-template-columns: 1fr; }
}
.p-sec-commercants .mod { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 22px; position: relative; overflow: hidden; }
.p-sec-commercants .mod::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--sector-soft), transparent 60%); opacity: 0; transition: opacity .25s; }
.p-sec-commercants .mod:hover::before { opacity: 1; }
.p-sec-commercants .mod > * { position: relative; }
.p-sec-commercants .mod .num { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; margin-bottom: 14px; }
.p-sec-commercants .mod .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--sector); color: white; display: grid; place-items: center; margin-bottom: 14px; }
.p-sec-commercants .mod h3 { font-size: 16px; margin-bottom: 6px; }
.p-sec-commercants .mod p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.p-sec-commercants .pos-mockup { margin-top: 50px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
  box-shadow: var(--shadow-lg); }
@media (max-width: 880px) {
.p-sec-commercants .pos-mockup { grid-template-columns: 1fr; }
}
.p-sec-commercants .pos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.p-sec-commercants .pos-tile { aspect-ratio: 1;
  border-radius: 12px;
  background: var(--sector-soft);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: 1px solid transparent; }
.p-sec-commercants .pos-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--sector); }
.p-sec-commercants .pos-tile .emoji { font-size: 28px; margin-bottom: 6px; }
.p-sec-commercants .pos-tile b { font-size: 12.5px; display: block; }
.p-sec-commercants .pos-tile span { font-size: 11px; color: var(--ink-3); }
.p-sec-commercants .pos-cart { background: var(--paper-2);
  border-radius: 14px;
  padding: 20px;
  display: flex; flex-direction: column; }
.p-sec-commercants .pos-cart h3 { font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-3); margin-bottom: 14px; }
.p-sec-commercants .pos-line { display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  font-size: 13.5px; }
.p-sec-commercants .pos-line:last-of-type { border: none; }
.p-sec-commercants .pos-line span:last-child { font-family: var(--mono); color: var(--ink); font-weight: 500; }
.p-sec-commercants .pos-total { margin-top: auto; padding-top: 16px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 2px solid var(--ink); }
.p-sec-commercants .pos-total span:first-child { font-size: 13px; color: var(--ink-3); }
.p-sec-commercants .pos-total span:last-child { font-family: var(--sans); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; }
.p-sec-commercants .pos-pay { margin-top: 12px;
  background: var(--sector); color: white;
  text-align: center; padding: 14px;
  border-radius: 10px; font-weight: 500; font-size: 14px; }
.p-sec-commercants .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
@media (max-width: 880px) {
.p-sec-commercants .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.p-sec-commercants .stat { border-top: 2px solid var(--sector); padding-top: 24px; }
.p-sec-commercants .stat b { display: block; font-family: var(--sans); font-weight: 600; font-size: clamp(40px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.p-sec-commercants .stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.p-sec-commercants .quote-panel { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
@media (max-width: 880px) {
.p-sec-commercants .quote-panel { grid-template-columns: 1fr; }
}
.p-sec-commercants .quote-panel .img { position: relative; min-height: 320px; background: var(--sector-soft); }
.p-sec-commercants .quote-panel .img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-sec-commercants .quote-panel .body { background: var(--ink); color: white; padding: 50px 44px; display: flex; flex-direction: column; justify-content: center; }
.p-sec-commercants .quote-panel .body .mark { font-family: var(--serif); font-size: 64px; line-height: 1; color: var(--sector); margin-bottom: 6px; }
.p-sec-commercants .quote-panel .body p { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; color: oklch(0.92 0.012 240); }
.p-sec-commercants .quote-panel .body .who { margin-top: 28px; padding-top: 20px; border-top: 1px solid oklch(0.32 0.014 240); font-size: 14px; }
.p-sec-commercants .quote-panel .body .who b { display: block; color: white; margin-bottom: 2px; font-weight: 500; }
.p-sec-commercants .quote-panel .body .who span { color: oklch(0.7 0.012 240); }
.p-sec-commercants .faq { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; max-width: 880px; }
.p-sec-commercants .faq details { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 4px 24px; transition: border-color .2s; }
.p-sec-commercants .faq details[open] { border-color: var(--sector); }
.p-sec-commercants .faq summary { cursor: pointer; padding: 18px 0; font-size: 16px; font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.p-sec-commercants .faq summary::-webkit-details-marker { display: none; }
.p-sec-commercants .faq summary::after { content: '+'; font-size: 22px; color: var(--sector); font-weight: 300; transition: transform .2s; }
.p-sec-commercants .faq details[open] summary::after { content: '−'; }
.p-sec-commercants .faq .faq-body { padding: 0 0 20px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.p-sec-commercants .s-cta { padding: 100px 0; background: radial-gradient(ellipse at 30% 0%, var(--sector-deep), transparent 60%), var(--ink); color: white; }
.p-sec-commercants .s-cta h2 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: white; max-width: 820px; }
.p-sec-commercants .s-cta h2 em { font-family: inherit; font-style: normal; font-weight: inherit; color: oklch(0.85 0.12 155); }
.p-sec-commercants .s-cta p { margin-top: 20px; font-size: 17.5px; color: oklch(0.85 0.012 240); max-width: 620px; line-height: 1.55; }
.p-sec-commercants .s-cta .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-sec-commercants .s-cta .btn-primary { background: white; color: var(--ink); }
.p-sec-commercants .s-cta .btn-primary:hover { background: var(--sector); color: white; }
.p-sec-commercants .s-cta .btn-ghost { color: white; border: 1px solid oklch(0.45 0.014 250); background: transparent; }
.p-sec-commercants .s-cta .btn-ghost:hover { background: oklch(0.28 0.014 250); }

/* ===== secteurs/industries.html (scopé sous .p-sec-industries) ===== */
.p-sec-industries { --sector: oklch(0.48 0.16 250);
  --sector-deep: oklch(0.36 0.18 252);
  --sector-soft: oklch(0.95 0.04 250);
  --sector-tint: oklch(0.97 0.025 250); }
.p-sec-industries .s-hero { position: relative; overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--line); }
.p-sec-industries .s-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; padding: 80px 0 90px; }
@media (max-width: 880px) {
.p-sec-industries .s-hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
}
.p-sec-industries .s-hero .crumb { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .04em; margin-bottom: 18px; }
.p-sec-industries .s-hero .crumb a { color: var(--ink-3); }
.p-sec-industries .s-hero .crumb span.sep { color: var(--ink-4); margin: 0 8px; }
.p-sec-industries .s-hero .label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--sector); margin-bottom: 20px; }
.p-sec-industries .s-hero .label::before { content:''; width: 18px; height: 1px; background: var(--sector); }
.p-sec-industries .s-hero h1 { font-family: var(--sans); font-weight: 600; font-size: clamp(40px, 5.4vw, 64px); letter-spacing: -0.04em; line-height: 1.05; }
.p-sec-industries .s-hero h1 em { font-family: inherit; font-style: normal; font-weight: inherit; color: var(--sector-deep); }
.p-sec-industries .s-hero .lede { margin-top: 22px; font-size: 18px; color: var(--ink-2); max-width: 540px; line-height: 1.55; }
.p-sec-industries .s-hero .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-sec-industries .s-hero .btn-primary { background: var(--sector); box-shadow: 0 8px 20px -10px var(--sector); }
.p-sec-industries .s-hero .btn-primary:hover { background: var(--sector-deep); box-shadow: 0 12px 24px -10px var(--sector); }
.p-sec-industries .s-hero .quick-stats { margin-top: 40px; display: flex; gap: 36px; flex-wrap: wrap; }
.p-sec-industries .s-hero .quick-stats > div { border-left: 2px solid var(--sector); padding-left: 14px; }
.p-sec-industries .s-hero .quick-stats b { display: block; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.p-sec-industries .s-hero .quick-stats span { font-size: 13px; color: var(--ink-3); }
.p-sec-industries .s-hero-visual { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(135deg, var(--sector-soft), var(--sector-tint)); }
.p-sec-industries .s-hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-sec-industries .s-hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(15,20,40,0.55)); }
.p-sec-industries .s-hero-card { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); border-radius: 16px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 24px -8px rgba(0,0,0,.25); }
.p-sec-industries .s-hero-card .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--sector); color: white; display: grid; place-items: center; flex-shrink: 0; }
.p-sec-industries .s-hero-card b { font-size: 14.5px; display: block; margin-bottom: 2px; }
.p-sec-industries .s-hero-card span { font-size: 12.5px; color: var(--ink-3); }
.p-sec-industries .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 880px) {
.p-sec-industries .pain-grid { grid-template-columns: 1fr; }
}
.p-sec-industries .pain-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.p-sec-industries .pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sector-soft); }
.p-sec-industries .pain-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sector-soft); color: var(--sector-deep); display: grid; place-items: center; margin-bottom: 16px; }
.p-sec-industries .pain-card h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.p-sec-industries .pain-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.p-sec-industries .pain-card .arrow { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--sector); font-weight: 500; }
.p-sec-industries .mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 1080px) {
.p-sec-industries .mod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
.p-sec-industries .mod-grid { grid-template-columns: 1fr; }
}
.p-sec-industries .mod { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 22px; position: relative; overflow: hidden; }
.p-sec-industries .mod::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--sector-soft), transparent 60%); opacity: 0; transition: opacity .25s; }
.p-sec-industries .mod:hover::before { opacity: 1; }
.p-sec-industries .mod > * { position: relative; }
.p-sec-industries .mod .num { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; margin-bottom: 14px; }
.p-sec-industries .mod .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--sector); color: white; display: grid; place-items: center; margin-bottom: 14px; }
.p-sec-industries .mod h3 { font-size: 16px; margin-bottom: 6px; }
.p-sec-industries .mod p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.p-sec-industries .flow { margin-top: 50px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  position: relative; }
@media (max-width: 1080px) {
.p-sec-industries .flow { grid-template-columns: repeat(2, 1fr); }
}
.p-sec-industries .flow-node { background: white; border: 1px solid var(--line);
  border-radius: 16px; padding: 22px 18px;
  text-align: center; position: relative; }
.p-sec-industries .flow-node .num { display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sector); color: white;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  margin-bottom: 12px; }
.p-sec-industries .flow-node h3 { font-size: 14.5px; margin-bottom: 6px; }
.p-sec-industries .flow-node p { font-size: 12.5px; color: var(--ink-3); line-height: 1.45; }
.p-sec-industries .flow-node:not(:last-child)::after { content: '→';
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  color: var(--sector); font-size: 20px; font-weight: 300;
  z-index: 2; }
@media (max-width: 1080px) {
.p-sec-industries .flow-node:not(:last-child)::after { display: none; }
}
.p-sec-industries .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
@media (max-width: 880px) {
.p-sec-industries .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.p-sec-industries .stat { border-top: 2px solid var(--sector); padding-top: 24px; }
.p-sec-industries .stat b { display: block; font-family: var(--sans); font-weight: 600; font-size: clamp(40px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.p-sec-industries .stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.p-sec-industries .quote-panel { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
@media (max-width: 880px) {
.p-sec-industries .quote-panel { grid-template-columns: 1fr; }
}
.p-sec-industries .quote-panel .img { position: relative; min-height: 320px; background: var(--sector-soft); }
.p-sec-industries .quote-panel .img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-sec-industries .quote-panel .body { background: var(--ink); color: white; padding: 50px 44px; display: flex; flex-direction: column; justify-content: center; }
.p-sec-industries .quote-panel .body .mark { font-family: var(--serif); font-size: 64px; line-height: 1; color: var(--sector); margin-bottom: 6px; }
.p-sec-industries .quote-panel .body p { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; color: oklch(0.92 0.012 240); }
.p-sec-industries .quote-panel .body .who { margin-top: 28px; padding-top: 20px; border-top: 1px solid oklch(0.32 0.014 240); font-size: 14px; }
.p-sec-industries .quote-panel .body .who b { display: block; color: white; margin-bottom: 2px; font-weight: 500; }
.p-sec-industries .quote-panel .body .who span { color: oklch(0.7 0.012 240); }
.p-sec-industries .faq { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; max-width: 880px; }
.p-sec-industries .faq details { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 4px 24px; transition: border-color .2s; }
.p-sec-industries .faq details[open] { border-color: var(--sector); }
.p-sec-industries .faq summary { cursor: pointer; padding: 18px 0; font-size: 16px; font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.p-sec-industries .faq summary::-webkit-details-marker { display: none; }
.p-sec-industries .faq summary::after { content: '+'; font-size: 22px; color: var(--sector); font-weight: 300; transition: transform .2s; }
.p-sec-industries .faq details[open] summary::after { content: '−'; }
.p-sec-industries .faq .faq-body { padding: 0 0 20px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.p-sec-industries .s-cta { padding: 100px 0; background: radial-gradient(ellipse at 30% 0%, var(--sector-deep), transparent 60%), var(--ink); color: white; }
.p-sec-industries .s-cta h2 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: white; max-width: 820px; }
.p-sec-industries .s-cta h2 em { font-family: inherit; font-style: normal; font-weight: inherit; color: oklch(0.85 0.12 240); }
.p-sec-industries .s-cta p { margin-top: 20px; font-size: 17.5px; color: oklch(0.85 0.012 240); max-width: 620px; line-height: 1.55; }
.p-sec-industries .s-cta .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-sec-industries .s-cta .btn-primary { background: white; color: var(--ink); }
.p-sec-industries .s-cta .btn-primary:hover { background: var(--sector); color: white; }
.p-sec-industries .s-cta .btn-ghost { color: white; border: 1px solid oklch(0.45 0.014 250); background: transparent; }
.p-sec-industries .s-cta .btn-ghost:hover { background: oklch(0.28 0.014 250); }

/* ===== secteurs/reparation-automobile.html (scopé sous .p-sec-reparation) ===== */
.p-sec-reparation { --sector: oklch(0.55 0.16 30);
  --sector-deep: oklch(0.42 0.18 28);
  --sector-soft: oklch(0.96 0.04 30);
  --sector-tint: oklch(0.97 0.02 35); }
.p-sec-reparation .s-hero { position: relative; overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--line); }
.p-sec-reparation .s-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; padding: 80px 0 90px; }
@media (max-width: 880px) {
.p-sec-reparation .s-hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
}
.p-sec-reparation .s-hero .crumb { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .04em; margin-bottom: 18px; }
.p-sec-reparation .s-hero .crumb a { color: var(--ink-3); }
.p-sec-reparation .s-hero .crumb span.sep { color: var(--ink-4); margin: 0 8px; }
.p-sec-reparation .s-hero .label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--sector); margin-bottom: 20px; }
.p-sec-reparation .s-hero .label::before { content:''; width: 18px; height: 1px; background: var(--sector); }
.p-sec-reparation .s-hero h1 { font-family: var(--sans); font-weight: 600; font-size: clamp(40px, 5.4vw, 64px); letter-spacing: -0.04em; line-height: 1.05; }
.p-sec-reparation .s-hero h1 em { font-family: inherit; font-style: normal; font-weight: inherit; color: var(--sector-deep); }
.p-sec-reparation .s-hero .lede { margin-top: 22px; font-size: 18px; color: var(--ink-2); max-width: 540px; line-height: 1.55; }
.p-sec-reparation .s-hero .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-sec-reparation .s-hero .btn-primary { background: var(--sector); box-shadow: 0 8px 20px -10px var(--sector); }
.p-sec-reparation .s-hero .btn-primary:hover { background: var(--sector-deep); box-shadow: 0 12px 24px -10px var(--sector); }
.p-sec-reparation .s-hero .quick-stats { margin-top: 40px; display: flex; gap: 36px; flex-wrap: wrap; }
.p-sec-reparation .s-hero .quick-stats > div { border-left: 2px solid var(--sector); padding-left: 14px; }
.p-sec-reparation .s-hero .quick-stats b { display: block; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.p-sec-reparation .s-hero .quick-stats span { font-size: 13px; color: var(--ink-3); }
.p-sec-reparation .s-hero-visual { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(135deg, var(--sector-soft), var(--sector-tint)); }
.p-sec-reparation .s-hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-sec-reparation .s-hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(40,15,5,0.55)); }
.p-sec-reparation .s-hero-card { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); border-radius: 16px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 24px -8px rgba(0,0,0,.25); }
.p-sec-reparation .s-hero-card .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--sector); color: white; display: grid; place-items: center; flex-shrink: 0; }
.p-sec-reparation .s-hero-card b { font-size: 14.5px; display: block; margin-bottom: 2px; }
.p-sec-reparation .s-hero-card span { font-size: 12.5px; color: var(--ink-3); }
.p-sec-reparation .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 880px) {
.p-sec-reparation .pain-grid { grid-template-columns: 1fr; }
}
.p-sec-reparation .pain-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.p-sec-reparation .pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sector-soft); }
.p-sec-reparation .pain-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sector-soft); color: var(--sector-deep); display: grid; place-items: center; margin-bottom: 16px; }
.p-sec-reparation .pain-card h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.p-sec-reparation .pain-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.p-sec-reparation .pain-card .arrow { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--sector); font-weight: 500; }
.p-sec-reparation .mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 1080px) {
.p-sec-reparation .mod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
.p-sec-reparation .mod-grid { grid-template-columns: 1fr; }
}
.p-sec-reparation .mod { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 22px; position: relative; overflow: hidden; }
.p-sec-reparation .mod::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--sector-soft), transparent 60%); opacity: 0; transition: opacity .25s; }
.p-sec-reparation .mod:hover::before { opacity: 1; }
.p-sec-reparation .mod > * { position: relative; }
.p-sec-reparation .mod .num { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; margin-bottom: 14px; }
.p-sec-reparation .mod .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--sector); color: white; display: grid; place-items: center; margin-bottom: 14px; }
.p-sec-reparation .mod h3 { font-size: 16px; margin-bottom: 6px; }
.p-sec-reparation .mod p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.p-sec-reparation .devis-mockup { margin-top: 50px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px;
  box-shadow: var(--shadow-lg); }
@media (max-width: 880px) {
.p-sec-reparation .devis-mockup { grid-template-columns: 1fr; }
}
.p-sec-reparation .devis-form { display: flex; flex-direction: column; gap: 14px; }
.p-sec-reparation .devis-field { display: flex; flex-direction: column; gap: 6px; }
.p-sec-reparation .devis-field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); }
.p-sec-reparation .devis-field .val { padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper-2); font-size: 14.5px; }
.p-sec-reparation .devis-field .val.highlight { background: var(--sector-soft); color: var(--sector-deep); font-weight: 500; border-color: var(--sector); }
.p-sec-reparation .devis-doc { background: var(--paper-2);
  border-radius: 14px;
  padding: 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  position: relative; }
.p-sec-reparation .devis-doc::before { content: 'DEVIS · D-2417'; position: absolute; top: 14px; right: 14px; font-size: 10px; color: var(--ink-3); letter-spacing: .1em; }
.p-sec-reparation .devis-doc h3 { font-family: var(--sans); font-size: 15px; margin-bottom: 16px; }
.p-sec-reparation .devis-line { display: grid; grid-template-columns: 1fr auto; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.p-sec-reparation .devis-line span:first-child { color: var(--ink-2); }
.p-sec-reparation .devis-line span:last-child { color: var(--ink); }
.p-sec-reparation .devis-totals { margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--ink); display: flex; flex-direction: column; gap: 6px; }
.p-sec-reparation .devis-totals .row { display: flex; justify-content: space-between; }
.p-sec-reparation .devis-totals .row.total { font-family: var(--sans); font-size: 18px; font-weight: 600; margin-top: 8px; }
.p-sec-reparation .devis-time { margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sector); color: white;
  padding: 10px 16px; border-radius: 999px;
  font-family: var(--sans); font-size: 13px; font-weight: 500; }
.p-sec-reparation .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
@media (max-width: 880px) {
.p-sec-reparation .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.p-sec-reparation .stat { border-top: 2px solid var(--sector); padding-top: 24px; }
.p-sec-reparation .stat b { display: block; font-family: var(--sans); font-weight: 600; font-size: clamp(40px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.p-sec-reparation .stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.p-sec-reparation .quote-panel { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
@media (max-width: 880px) {
.p-sec-reparation .quote-panel { grid-template-columns: 1fr; }
}
.p-sec-reparation .quote-panel .img { position: relative; min-height: 320px; background: var(--sector-soft); }
.p-sec-reparation .quote-panel .img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-sec-reparation .quote-panel .body { background: var(--ink); color: white; padding: 50px 44px; display: flex; flex-direction: column; justify-content: center; }
.p-sec-reparation .quote-panel .body .mark { font-family: var(--serif); font-size: 64px; line-height: 1; color: var(--sector); margin-bottom: 6px; }
.p-sec-reparation .quote-panel .body p { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; color: oklch(0.92 0.012 240); }
.p-sec-reparation .quote-panel .body .who { margin-top: 28px; padding-top: 20px; border-top: 1px solid oklch(0.32 0.014 240); font-size: 14px; }
.p-sec-reparation .quote-panel .body .who b { display: block; color: white; margin-bottom: 2px; font-weight: 500; }
.p-sec-reparation .quote-panel .body .who span { color: oklch(0.7 0.012 240); }
.p-sec-reparation .faq { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; max-width: 880px; }
.p-sec-reparation .faq details { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 4px 24px; transition: border-color .2s; }
.p-sec-reparation .faq details[open] { border-color: var(--sector); }
.p-sec-reparation .faq summary { cursor: pointer; padding: 18px 0; font-size: 16px; font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.p-sec-reparation .faq summary::-webkit-details-marker { display: none; }
.p-sec-reparation .faq summary::after { content: '+'; font-size: 22px; color: var(--sector); font-weight: 300; transition: transform .2s; }
.p-sec-reparation .faq details[open] summary::after { content: '−'; }
.p-sec-reparation .faq .faq-body { padding: 0 0 20px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.p-sec-reparation .s-cta { padding: 100px 0; background: radial-gradient(ellipse at 30% 0%, var(--sector-deep), transparent 60%), var(--ink); color: white; }
.p-sec-reparation .s-cta h2 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: white; max-width: 820px; }
.p-sec-reparation .s-cta h2 em { font-family: inherit; font-style: normal; font-weight: inherit; color: oklch(0.85 0.12 30); }
.p-sec-reparation .s-cta p { margin-top: 20px; font-size: 17.5px; color: oklch(0.85 0.012 240); max-width: 620px; line-height: 1.55; }
.p-sec-reparation .s-cta .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-sec-reparation .s-cta .btn-primary { background: white; color: var(--ink); }
.p-sec-reparation .s-cta .btn-primary:hover { background: var(--sector); color: white; }
.p-sec-reparation .s-cta .btn-ghost { color: white; border: 1px solid oklch(0.45 0.014 250); background: transparent; }
.p-sec-reparation .s-cta .btn-ghost:hover { background: oklch(0.28 0.014 250); }

/* ===== secteurs/restaurants.html (scopé sous .p-sec-restaurants) ===== */
.p-sec-restaurants { --sector: oklch(0.58 0.16 35);     
  --sector-deep: oklch(0.45 0.18 30);
  --sector-soft: oklch(0.96 0.04 40);
  --sector-tint: oklch(0.98 0.02 50); }
.p-sec-restaurants .s-hero { position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line); }
.p-sec-restaurants .s-hero-grid { display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 90px; }
@media (max-width: 880px) {
.p-sec-restaurants .s-hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
}
.p-sec-restaurants .s-hero .crumb { font-family: var(--mono); font-size: 12px;
  color: var(--ink-3); letter-spacing: .04em; margin-bottom: 18px; }
.p-sec-restaurants .s-hero .crumb a { color: var(--ink-3); }
.p-sec-restaurants .s-hero .crumb span.sep { color: var(--ink-4); margin: 0 8px; }
.p-sec-restaurants .s-hero .label { display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--sector); margin-bottom: 20px; }
.p-sec-restaurants .s-hero .label::before { content:''; width: 18px; height: 1px; background: var(--sector); }
.p-sec-restaurants .s-hero h1 { font-family: var(--sans); font-weight: 600;
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.04em; line-height: 1.05; }
.p-sec-restaurants .s-hero h1 em { font-family: inherit; font-style: normal; font-weight: inherit; color: var(--sector-deep); }
.p-sec-restaurants .s-hero .lede { margin-top: 22px;
  font-size: 18px; color: var(--ink-2);
  max-width: 540px; line-height: 1.55; }
.p-sec-restaurants .s-hero .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-sec-restaurants .s-hero .btn-primary { background: var(--sector); box-shadow: 0 8px 20px -10px var(--sector); }
.p-sec-restaurants .s-hero .btn-primary:hover { background: var(--sector-deep); box-shadow: 0 12px 24px -10px var(--sector); }
.p-sec-restaurants .s-hero .quick-stats { margin-top: 40px;
  display: flex; gap: 36px; flex-wrap: wrap; }
.p-sec-restaurants .s-hero .quick-stats > div { border-left: 2px solid var(--sector); padding-left: 14px; }
.p-sec-restaurants .s-hero .quick-stats b { display: block; font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--ink); }
.p-sec-restaurants .s-hero .quick-stats span { font-size: 13px; color: var(--ink-3); }
.p-sec-restaurants .s-hero-visual { position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sector-soft), var(--sector-tint)); }
.p-sec-restaurants .s-hero-visual img { position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; }
.p-sec-restaurants .s-hero-visual::after { content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,15,10,0.5)); }
.p-sec-restaurants .s-hero-card { position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.25); }
.p-sec-restaurants .s-hero-card .ic { width: 42px; height: 42px; border-radius: 12px;
  background: var(--sector); color: white;
  display: grid; place-items: center; flex-shrink: 0; }
.p-sec-restaurants .s-hero-card b { font-size: 14.5px; display: block; margin-bottom: 2px; }
.p-sec-restaurants .s-hero-card span { font-size: 12.5px; color: var(--ink-3); }
.p-sec-restaurants .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; }
@media (max-width: 880px) {
.p-sec-restaurants .pain-grid { grid-template-columns: 1fr; }
}
.p-sec-restaurants .pain-card { background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s; }
.p-sec-restaurants .pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sector-soft); }
.p-sec-restaurants .pain-card .ic { width: 44px; height: 44px; border-radius: 12px;
  background: oklch(0.96 0.05 30); color: var(--sector-deep);
  display: grid; place-items: center; margin-bottom: 16px; }
.p-sec-restaurants .pain-card h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.p-sec-restaurants .pain-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.p-sec-restaurants .pain-card .arrow { margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--sector); font-weight: 500; }
.p-sec-restaurants .mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 40px; }
@media (max-width: 1080px) {
.p-sec-restaurants .mod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
.p-sec-restaurants .mod-grid { grid-template-columns: 1fr; }
}
.p-sec-restaurants .mod { background: white; border: 1px solid var(--line);
  border-radius: 16px; padding: 22px;
  position: relative; overflow: hidden; }
.p-sec-restaurants .mod::before { content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sector-soft), transparent 60%);
  opacity: 0; transition: opacity .25s; }
.p-sec-restaurants .mod:hover::before { opacity: 1; }
.p-sec-restaurants .mod > * { position: relative; }
.p-sec-restaurants .mod .num { font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: .08em;
  margin-bottom: 14px; }
.p-sec-restaurants .mod .ic { width: 38px; height: 38px; border-radius: 10px;
  background: var(--sector); color: white;
  display: grid; place-items: center; margin-bottom: 14px; }
.p-sec-restaurants .mod h3 { font-size: 16px; margin-bottom: 6px; }
.p-sec-restaurants .mod p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.p-sec-restaurants .workflow { background: var(--paper-2);
  padding: 100px 0; }
.p-sec-restaurants .timeline { position: relative;
  margin-top: 50px;
  padding-left: 40px; }
.p-sec-restaurants .timeline::before { content: '';
  position: absolute; left: 14px; top: 12px; bottom: 12px;
  width: 2px; background: linear-gradient(180deg, var(--sector), transparent); }
.p-sec-restaurants .tl-item { position: relative;
  padding-bottom: 36px; }
.p-sec-restaurants .tl-item:last-child { padding-bottom: 0; }
.p-sec-restaurants .tl-item::before { content: ''; position: absolute;
  left: -33px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: white; border: 3px solid var(--sector);
  box-shadow: 0 0 0 4px var(--sector-soft); }
.p-sec-restaurants .tl-item .time { font-family: var(--mono); font-size: 12px;
  color: var(--sector); letter-spacing: .04em;
  margin-bottom: 6px; }
.p-sec-restaurants .tl-item h3 { font-size: 18px; margin-bottom: 6px; }
.p-sec-restaurants .tl-item p { font-size: 15px; color: var(--ink-2); line-height: 1.55; max-width: 620px; }
.p-sec-restaurants .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 50px; }
@media (max-width: 880px) {
.p-sec-restaurants .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.p-sec-restaurants .stat { border-top: 2px solid var(--sector);
  padding-top: 24px; }
.p-sec-restaurants .stat b { display: block;
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.03em; line-height: 1;
  color: var(--ink); }
.p-sec-restaurants .stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.p-sec-restaurants .quote-panel { margin-top: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg); }
@media (max-width: 880px) {
.p-sec-restaurants .quote-panel { grid-template-columns: 1fr; }
}
.p-sec-restaurants .quote-panel .img { position: relative; min-height: 320px;
  background: var(--sector-soft); }
.p-sec-restaurants .quote-panel .img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-sec-restaurants .quote-panel .body { background: var(--ink); color: white;
  padding: 50px 44px;
  display: flex; flex-direction: column; justify-content: center; }
.p-sec-restaurants .quote-panel .body .mark { font-family: var(--serif); font-size: 64px; line-height: 1;
  color: var(--sector); margin-bottom: 6px; }
.p-sec-restaurants .quote-panel .body p { font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4;
  color: oklch(0.92 0.012 240); }
.p-sec-restaurants .quote-panel .body .who { margin-top: 28px; padding-top: 20px;
  border-top: 1px solid oklch(0.32 0.014 240);
  font-size: 14px; }
.p-sec-restaurants .quote-panel .body .who b { display: block; color: white; margin-bottom: 2px; font-weight: 500; }
.p-sec-restaurants .quote-panel .body .who span { color: oklch(0.7 0.012 240); }
.p-sec-restaurants .faq { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; max-width: 880px; }
.p-sec-restaurants .faq details { background: white; border: 1px solid var(--line);
  border-radius: 14px; padding: 4px 24px;
  transition: border-color .2s; }
.p-sec-restaurants .faq details[open] { border-color: var(--sector); }
.p-sec-restaurants .faq summary { cursor: pointer; padding: 18px 0;
  font-size: 16px; font-weight: 500;
  list-style: none; display: flex; justify-content: space-between; align-items: center; }
.p-sec-restaurants .faq summary::-webkit-details-marker { display: none; }
.p-sec-restaurants .faq summary::after { content: '+'; font-size: 22px; color: var(--sector); font-weight: 300;
  transition: transform .2s; }
.p-sec-restaurants .faq details[open] summary::after { content: '−'; }
.p-sec-restaurants .faq .faq-body { padding: 0 0 20px;
  font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.p-sec-restaurants .s-cta { padding: 100px 0;
  background: radial-gradient(ellipse at 30% 0%, var(--sector-deep), transparent 60%), var(--ink);
  color: white; }
.p-sec-restaurants .s-cta h2 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.05; color: white;
  max-width: 820px; }
.p-sec-restaurants .s-cta h2 em { font-family: inherit; font-style: normal; font-weight: inherit; color: oklch(0.85 0.12 35); }
.p-sec-restaurants .s-cta p { margin-top: 20px; font-size: 17.5px; color: oklch(0.85 0.012 240); max-width: 620px; line-height: 1.55; }
.p-sec-restaurants .s-cta .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-sec-restaurants .s-cta .btn-primary { background: white; color: var(--ink); }
.p-sec-restaurants .s-cta .btn-primary:hover { background: var(--sector); color: white; }
.p-sec-restaurants .s-cta .btn-ghost { color: white; border: 1px solid oklch(0.45 0.014 250); background: transparent; }
.p-sec-restaurants .s-cta .btn-ghost:hover { background: oklch(0.28 0.014 250); }

/* ===== blog/e-commerce-b2b-facturation-electronique.html (scopé sous .p-art-ecommerce) ===== */
.p-art-ecommerce .article-hero { padding: 60px 0 48px;
      background: linear-gradient(180deg, var(--blue-tint), var(--paper));
      border-bottom: 1px solid var(--line); }
.p-art-ecommerce .article-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
      font-size: 13px; color: var(--ink-3); margin-bottom: 22px; }
.p-art-ecommerce .article-meta .sep { color: var(--line); }
.p-art-ecommerce .article-meta .tag { display: inline-flex; align-items: center; padding: 3px 10px;
      background: var(--blue-soft); color: var(--blue-deep);
      border-radius: 999px; font-size: 12px; font-weight: 600; }
.p-art-ecommerce .article-title { font-size: clamp(28px, 4vw, 46px);
      font-weight: 600; letter-spacing: -0.03em; line-height: 1.1;
      max-width: 820px; color: var(--ink); }
.p-art-ecommerce .article-title .acc { color: var(--blue-deep); }
.p-art-ecommerce .article-lede { margin-top: 18px; font-size: 18px;
      color: var(--ink-2); line-height: 1.6;
      max-width: 720px; text-wrap: pretty; }
.p-art-ecommerce .article-author { display: flex; align-items: center; gap: 12px;
      margin-top: 28px; padding-top: 24px;
      border-top: 1px solid var(--line); }
.p-art-ecommerce .author-av { width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-deep));
      display: grid; place-items: center; color: white;
      font-weight: 700; font-size: 14px; flex-shrink: 0; }
.p-art-ecommerce .author-info { font-size: 13.5px; }
.p-art-ecommerce .author-info strong { display: block; color: var(--ink); font-weight: 600; }
.p-art-ecommerce .author-info span { color: var(--ink-3); }
.p-art-ecommerce .article-layout { display: grid;
      grid-template-columns: 1fr 280px;
      gap: 64px;
      align-items: start;
      padding: 64px 0 80px; }
@media (max-width: 960px) {
.p-art-ecommerce .article-layout { grid-template-columns: 1fr; }
}
.p-art-ecommerce .article-body { min-width: 0; }
.p-art-ecommerce .article-body h2 { font-size: clamp(22px, 2.6vw, 28px);
      font-weight: 600; letter-spacing: -0.025em;
      color: var(--ink); margin: 44px 0 16px;
      padding-top: 8px; border-top: 2px solid var(--blue-soft); }
.p-art-ecommerce .article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.p-art-ecommerce .article-body h3 { font-size: 18px; font-weight: 600;
      color: var(--ink); margin: 28px 0 10px; }
.p-art-ecommerce .article-body p { font-size: 16.5px; line-height: 1.7;
      color: var(--ink-2); margin-bottom: 16px;
      text-wrap: pretty; }
.p-art-ecommerce .article-body strong { color: var(--ink); font-weight: 600; }
.p-art-ecommerce .article-body ul, .p-art-ecommerce .article-body ol { padding-left: 0; list-style: none;
      margin: 16px 0 20px; }
.p-art-ecommerce .article-body ul li, .p-art-ecommerce .article-body ol li { position: relative;
      padding: 8px 0 8px 24px;
      font-size: 16px; color: var(--ink-2);
      line-height: 1.6;
      border-bottom: 1px solid var(--line-2); }
.p-art-ecommerce .article-body ul li::before { content: '';
      position: absolute; left: 0; top: 18px;
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--blue); }
.p-art-ecommerce .article-body ol { counter-reset: ol-counter; }
.p-art-ecommerce .article-body ol li { counter-increment: ol-counter; }
.p-art-ecommerce .article-body ol li::before { content: counter(ol-counter);
      position: absolute; left: 0; top: 8px;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--blue-soft); color: var(--blue-deep);
      font-size: 11px; font-weight: 700;
      display: grid; place-items: center; }
.p-art-ecommerce .callout { display: flex; gap: 14px;
      padding: 18px 20px; border-radius: 12px;
      border: 1px solid var(--line); background: var(--blue-tint);
      margin: 28px 0; }
.p-art-ecommerce .callout.warn { background: oklch(0.97 0.02 55); border-color: oklch(0.90 0.06 55); }
.p-art-ecommerce .callout .c-icon { flex-shrink: 0; width: 22px; height: 22px;
      color: var(--blue-deep); margin-top: 2px; }
.p-art-ecommerce .callout.warn .c-icon { color: oklch(0.6 0.14 55); }
.p-art-ecommerce .callout p { margin: 0; font-size: 15px; color: var(--ink-2); }
.p-art-ecommerce .callout strong { color: var(--ink); }
.p-art-ecommerce .cal-table { width: 100%; border-collapse: collapse;
      margin: 24px 0; font-size: 14.5px;
      border: 1px solid var(--line); border-radius: 10px;
      overflow: hidden; }
.p-art-ecommerce .cal-table th { background: var(--blue-deep); color: white;
      padding: 12px 16px; text-align: left;
      font-weight: 600; font-size: 13px;
      letter-spacing: 0.02em; }
.p-art-ecommerce .cal-table td { padding: 12px 16px; border-bottom: 1px solid var(--line-2);
      color: var(--ink-2); vertical-align: top; }
.p-art-ecommerce .cal-table tr:last-child td { border-bottom: none; }
.p-art-ecommerce .cal-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.p-art-ecommerce .cal-table .badge-date { display: inline-block; padding: 2px 10px;
      border-radius: 999px; font-size: 12px; font-weight: 600;
      background: var(--good-soft); color: var(--good); }
.p-art-ecommerce .cal-table .badge-urgent { background: oklch(0.96 0.04 25); color: oklch(0.55 0.18 25); }
.p-art-ecommerce .format-grid { display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 14px; margin: 24px 0; }
@media (max-width: 720px) {
.p-art-ecommerce .format-grid { grid-template-columns: 1fr; }
}
.p-art-ecommerce .format-card { padding: 18px; border-radius: 12px;
      border: 1px solid var(--line); background: white; }
.p-art-ecommerce .format-card .f-name { font-family: var(--mono); font-size: 13px; font-weight: 600;
      color: var(--blue-deep); margin-bottom: 8px; }
.p-art-ecommerce .format-card p { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.p-art-ecommerce .steps { display: flex; flex-direction: column; gap: 0;
      margin: 24px 0; }
.p-art-ecommerce .step-item { display: flex; gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid var(--line-2); }
.p-art-ecommerce .step-item:last-child { border-bottom: none; }
.p-art-ecommerce .step-num { flex-shrink: 0; width: 36px; height: 36px;
      border-radius: 50%; background: var(--blue-soft);
      color: var(--blue-deep); font-weight: 700; font-size: 16px;
      display: grid; place-items: center; }
.p-art-ecommerce .step-content h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.p-art-ecommerce .step-content p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.p-art-ecommerce .article-sidebar { position: sticky; top: 88px; }
.p-art-ecommerce .sidebar-toc { background: white; border: 1px solid var(--line);
      border-radius: var(--radius); padding: 22px 20px;
      margin-bottom: 20px; }
.p-art-ecommerce .sidebar-toc h2 { font-size: 12px; font-family: var(--mono);
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--ink-3); margin-bottom: 14px; }
.p-art-ecommerce .sidebar-toc ol { list-style: none; padding: 0; counter-reset: toc; }
.p-art-ecommerce .sidebar-toc ol li { counter-increment: toc;
      padding: 0; border: none;
      margin-bottom: 10px; }
.p-art-ecommerce .sidebar-toc ol li::before { display: none; }
.p-art-ecommerce .sidebar-toc ol li a { display: flex; gap: 8px; align-items: flex-start;
      font-size: 13px; color: var(--ink-2);
      line-height: 1.4; transition: color .15s; }
.p-art-ecommerce .sidebar-toc ol li a:hover { color: var(--blue-deep); }
.p-art-ecommerce .sidebar-toc ol li a::before { content: counter(toc);
      flex-shrink: 0; width: 18px; height: 18px;
      border-radius: 50%; background: var(--paper-2);
      color: var(--ink-3); font-size: 10px; font-weight: 600;
      display: grid; place-items: center; margin-top: 1px; }
.p-art-ecommerce .sidebar-cta { background: var(--ink); color: white;
      border-radius: var(--radius); padding: 24px 20px;
      text-align: center; }
.p-art-ecommerce .sidebar-cta h2 { color: white; font-size: 15px; margin-bottom: 10px; }
.p-art-ecommerce .sidebar-cta p { font-size: 13px; color: oklch(0.75 0.01 240); margin-bottom: 18px; }
.p-art-ecommerce .sidebar-cta .btn-primary { width: 100%; justify-content: center; font-size: 14px; padding: 12px 18px; }
.p-art-ecommerce .article-nav { display: flex; justify-content: space-between; gap: 16px;
      padding: 32px 0; border-top: 1px solid var(--line);
      margin-top: 48px; }
.p-art-ecommerce .article-nav a { font-size: 14px; color: var(--blue-deep);
      font-weight: 500; display: flex; align-items: center; gap: 6px; }

/* ===== blog/odoo-19-3-nouveautes.html (scopé sous .p-art-odoo19) ===== */
.p-art-odoo19 .article-hero { padding: 60px 0 48px;
      background: linear-gradient(180deg, var(--blue-tint), var(--paper));
      border-bottom: 1px solid var(--line); }
.p-art-odoo19 .article-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
      font-size: 13px; color: var(--ink-3); margin-bottom: 22px; }
.p-art-odoo19 .article-meta .sep { color: var(--line); }
.p-art-odoo19 .article-meta .tag { display: inline-flex; align-items: center; padding: 3px 10px;
      background: var(--blue-soft); color: var(--blue-deep);
      border-radius: 999px; font-size: 12px; font-weight: 600; }
.p-art-odoo19 .article-title { font-size: clamp(28px, 4vw, 46px);
      font-weight: 600; letter-spacing: -0.03em; line-height: 1.1;
      max-width: 820px; color: var(--ink); }
.p-art-odoo19 .article-title .acc { color: var(--blue-deep); }
.p-art-odoo19 .article-lede { margin-top: 18px; font-size: 18px;
      color: var(--ink-2); line-height: 1.6;
      max-width: 720px; text-wrap: pretty; }
.p-art-odoo19 .article-author { display: flex; align-items: center; gap: 12px;
      margin-top: 28px; padding-top: 24px;
      border-top: 1px solid var(--line); }
.p-art-odoo19 .author-av { width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-deep));
      display: grid; place-items: center; color: white;
      font-weight: 700; font-size: 14px; flex-shrink: 0; }
.p-art-odoo19 .author-info { font-size: 13.5px; }
.p-art-odoo19 .author-info strong { display: block; color: var(--ink); font-weight: 600; }
.p-art-odoo19 .author-info span { color: var(--ink-3); }
.p-art-odoo19 .article-layout { display: grid;
      grid-template-columns: 1fr 280px;
      gap: 64px;
      align-items: start;
      padding: 64px 0 80px; }
@media (max-width: 960px) {
.p-art-odoo19 .article-layout { grid-template-columns: 1fr; }
}
.p-art-odoo19 .article-body { min-width: 0; }
.p-art-odoo19 .article-body h2 { font-size: clamp(22px, 2.6vw, 28px);
      font-weight: 600; letter-spacing: -0.025em;
      color: var(--ink); margin: 44px 0 16px;
      padding-top: 8px; border-top: 2px solid var(--blue-soft); }
.p-art-odoo19 .article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.p-art-odoo19 .article-body h3 { font-size: 18px; font-weight: 600;
      color: var(--ink); margin: 28px 0 10px; }
.p-art-odoo19 .article-body p { font-size: 16.5px; line-height: 1.7;
      color: var(--ink-2); margin-bottom: 16px;
      text-wrap: pretty; }
.p-art-odoo19 .article-body strong { color: var(--ink); font-weight: 600; }
.p-art-odoo19 .article-body ul, .p-art-odoo19 .article-body ol { padding-left: 0; list-style: none;
      margin: 16px 0 20px; }
.p-art-odoo19 .article-body ul li, .p-art-odoo19 .article-body ol li { position: relative;
      padding: 8px 0 8px 24px;
      font-size: 16px; color: var(--ink-2);
      line-height: 1.6;
      border-bottom: 1px solid var(--line-2); }
.p-art-odoo19 .article-body ul li::before { content: '';
      position: absolute; left: 0; top: 18px;
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--blue); }
.p-art-odoo19 .feat-grid { display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 14px; margin: 24px 0; }
@media (max-width: 720px) {
.p-art-odoo19 .feat-grid { grid-template-columns: 1fr; }
}
.p-art-odoo19 .feat-card { padding: 18px 20px; border-radius: 12px;
      border: 1px solid var(--line); background: white; }
.p-art-odoo19 .feat-card .f-icon { width: 36px; height: 36px; border-radius: 9px;
      background: var(--blue-soft); color: var(--blue-deep);
      display: grid; place-items: center; margin-bottom: 12px; }
.p-art-odoo19 .feat-card h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.p-art-odoo19 .feat-card p { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.55; }
.p-art-odoo19 .callout { display: flex; gap: 14px;
      padding: 18px 20px; border-radius: 12px;
      border: 1px solid var(--line); background: var(--blue-tint);
      margin: 28px 0; }
.p-art-odoo19 .callout.highlight { background: oklch(0.97 0.04 155); border-color: oklch(0.85 0.08 155); }
.p-art-odoo19 .callout .c-icon { flex-shrink: 0; width: 22px; height: 22px;
      color: var(--blue-deep); margin-top: 2px; }
.p-art-odoo19 .callout.highlight .c-icon { color: var(--good); }
.p-art-odoo19 .callout p { margin: 0; font-size: 15px; color: var(--ink-2); }
.p-art-odoo19 .callout strong { color: var(--ink); }
.p-art-odoo19 .module-list { display: flex; flex-wrap: wrap; gap: 8px;
      margin: 16px 0 24px; }
.p-art-odoo19 .module-pill { padding: 6px 12px; border-radius: 999px;
      background: var(--paper-2); border: 1px solid var(--line);
      font-size: 13px; color: var(--ink-2); font-weight: 500; }
.p-art-odoo19 .module-pill.new { background: var(--blue-soft); color: var(--blue-deep);
      border-color: oklch(0.85 0.06 250); font-weight: 600; }
.p-art-odoo19 .article-sidebar { position: sticky; top: 88px; }
.p-art-odoo19 .sidebar-toc { background: white; border: 1px solid var(--line);
      border-radius: var(--radius); padding: 22px 20px;
      margin-bottom: 20px; }
.p-art-odoo19 .sidebar-toc h2 { font-size: 12px; font-family: var(--mono);
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--ink-3); margin-bottom: 14px; }
.p-art-odoo19 .sidebar-toc ol { list-style: none; padding: 0; counter-reset: toc; }
.p-art-odoo19 .sidebar-toc ol li { counter-increment: toc;
      padding: 0; border: none;
      margin-bottom: 10px; }
.p-art-odoo19 .sidebar-toc ol li::before { display: none; }
.p-art-odoo19 .sidebar-toc ol li a { display: flex; gap: 8px; align-items: flex-start;
      font-size: 13px; color: var(--ink-2);
      line-height: 1.4; transition: color .15s; }
.p-art-odoo19 .sidebar-toc ol li a:hover { color: var(--blue-deep); }
.p-art-odoo19 .sidebar-toc ol li a::before { content: counter(toc);
      flex-shrink: 0; width: 18px; height: 18px;
      border-radius: 50%; background: var(--paper-2);
      color: var(--ink-3); font-size: 10px; font-weight: 600;
      display: grid; place-items: center; margin-top: 1px; }
.p-art-odoo19 .sidebar-cta { background: var(--ink); color: white;
      border-radius: var(--radius); padding: 24px 20px;
      text-align: center; }
.p-art-odoo19 .sidebar-cta h2 { color: white; font-size: 15px; margin-bottom: 10px; }
.p-art-odoo19 .sidebar-cta p { font-size: 13px; color: oklch(0.75 0.01 240); margin-bottom: 18px; }
.p-art-odoo19 .sidebar-cta .btn-primary { width: 100%; justify-content: center; font-size: 14px; padding: 12px 18px; }
.p-art-odoo19 .article-nav { display: flex; justify-content: space-between; gap: 16px;
      padding: 32px 0; border-top: 1px solid var(--line);
      margin-top: 48px; }
.p-art-odoo19 .article-nav a { font-size: 14px; color: var(--blue-deep);
      font-weight: 500; display: flex; align-items: center; gap: 6px; }
