/* DPAE en ligne — Homepage CSS · Variante « Atlassian-inspired »
 * Inspiration : atlassian.com (clean white, Atlassian blue, tile icons colorés).
 * Typographies : Inter (tout), JetBrains Mono pour le code/refs légales.
 * Palette : blanc + gris froid pâle + Atlassian Blue #0C66E4 + tuiles colorées.
 */

:root {
  /* Backgrounds — gammes cool, jamais beige */
  --paper: #ffffff;
  --paper-card: #ffffff;
  --paper-soft: #f7f8f9;      /* section alt */
  --paper-tint: #f4f5f7;
  --paper-blue: #deebff;      /* tint Atlassian très pâle */

  /* Encre — bleu-gris Atlassian, jamais noir pur */
  --ink: #172b4d;             /* navy text principal */
  --ink-soft: #42526e;
  --ink-muted: #6b778c;

  /* Lignes & séparateurs */
  --line: #dfe1e6;
  --line-soft: #ebecf0;

  /* Atlassian Blue */
  --primary: #0c66e4;
  --primary-deep: #0747a6;
  --primary-soft: #deebff;
  --primary-light: #4c9aff;

  /* Tuiles colorées (pour les features) */
  --tile-purple: #8270db;
  --tile-purple-bg: #eae6ff;
  --tile-orange: #ff7452;
  --tile-orange-bg: #fff0eb;
  --tile-teal: #00b8d9;
  --tile-teal-bg: #e6fcff;
  --tile-green: #36b37e;
  --tile-green-bg: #e3fcef;
  --tile-pink: #e774bb;
  --tile-pink-bg: #fde9f5;
  --tile-yellow: #ffab00;
  --tile-yellow-bg: #fff7d6;

  /* Sémantique (compat classes existantes) */
  --accent: var(--primary);
  --accent-deep: var(--primary-deep);
  --signal: var(--primary);
  --signal-deep: var(--primary-deep);
  --warn: #de350b;
  --warn-bg: #ffebe6;
  --positive: #36b37e;
  --positive-bg: #e3fcef;

  --radius: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(9, 30, 66, 0.08), 0 0 1px rgba(9, 30, 66, 0.04);
  --shadow-md: 0 4px 8px -2px rgba(9, 30, 66, 0.1), 0 0 0 1px rgba(9, 30, 66, 0.04);
  --shadow-lg: 0 16px 32px -8px rgba(9, 30, 66, 0.16), 0 0 0 1px rgba(9, 30, 66, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11', 'ss01', 'ss03'; /* Inter polish */
}

/* Headlines = Inter Black, jamais serif italic */
.display { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; }
.display-italic { font-family: 'Inter', sans-serif; font-weight: 600; font-style: italic; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* HEADER */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
header.site.scrolled { border-bottom-color: var(--line); }
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.logo {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 19px;
  letter-spacing: -0.022em; color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo::before {
  content: "";
  width: 26px; height: 26px;
  background: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  display: inline-block;
  position: relative;
}
.logo::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  background: white;
  border-radius: 2px;
  margin-left: -18px;
  margin-top: 8px;
  transform: rotate(45deg);
}
.logo .dot { display: none; }
nav.primary { display: flex; gap: 32px; align-items: center; }
nav.primary a {
  color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500;
  transition: color .15s;
}
nav.primary a:hover { color: var(--primary); }
.header-cta { display: flex; gap: 8px; align-items: center; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius);
  font-family: inherit; font-size: 14.5px; font-weight: 600; letter-spacing: -0.005em;
  text-decoration: none; cursor: pointer; border: none;
  transition: background .15s, box-shadow .15s, transform .12s;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #ffffff;
  box-shadow: 0 1px 2px rgba(12, 102, 228, 0.2);
}
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 4px 8px -2px rgba(12, 102, 228, 0.35); }
.btn-primary:focus-visible { outline: 3px solid rgba(12, 102, 228, 0.4); outline-offset: 1px; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--paper-soft); border-color: var(--ink-muted); }
.btn-link {
  background: transparent; color: var(--primary); padding: 12px 0;
  font-weight: 600;
}
.btn-link::after { content: " →"; transition: transform .15s; display: inline-block; }
.btn-link:hover::after { transform: translateX(4px); }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }
.btn-lg { padding: 14px 28px; font-size: 15.5px; }

