/* ============================================================
   Comparatif-Ménage.fr — design system
   ============================================================ */

:root {
  /* Colors */
  --c-bg: #fafaf7;
  --c-bg-warm: #fdfaf3;
  --c-surface: #ffffff;
  --c-ink: #0a0a0a;
  --c-ink-2: #383838;
  --c-muted: #6b6b6b;
  --c-muted-2: #9a9a9a;
  --c-line: #ececea;
  --c-line-strong: #d4d4d0;
  --c-brand: #0a0a0a;
  --c-accent: #0e7a55;
  --c-accent-soft: #e6f5ee;
  --c-warm-soft: #fef4e2;

  /* Marketplace orange (homepage seulement) */
  --c-orange: #ea580c;
  --c-orange-hover: #c2410c;
  --c-orange-soft: #fff5eb;
  --c-blue-trust: #1d4ed8;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 15, 15, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 15, 15, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 15, 15, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 15, 15, 0.10);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;

  /* Typography */
  --font-body: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-body: 17px;
  --lh-body: 1.65;
}

* { box-sizing: border-box; }
*, *::before, *::after { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background: var(--c-bg);
  font-feature-settings: "kern", "liga", "ss01", "cv11";
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-ink); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--c-ink); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
strong { font-weight: 600; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--container-narrow); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER (v2 — punchy marketplace)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line);
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-shrunk {
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.site-header.is-shrunk .header-inner { padding-top: 10px; padding-bottom: 10px; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 28px;
  max-width: 1400px;
  margin: 0 auto;
  transition: padding 0.2s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--c-ink);
  font-size: 15.5px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
}
.brand-tld { color: var(--c-muted); font-weight: 500; }

.primary-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  white-space: nowrap;
}
.primary-nav a {
  color: var(--c-ink-2);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s;
  position: relative;
}
.primary-nav a:hover { color: var(--c-orange); text-decoration: none; }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
  border-radius: 2px;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--c-ink);
  font-weight: 700;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.15s;
}
.header-phone svg { color: var(--c-orange); flex-shrink: 0; }
.header-phone:hover { background: var(--c-orange-soft); text-decoration: none; color: var(--c-ink); }

a.btn-orange-sm,
.btn-orange-sm {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--c-orange) !important;
  color: #fff !important;
  border: none;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
  flex-shrink: 0;
}
a.btn-orange-sm:hover,
.btn-orange-sm:hover {
  background: var(--c-orange-hover) !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

/* Hamburger — STRICTEMENT mobile / tablette < 900px */
.header-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-line-strong);
  background: var(--c-surface);
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background 0.15s;
  flex-shrink: 0;
  visibility: hidden; /* double-safe : invisible ET pas cliquable sur desktop */
}
@media (min-width: 901px) {
  .header-burger { display: none !important; visibility: hidden !important; pointer-events: none !important; }
}
.header-burger:hover { background: var(--c-bg); }
.header-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-ink);
  margin: 4px auto;
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 2px;
}
.header-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 100;
  padding: 80px 24px 28px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer[hidden] { display: none; }
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.mobile-drawer-overlay.is-open { opacity: 1; }
.mobile-drawer-overlay[hidden] { display: none; }

.mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-nav a {
  display: block;
  padding: 14px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  border-radius: 9px;
  transition: background 0.12s;
}
.mobile-nav a:hover { background: var(--c-bg); text-decoration: none; }

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}
.mobile-actions .btn-orange { padding: 14px 20px; font-size: 15px; box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25); }
.btn-ghost-light {
  display: inline-block;
  padding: 14px 20px;
  background: var(--c-bg);
  color: var(--c-ink);
  border: 1px solid var(--c-line-strong);
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
}
.btn-ghost-light:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); text-decoration: none; }
.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--c-muted);
  margin-top: 8px;
  padding: 10px 0;
  border-top: 1px dashed var(--c-line);
  font-weight: 500;
}
.mobile-phone:hover { text-decoration: none; color: var(--c-ink); }
.mobile-phone svg { color: var(--c-orange); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  font-family: inherit;
}
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 12px; }
.btn-primary {
  background: var(--c-ink);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 1px 2px rgba(0,0,0,0.18);
}
.btn-primary:hover {
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 6px 18px rgba(0,0,0,0.18);
}
.btn-ghost {
  background: var(--c-surface);
  color: var(--c-ink);
  border-color: var(--c-line-strong);
}
.btn-ghost:hover {
  background: var(--c-surface);
  color: var(--c-ink);
  border-color: var(--c-ink);
  text-decoration: none;
}
.btn-link {
  background: none;
  padding: 0;
  color: var(--c-ink);
  font-weight: 600;
  border: none;
}
.btn-link:hover { text-decoration: underline; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse 90% 60% at 80% 0%, var(--c-warm-soft) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 30%, #f5f1e8 0%, transparent 60%),
    var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-text { max-width: 640px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.eyebrow .dot { color: var(--c-line-strong); margin: 0 8px; font-weight: 400; }
.hero h1 {
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  font-weight: 700;
  color: var(--c-ink);
}
.lede {
  font-size: 19px;
  color: var(--c-ink-2);
  max-width: 560px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.lede strong { color: var(--c-ink); font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--c-muted);
  font-size: 13.5px;
}
.hero-trust li::before {
  content: "✓";
  color: var(--c-accent);
  margin-right: 8px;
  font-weight: 700;
  font-size: 13px;
}

/* HERO CONVERSION (homepage refondue) */
.hero--conversion .container { grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: start; }
.hero--conversion .hero-text { max-width: 620px; padding-top: 8px; }
.hero--conversion h1 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  font-weight: 700;
}
.hero--conversion .lede {
  font-size: 18px;
  margin: 0 0 24px;
  line-height: 1.55;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.hero-bullets li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15.5px;
  color: var(--c-ink-2);
  line-height: 1.5;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--c-accent);
  font-weight: 800;
  font-size: 15px;
}
.hero-microsig {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--c-muted);
  margin: 8px 0 0;
}
.hero-microsig span { white-space: nowrap; }

/* Hero form card (étape 1 = code postal) */
.hero-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 92px;
}
.hero-form-step {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 700;
  margin: 0 0 8px;
}
.hero-form-title {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.2;
}
.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form input {
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  border: 1.5px solid var(--c-line-strong);
  border-radius: 11px;
  background: var(--c-bg);
  color: var(--c-ink);
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.hero-form input::placeholder { color: var(--c-muted-2); font-weight: 500; letter-spacing: 0; }
.hero-form input:focus { outline: none; border-color: var(--c-ink); background: var(--c-surface); }
.hero-form button {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
}
.hero-form-meta {
  margin: 14px 0 16px;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
}
.hero-form-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  font-size: 12.5px;
  color: var(--c-ink-2);
}
.hero-form-trust .rating-star { color: #f5a623; font-size: 16px; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* HOW IT WORKS — 3 steps */
.how-it-works { background: var(--c-surface); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.how-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 16%;
  right: 16%;
  height: 1px;
  border-top: 2px dashed var(--c-line);
  z-index: 0;
}
.how-step {
  background: var(--c-surface);
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-ink);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  border: 6px solid var(--c-bg);
}
.how-step h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }
.how-step p { margin: 0; color: var(--c-ink-2); font-size: 15px; line-height: 1.55; }

/* WHY SECTION — 4 cards */
.why-section { background: var(--c-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
  width: 48px;
  height: 48px;
  background: var(--c-bg);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.why-card h3 { margin: 0 0 8px; font-size: 16px; letter-spacing: -0.01em; }
.why-card p { margin: 0; color: var(--c-ink-2); font-size: 14px; line-height: 1.55; }

/* PROBLEM SECTION */
.problem-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.problem-grid { display: grid; gap: 16px; }
.problem-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--c-surface);
  padding: 20px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
}
.problem-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff3e0;
  color: #b25c00;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid #f5d76e;
}
.problem-item p { margin: 0; color: var(--c-ink-2); line-height: 1.55; }
.problem-item strong { color: var(--c-ink); }
.problem-cta { margin-top: 24px; color: var(--c-ink-2); font-size: 15px; }

