/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv01", "cv09";
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:root {
  --bg: #ffffff;
  --bg-soft: #fbfbfd;
  --bg-dark: #1d1d1f;
  --ink: #1d1d1f;
  --ink-muted: #6e6e73;
  --ink-soft: #86868b;
  --line: #d2d2d7;
  --line-soft: #e5e5e7;
  --accent: #1d1d1f;
  --accent-warm: #c4391b;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 2px 4px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.08);

  --t-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: var(--ink);
}

.kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  text-align: center;
}

.section-title {
  font-size: clamp(36px, 5.2vw, 64px);
  letter-spacing: -0.028em;
  line-height: 1.04;
}

.section-lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--ink-muted);
  margin-top: 24px;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATION (scroll-driven)
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background var(--t-med), backdrop-filter var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom-color: var(--line-soft);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-img-wrap {
  position: relative;
  width: 36px;
  height: 45px;
  flex-shrink: 0;
}
.logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity var(--t-med);
}
.logo-img-dark { opacity: 0; }
.site-header.scrolled .logo-img-light { opacity: 0; }
.site-header.scrolled .logo-img-dark { opacity: 1; }
.logo-text {
  color: #fff;
  mix-blend-mode: difference;
  transition: color var(--t-med);
}
.site-header.scrolled .logo-text {
  color: var(--ink);
  mix-blend-mode: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  mix-blend-mode: difference;
  opacity: 0.92;
  transition: opacity var(--t-fast), color var(--t-med);
}
.nav-links a:hover { opacity: 1; }
.site-header.scrolled .nav-links a {
  color: var(--ink);
  mix-blend-mode: normal;
  opacity: 0.85;
}
.site-header.scrolled .nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 500 !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}
.site-header.scrolled .nav-cta {
  background: var(--ink) !important;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  mix-blend-mode: difference;
  transition: transform var(--t-fast);
}
.site-header.scrolled .nav-toggle span {
  background: var(--ink);
  mix-blend-mode: normal;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.btn-ghost {
  background: rgba(255,255,255,0.16);
  color: var(--bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.24);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}
.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}
.btn-tel-label {
  opacity: 0.6;
  font-weight: 400;
}
.btn-tel-number {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* CTA finale : ghost sur fond clair */
.cta-final .btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  backdrop-filter: none;
}
.cta-final .btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  background: #000;
}
.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fade-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, var(--bg) 95%);
  pointer-events: none;
}

.hero-text-block {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(64px, 9vw, 120px);
  text-align: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 600;
}
.hero-title-soft {
  color: var(--ink-muted);
  font-weight: 600;
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  color: var(--ink-muted);
  margin: 28px auto 0;
  max-width: 620px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
}
.hero-cta .btn-ghost {
  background: rgba(0,0,0,0.04);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: none;
}
.hero-cta .btn-ghost:hover {
  background: rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════════════════════ */
.pillars {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 48px 36px 40px;
  transition: background var(--t-med);
}
.pillar:hover { background: var(--bg-soft); }
.pillar-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  font-variant-numeric: tabular-nums;
}
.pillar h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pillar p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════
   ÉQUIPE
   ═══════════════════════════════════════════════════════ */