/* HERO */
.hero {
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(76, 154, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(130, 112, 219, 0.06), transparent 60%),
    var(--paper);
  position: relative; overflow: hidden;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--primary-deep); margin-bottom: 24px;
  text-transform: none;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
h1.hero-title {
  font-size: clamp(40px, 5.4vw, 64px);
  margin-bottom: 22px;
  color: var(--ink);
  font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.028em; line-height: 1.04;
}
h1.hero-title em {
  font-style: normal;
  color: var(--primary);
  font-weight: 800;
}
.hero-lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  max-width: 560px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  font-size: 13.5px; color: var(--ink-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.hero-trust .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: var(--positive); color: white;
  font-size: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* HERO VISUAL */
.hero-visual {
  position: relative; aspect-ratio: 1 / 1.05; max-width: 480px; justify-self: end; width: 100%;
}
.card-mock {
  position: absolute; background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px; font-size: 13.5px;
}
.card-mock .label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary); margin-bottom: 10px; font-weight: 700;
}
.card-mock .siret {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 17px; font-weight: 500; color: var(--ink); letter-spacing: -0.005em;
  background: var(--paper-soft); padding: 6px 10px; border-radius: 6px;
  display: inline-block; margin-bottom: 4px;
}
.card-mock .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.card-mock .row:last-child { border: none; }
.card-mock .row span:first-child { color: var(--ink-muted); }
.card-mock .row span:last-child { font-weight: 600; color: var(--ink); }

.card-siret { top: 0; left: 0; width: 280px; }
.card-candidate { top: 150px; right: 0; width: 260px; }
.card-aee { bottom: 0; left: 30px; width: 320px; }
.card-aee .stamp {
  margin-top: 12px; padding: 10px 14px; background: var(--positive-bg);
  border-radius: var(--radius); display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--positive); font-size: 13px;
}
.card-aee .stamp::before {
  content: ""; display: inline-flex; width: 20px; height: 20px;
  background: var(--positive);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  flex-shrink: 0;
}

/* TRUST BAR */
.trust-bar {
  padding: 56px 0; background: var(--paper-soft);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-bar .wrap { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.trust-bar .title {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-muted); max-width: 200px; line-height: 1.4;
}
.trust-bar .badges { display: flex; flex-wrap: wrap; gap: 32px 48px; align-items: center; }
.trust-bar .badge {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--ink-soft); display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.005em;
}
.trust-bar .badge .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}

/* SECTION COMMON */
section.s { padding: 120px 0; }
section.s.alt { background: var(--paper-soft); }
section.s.dark { background: var(--ink); color: var(--paper); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px;
}
section.s.dark .section-eyebrow { color: var(--primary-light); }
h2.section-title {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
h2.section-title em { font-style: normal; color: var(--primary); font-weight: 800; }
section.s.dark h2.section-title em { color: var(--primary-light); }
.section-lede { font-size: 18px; color: var(--ink-soft); line-height: 1.55; max-width: 640px; }
section.s.dark .section-lede { color: rgba(255, 255, 255, 0.72); }

/* PROBLÈME */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 40px; }
.problem-card {
  padding: 32px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s, transform .2s;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.problem-card.alt { background: var(--paper-tint); }
.problem-card h3 {
  font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.015em;
}
.problem-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.problem-card .price {
  font-size: 12.5px; color: var(--primary); font-weight: 700;
  padding-top: 14px; border-top: 1px solid var(--line);
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; counter-reset: step; }
.step { counter-increment: step; position: relative; }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800;
  border-radius: 12px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px -2px rgba(12, 102, 228, 0.3);
}
.step .num::before { content: counter(step); }
.step h3 {
  font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.02em; line-height: 1.2;
}
.step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.step p code {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 13px;
  background: var(--primary-soft); padding: 2px 6px; border-radius: 4px;
  color: var(--primary-deep);
}

/* FEATURES — tuiles colorées Atlassian-style */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  padding: 32px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
section.s.alt .feature { background: var(--paper); }
.feature .ic {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
}
.feature:nth-child(1) .ic { background: var(--primary-soft); color: var(--primary); }
.feature:nth-child(2) .ic { background: var(--tile-purple-bg); color: var(--tile-purple); }
.feature:nth-child(3) .ic { background: var(--tile-orange-bg); color: var(--tile-orange); }
.feature:nth-child(4) .ic { background: var(--tile-teal-bg); color: var(--tile-teal); }
.feature:nth-child(5) .ic { background: var(--tile-green-bg); color: var(--tile-green); }
.feature:nth-child(6) .ic { background: var(--tile-pink-bg); color: var(--tile-pink); }
.feature h3 {
  font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.015em;
}
.feature p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