/* FINAL CTA */
.final-cta {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, var(--c-warm-soft) 0%, transparent 70%),
    var(--c-bg);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.final-cta p { margin: 0 0 24px; color: var(--c-ink-2); font-size: 17px; max-width: 680px; margin-left: auto; margin-right: auto; }
.final-cta .btn-lg { padding: 16px 32px; font-size: 17px; }
.final-cta-sub { margin-top: 20px; font-size: 14px; color: var(--c-muted); }
.final-cta-sub a { color: var(--c-ink-2); border-bottom: 1px dotted var(--c-line-strong); }
.final-cta-sub a:hover { color: var(--c-ink); border-bottom-color: var(--c-ink); text-decoration: none; }

/* ============================================================
   HOMEPAGE PUNCHY (style marketplace)
   ============================================================ */
.hero-punch {
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse 80% 70% at 80% 30%, #ffe5d0 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, #fff5eb 0%, transparent 60%),
    linear-gradient(180deg, #fff9f0 0%, #fffefb 100%);
  border-bottom: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.hero-punch .container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }

.hero-punch-text { max-width: 620px; position: relative; z-index: 2; }
.hero-punch-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(234, 88, 12, 0.1);
  color: var(--c-orange);
  font-weight: 700;
  font-size: 12.5px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-punch h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
}
.hero-punch-accent { color: var(--c-orange); }
.hero-punch-sub {
  font-size: 19px;
  color: var(--c-ink-2);
  margin: 0 0 32px;
  line-height: 1.5;
  max-width: 560px;
}

/* Form punchy */
.hero-punch-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 18px;
  max-width: 540px;
}
.hero-punch-form input {
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid var(--c-line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--c-ink);
  transition: all 0.15s;
}
.hero-punch-form input:focus { outline: none; border-color: var(--c-orange); box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12); }
.hero-punch-form input::placeholder { color: var(--c-muted-2); font-weight: 500; }

.btn-orange, .btn-orange-lg {
  background: var(--c-orange);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.25);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn-orange-lg { padding: 20px 40px; font-size: 18px; }
.btn-orange:hover, .btn-orange-lg:hover {
  background: var(--c-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
  text-decoration: none;
  color: #fff;
}

.hero-punch-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--c-ink-2);
  font-weight: 500;
}
.hero-punch-trust span { white-space: nowrap; }