.team {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.team-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-text .kicker {
  margin-bottom: 0;
}
.team-title {
  text-align: left;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.028em;
  line-height: 1.04;
}
.team-title-soft {
  color: var(--ink-muted);
  font-weight: 600;
}
.team-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.team-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-stat strong {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.team-stat span {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.3;
}
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  background: var(--bg-soft);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { max-width: 700px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .team-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .team-stat {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
  .team-stat strong { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════
   PAINS
   ═══════════════════════════════════════════════════════ */
.pains {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-soft);
}

.pains-list {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.pain-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 28px;
  padding: 36px 44px;
  background: var(--bg);
  transition: background var(--t-med);
}
.pain-row:hover { background: #fafafc; }

.pain-quote {
  font-family: ui-serif, "New York", "Times New Roman", Georgia, serif;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.pain-arrow {
  font-size: 22px;
  color: var(--ink-soft);
  text-align: center;
  font-weight: 300;
}

.pain-fix {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pain-fix-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pain-fix-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════════════════════
   SERVICE VIDEO (scroll sections)
   ═══════════════════════════════════════════════════════ */
.service-video {
  background: var(--bg);
  padding: clamp(60px, 10vw, 120px) 0;
}
.service-video.alt {
  background: var(--bg-soft);
}

/* Mode SCRUB : la section devient longue et la vidéo est pilotée par le scroll */
.service-video.scrub {
  height: 220vh;
  padding: 0;
}
.service-video.scrub > .sv-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.sv-sticky {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.service-video[data-service="frelons"] .sv-sticky {
  direction: rtl;
}
.service-video[data-service="frelons"] .sv-sticky > * {
  direction: ltr;
}

.sv-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-dark);
  box-shadow: var(--shadow-card);
}

.sv-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(135deg, #2a2a2c 0%, #1d1d1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-placeholder::before {
  content: attr(data-label);
  color: rgba(255,255,255,0.32);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sv-placeholder::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-top-color: rgba(255,255,255,0.5);
  animation: spin 2s linear infinite;
  margin-top: -100px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.sv-text {
  padding: 24px 0;
}
.sv-kicker {
  margin-bottom: 24px;
}
.sv-title {
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.sv-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.sv-lead strong { color: var(--ink); font-weight: 600; }
.sv-lead em { font-style: italic; }

.sv-bullets {
  margin-bottom: 36px;
}
.sv-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 12px;
}
.sv-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: gap var(--t-fast);
}
.link-arrow:hover { gap: 12px; }

/* CTA bloc dans les sections services */
.sv-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.sv-cta .btn { padding: 14px 24px; }
.sv-cta .link-arrow { font-size: 15px; }

/* ═══════════════════════════════════════════════════════
   PROS B2B
   ═══════════════════════════════════════════════════════ */
.pros {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.pros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pro-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  transition: background var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  cursor: pointer;
}
.pro-card:hover {
  background: #f5f5f7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.pro-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.pro-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.pro-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin-bottom: 28px;
  flex: 1;
}
.link-arrow-small {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════ */
.process {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-soft);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.step {
  background: var(--bg);
  padding: 44px 32px 40px;
}
.step-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════
   ZONES
   ═══════════════════════════════════════════════════════ */
.zones {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.zones-text .section-title {
  text-align: left;
}
.zones-text .section-lead {
  text-align: left;
  margin-left: 0;
}
.zones-text .link-arrow {
  margin-top: 28px;
}

.zones-cities ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.zones-cities li {
  font-size: 16px;
  color: var(--ink);
  position: relative;
  padding-left: 16px;
}
.zones-cities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}
.zones-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════ */
.cta-final {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.cta-title {
  font-size: clamp(36px, 5.5vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.cta-title-soft {
  color: var(--ink-muted);
}
.cta-lead {
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-muted);
  margin-top: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
}
.cta-trust {
  margin-top: 36px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.cta-trust > span:first-child {
  letter-spacing: 0.3em;
  color: var(--accent-warm);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand .logo .logo-text {
  color: #fff;
  mix-blend-mode: normal;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--t-fast);
}
.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .sv-sticky { grid-template-columns: 1fr; }
  .service-video[data-service="frelons"] .sv-sticky { direction: ltr; }
  .sv-video-wrap { aspect-ratio: 1 / 1; max-width: 600px; margin: 0 auto; }
  .zones-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Mode scrub : sur tablette, on garde la sticky mais en 1 colonne */
  .service-video.scrub > .sv-sticky {
    grid-template-columns: 1fr;
    align-content: center;
  }
}

@media (max-width: 720px) {
  /* Sur mobile, on désactive complètement le scrub-on-scroll des services
     (la vidéo passe en autoplay loop classique via JS) */
  .service-video.scrub {
    height: auto;
    padding: clamp(60px, 10vw, 120px) 0;
  }
  .service-video.scrub > .sv-sticky {
    position: static;
    height: auto;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    flex-direction: column;
    gap: 0;
    padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    color: var(--ink) !important;
    mix-blend-mode: normal !important;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 17px;
    display: block;
  }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: none !important;
  }
  .nav-toggle { display: flex; }

  .pillar-grid { grid-template-columns: 1fr; }
  .pros-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .pain-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 24px;
    text-align: left;
  }
  .pain-arrow {
    text-align: left;
    transform: rotate(90deg);
    font-size: 18px;
    width: 20px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }

  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   PAGES INTERNES — Structure éditoriale
   ═══════════════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  padding: 88px 0 0;
  background: var(--bg);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-muted);
  padding: 20px 0 0;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--ink-soft);
}
.breadcrumb a {
  color: var(--ink-muted);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* Hero de page service */
.service-hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 120px);
  background: var(--bg);
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
.service-hero-text .kicker { margin-bottom: 20px; }
.service-hero-text h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  letter-spacing: -0.032em;
  line-height: 1.04;
  margin-bottom: 28px;
}
.service-hero-text .title-soft {
  color: var(--ink-muted);
  font-weight: 600;
}
.service-hero-lead {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 36px;
}
.service-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.service-hero-cta .btn-ghost {
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: none;
}
.service-hero-cta .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.08);
}
.service-hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.service-hero-bullets li {
  font-size: 15px;
  color: var(--ink-muted);
}
.service-hero-visual .sv-video-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
}

/* Sections d'article */
.article-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg);
}
.article-section.alt { background: var(--bg-soft); }