/* SANCTIONS — navy + accent rouge friendly (pas doom) */
section.sanctions { background: var(--ink); color: var(--paper); padding: 120px 0; position: relative; overflow: hidden; }
section.sanctions::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(76, 154, 255, 0.1), transparent 60%);
  pointer-events: none;
}
section.sanctions .section-eyebrow { color: #ff8f73; }
section.sanctions h2.section-title { color: var(--paper); }
section.sanctions .section-lede { color: rgba(255, 255, 255, 0.7); }
.sanctions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.sanction {
  padding: 28px 24px; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}
.sanction .amount {
  font-family: 'Inter', sans-serif; font-size: 42px; font-weight: 800;
  color: var(--paper); margin-bottom: 8px; letter-spacing: -0.03em; line-height: 1;
}
.sanction .amount .unit { font-size: 18px; color: #ff8f73; margin-left: 4px; font-weight: 700; }
.sanction .label {
  font-size: 13.5px; font-weight: 700; margin-bottom: 12px;
  color: var(--paper); letter-spacing: -0.005em;
}
.sanction .ref {
  font-size: 12.5px; color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
.sanction .ref code {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px;
  color: #ff8f73; background: transparent;
}
.sanctions-footnote {
  margin-top: 36px; font-size: 13px; color: rgba(255, 255, 255, 0.55);
  max-width: 720px; line-height: 1.6;
}

/* USE CASES */
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case {
  padding: 36px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.case:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
section.s.alt .case { background: var(--paper); }
.case .case-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary);
  padding: 4px 10px; background: var(--primary-soft);
  border-radius: 999px; align-self: flex-start;
}
.case h3 {
  font-family: 'Inter', sans-serif; font-size: 23px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2;
}
.case p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.case .case-stat {
  margin-top: 8px; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink);
}
.case .case-stat strong {
  font-family: 'Inter', sans-serif; font-size: 18px; color: var(--primary); font-weight: 700;
}

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  padding: 32px; background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 24px;
}
.testimonial .quote {
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 500;
  font-style: normal;
  line-height: 1.55; color: var(--ink); letter-spacing: -0.01em;
}
.testimonial .quote::before { content: "“ "; color: var(--primary); font-size: 1.3em; font-weight: 700; }
.testimonial .quote::after { content: " ”"; color: var(--primary); font-size: 1.3em; font-weight: 700; }
.testimonial .author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 17px;
}
.testimonial .meta .name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.testimonial .meta .role { font-size: 13px; color: var(--ink-muted); }

/* PRICING */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  padding: 36px 32px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card.featured {
  border-color: var(--primary); border-width: 2px;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(12, 102, 228, 0.04), transparent 70%),
    var(--paper);
}
.price-card.featured::before {
  content: "Recommandé"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white; padding: 6px 14px;
  border-radius: 999px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  box-shadow: 0 4px 8px -2px rgba(12, 102, 228, 0.35);
}
.price-name {
  font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
}
.price-tag { display: flex; align-items: baseline; gap: 6px; }
.price-tag .num {
  font-family: 'Inter', sans-serif; font-size: 56px; font-weight: 800;
  letter-spacing: -0.035em; line-height: 1; color: var(--ink);
}
.price-tag .per { color: var(--ink-muted); font-size: 14px; font-weight: 500; }
.price-desc { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.price-features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  padding-top: 8px; border-top: 1px solid var(--line); margin-bottom: auto;
}
.price-features li { font-size: 14.5px; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.price-features li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 1px;
  background: var(--positive);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  border-radius: 50%;
}
.price-features li.no::before {
  background: var(--line);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b778c' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}

/* COMPLIANCE */
.compliance-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px;
}
.compliance-item {
  padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
}
.compliance-item:nth-last-child(-n+2) { border-bottom: none; }
.compliance-item .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(76, 154, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%234c9aff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  font-size: 0;
}
.compliance-item .ic > * { display: none; }
.compliance-item h4 {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
  margin-bottom: 6px; color: var(--paper); letter-spacing: -0.015em;
}
.compliance-item p { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; line-height: 1.55; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600;
  text-align: left; cursor: pointer; color: var(--ink); letter-spacing: -0.015em;
}
.faq-q:hover { color: var(--primary); }
.faq-q .toggle {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--paper-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230c66e4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform .2s, background-color .2s;
}
.faq-item.open .toggle { transform: rotate(180deg); background: var(--primary-soft); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 800px; padding: 0 0 28px; }
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* CTA FINAL */
.cta-final {
  padding: 120px 0; text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(12, 102, 228, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(130, 112, 219, 0.08), transparent 60%),
    var(--paper);
  position: relative; overflow: hidden;
}
.cta-final h2 {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 22px;
  letter-spacing: -0.03em; line-height: 1.04;
  color: var(--ink);
}
.cta-final h2 em { font-style: normal; color: var(--primary); font-weight: 800; }
.cta-final p { font-size: 18.5px; color: var(--ink-soft); max-width: 580px; margin: 0 auto 32px; line-height: 1.5; }
.cta-final .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* FOOTER */
footer.site {
  background: #091e42; color: rgba(255, 255, 255, 0.7); padding: 80px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px; margin-bottom: 56px;
}
.footer-brand h4 {
  font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 800;
  color: var(--paper); margin-bottom: 16px; letter-spacing: -0.022em;
  display: flex; align-items: center; gap: 8px;
}
.footer-brand h4::before {
  content: "";
  width: 26px; height: 26px;
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  display: inline-block;
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col h5 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--paper); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.65); text-decoration: none; font-size: 14px;
  transition: color .15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
}
.footer-bottom .legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom .legal a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.footer-bottom .legal a:hover { color: white; }
.footer-bottom .copyright { color: rgba(255, 255, 255, 0.5); }