/* Visual right side : stat card + bubbles */
.hero-punch-visual {
  position: relative;
  height: 380px;
  display: grid;
  place-items: center;
}
.hero-punch-stat {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  text-align: center;
  border: 1px solid var(--c-line);
  position: relative;
  z-index: 2;
  width: 280px;
}
.hero-punch-stat-num {
  display: block;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  line-height: 1;
}
.hero-punch-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--c-ink-2);
  font-weight: 600;
}
.hero-punch-stat-source {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Bubbles flottantes */
.hero-punch-bubble {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: bubble-float 4s ease-in-out infinite;
}
@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-punch-bubble-num { font-size: 24px; font-weight: 800; color: var(--c-orange); letter-spacing: -0.02em; line-height: 1; }
.hero-punch-bubble-label { font-size: 11.5px; color: var(--c-ink-2); font-weight: 600; line-height: 1.25; }

.hero-punch-bubble--1 { top: 8%; right: 0%; animation-delay: 0s; }
.hero-punch-bubble--1 .hero-punch-bubble-num { color: var(--c-blue-trust); }
.hero-punch-bubble--2 { bottom: 14%; left: -2%; animation-delay: 1.2s; }
.hero-punch-bubble--2 .hero-punch-bubble-num { color: #0e7a55; }
.hero-punch-bubble--3 { bottom: 4%; right: 8%; animation-delay: 2.4s; }
.hero-punch-bubble--3 .hero-punch-bubble-num { color: #d4a017; font-size: 18px; }

/* === STEPS PUNCH === */
.steps-punch { padding: 80px 0; background: #fff; }
.steps-punch-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  font-weight: 800;
}
.steps-punch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-punch {
  text-align: center;
  padding: 32px 22px;
  background: #fafaf7;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-punch:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.step-punch-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
}
.step-punch h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.step-punch p { margin: 0; color: var(--c-ink-2); font-size: 15px; line-height: 1.55; }
.steps-punch-cta { text-align: center; margin-top: 40px; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--c-ink);
  padding: 32px 0;
  color: #fff;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--c-orange);
  letter-spacing: -0.025em;
  line-height: 1;
}

/* === WHY PUNCH === */
.why-punch { padding: 80px 0; background: #fafaf7; }
.why-punch-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 800;
}
.why-punch-accent { color: var(--c-orange); }
.why-punch-sub {
  text-align: center;
  font-size: 17px;
  color: var(--c-ink-2);
  margin: 0 0 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.why-punch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-punch-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--c-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-punch-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
.why-punch-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.why-punch-icon--green { background: #d1fae5; }
.why-punch-icon--orange { background: #ffedd5; }
.why-punch-icon--blue { background: #dbeafe; }
.why-punch-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.why-punch-card p { margin: 0; color: var(--c-ink-2); font-size: 15px; line-height: 1.55; }

/* === QUARTIERS PUNCH === */
.quartiers-punch { padding: 64px 0; background: #fff; text-align: center; }
.quartiers-punch h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-weight: 700;
}
.quartiers-punch .section-sub { color: var(--c-muted); margin: 0 0 28px; font-size: 15px; }
.quartier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.quartier-tag {
  display: inline-block;
  padding: 10px 20px;
  background: var(--c-bg);
  color: var(--c-ink);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid var(--c-line);
  transition: all 0.15s ease;
  text-decoration: none;
}
.quartier-tag:hover {
  background: var(--c-orange);
  color: #fff !important;
  border-color: var(--c-orange);
  transform: translateY(-2px);
  text-decoration: none;
}
.quartier-tags-cta { margin-top: 28px; }

/* === FINAL PUNCH === */
.final-punch {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
  text-align: center;
}
.final-punch h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 800;
  color: #fff;
}
.final-punch p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin: 0 0 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.final-punch .hero-punch-form {
  margin: 0 auto 18px;
  max-width: 560px;
}
.final-punch .hero-punch-form input { background: #fff; }
.final-punch-sub {
  margin-top: 24px !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 14px !important;
}
.final-punch-sub a { color: rgba(255,255,255,0.9); border-bottom: 1px dotted rgba(255,255,255,0.3); }
.final-punch-sub a:hover { color: var(--c-orange); border-bottom-color: var(--c-orange); text-decoration: none; }

/* HERO STAT CARD */
.hero-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero-card-label {
  font-size: 12px;
  color: var(--c-muted);
  margin: 0 0 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-card-headline {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.hero-card-value {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  line-height: 1;
}
.hero-card-unit {
  font-size: 22px;
  color: var(--c-muted);
  font-weight: 500;
}
.hero-card-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-accent);
  background: var(--c-accent-soft);
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.hero-card-spark { margin: 22px 0 6px; }
.hero-card-axis {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--c-muted-2);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.hero-card-meta {
  font-size: 12.5px;
  color: var(--c-muted);
  margin: 14px 0 0;
  border-top: 1px solid var(--c-line);
  padding-top: 14px;
}

/* ============================================================
   KEY FIGURES STRIP
   ============================================================ */
.key-figures {
  background: var(--c-bg);
  padding: 56px 0;
  border-bottom: 1px solid var(--c-line);
}
.key-figures .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.figure {
  background: var(--c-surface);
  padding: 26px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  text-align: left;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.figure:hover {
  border-color: var(--c-line-strong);
  transform: translateY(-1px);
}
.figure-num {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.figure-label {
  display: block;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.4;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; justify-content: center; }
.section-head h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}
.section-sub { color: var(--c-muted); margin: 0; font-size: 17px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ============================================================
   STUDY SNAPSHOT (data table)
   ============================================================ */
.study-snapshot { background: var(--c-surface); border-bottom: 1px solid var(--c-line); }

.table-wrap {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.data-table th, .data-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.data-table th {
  background: var(--c-bg);
  font-weight: 600;
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: var(--c-bg); }
.study-caption {
  color: var(--c-muted);
  font-size: 13px;
  margin: 16px 0 24px;
}

/* ============================================================
   DIFFERENTIATOR
   ============================================================ */
.differentiator { background: var(--c-bg); border-bottom: 1px solid var(--c-line); }
.diff-list { padding-left: 0; list-style: none; margin: 0; }
.diff-list li {
  margin-bottom: 22px;
  padding-left: 36px;
  position: relative;
  color: var(--c-ink-2);
  line-height: 1.6;
}
.diff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  border: 2px solid var(--c-accent);
}
.diff-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 4px;
  color: var(--c-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 14px;
}
.diff-list strong { color: var(--c-ink); font-weight: 600; }
.diff-callout {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-xs);
}
.diff-callout h3 {
  margin-top: 0;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.diff-callout p { color: var(--c-ink-2); }

/* ============================================================
   QUARTIERS GRID
   ============================================================ */
.quartiers-finder { background: var(--c-surface); border-bottom: 1px solid var(--c-line); }
.quartier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.secteur-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 26px;
  transition: all 0.18s ease;
}
.secteur-card:hover {
  background: var(--c-surface);
  border-color: var(--c-line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.secteur-card h3 {
  margin: 0 0 14px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 700;
}
.secteur-card ul { list-style: none; padding: 0; margin: 0; }
.secteur-card li { padding: 5px 0; font-size: 15px; }
.secteur-card a { color: var(--c-ink); font-weight: 500; }
.secteur-card a:hover { color: var(--c-accent); text-decoration: none; }

/* ============================================================
   FUNNELS
   ============================================================ */
.funnels { background: var(--c-bg); border-bottom: 1px solid var(--c-line); }
.funnel-card {
  padding: 40px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.funnel-leads {
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, #fef4e2 0%, transparent 60%),
    var(--c-surface);
}
.funnel-jobs {
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, #e8f5ff 0%, transparent 60%),
    var(--c-surface);
}
.funnel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-line-strong);
}
.funnel-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.funnel-card p { color: var(--c-ink-2); margin-bottom: 20px; }
.funnel-bullets {
  padding-left: 0;
  margin: 0 0 28px;
  list-style: none;
}
.funnel-bullets li {
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--c-ink-2);
  position: relative;
  font-size: 15px;
}
.funnel-bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-ink);
}

/* ============================================================
   METHODOLOGY PREVIEW
   ============================================================ */
.methodology-preview { background: var(--c-surface); border-bottom: 1px solid var(--c-line); }
.methodology-preview h2 { letter-spacing: -0.02em; }
.methodology-preview p { color: var(--c-ink-2); }
.meth-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.meth-stats > div {
  background: var(--c-bg);
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  text-align: left;
}
.meth-stats strong {
  display: block;
  font-size: 32px;
  color: var(--c-ink);
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   TRANSPARENCY
   ============================================================ */
.transparency {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 100%);
}
.transparency h2 { max-width: 720px; margin-bottom: 18px; }
.transparency p { max-width: 760px; color: var(--c-ink-2); font-size: 17px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h3 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.footer-grid h4 {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 6px 0; font-size: 14px; }
.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-grid a:hover { color: #fff; }
.footer-tag { color: rgba(255, 255, 255, 0.6); margin-top: 0; font-size: 14px; line-height: 1.55; }
.footer-disclosure {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  line-height: 1.55;
  max-width: 320px;
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 8px;
}
.footer-legal a:first-of-type { margin-left: 4px; }

/* ============================================================
   QUARTIER PAGE
   ============================================================ */
.breadcrumb {
  padding: 24px 28px 0;
  font-size: 13px;
  color: var(--c-muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb li::after {
  content: "›";
  margin-left: 8px;
  color: var(--c-muted-2);
}
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-ink); }

.quartier-hero {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 100%);
  border-bottom: 1px solid var(--c-line);
}
.quartier-hero h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 18px;
  font-weight: 700;
}
.quartier-hero .lede { font-size: 18px; }
.quartier-hero .hero-ctas { margin-top: 24px; }

.quartier-page section { padding: 64px 0; }
.quartier-page h2 {
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.2;
}
.local-context p { color: var(--c-ink-2); margin-bottom: 16px; }
.enrichment-list { padding-left: 0; list-style: none; margin: 16px 0; }
.enrichment-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  color: var(--c-ink-2);
  line-height: 1.55;
}
.enrichment-list li:last-child { border-bottom: 0; }
.enrichment-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--c-accent);
  font-size: 12px;
}
.enrichment-list strong { color: var(--c-ink); font-weight: 600; }
.study-section { background: var(--c-surface); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.competitors-table { background: var(--c-bg); }
.row-highlight { background: var(--c-warm-soft) !important; font-weight: 600; }
.row-highlight td { background: var(--c-warm-soft) !important; }
.hidden-fees { background: var(--c-surface); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.hidden-fees ul, .local-tips .tips-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.hidden-fees ul li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  color: var(--c-ink-2);
}
.hidden-fees ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--c-accent);
  font-weight: 700;
}
.hidden-fees ul li:last-child { border-bottom: 0; }
.hidden-fees strong, .local-tips strong { color: var(--c-ink); font-weight: 600; }

.local-tips { background: var(--c-bg); }
.local-tips .tips-list { counter-reset: tip; }
.local-tips .tips-list li {
  counter-increment: tip;
  padding: 18px 0 18px 56px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  color: var(--c-ink-2);
}
.local-tips .tips-list li::before {
  content: counter(tip);
  position: absolute;
  left: 0;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.local-tips .tips-list li:last-child { border-bottom: 0; }

.faq { background: var(--c-surface); border-top: 1px solid var(--c-line); }
.faq-item {
  border-bottom: 1px solid var(--c-line);
  padding: 18px 0;
}
.faq-item summary {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-ink);
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--c-muted);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item div {
  padding-top: 12px;
  color: var(--c-ink-2);
}

.trust-strip {
  padding: 24px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  font-size: 14px;
  color: var(--c-muted);
}
.trust-strip time { color: var(--c-ink-2); font-weight: 500; }

.sources-block {
  background: var(--c-bg);
  padding: 56px 0;
  border-top: 1px solid var(--c-line);
}
.sources-block h2 {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.sources-block p { color: var(--c-ink-2); margin-bottom: 22px; }
.sources-list { list-style: none; padding: 0; margin: 0; }
.sources-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  font-size: 14.5px;
  color: var(--c-ink-2);
  line-height: 1.55;
}
.sources-list li:last-child { border-bottom: 0; }
.sources-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--c-accent);
  font-weight: 700;
}
.sources-list strong { color: var(--c-ink); font-weight: 600; }
.sources-list a { color: var(--c-ink); border-bottom: 1px solid var(--c-line-strong); }
.sources-list a:hover { color: var(--c-ink); border-bottom-color: var(--c-ink); text-decoration: none; }
.source-used {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--c-muted);
}

.sources-strip {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  padding: 18px 0;
}
.sources-strip-label {
  display: inline;
  font-size: 13px;
  color: var(--c-muted);
  margin: 0 12px 0 0;
  font-weight: 500;
}
.sources-strip-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
.sources-strip-list li { font-size: 13.5px; }
.sources-strip-list a {
  color: var(--c-ink-2);
  border-bottom: 1px dotted var(--c-line-strong);
}
.sources-strip-list a:hover {
  color: var(--c-ink);
  border-bottom-style: solid;
  text-decoration: none;
}

/* ============================================================
   MENTIONS LÉGALES
   ============================================================ */
.legal-page { padding: 64px 0; }
.legal-page h1 {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.legal-page h2 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  font-weight: 700;
}
.legal-page p { color: var(--c-ink-2); }
.kv-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.kv-table th, .kv-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-line);
  text-align: left;
  vertical-align: top;
}
.kv-table th {
  background: var(--c-bg);
  font-weight: 600;
  width: 30%;
  font-size: 14px;
  color: var(--c-ink-2);
}
.kv-table tr:last-child th, .kv-table tr:last-child td { border-bottom: 0; }
.kv-table td { font-size: 14.5px; color: var(--c-ink); font-variant-numeric: tabular-nums; }
.legal-updated { color: var(--c-muted); margin-top: 32px; font-size: 13px; }