.container.narrow {
  max-width: 880px;
}

.article-section h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 28px;
}
.article-section .title-soft {
  color: var(--ink-muted);
  font-weight: 600;
}
.article-section .kicker {
  margin-bottom: 12px;
}
.section-lead-left {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 40px;
  max-width: 720px;
}

/* Prose courante */
.prose p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 20px;
}
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
  color: var(--ink);
}
.prose strong { font-weight: 600; }

/* Grille de risques */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.risk-card {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
}
.article-section.alt .risk-card { background: var(--bg); }
.risk-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.risk-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Liste méthode IPM */
.method-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.method-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}
.method-list li:last-child { border-bottom: none; }
.method-num {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  min-width: 28px;
}
.method-list h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.method-list p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Liste espèces */
.species-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.species {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}
.species:last-child { border-bottom: none; }
.species h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.species-latin {
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
}
.species p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 24px;
}
.pricing-card {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.pricing-card.highlight {
  border-color: var(--ink);
  border-width: 2px;
  padding: 31px 27px;
}
.pricing-card header { margin-bottom: 20px; }
.pricing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.pricing-spec {
  font-size: 13px;
  color: var(--ink-muted);
}
.pricing-price {
  font-size: 17px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.pricing-price strong {
  font-size: 28px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-card li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink-muted);
  font-weight: 600;
}
.pricing-note {
  font-size: 14px;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
  line-height: 1.55;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  padding-right: 40px;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-muted);
  transition: transform var(--t-fast);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item summary:hover { color: var(--ink); }
.faq-content {
  padding: 0 0 24px;
}
.faq-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.faq-content p:last-child { margin-bottom: 0; }

/* Liste de zones plate */
.zones-flat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
  list-style: none;
  padding: 32px 0 0;
  margin: 0;
}
.zones-flat li {
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding-left: 16px;
}
.zones-flat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

/* Maillage : services connexes */
.related-services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.related-services h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.related-services .kicker { margin-bottom: 12px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  transition: background var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  cursor: pointer;
}
.related-card:hover {
  background: #f5f5f7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.related-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.related-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin-bottom: 24px;
  flex: 1;
}