/* ============================================================
 * ANIMATIONS modernes (Atlassian-style : subtiles, never flashy)
 * ============================================================ */

/* Scroll progress bar — fixed top, gradient multi-couleurs */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--primary) 0%,
    var(--primary-light) 35%,
    var(--tile-purple) 70%,
    var(--tile-pink) 100%);
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
  z-index: 200;
  pointer-events: none;
  will-change: transform;
}

/* Reveal on scroll — stagger via --i (JS le pose par index dans la grille) */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1), transform .7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Nav underline grow on hover */
nav.primary a { position: relative; }
nav.primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.primary a:hover::after { transform: scaleX(1); }

/* Eyebrow dot pulse (subtle) */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(12, 102, 228, 0.4); }
  50% { opacity: 0.85; transform: scale(1.1); box-shadow: 0 0 0 5px rgba(12, 102, 228, 0); }
}
.eyebrow::before { animation: pulse-dot 2.6s ease-in-out infinite; }

/* Hero cards : float subtil (3 timings différents pour rythme organique) */
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.card-siret { animation: float-a 6s ease-in-out infinite; }
.card-candidate { animation: float-b 5.2s ease-in-out -0.8s infinite; }
.card-aee { animation: float-c 7s ease-in-out -1.4s infinite; }

/* Button primary : shine sweep on hover */
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateX(120%); }

/* Sanctions : tabular-nums (alignement chiffres pendant count-up) */
.sanction .amount { font-variant-numeric: tabular-nums; }

/* CTA final : mesh gradient en mouvement lent */
.cta-final {
  background-size: 180% 180%, 160% 160%, auto;
  background-position: 0% 0%, 100% 100%, 0 0;
  animation: mesh-shift 22s ease-in-out infinite;
}
@keyframes mesh-shift {
  0%, 100% { background-position: 0% 0%, 100% 100%, 0 0; }
  33% { background-position: 50% 30%, 70% 60%, 0 0; }
  66% { background-position: 100% 70%, 30% 20%, 0 0; }
}

/* Feature & case cards : transition douce sur hover (déjà appliquée plus haut) */

/* prefers-reduced-motion : tout coupe */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .scroll-progress { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero { padding: 60px 0 80px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 380px; margin: 0 auto; justify-self: center; }
  .trust-bar .wrap { grid-template-columns: 1fr; gap: 24px; }
  .problem-grid, .steps, .features, .sanctions-grid, .cases, .testimonials, .pricing, .compliance-list, .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { gap: 36px; }
  .steps { gap: 40px; }
  section.s { padding: 80px 0; }
  section.sanctions { padding: 80px 0; }
  .cta-final { padding: 96px 0; }
  nav.primary { display: none; }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  header.site .wrap { padding: 0 20px; }
  h1.hero-title { font-size: 38px; }
  .step .num { width: 48px; height: 48px; font-size: 19px; }
  .sanction .amount { font-size: 34px; }
}