/* ============================================================
   FORMS — devis / recrutement
   ============================================================ */
.lead-form {
  display: grid;
  gap: 18px;
  background: var(--c-surface);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-xs);
  margin-top: 16px;
}
.form-row { display: grid; gap: 6px; }
.form-row label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink-2);
}
.form-row input, .form-row select, .form-row textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--c-line-strong);
  border-radius: 9px;
  background: var(--c-bg);
  color: var(--c-ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--c-ink);
  background: var(--c-surface);
}
.form-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--c-muted);
}
.form-consent label { font-weight: 400; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.form-consent input { margin-top: 3px; }

/* ============================================================
   LEAD FORM SECTION (form section + JS feedback)
   ============================================================ */
.lead-form-section {
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
  padding: 72px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  scroll-margin-top: 80px; /* anchor offset behind sticky header */
}
.lead-form-section .eyebrow { margin-bottom: 12px; }
.lead-form-section h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
}
.lead-form-section .lede { font-size: 17px; max-width: 620px; margin-bottom: 28px; }
.lf-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lf-message {
  margin-top: 18px;
  font-size: 14.5px;
  min-height: 22px;
  font-weight: 500;
}
.lf-success {
  color: var(--c-accent);
  background: var(--c-accent-soft);
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-weight: 600;
}
.lf-error {
  color: #b3261e;
  background: #fdecea;
  padding: 14px 18px;
  border-radius: var(--r-md);
}
.lead-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Hero variant — form is the hero on /devis/ */
.lead-form-section--hero {
  padding: 64px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, var(--c-warm-soft) 0%, transparent 60%),
    var(--c-bg);
  border-top: none;
}
.lead-form-section--hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 700;
}
.lead-form-section--hero .lede {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 640px;
}

/* 2-column grid form (auto-stack mobile) */
.lead-form--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.lead-form--grid .form-row--full {
  grid-column: 1 / -1;
}
.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 4px;
}
.form-submit-row .btn { min-width: 220px; }
.form-trust-line {
  margin: 0;
  font-size: 13px;
  color: var(--c-muted);
}

/* Submit spinner */
.btn-spinner {
  display: none;
  margin-left: 8px;
  vertical-align: middle;
}
.btn-spinner svg { animation: btn-spin 0.8s linear infinite; }
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn.is-loading .btn-label { opacity: 0.6; }
.btn.is-loading .btn-spinner { display: inline-flex; }

/* Phone alternative — under form, both /devis/ and quartier pages */
.phone-alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-size: 14.5px;
}
.phone-alt-label { color: var(--c-muted); }
.phone-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-ink);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--c-line-strong);
  padding-bottom: 1px;
}
.phone-alt-link:hover {
  color: var(--c-ink);
  border-bottom-color: var(--c-ink);
  text-decoration: none;
}
.phone-alt-link svg { color: var(--c-accent); }
.phone-alt-meta { color: var(--c-muted-2); font-size: 13px; }

/* ============================================================
   PAGE /devis/merci/ — thank you experience
   ============================================================ */
.merci-hero {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
  text-align: center;
}
.merci-check {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  margin-bottom: 18px;
  animation: merci-pop 0.4s ease-out;
}
@keyframes merci-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.merci-hero h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 8px 0 14px;
}
.merci-hero .lede { margin: 0 auto; }
.merci-hero .eyebrow { display: inline-block; }

.merci-timeline-section {
  padding: 64px 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
}
.merci-timeline-section h2 {
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  text-align: center;
}
.merci-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: grid;
  gap: 12px;
}
.merci-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  background: var(--c-bg);
  padding: 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
}
.merci-step-marker {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-ink);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--c-line-strong);
}
.merci-step.is-done .merci-step-marker {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}
.merci-step h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}
.merci-step p { margin: 0; color: var(--c-ink-2); font-size: 14.5px; line-height: 1.55; }

.merci-call {
  padding: 56px 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.merci-call-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--c-surface);
  padding: 28px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.merci-call-card h2 { margin: 0 0 6px; font-size: 22px; letter-spacing: -0.015em; }
.merci-call-card p { margin: 0; color: var(--c-muted); font-size: 14.5px; }
.merci-call-btn {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   PAGE /entreprises-menage-toulouse/ — comparator premium v2
   ============================================================ */
.entreprises-table-section {
  padding: 56px 0 64px;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

/* Toolbar : recherche + chips + counter */
.ent-toolbar {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr auto;
  align-items: center;
  gap: 16px 20px;
  margin-bottom: 24px;
}
.ent-search-wrap input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1px solid var(--c-line-strong);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--c-bg) 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='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 14px center;
}
.ent-search-wrap input:focus { outline: none; border-color: var(--c-ink); background-color: var(--c-surface); }

.ent-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--c-line-strong);
  background: var(--c-surface);
  color: var(--c-ink-2);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.chip:hover { border-color: var(--c-ink); color: var(--c-ink); }
.chip[aria-pressed="true"] {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}