/* Responsive */
@media (max-width: 980px) {
  .service-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-hero-visual .sv-video-wrap { max-width: 500px; margin: 0 auto; }
  .risk-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .zones-flat { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .method-list li { grid-template-columns: 1fr; gap: 12px; }
  .method-num { display: block; }
  .zones-flat { grid-template-columns: 1fr; }
}

/* Illustration spécifique punaises (à la place de la vidéo) */
.punaise-illustration {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a2c 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.punaise-temp {
  text-align: center;
  padding: 28px 0;
}
.punaise-temp-value {
  display: block;
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.punaise-temp-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.punaise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.punaise-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.punaise-stat strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.punaise-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}
@media (max-width: 980px) {
  .punaise-illustration { margin: 0 auto; }
}
@media (max-width: 480px) {
  .punaise-stats { grid-template-columns: 1fr; gap: 12px; padding-top: 20px; }
}

/* Illustration spécifique pigeons */
.pigeon-illustration {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a2c 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.pigeon-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.pigeon-stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.pigeon-stat-block:nth-child(1),
.pigeon-stat-block:nth-child(2) {
  border-top: none;
  padding-top: 0;
}
.pigeon-stat-block strong {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pigeon-stat-block span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
@media (max-width: 980px) {
  .pigeon-illustration { margin: 0 auto; }
}
@media (max-width: 480px) {
  .pigeon-stat-grid { grid-template-columns: 1fr; gap: 16px; }
  .pigeon-stat-block:nth-child(2) { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; }
}

/* Illustration spécifique désinfection */
.desinfection-illustration {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a2c 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.desinfection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.desinfection-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.desinfection-block:nth-child(1),
.desinfection-block:nth-child(2) {
  border-top: none;
  padding-top: 0;
}
.desinfection-block strong {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.desinfection-block span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
@media (max-width: 980px) {
  .desinfection-illustration { margin: 0 auto; }
}
@media (max-width: 480px) {
  .desinfection-grid { grid-template-columns: 1fr; gap: 16px; }
  .desinfection-block:nth-child(2) { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; }
}

/* Illustration spécifique moustique tigre */
.moustique-illustration {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a2c 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.moustique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.moustique-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.moustique-block:nth-child(1),
.moustique-block:nth-child(2) {
  border-top: none;
  padding-top: 0;
}
.moustique-block strong {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.moustique-block span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
@media (max-width: 980px) { .moustique-illustration { margin: 0 auto; } }
@media (max-width: 480px) {
  .moustique-grid { grid-template-columns: 1fr; gap: 16px; }
  .moustique-block:nth-child(2) { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; }
}

/* Illustration spécifique fourmis */
.fourmi-illustration {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a2c 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.fourmi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.fourmi-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.fourmi-block:nth-child(1),
.fourmi-block:nth-child(2) {
  border-top: none;
  padding-top: 0;
}
.fourmi-block strong {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.fourmi-block span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
@media (max-width: 980px) { .fourmi-illustration { margin: 0 auto; } }
@media (max-width: 480px) {
  .fourmi-grid { grid-template-columns: 1fr; gap: 16px; }
  .fourmi-block:nth-child(2) { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; }
}

/* Illustration spécifique page ville */
.ville-illustration {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a2c 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.ville-header {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ville-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ville-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ville-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ville-stat-row:last-child { border-bottom: none; }
.ville-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
.ville-stat-value {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 980px) { .ville-illustration { margin: 0 auto; } }

/* Grille services en double colonne pour pages villes */
.related-grid-large {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 720px) {
  .related-grid-large { grid-template-columns: 1fr !important; }
}

/* Sous-titre dans la section zones */
.zones-sub-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 16px;
}
.zones-sub-title:first-of-type { margin-top: 12px; }

/* ═══════════════════════════════════════════════════════════
   ╔═════════════════════════════════════════════════════════╗
   ║  NOUVEAU SYSTÈME MODAL — CONTACT INTELLIGENT (cnz-*)    ║
   ║  Path Urgence / Path Information / Récap                ║
   ╚═════════════════════════════════════════════════════════╝
   ═══════════════════════════════════════════════════════════ */

/* ─── Overlay & panneau ──────────────────────────────────── */

.cnz-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-family: inherit;
}

.cnz-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.cnz-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.cnz-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnz-modal[aria-hidden="false"] .cnz-modal-panel {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 640px) {
  .cnz-modal-panel {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 16px;
  }
}

/* Empêche le scroll du body quand modal ouverte */
body.cnz-modal-open {
  overflow: hidden;
}

/* ─── Bouton fermer ──────────────────────────────────────── */

.cnz-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
}

.cnz-modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: rotate(90deg);
}

/* ─── Progress bar ──────────────────────────────────────── */

.cnz-progress {
  padding: 18px 28px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cnz-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.cnz-progress-fill {
  display: block;
  height: 100%;
  background: var(--accent-warm, #c4391b);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnz-progress-label {
  font-size: 12px;
  color: var(--ink-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.cnz-progress-label strong {
  color: var(--ink);
  font-weight: 600;
}

/* ─── Body content ──────────────────────────────────────── */

.cnz-modal-body {
  padding: 28px;
}

@media (max-width: 640px) {
  .cnz-modal-body { padding: 24px 20px; }
  .cnz-progress { padding: 16px 20px 0; }
}

/* ─── Typographie modal ─────────────────────────────────── */

.cnz-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-warm, #c4391b);
  font-weight: 600;
  margin: 0 0 8px;
}

.cnz-title {
  font-size: clamp(22px, 4vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 8px;
}

.cnz-lead {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0 0 22px;
}

.cnz-sublabel {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 16px 0 10px;
  font-weight: 500;
}

/* ─── VUE 0 : Choix initial (3 options) ─────────────────── */

.cnz-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cnz-choice {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: var(--ink);
  text-decoration: none;
  text-align: left;
  width: 100%;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.cnz-choice:hover {
  background: #f0f0f0;
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.cnz-choice:active {
  transform: translateY(0);
}

.cnz-choice-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cnz-choice-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.cnz-choice-content strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.cnz-choice-sub {
  font-size: 13px;
  color: var(--ink-muted);
}

.cnz-choice-urgent {
  border-color: rgba(196, 57, 27, 0.25);
  background: rgba(196, 57, 27, 0.04);
}
.cnz-choice-urgent:hover {
  background: rgba(196, 57, 27, 0.08);
  border-color: rgba(196, 57, 27, 0.45);
}

/* ─── Pills (boutons radio horizontaux) ─────────────────── */

.cnz-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.cnz-pills-large {
  gap: 10px;
}

.cnz-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 99px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.cnz-pill:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: #fafafa;
}

.cnz-pill.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.cnz-pills-large .cnz-pill {
  padding: 14px 22px;
  font-size: 15px;
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

/* ─── Formulaire ────────────────────────────────────────── */

.cnz-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cnz-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cnz-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.cnz-optional {
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 12px;
}

.cnz-field input,
.cnz-field textarea {
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.cnz-field input:focus,
.cnz-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.cnz-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.5;
}

.cnz-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ─── Boutons d'action ──────────────────────────────────── */

.cnz-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.cnz-nav-center {
  justify-content: center;
}

.cnz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  border: 1.5px solid transparent;
  text-decoration: none;
  min-height: 44px;
}

.cnz-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cnz-btn:not(:disabled):active {
  transform: translateY(1px);
}

.cnz-btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  margin-left: auto;
}

.cnz-btn-primary:hover:not(:disabled) {
  background: #000;
}

.cnz-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.15);
}

.cnz-btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.3);
}

/* Quand un seul bouton "center", ne pas l'aligner à droite */
.cnz-nav-center .cnz-btn-primary {
  margin-left: 0;
}

/* ─── Récap ─────────────────────────────────────────────── */

.cnz-recap {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.cnz-recap-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.cnz-recap-row > span {
  color: var(--ink-muted);
  font-size: 13px;
  flex-shrink: 0;
}

.cnz-recap-row > strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.cnz-recap-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 4px 0;
}

.cnz-recap-message {
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.cnz-recap-message p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 0;
  white-space: pre-wrap;
}

.cnz-recap-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(196, 57, 27, 0.06);
  border: 1px solid rgba(196, 57, 27, 0.15);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.cnz-recap-promise-icon {
  font-size: 18px;
}

/* ─── Success / Error ───────────────────────────────────── */

.cnz-success-icon,
.cnz-error-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 18px;
  color: #fff;
}

.cnz-success-icon {
  background: #16a34a;
  animation: cnz-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnz-error-icon {
  background: var(--accent-warm, #c4391b);
}

@keyframes cnz-pop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.cnz-success-extra {
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
  margin: -10px 0 18px;
}

.cnz-link-strong {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
}

/* ─── Disclaimer & textes secondaires ───────────────────── */

.cnz-disclaimer {
  font-size: 11px;
  color: var(--ink-muted);
  margin: 4px 0 0;
  line-height: 1.4;
}

/* ─── Pour le texte centré (success / error) ────────────── */

.cnz-modal-body:has(.cnz-success-icon),
.cnz-modal-body:has(.cnz-error-icon) {
  text-align: center;
}