.ent-counter {
  font-size: 13.5px;
  color: var(--c-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ent-counter #ent-count { color: var(--c-ink); font-weight: 700; }

/* Tableau */
.ent-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow-xs);
}
.ent-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.ent-table th, .ent-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  vertical-align: middle;
}
.ent-table thead th {
  background: var(--c-bg);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  position: sticky;
  top: 70px; /* under sticky header */
  z-index: 5;
}
.ent-table tbody tr:last-child td { border-bottom: 0; }
.ent-table tbody tr { transition: background 0.15s ease, transform 0.15s ease; }
.ent-table tbody tr:hover { background: #fdfcf8; }
.ent-table th.num, .ent-table td.num { text-align: right; }
.ent-table .sortable { cursor: pointer; user-select: none; }
.ent-table .sortable:hover { background: #f0eee8; }
.ent-table .sort-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  color: var(--c-muted);
  width: 10px;
}
.ent-table th[aria-sort] { color: var(--c-ink); }
.ent-table th[aria-sort] .sort-arrow { color: var(--c-accent); }
.sort-tip { color: var(--c-muted); cursor: help; font-size: 11px; margin-left: 2px; }

/* Best value row */
.ent-table tr.row-best { background: linear-gradient(90deg, #fff8e1 0%, #fffdf6 100%); }
.ent-table tr.row-best:hover { background: #fff3c4; }

/* Logo + nom */
.ent-id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ent-logo {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  display: grid;
  place-items: center;
  object-fit: contain;
  padding: 4px;
}
.ent-logo--initial {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  padding: 0;
}
.ent-id-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ent-id-text a, .ent-id-text > span { color: var(--c-ink); font-weight: 600; font-size: 14.5px; }
.ent-id-text a:hover { color: var(--c-accent); text-decoration: none; }
.badge-best {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #8a5a00;
  background: #fff3c4;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #f5d76e;
  letter-spacing: 0.01em;
  width: fit-content;
}

/* Tarif horaire — prominent */
.col-price .price-big {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  white-space: nowrap;
}
.price-unit {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
  margin-left: 2px;
}

/* Coût réel */
.cost-real { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; line-height: 1.2; }
.cost-real-num {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.cost-real-meta { font-size: 11px; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.cost-real-net {
  font-size: 11.5px;
  color: var(--c-accent);
  font-weight: 600;
  background: var(--c-accent-soft);
  padding: 2px 7px;
  border-radius: 999px;
  margin-top: 4px;
}

/* Frais badges */
.fee-badges { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.fee-badge--ok { background: var(--c-accent-soft); color: var(--c-accent); }
.fee-badge--warn { background: #fff3e0; color: #b25c00; }

/* Note Google */
.rating { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: var(--c-ink); }
.rating--link { color: var(--c-ink); border-bottom: 1px dotted var(--c-line-strong); }
.rating--link:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); text-decoration: none; }
.rating-star { color: #f5a623; font-size: 16px; line-height: 1; }
.rating-count { color: var(--c-muted); font-size: 12px; font-weight: 400; }
.muted { color: var(--c-muted-2); font-size: 13px; }

/* Type badge */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.01em; }
.badge--prest { background: #e8f0ff; color: #1e3a8a; }
.badge--mand { background: #fff0e0; color: #9a4500; }

/* Contact icons */
.ent-contact-icons { display: flex; gap: 4px; }
.ent-contact-icons a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--c-bg);
  color: var(--c-ink-2);
  text-decoration: none;
  transition: all 0.15s ease;
}
.ent-contact-icons a:hover {
  background: var(--c-ink);
  color: #fff;
  text-decoration: none;
}

.ent-empty {
  padding: 56px 24px;
  text-align: center;
  color: var(--c-muted);
  font-size: 15px;
}

.ent-source {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--c-bg);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--c-ink-2);
  line-height: 1.55;
}
.ent-source strong { color: var(--c-ink); }

/* === TOP 3 CARDS === */
.top3-section {
  padding: 56px 0 16px;
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
}
.top3-head { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.top3-head h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 10px; letter-spacing: -0.02em; }
.top3-head .section-sub { color: var(--c-muted); margin: 0; font-size: 15px; }
.top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.top3-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
}
.top3-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-line-strong); }
.top3-card--price { border-top: 3px solid #0e7a55; }
.top3-card--rating { border-top: 3px solid #f5a623; }
.top3-card--value { border-top: 3px solid #d4a017; background: linear-gradient(180deg, #fffaf0 0%, var(--c-surface) 50%); }
.top3-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}
.top3-card--price .top3-badge { color: #0e7a55; }
.top3-card--rating .top3-badge { color: #b25c00; }
.top3-card--value .top3-badge { color: #8a5a00; }
.top3-id { display: flex; align-items: center; gap: 14px; }
.top3-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  background: var(--c-bg);
  display: grid;
  place-items: center;
  object-fit: contain;
  padding: 6px;
}
.top3-logo--initial { color: #fff; font-weight: 700; font-size: 22px; border: none; padding: 0; }
.top3-name { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
.top3-stats { display: grid; gap: 12px; }
.top3-stat { display: flex; flex-direction: column; gap: 2px; }
.top3-stat-label { font-size: 11.5px; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.top3-stat-value { font-size: 17px; color: var(--c-ink); font-weight: 700; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.top3-stat-sub { font-size: 12px; color: var(--c-accent); font-weight: 600; margin-top: 2px; }
.top3-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 14px;
  background: var(--c-bg);
  border: 1px solid var(--c-line-strong);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  transition: all 0.15s;
}
.top3-cta:hover { background: var(--c-ink); color: #fff; text-decoration: none; border-color: var(--c-ink); }

/* === Tier legend + dot === */
.ent-tier-legend {
  font-size: 12.5px;
  color: var(--c-muted);
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  align-items: center;
}
.tier-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2px;
}
.tier-low { background: #0e7a55; }
.tier-mid { background: #f5d76e; }
.tier-high { background: #b25c00; }

/* Price cell with tier dot + sparkline + trend */
.price-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.price-cell .tier-dot { margin-right: 0; }
.spark {
  width: 64px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}
.trend-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.trend-up { background: #fff3e0; color: #b25c00; }
.trend-down { background: var(--c-accent-soft); color: var(--c-accent); }
.trend-flat { background: #f0eee8; color: var(--c-muted); }

/* === Trust badges row under company name === */
.ent-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.badge-best, .badge-cheapest, .badge-top-rated, .trust-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  width: fit-content;
}
.badge-best { color: #8a5a00; background: #fff3c4; border: 1px solid #f5d76e; }
.badge-cheapest { color: #0e5a44; background: var(--c-accent-soft); border: 1px solid #a3d9c0; }
.badge-top-rated { color: #b25c00; background: #fff3e0; border: 1px solid #f5d76e; }
.trust-badge { color: var(--c-muted); background: var(--c-bg); border: 1px solid var(--c-line); font-weight: 500; }
.trust-badge--verified { color: var(--c-accent); border-color: var(--c-accent-soft); background: var(--c-accent-soft); font-weight: 600; }

/* === ENTREPRISES TABLE COMPACTE (v5 — Excel-like cool) === */
.ent-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-surface);
  box-shadow: var(--shadow-xs);
}
.ent-compact {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
  background: var(--c-surface);
}
.ent-compact thead th {
  background: var(--c-bg);
  font-weight: 600;
  font-size: 11px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 5;
}
.ent-compact th.num, .ent-compact td.num { text-align: right; }
.ent-compact .sortable { cursor: pointer; user-select: none; transition: background 0.12s; }
.ent-compact .sortable:hover { background: #f0eee8; color: var(--c-ink); }
.ent-compact th[aria-sort] { color: var(--c-ink); }
.ent-compact .sort-arrow {
  display: inline-block;
  margin-left: 3px;
  font-size: 9px;
  color: var(--c-muted);
  width: 8px;
}
.ent-compact th[aria-sort] .sort-arrow { color: var(--c-accent); }
.sort-tip { color: var(--c-muted); cursor: help; font-size: 10px; margin-left: 2px; }

.ent-compact tbody tr.ent-row {
  border-bottom: 1px solid var(--c-line);
  cursor: pointer;
  transition: background 0.12s;
}
.ent-compact tbody tr.ent-row:hover { background: #fcfbf8; }
.ent-compact tbody tr.ent-row.is-expanded { background: var(--c-bg); }
.ent-compact tbody tr:nth-child(4n+1) td { background: rgba(0,0,0,0.012); }
.ent-compact tbody tr.ent-row:hover td { background: #fcfbf8; }
.ent-compact tbody tr.ent-row.is-expanded td { background: var(--c-bg); }
.ent-compact td {
  padding: 9px 12px;
  vertical-align: middle;
}

/* Highlight rows */
.ent-compact tr.row-best td { background: linear-gradient(90deg, #fff8e1 0%, #fffdf6 80%) !important; }
.ent-compact tr.row-cheapest:not(.row-best) td { background: linear-gradient(90deg, #f0fdf6 0%, #fffefb 80%) !important; }
.ent-compact tr.row-top-rated:not(.row-best):not(.row-cheapest) td { background: linear-gradient(90deg, #fff5e7 0%, #fffefb 80%) !important; }

/* Logo small */
.ent-id { display: flex; align-items: center; gap: 9px; min-width: 0; }
.ent-logo-sm {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  object-fit: contain;
  padding: 2px;
  display: inline-grid;
  place-items: center;
}
.ent-logo-sm.ent-logo--initial {
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  border: none;
  padding: 0;
}
.ent-name-text { font-weight: 600; color: var(--c-ink); display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.ent-name-text a { color: var(--c-ink); }
.ent-name-text a:hover { color: var(--c-accent); text-decoration: underline; }
.row-flag {
  font-size: 12px;
  color: #d4a017;
  flex-shrink: 0;
}
.row-flag--cheap { color: #0e7a55; }
.row-flag--rated { color: #b25c00; }
.row-flag--editorial {
  font-size: 10.5px;
  font-weight: 700;
  color: #5a3a8a;
  background: #f3eafd;
  border: 1px solid #d8c5f0;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Row Centre Services (éditeur) — léger fond violet pour transparence */
.ent-compact tr.row-editorial td {
  background: #faf6ff !important;
}
.ent-compact tr.row-editorial:hover td {
  background: #f5edff !important;
}

/* Type badge compact */
.ent-compact .badge { padding: 2px 7px; font-size: 11px; }

/* Tarif compact */
.price-cell-compact { display: inline-flex; align-items: baseline; gap: 4px; }
.price-cell-compact strong { font-size: 14px; color: var(--c-ink); }
.price-cell-compact .price-unit { font-size: 11px; color: var(--c-muted); }
.price-cell-compact .tier-dot { align-self: center; margin-right: 2px; }

.cost-compact { display: inline-flex; align-items: baseline; gap: 4px; }
.cost-compact strong { font-size: 13.5px; color: var(--c-ink); }

/* Frais badge compact */
.fee-compact {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.fee-ok { background: var(--c-accent-soft); color: var(--c-accent); }
.fee-warn { background: #fff3e0; color: #b25c00; }

/* Note compact */
.rating-compact {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12.5px;
  color: var(--c-ink);
}
.rating-compact .rating-star { color: #f5a623; font-size: 13px; }
.rating-compact .rating-count { color: var(--c-muted); font-size: 11px; }
.rating-compact:hover { text-decoration: none; color: var(--c-accent); }

/* Expand button compact */
.col-expand { width: 32px; text-align: center; }
.expand-btn {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  color: var(--c-muted);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.12s ease;
}
.expand-btn:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.expand-btn svg { transition: transform 0.18s ease; }
.expand-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.expand-btn[aria-expanded="true"] { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

.ent-row.is-expanded + .ent-detail-row { display: table-row !important; }
.ent-detail-row[hidden] { display: none; }
.ent-detail-cell {
  background: var(--c-bg) !important;
  padding: 0 !important;
  border-bottom: 2px solid var(--c-ink) !important;
}
.ent-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  padding: 18px 22px 14px;
  animation: detail-fade-in 0.22s ease-out;
}
.ent-detail-cta {
  padding: 0 22px 18px;
  text-align: right;
}
.ent-detail-cta .btn { padding: 10px 20px; font-size: 14px; }

.muted { color: var(--c-muted-2); font-size: 12.5px; }

.ent-tier-legend-compact {
  font-size: 11.5px;
  color: var(--c-muted);
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}
.ent-tier-legend-compact .tier-dot { margin: 0 2px; }

/* === SORT animation === */
.is-resorting tr.ent-row { transition: opacity 0.18s ease; opacity: 0.4; }

/* Mobile : conversion en cards-like rows */
@media (max-width: 768px) {
  .ent-compact thead { display: none; }
  .ent-compact, .ent-compact tbody, .ent-compact tr.ent-row, .ent-compact tr.ent-row td { display: block; }
  .ent-compact tr.ent-row {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    margin-bottom: 10px;
    padding: 12px 14px;
  }
  .ent-compact tr.ent-row td {
    border-bottom: 1px dashed var(--c-line);
    padding: 7px 0;
    text-align: left !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: transparent !important;
  }
  .ent-compact tr.ent-row td:last-child { border-bottom: 0; }
  .ent-compact tr.ent-row td::before {
    content: attr(data-label);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--c-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .ent-compact td.col-name { display: block; padding-bottom: 10px; border-bottom: 1px solid var(--c-line); }
  .ent-compact td.col-name::before { display: none; }
  .ent-compact td.col-name a { font-size: 15px; }
  .ent-compact td.col-expand { display: none !important; }
  .ent-detail-row { display: block; }
  .ent-detail { grid-template-columns: 1fr; gap: 16px; padding: 14px; }
}

/* === COMPANY CARDS (v4 — kept for /devis/merci/ compact mode only) === */
.entreprises-cards-section {
  padding: 56px 0 64px;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.ent-sort-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 16px 0 12px;
}
.sort-label { font-size: 12.5px; color: var(--c-muted); margin-right: 4px; font-weight: 600; }
.sort-btn {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  background: var(--c-surface);
  border: 1px solid var(--c-line-strong);
  color: var(--c-ink-2);
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.sort-btn:hover { border-color: var(--c-ink); color: var(--c-ink); }
.sort-btn[aria-pressed="true"] { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

.ent-tier-legend {
  font-size: 12.5px;
  color: var(--c-muted);
  margin: 4px 0 20px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 8px 14px;
  background: var(--c-bg);
  border-radius: 999px;
}
.tier-sep { color: var(--c-line-strong); }

.company-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.company-cards.is-resorting .company-card { opacity: 0.4; transition: opacity 0.18s; }

.company-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  position: relative;
}
.company-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-line-strong);
}
.company-card.card--best {
  border-left: 4px solid #f5a623;
  background: linear-gradient(90deg, #fffaf0 0%, var(--c-surface) 80px);
}
.company-card.card--cheapest:not(.card--best) {
  border-left: 4px solid #0e7a55;
  background: linear-gradient(90deg, #f0fdf6 0%, var(--c-surface) 80px);
}
.company-card.card--top-rated:not(.card--best):not(.card--cheapest) {
  border-left: 4px solid #b25c00;
  background: linear-gradient(90deg, #fff5e7 0%, var(--c-surface) 80px);
}

.card-main {
  display: grid;
  grid-template-columns: 80px 1fr 220px;
  gap: 24px;
  align-items: center;
}

/* Logo */
.card-logo-wrap {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}
.card-logo {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  background: var(--c-bg);
  object-fit: contain;
  padding: 10px;
  display: grid;
  place-items: center;
}
.card-logo--initial {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  border: none;
  padding: 0;
}

/* Body : nom + badges + features */
.card-body { min-width: 0; }
.card-header { margin-bottom: 14px; }
.card-name {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.card-name a { color: var(--c-ink); }
.card-name a:hover { color: var(--c-accent); text-decoration: none; }
.card-badges { display: flex; flex-wrap: wrap; gap: 6px; }

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.feature-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  font-weight: 700;
}
.feature-value {
  font-size: 14px;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.35;
}
.feat-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.feat-icon--ok { background: var(--c-accent-soft); color: var(--c-accent); }
.feat-icon--warn { background: #fff3e0; color: #b25c00; }
.feat-text { font-size: 13.5px; color: var(--c-ink-2); }
.feat-help { color: var(--c-muted); font-size: 11px; cursor: help; margin-left: 2px; }

.feat-cost { display: block; font-size: 14.5px; }
.feat-cost strong { color: var(--c-ink); font-size: 16px; font-weight: 700; }
.feat-cost-net {
  display: block;
  font-size: 11.5px;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: 2px;
}
.feat-evolution {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Aside : prix + CTA */
.card-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
  border-left: 1px solid var(--c-line);
  padding-left: 20px;
  height: 100%;
  justify-content: center;
}
.card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.card-price .tier-dot { margin-right: 4px; align-self: center; }
.price-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  line-height: 1;
}
.card-price .price-unit {
  font-size: 14px;
  color: var(--c-muted);
  font-weight: 500;
}
.card-cta {
  display: inline-block;
  padding: 12px 22px;
  background: var(--c-ink);
  color: #fff;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--c-ink);
  transition: all 0.15s ease;
  white-space: nowrap;
  text-align: center;
}
.card-cta:hover {
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.card-cta--ghost {
  background: var(--c-surface);
  color: var(--c-ink);
  border-color: var(--c-line-strong);
}
.card-cta--ghost:hover { background: var(--c-bg); color: var(--c-ink); border-color: var(--c-ink); box-shadow: none; transform: none; }

/* Expand button + detail */
.card-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px auto 0;
  padding: 10px 20px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-2);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
.card-expand-btn:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.card-expand-btn svg { transition: transform 0.2s ease; }
.card-expand-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.card-detail[hidden] { display: none; }
.card-detail {
  margin-top: 16px;
  padding: 20px 0 4px;
  border-top: 1px dashed var(--c-line);
  animation: detail-fade-in 0.22s ease-out;
}
.card-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

/* === MERCI PAGE — section cards === */
.merci-panel {
  padding: 56px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}
.merci-panel-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.merci-panel-head h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; letter-spacing: -0.02em; }
.merci-panel-head .eyebrow { display: inline-block; }
.merci-panel-head .section-sub { font-size: 15px; color: var(--c-muted); margin: 0; }
.merci-panel-cta {
  text-align: center;
  margin-top: 28px;
}
.ent-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 24px 28px;
  animation: detail-fade-in 0.22s ease-out;
}
@keyframes detail-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.ent-detail-block h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-muted);
  margin: 0 0 12px;
  font-weight: 700;
}
.wave-history {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.wave-cell {
  flex: 1 1 0;
  min-width: 80px;
  background: var(--c-surface);
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--c-line);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.wave-label { font-size: 10.5px; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.wave-price { font-size: 14px; font-weight: 700; color: var(--c-ink); margin-top: 2px; font-variant-numeric: tabular-nums; }
.wave-summary { font-size: 13px; color: var(--c-ink-2); margin: 8px 0 0; }
.wave-summary .trend-up { color: #b25c00; padding: 0; background: none; border: none; }
.wave-summary .trend-down { color: var(--c-accent); padding: 0; background: none; border: none; }
.fees-detail { list-style: none; padding: 0; margin: 0; }
.fees-detail li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: 13.5px;
}
.fees-detail li:last-child { border-bottom: 0; }
.fees-detail span { color: var(--c-muted); }
.fees-detail strong { color: var(--c-ink); font-weight: 600; }
.fees-detail .fees-raw { display: block; padding-top: 8px; }
.fees-detail .fees-raw em { display: block; color: var(--c-ink-2); font-size: 12.5px; margin-top: 4px; font-style: italic; }
.fees-detail a { color: var(--c-ink); border-bottom: 1px dotted var(--c-line-strong); }
.fees-detail a:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); text-decoration: none; }

/* Section head */
.ent-section-head { margin-bottom: 16px; }
.ent-section-head h2 { font-size: 22px; margin: 0 0 6px; letter-spacing: -0.015em; }
.ent-section-head .section-sub { font-size: 14px; color: var(--c-muted); margin: 0; }

/* Best/cheapest/top-rated row backgrounds */
.ent-table tr.row-cheapest:not(.row-best) { background: linear-gradient(90deg, #f0fdf6 0%, #fffefb 100%); }
.ent-table tr.row-cheapest:not(.row-best):hover { background: #e6faec; }
.ent-table tr.row-top-rated:not(.row-best):not(.row-cheapest) { background: linear-gradient(90deg, #fff5e7 0%, #fffefb 100%); }
.ent-table tr.row-top-rated:not(.row-best):not(.row-cheapest):hover { background: #fdecd1; }

/* Sort animation */
.is-resorting tr { transition: opacity 0.18s ease; }
.is-resorting tr { opacity: 0.4; }

@media (max-width: 1100px) {
  .top3-grid { grid-template-columns: 1fr; }
  .card-main { grid-template-columns: 70px 1fr 180px; gap: 18px; }
  .card-detail-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .price-num { font-size: 28px; }
}
@media (max-width: 768px) {
  .top3-section { padding: 40px 0 8px; }
  .top3-card { padding: 20px; }
  .ent-tier-legend { font-size: 11.5px; padding: 6px 10px; }
  .ent-toolbar { grid-template-columns: 1fr; }
  .ent-sort-bar { gap: 6px; }
  .sort-btn { padding: 5px 10px; font-size: 12px; }

  /* Cards mobile : empilement vertical */
  .company-card { padding: 18px; }
  .card-main {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-logo-wrap { width: 56px; height: 56px; }
  .card-logo { width: 56px; height: 56px; padding: 7px; border-radius: 11px; }
  .card-logo--initial { font-size: 22px; }
  .card-name { font-size: 17px; }
  .card-features { grid-template-columns: 1fr; gap: 12px; }
  .card-aside {
    border-left: 0;
    border-top: 1px solid var(--c-line);
    padding-left: 0;
    padding-top: 16px;
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .card-price { align-items: baseline; }
  .price-num { font-size: 26px; }
  .card-cta { padding: 11px 16px; font-size: 14px; }
  .card-detail-grid { grid-template-columns: 1fr; gap: 16px; }
  .spark { width: 50px; height: 18px; }
  .trend-pill { font-size: 10px; padding: 1px 6px; }
  .wave-history { gap: 4px; }
  .wave-cell { min-width: 60px; padding: 6px 8px; }
  .wave-price { font-size: 13px; }
}

@media (max-width: 1100px) {
  .ent-toolbar { grid-template-columns: 1fr; gap: 12px; }
  .ent-counter { justify-self: start; }
  .col-cost { display: none; }
  .col-cost::before, .col-cost-cell { display: none; }
}

/* CTA strip */
.cta-strip {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 100%);
  border-bottom: 1px solid var(--c-line);
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.cta-strip p { color: var(--c-ink-2); margin: 0 0 20px; }
.cta-strip .btn-lg { display: inline-block; }

@media (max-width: 768px) {
  .lead-form--grid { grid-template-columns: 1fr; gap: 14px; }
  .lead-form-section--hero { padding: 40px 0 48px; }
  .lead-form-section--hero h1 { font-size: 28px; }
  .form-submit-row .btn { width: 100%; min-width: 0; }
  .form-trust-line { width: 100%; text-align: center; }
  .phone-alt { flex-direction: column; align-items: flex-start; gap: 4px; }
  .merci-step { grid-template-columns: 44px 1fr; padding: 18px; gap: 14px; }
  .merci-step-marker { width: 32px; height: 32px; font-size: 14px; }
  .merci-call-card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .merci-call-btn { width: 100%; justify-content: center; }

  /* Entreprises table → cards on mobile */
  .ent-table thead { display: none; }
  .ent-table, .ent-table tbody, .ent-table tr, .ent-table td { display: block; }
  .ent-table tr {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    margin-bottom: 14px;
    padding: 16px;
    box-shadow: var(--shadow-xs);
  }
  .ent-table tr.row-best { border-color: #f5d76e; }
  .ent-table tbody tr:last-child td { border-bottom: 0; }
  .ent-table td {
    border-bottom: 1px dashed var(--c-line);
    padding: 10px 0;
    text-align: left !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .ent-table td:last-child { border-bottom: 0; }
  .ent-table td::before {
    content: attr(data-label);
    font-size: 11.5px;
    text-transform: uppercase;
    color: var(--c-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  /* Name = full row, no label */
  .ent-table td.col-name { display: block; padding-bottom: 14px; border-bottom: 1px solid var(--c-line); margin-bottom: 4px; }
  .ent-table td.col-name::before { display: none; }
  .ent-table td.col-name a, .ent-table td.col-name span { font-size: 16px; }

  /* Price prominent on mobile too */
  .col-price .price-big { font-size: 24px; }

  /* Cost real on mobile : align right column */
  .ent-table td.col-cost { align-items: flex-end; }
  .cost-real { align-items: flex-end; }

  /* Fees badges stack on mobile */
  .ent-table td.col-fees { display: block; padding-top: 12px; }
  .ent-table td.col-fees::before { display: block; margin-bottom: 6px; }
  .fee-badges { flex-direction: row; flex-wrap: wrap; }

  /* Toolbar mobile */
  .ent-toolbar { grid-template-columns: 1fr; }
  .ent-chips { gap: 6px; }
  .chip { padding: 6px 12px; font-size: 12.5px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero--conversion .container { grid-template-columns: 1fr; gap: 36px; }
  .hero--conversion .hero-form-card { position: static; max-width: 460px; }
  .hero-card { max-width: 460px; }
  .hero-punch .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-punch-visual { height: 320px; max-width: 480px; margin: 0 auto; }
  .why-punch-grid { grid-template-columns: 1fr; }
  .steps-punch-grid { grid-template-columns: 1fr; }
  .key-figures .container { grid-template-columns: repeat(3, 1fr); }
  .quartier-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 900px) {
  /* Header : nav desktop hidden, hamburger visible */
  .primary-nav { display: none !important; }
  .header-burger {
    display: inline-grid !important;
    visibility: visible !important;
    pointer-events: auto !important;
    place-items: center;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .container-wide { padding: 0 16px; }
  .hero--conversion { padding: 48px 0 32px; }
  .hero--conversion h1 { font-size: 28px; }

  /* Header mobile : phone visible mais raccourci */
  .header-inner { padding: 12px 16px; gap: 10px; }
  .header-phone-num { display: none; } /* icône seule */
  .header-phone { padding: 8px; }
  .btn-orange-sm { padding: 10px 14px; font-size: 13.5px; }
  .brand-name { font-size: 14px; }
  .brand-tld { display: none; }

  /* Hero punchy mobile */
  .hero-punch { padding: 40px 0 56px; }
  .hero-punch h1 { font-size: 32px; }
  .hero-punch-sub { font-size: 16px; }
  .hero-punch-form { grid-template-columns: 1fr; gap: 12px; }
  .hero-punch-form input { padding: 16px 18px; font-size: 16px; }
  .btn-orange, .btn-orange-lg { padding: 16px 24px; font-size: 16px; width: 100%; }
  .hero-punch-visual { height: 280px; }
  .hero-punch-stat { width: 240px; padding: 28px 24px; }
  .hero-punch-stat-num { font-size: 44px; }
  .hero-punch-bubble { padding: 10px 14px; }
  .hero-punch-bubble-num { font-size: 20px; }
  .steps-punch { padding: 56px 0; }
  .step-punch { padding: 28px 20px; }
  .step-punch-icon { font-size: 44px; }
  .why-punch { padding: 56px 0; }
  .trust-bar .container { grid-template-columns: 1fr 1fr; }
  .trust-item strong { font-size: 26px; }
  .final-punch { padding: 56px 0; }

  .hero-bullets li { font-size: 14.5px; }
  .hero-form-card { padding: 22px; }
  .hero-form-title { font-size: 19px; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .problem-section { padding: 48px 0; }
  .problem-item { grid-template-columns: 36px 1fr; padding: 16px; }
  .final-cta { padding: 56px 0; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 32px; }
  .lede { font-size: 17px; }
  .key-figures { padding: 36px 0; }
  .key-figures .container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .figure { padding: 20px 18px; }
  .figure-num { font-size: 26px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .quartier-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
  .hero-card { padding: 26px; }
  .hero-card-value { font-size: 44px; }
  .funnel-card { padding: 32px 24px; }
  .data-table th, .data-table td { padding: 12px 14px; font-size: 14px; }
}

/* ============================================================
   JOB BOARD — page recrutement (style Indeed)
   ============================================================ */

.job-board-hero {
  background: linear-gradient(180deg, var(--c-orange-soft) 0%, var(--c-bg) 100%);
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--c-line);
}
.job-board-hero h1 {
  font-size: 38px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 8px 0 16px;
  color: var(--c-ink);
}
.job-board-hero .lede {
  font-size: 18px;
  color: var(--c-ink-2);
  max-width: 720px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.job-board-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}
.job-stat {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-xs);
}
.job-stat strong { color: var(--c-orange); font-weight: 700; }
.job-stat-rating { color: #b25c00; }

.job-board-toolbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
  padding: 14px 0;
}
.job-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.job-filter-chips-label {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 600;
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.job-filter-chip {
  background: var(--c-bg);
  border: 1.5px solid var(--c-line);
  color: var(--c-ink-2);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
.job-filter-chip:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  background: var(--c-orange-soft);
}
.job-filter-chip.is-active {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}
.job-filter-chip-count {
  margin-left: 6px;
  background: rgba(255,255,255,0.18);
  padding: 1px 7px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
}
.job-filter-chip:not(.is-active) .job-filter-chip-count {
  background: var(--c-line);
  color: var(--c-muted);
}

.job-board-grid-wrap {
  padding: 36px 0 80px;
  background: var(--c-bg);
}
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.job-card:hover {
  border-color: var(--c-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.job-card[hidden] { display: none; }

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}
.job-card-secteur-badge {
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.job-card-posted {
  font-size: 12px;
  color: var(--c-muted);
}
.job-card-title {
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--c-ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.job-card-company {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--c-ink-2);
}
.job-card-company-logo {
  width: 32px;
  height: 32px;
  background: var(--c-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.job-card-company-name { font-weight: 600; color: var(--c-ink); }
.job-card-company-rating {
  color: #b25c00;
  font-weight: 600;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
}
.job-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.job-chip {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  color: var(--c-ink-2);
  padding: 5px 11px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.job-chip--salary {
  background: var(--c-accent-soft);
  color: var(--c-accent);
  border-color: transparent;
  font-weight: 600;
}
.job-chip--orange {
  background: var(--c-orange-soft);
  color: var(--c-orange-hover);
  border-color: transparent;
}
.job-card-desc {
  color: var(--c-ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.job-card-desc p { margin: 0 0 10px; }
.job-card-desc p:last-child { margin-bottom: 0; }
.job-card-quartiers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--c-line);
}
.job-card-quartiers-label {
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  width: 100%;
  margin-bottom: 4px;
}
.job-card-quartier-pill {
  background: var(--c-bg);
  color: var(--c-ink-2);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
}
.job-card-cta {
  display: flex;
  gap: 10px;
  margin-top: auto;
  align-items: center;
}
.job-card-cta .btn-postuler {
  background: var(--c-orange);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  flex: 1;
  text-align: center;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.job-card-cta .btn-postuler:hover { background: var(--c-orange-hover); text-decoration: none; }
.job-card-cta .btn-call {
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  color: var(--c-ink);
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}
.job-card-cta .btn-call:hover { border-color: var(--c-ink); text-decoration: none; }
.job-card-openings {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--c-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.job-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--c-muted);
  font-size: 16px;
  display: none;
}
.job-empty-state.is-visible { display: block; }

/* Why work here block (above form) */
.job-why-block {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 36px 0;
}
.job-why-block h2 {
  font-size: 22px;
  margin: 0 0 18px;
  color: var(--c-ink);
}
.job-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.job-why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--c-ink-2);
  line-height: 1.5;
}
.job-why-item-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

/* Application form makeover */
.job-application-section {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px;
  scroll-margin-top: 80px;
}
.job-application-section h2 {
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--c-ink);
}
.job-application-section .form-intro {
  color: var(--c-ink-2);
  margin-bottom: 24px;
  font-size: 15px;
}

/* Sticky mobile CTA */
.job-mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  padding: 12px 16px;
  z-index: 90;
  box-shadow: 0 -4px 14px rgba(15,15,15,0.06);
}
/* CV upload field */
.cv-upload {
  border: 2px dashed var(--c-line-strong);
  border-radius: var(--r-md);
  padding: 18px;
  background: var(--c-bg);
  transition: border-color 0.15s, background 0.15s;
}
.cv-upload:hover, .cv-upload:focus-within {
  border-color: var(--c-orange);
  background: var(--c-orange-soft);
}
.cv-upload input[type="file"] {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--c-ink-2);
  width: 100%;
}
.cv-upload input[type="file"]::file-selector-button {
  background: var(--c-ink);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
  font-family: inherit;
  transition: background 0.15s;
}
.cv-upload input[type="file"]::file-selector-button:hover { background: var(--c-orange); }
.cv-upload-help {
  margin: 10px 0 0 0;
  font-size: 13.5px;
  color: var(--c-muted);
  font-style: italic;
}
.cv-upload-help.is-ok { color: var(--c-accent); font-weight: 600; font-style: normal; }
.cv-upload-help.is-error { color: #b91c1c; font-weight: 600; font-style: normal; }

.job-mobile-sticky-cta a {
  display: block;
  background: var(--c-orange);
  color: #fff;
  padding: 14px;
  border-radius: var(--r-sm);
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

@media (max-width: 900px) {
  .job-board-hero { padding: 36px 0 24px; }
  .job-board-hero h1 { font-size: 28px; }
  .job-board-hero .lede { font-size: 16px; }
  .job-grid { grid-template-columns: 1fr; gap: 14px; }
  .job-card { padding: 20px 18px; }
  .job-card-title { font-size: 17px; }
  .job-board-toolbar { padding: 10px 0; }
  .job-filter-chips-label { display: none; }
  .job-filter-chip { padding: 7px 12px; font-size: 13px; }
  .job-application-section { padding: 24px 18px; }
  .job-why-block { padding: 24px 18px; }
  .job-why-grid { grid-template-columns: 1fr; gap: 14px; }
  .job-mobile-sticky-cta { display: block; }
  body.has-job-sticky-cta { padding-bottom: 80px; }
  .job-card-openings { top: 14px; right: 14px; font-size: 10px; }
}

