/* ============================================================
   LAKORA — styleV2.css
   Palette: #0A1A2F navy · #C9B57A or · #F7F5F0 blanc cassé
            #1F1F1F anthracite · #FFFFFF blanc pur
   Typo: Satoshi (titres) + Inter (body)
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --c-navy:       #0A1A2F;
  --c-navy-2:     #0F2238;
  --c-navy-3:     #142d4a;
  --c-anthracite: #1F1F1F;
  --c-gris:       #4A5563;
  --c-offwhite:   #F7F5F0;
  --c-blanc:      #FFFFFF;
  --c-or:         #C9B57A;
  --c-or-light:   #C9B57A;
  --c-or-dark:    #C9B57A;

  --ff-display: 'Satoshi', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ff-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --space-section: clamp(80px, 10vw, 128px);
  --nav-h: 76px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-anthracite);
  background: var(--c-blanc);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--c-or); outline-offset: 3px; border-radius: 2px; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.75rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 600; line-height: 1.3; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-or);
  margin-bottom: 16px;
  display: block;
}
.eyebrow-dark { color: var(--c-or-dark); }
.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--c-gris);
  margin-top: 16px;
  max-width: 640px;
}

/* fade-in observer */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-md);
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--c-or);
  color: var(--c-navy);
  box-shadow: 0 4px 20px rgba(201,181,122,0.3);
}
.btn-primary:hover {
  background: var(--c-or-light);
  box-shadow: 0 6px 28px rgba(201,181,122,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--c-or);
  border-color: var(--c-or);
}
.btn-outline:hover { background: rgba(201,181,122,0.08); }
.btn-ghost {
  background: rgba(247,245,240,0.1);
  color: var(--c-offwhite);
  border-color: rgba(247,245,240,0.2);
}
.btn-ghost:hover { background: rgba(247,245,240,0.18); border-color: rgba(247,245,240,0.4); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Section base ---------- */
.section { padding: var(--space-section) 0; position: relative; overflow: hidden; }
.section-dark { background: var(--c-navy); }
.section-light { background: var(--c-offwhite); }
.section-white { background: var(--c-blanc); }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head-center { text-align: center; }
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }

/* Dot pattern overlay (dark sections) */
.dot-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,181,122,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION / MEGA MENU
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(10,26,47,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,181,122,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; }

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a,
.nav-item-btn,
.nav-btn,
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247,245,240,0.75);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a:hover,
.nav-item-btn:hover,
.nav-btn:hover,
.nav-link:hover { color: var(--c-offwhite); background: rgba(247,245,240,0.06); }

.nav-chevron {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}
.mega-trigger[aria-expanded="true"] .nav-chevron,
.nav-btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

/* Mega menu */
.mega-wrap { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(var(--nav-h) + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, calc(100vw - 48px));
  background: var(--c-navy-2);
  border: 1px solid rgba(201,181,122,0.15);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  display: none;
  z-index: 200;
}
.mega-menu.is-open { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.mega-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-or);
  margin-bottom: 12px;
}
.mega-col ul { display: flex; flex-direction: column; gap: 6px; }
.mega-col a {
  font-size: 0.8rem;
  color: rgba(247,245,240,0.6);
  padding: 4px 0;
  transition: color 0.15s;
}
.mega-col a:hover { color: var(--c-offwhite); }

/* Mobile nav toggle */
.mobile-nav-toggle,
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
}
.mobile-nav-toggle span,
.burger span {
  display: block;
  height: 2px;
  background: var(--c-offwhite);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.site-header.is-menu-open .mobile-nav-toggle span:nth-child(1),
.site-header.is-menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-menu-open .mobile-nav-toggle span:nth-child(2),
.site-header.is-menu-open .burger span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .mobile-nav-toggle span:nth-child(3),
.site-header.is-menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-navy-2);
  border-top: 1px solid rgba(201,181,122,0.1);
  padding: 20px 24px 28px;
  max-height: 80vh;
  overflow-y: auto;
}
.site-header.is-menu-open .mobile-nav { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(247,245,240,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(247,245,240,0.05);
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-or);
  margin: 16px 0 8px;
}
.mobile-nav details summary {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247,245,240,0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(247,245,240,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav details[open] summary { color: var(--c-offwhite); }
.mobile-nav details .mega-col { padding: 8px 0 8px 16px; }
.mobile-nav details .mega-col a { font-size: 0.8rem; color: rgba(247,245,240,0.55); padding: 6px 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--c-navy);
  padding-top: calc(var(--nav-h) + clamp(48px,8vw,96px));
  padding-bottom: clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,181,122,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-line-1, .hero-line-2 {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,181,122,0.12) 50%, transparent 100%);
  pointer-events: none;
}
.hero-line-1 { top: 33%; }
.hero-line-2 { top: 66%; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-content h1 { color: var(--c-offwhite); margin-bottom: 24px; }
.hero-content h1 em { font-style: normal; color: var(--c-or); }
.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(247,245,240,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(247,245,240,0.6);
  background: rgba(247,245,240,0.05);
  border: 1px solid rgba(247,245,240,0.1);
  border-radius: 999px;
  padding: 7px 16px;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-or);
  flex-shrink: 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual (diagnostic card) */
.hero-visual { position: relative; transform: scale(1.12); transform-origin: center; }
.diag-card {
  background: var(--c-navy-2);
  border: 1px solid rgba(201,181,122,0.2);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.diag-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 12px;
}
.diag-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.4);
  margin-bottom: 4px;
}
.diag-title-text {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-offwhite);
}
.diag-status {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-or);
  background: rgba(201,181,122,0.1);
  border: 1px solid rgba(201,181,122,0.25);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.diag-score {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.ring { position: relative; flex-shrink: 0; }
.ring svg { display: block; }
.ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ring-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-offwhite);
  line-height: 1;
}
.ring-den { font-size: 0.7rem; color: rgba(247,245,240,0.45); line-height: 1; }
.ring-label { font-size: 0.62rem; color: rgba(247,245,240,0.35); margin-top: 2px; }
.diag-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.diag-bars li {
  display: grid;
  grid-template-columns: 20px 72px 1fr 28px;
  align-items: center;
  gap: 8px;
}
.bar-icon svg { width: 14px; height: 14px; fill: none; stroke: rgba(247,245,240,0.35); stroke-width: 1.5; }
.bar-label { font-size: 0.72rem; color: rgba(247,245,240,0.55); white-space: nowrap; }
.bar { height: 4px; background: rgba(247,245,240,0.08); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--c-or-dark), var(--c-or)); border-radius: 2px; }
.bar-val { font-size: 0.72rem; font-weight: 600; color: rgba(247,245,240,0.5); text-align: right; }
.diag-foot { font-size: 0.7rem; color: rgba(247,245,240,0.3); border-top: 1px solid rgba(247,245,240,0.06); padding-top: 14px; margin: 0; }

/* Video placeholder (hero) */
.video-placeholder {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(201,181,122,0.3);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
}
.video-placeholder-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-or);
  text-transform: uppercase;
  text-align: center;
}

/* Metrics band */
.hero-metrics {
  margin-top: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,181,122,0.12);
  border: 1px solid rgba(201,181,122,0.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative; z-index: 1;
}
.hero-metric {
  background: rgba(15,34,56,0.6);
  backdrop-filter: blur(8px);
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 28px);
  text-align: center;
}
.hero-metric-val {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-offwhite);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-metric-val em { font-style: normal; color: var(--c-or); }
.hero-metric-label { font-size: 0.78rem; color: rgba(247,245,240,0.45); }

/* ============================================================
   PROBLEM
   ============================================================ */
.section-problem { background: var(--c-offwhite); }
.section-problem .section-head { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }
.section-problem h2 { color: var(--c-navy); }
.section-problem h2 em { font-style: normal; color: var(--c-or-dark); }
.big-quote {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  font-family: var(--ff-display);
  color: var(--c-navy);
  text-align: center;
  margin: 0 auto 56px;
  max-width: 680px;
  position: relative;
  padding: 0 40px;
}
.big-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -16px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,181,122,0.2);
  font-family: Georgia, serif;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--c-blanc);
  border: 1px solid rgba(10,26,47,0.06);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 8px rgba(10,26,47,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.problem-card:hover { box-shadow: 0 8px 24px rgba(10,26,47,0.1); transform: translateY(-3px); }
.problem-card-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(10,26,47,0.05);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-card-icon svg { width: 20px; height: 20px; fill: none; stroke: rgba(10,26,47,0.5); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.problem-card p { font-size: 0.88rem; color: rgba(31,31,31,0.75); line-height: 1.55; margin: 0; }

/* ============================================================
   SIX ANGLES
   ============================================================ */
.section-angles { background: var(--c-navy); }
.section-angles .section-head { text-align: center; }
.section-angles h2 { color: var(--c-offwhite); }
.section-angles h2 em { font-style: normal; color: var(--c-or); }
.section-angles .section-lead { color: rgba(247,245,240,0.55); margin-left: auto; margin-right: auto; }

.angles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.angle-card {
  display: block;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(247,245,240,0.06);
  border-radius: var(--r-xl);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.angle-card:hover {
  border-color: rgba(201,181,122,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.angle-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,181,122,0.15);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  transition: color 0.25s;
}
.angle-card:hover .angle-num { color: rgba(201,181,122,0.3); }
.angle-icon {
  width: 48px; height: 48px;
  background: rgba(201,181,122,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.angle-card:hover .angle-icon { background: rgba(201,181,122,0.15); }
.angle-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--c-or); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.angle-card h3 { color: var(--c-offwhite); margin-bottom: 10px; transition: color 0.25s; }
.angle-card:hover h3 { color: var(--c-or); }
.angle-card p { font-size: 0.875rem; color: rgba(247,245,240,0.55); line-height: 1.6; margin: 0; }

/* ============================================================
   LIVRABLE  (fond blanc cassé via .section-light)
   ============================================================ */
.section-deliverable { /* background géré par .section-light */ }
.deliverable-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.deliverable-text h2 { color: var(--c-navy); margin-bottom: 20px; }
.deliverable-text h2 em { font-style: normal; color: var(--c-or); }
.deliverable-text .section-lead { color: rgba(31,31,31,0.65); }
.deliverable-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.deliverable-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(31,31,31,0.75);
}
.deliverable-list-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(201,181,122,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.deliverable-list-check svg { width: 12px; height: 12px; fill: none; stroke: var(--c-or-dark); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* PDF mockup */
.pdf-mockup {
  background: var(--c-blanc);
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(10,26,47,0.15);
  border: 1px solid rgba(10,26,47,0.06);
  overflow: hidden;
  position: relative;
}
.pdf-mockup-header {
  background: var(--c-navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pdf-mockup-logo-box {
  width: 44px; height: 44px;
  background: rgba(201,181,122,0.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pdf-mockup-logo-box img { height: 24px; width: auto; }
.pdf-mockup-title { font-weight: 600; font-size: 0.9rem; color: var(--c-offwhite); }
.pdf-mockup-sub { font-size: 0.75rem; color: rgba(247,245,240,0.45); }
.pdf-mockup-body { padding: 24px; }
.pdf-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,26,47,0.04);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.pdf-score-label { font-size: 0.8rem; font-weight: 500; color: rgba(10,26,47,0.55); }
.pdf-score-value {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
}
.pdf-score-value em { font-style: normal; color: var(--c-or-dark); font-size: 1.2rem; }
.pdf-bars { display: flex; flex-direction: column; gap: 12px; }
.pdf-bar-row { display: grid; grid-template-columns: 88px 1fr 32px; align-items: center; gap: 10px; }
.pdf-bar-name { font-size: 0.78rem; color: rgba(10,26,47,0.55); }
.pdf-bar-track { height: 6px; background: rgba(10,26,47,0.08); border-radius: 3px; overflow: hidden; }
.pdf-bar-fill { height: 100%; background: linear-gradient(90deg, var(--c-or-dark), var(--c-or)); border-radius: 3px; }
.pdf-bar-score { font-size: 0.78rem; font-weight: 600; color: var(--c-navy); text-align: right; }
.pdf-mockup-footer {
  border-top: 1px solid rgba(10,26,47,0.06);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(10,26,47,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   QUI SIGNE (AUTHORITY) — fond navy via .section-dark
   ============================================================ */
.section-authority {
  position: relative;
}
.authority-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative; z-index: 1;
}
.authority-text .section-lead { color: rgba(247,245,240,0.65); max-width: none; }
.authority-text h2 { color: var(--c-offwhite); margin-bottom: 20px; }
.authority-text h2 em { font-style: normal; color: var(--c-or); }
.authority-credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247,245,240,0.1);
  border-radius: var(--r-md);
}
.credential-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(201,181,122,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.credential-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--c-or); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.credential-item span { font-size: 0.88rem; color: rgba(247,245,240,0.75); line-height: 1.45; }

.authority-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.authority-pillars li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-offwhite);
  border: 1px solid rgba(247,245,240,0.25);
  border-radius: 999px;
  padding: 6px 16px;
}

/* Authority visual — rectangle portrait */
.authority-visual { display: block; }
.authority-rings {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
}
.authority-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,181,122,0.1);
}
.authority-ring:nth-child(1) { inset: 0; }
.authority-ring:nth-child(2) { inset: 10%; border-color: rgba(201,181,122,0.14); }
.authority-ring:nth-child(3) { inset: 20%; border-color: rgba(201,181,122,0.18); }
.authority-center {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy-2), var(--c-navy-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(201,181,122,0.2);
}
.authority-center-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-or);
  line-height: 1;
}
.authority-center-label { font-size: 0.65rem; color: rgba(247,245,240,0.45); margin-top: 4px; }
.authority-badge {
  position: absolute;
  background: rgba(15,34,56,0.9);
  border: 1px solid rgba(201,181,122,0.25);
  border-radius: var(--r-sm);
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-or);
  backdrop-filter: blur(4px);
}
.authority-badge:nth-of-type(1) { top: 12%; right: 10%; }
.authority-badge:nth-of-type(2) { bottom: 20%; left: 2%; }
.authority-badge:nth-of-type(3) { bottom: 8%; right: 8%; }

/* ============================================================
   MÉTHODE
   ============================================================ */
.section-method { background: var(--c-navy); }
.section-method .section-head { text-align: center; }
.section-method h2 { color: var(--c-offwhite); }
.section-method h2 em { font-style: normal; color: var(--c-or); }
.section-method .section-lead { color: rgba(247,245,240,0.55); margin-left: auto; margin-right: auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.step-connector {
  position: absolute;
  top: 52px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,181,122,0.2), rgba(201,181,122,0.2), transparent);
  pointer-events: none;
  z-index: 0;
}
.step-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(247,245,240,0.06);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.step-card:hover { border-color: rgba(201,181,122,0.2); transform: translateY(-3px); }
.step-num-bg {
  position: absolute;
  top: -2rem; left: 1rem;
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,181,122,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color 0.25s;
}
.step-card:hover .step-num-bg { color: rgba(201,181,122,0.10); }
.step-icon {
  width: 52px; height: 52px;
  background: rgba(201,181,122,0.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.step-card:hover .step-icon { background: rgba(201,181,122,0.18); }
.step-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--c-or); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { color: var(--c-offwhite); margin-bottom: 10px; }
.step-card p { font-size: 0.875rem; color: rgba(247,245,240,0.55); line-height: 1.6; margin: 0; }

/* ============================================================
   POUR QUI
   ============================================================ */
.section-audience { background: var(--c-offwhite); }
.section-audience .section-head { text-align: center; }
.section-audience h2 { color: var(--c-navy); }
.section-audience h2 em { font-style: normal; color: var(--c-or-dark); }
.section-audience .section-lead { color: rgba(31,31,31,0.6); margin-left: auto; margin-right: auto; text-align: center; }
.audience-seo { font-size: 0.875rem; color: rgba(31,31,31,0.6); text-align: center; max-width: 640px; margin: 20px auto 0; line-height: 1.7; }
.audience-seo strong { color: var(--c-navy); font-weight: 600; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--c-blanc);
  border: 1px solid rgba(10,26,47,0.06);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 6px rgba(10,26,47,0.04);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.audience-card:hover {
  border-color: rgba(201,181,122,0.3);
  box-shadow: 0 8px 24px rgba(10,26,47,0.08);
  transform: translateY(-3px);
}
.audience-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(10,26,47,0.05);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.audience-card:hover .audience-icon { background: rgba(201,181,122,0.1); }
.audience-icon svg { width: 22px; height: 22px; fill: none; stroke: rgba(10,26,47,0.55); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.25s; }
.audience-card:hover .audience-icon svg { stroke: var(--c-or-dark); }
.audience-card h3 { font-size: 0.95rem; color: var(--c-navy); margin-bottom: 4px; transition: color 0.25s; }
.audience-card:hover h3 { color: var(--c-or-dark); }
.audience-card p { font-size: 0.78rem; color: rgba(31,31,31,0.5); line-height: 1.4; margin: 0; }

/* ============================================================
   TARIFS
   ============================================================ */
.section-pricing { background: var(--c-navy); }
.section-pricing .section-head { text-align: center; }
.section-pricing h2 { color: var(--c-offwhite); }
.section-pricing h2 em { font-style: normal; color: var(--c-or); }
.section-pricing .section-lead { color: rgba(247,245,240,0.55); margin-left: auto; margin-right: auto; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(247,245,240,0.07);
  border-radius: var(--r-xl);
  padding: 36px 28px 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover { border-color: rgba(247,245,240,0.12); transform: translateY(-3px); }
.price-card-featured {
  background: rgba(201,181,122,0.06);
  border-color: rgba(201,181,122,0.3);
  box-shadow: 0 0 0 1px rgba(201,181,122,0.15), 0 24px 60px rgba(0,0,0,0.3);
}
.price-card-featured:hover { border-color: rgba(201,181,122,0.5); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-or);
  color: var(--c-navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-or);
  margin-bottom: 8px;
}
.price-card h3 {
  font-size: 1.3rem;
  color: var(--c-offwhite);
  margin-bottom: 6px;
}
.price-sub { font-size: 0.8rem; color: rgba(247,245,240,0.4); margin-bottom: 24px; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(247,245,240,0.6);
}
.price-value {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--c-offwhite);
  line-height: 1;
}
.price-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(247,245,240,0.65);
  line-height: 1.45;
}
.price-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.price-card-featured .price-check { background: rgba(201,181,122,0.2); }
.price-card:not(.price-card-featured) .price-check { background: rgba(247,245,240,0.08); }
.price-check svg { width: 11px; height: 11px; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.price-card-featured .price-check svg { stroke: var(--c-or); }
.price-card:not(.price-card-featured) .price-check svg { stroke: rgba(247,245,240,0.45); }
.price-note { font-size: 0.72rem; color: rgba(247,245,240,0.3); margin-top: 16px; text-align: center; }
.price-detail { font-size: 0.72rem; color: rgba(247,245,240,0.3); margin-top: 8px; display: block; }

/* ============================================================
   GENÈVE CARROUSEL — fond navy via .section-dark
   ============================================================ */
.section-geneve { /* background géré par .section-dark */ }
.section-geneve .section-head { text-align: center; margin-bottom: 40px; }
.section-geneve h2 { color: var(--c-offwhite); }
.section-geneve h2 em { font-style: normal; color: var(--c-or); }
.section-geneve .section-lead { color: rgba(247,245,240,0.55); margin-left: auto; margin-right: auto; text-align: center; }

.geneve-carousel-wrap { position: relative; }
.geneve-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 10% 16px;
  scrollbar-width: none;
}
.geneve-carousel::-webkit-scrollbar { display: none; }
.geneve-slot {
  flex: 0 0 80%;
  aspect-ratio: 4/5;
  scroll-snap-align: center;
  border: 2px dashed rgba(201,181,122,0.45);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(201,181,122,0.03);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  overflow: hidden;
}
.geneve-slot:hover {
  border-color: rgba(201,181,122,0.7);
  background: rgba(201,181,122,0.06);
}
.geneve-slot-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,181,122,0.5);
}
.geneve-slot svg { width: 28px; height: 28px; stroke: rgba(201,181,122,0.3); fill: none; stroke-width: 1.5; }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(201,181,122,0.3);
  color: var(--c-or);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: rgba(201,181,122,0.1); border-color: rgba(201,181,122,0.6); }
.carousel-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.geneve-seo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.geneve-seo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-navy);
  background: var(--c-blanc);
  border: 1px solid rgba(10,26,47,0.1);
  border-radius: 999px;
  padding: 7px 16px;
  transition: border-color 0.2s, background 0.2s;
}
.geneve-seo-tag:hover { border-color: rgba(201,181,122,0.4); background: rgba(201,181,122,0.04); }
.geneve-seo-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(201,181,122,0.5); }

/* ============================================================
   FORMULAIRE
   ============================================================ */
.section-form { /* background géré par .section-light */ }
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.form-copy h2 { color: var(--c-navy); }
.form-copy .section-lead { color: rgba(31,31,31,0.6); }

.audit-form { width: 100%; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid label { display: flex; flex-direction: column; gap: 6px; }
.form-grid label span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-anthracite);
}
.form-grid label span em { font-style: normal; color: var(--c-or-dark); }
.form-grid input,
.form-grid textarea,
.form-grid select {
  padding: 12px 16px;
  border: 1.5px solid rgba(10,26,47,0.12);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--c-anthracite);
  background: var(--c-blanc);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-grid input:focus,
.form-grid textarea:focus { border-color: var(--c-or); box-shadow: 0 0 0 3px rgba(201,181,122,0.12); }
.form-grid textarea { resize: vertical; min-height: 100px; }
.form-field-wide { grid-column: 1 / -1; }
.form-honeypot { position: absolute; opacity: 0; pointer-events: none; }
.form-actions { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-status {
  font-size: 0.875rem;
  border-radius: var(--r-sm);
  padding: 4px 0;
}
.form-status-success { color: #2d6a4f; }
.form-status-error { color: #c1121f; }

/* ============================================================
   CTA FINAL — fond navy via .section-dark
   ============================================================ */
.section-cta {
  position: relative;
  overflow: hidden;
}
/* CTA sur fond clair — textes inversés */
.section-cta.section-light .cta-inner h2 { color: var(--c-navy); }
.section-cta.section-light .cta-inner h2 em { color: var(--c-or); }
.section-cta.section-light .cta-lead { color: rgba(10,26,47,0.65); }
.section-cta.section-light .cta-lk {
  background: rgba(10,26,47,0.06);
  border-color: rgba(201,181,122,0.45);
}
.section-cta.section-light .cta-lk img { filter: invert(1) brightness(0); }

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-content { /* colonne gauche */ }
.cta-lk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(201,181,122,0.35);
  border-radius: var(--r-xl);
  margin-bottom: 32px;
}
.cta-lk img { height: 36px; width: auto; }
.cta-inner h2 { color: var(--c-offwhite); margin-bottom: 20px; }
.cta-inner h2 em { font-style: normal; color: var(--c-or); }
.cta-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(247,245,240,0.65);
  margin: 0 0 40px;
  max-width: 520px;
}
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-usercase-img {
  width: 100%;
  max-width: 360px;
}

/* ============================================================
   FAQ — fond navy via .section-dark
   ============================================================ */
.section-faq { /* background géré par .section-dark */ }
.section-faq .section-head { text-align: center; }
.section-faq h2 { color: var(--c-offwhite); }
.section-faq .faq-item { background: rgba(255,255,255,0.05); border-color: rgba(247,245,240,0.08); }
.section-faq .faq-item[open] { border-color: rgba(201,181,122,0.35); }
.section-faq .faq-item summary { color: rgba(247,245,240,0.85); }
.section-faq .faq-answer p { color: rgba(247,245,240,0.6); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid rgba(10,26,47,0.08);
  border-radius: var(--r-md);
  background: var(--c-blanc);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(201,181,122,0.3); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9B57A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 0.9rem; color: rgba(31,31,31,0.7); line-height: 1.7; }
.faq-answer p + p { margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-navy);
  padding: 56px 0 0;
  border-top: 1px solid rgba(201,181,122,0.1);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,245,240,0.06);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-symbol { height: 36px; width: auto; opacity: 0.85; }
.footer-name { font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: var(--c-offwhite); }
.footer-tag { font-size: 0.72rem; color: rgba(247,245,240,0.4); margin-top: 2px; letter-spacing: 0.04em; }
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a { font-size: 0.8rem; color: rgba(247,245,240,0.45); transition: color 0.2s; }
.footer-nav a:hover { color: var(--c-offwhite); }
.footer-meta { text-align: right; }
.footer-meta p { font-size: 0.78rem; color: rgba(247,245,240,0.4); line-height: 1.6; }
.footer-meta a { color: var(--c-or); }

/* Footer legal accordion */
.footer-legal-accordion {
  border-top: 1px solid rgba(247,245,240,0.05);
  margin-top: 0;
}
.footer-legal-accordion summary {
  padding: 16px 0;
  font-size: 0.78rem;
  color: rgba(247,245,240,0.3);
  transition: color 0.2s;
}
.footer-legal-accordion summary:hover { color: rgba(247,245,240,0.6); }
.footer-legal-panel {
  padding: 24px 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
}
.footer-legal-panel h2 {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(247,245,240,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.footer-legal-panel section h3 { font-size: 0.75rem; font-weight: 600; color: rgba(247,245,240,0.5); margin-bottom: 6px; }
.footer-legal-panel section p { font-size: 0.75rem; color: rgba(247,245,240,0.3); line-height: 1.6; }
.footer-legal-updated {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  color: rgba(247,245,240,0.2);
  margin-top: 8px;
}

/* ============================================================
   CARROUSEL — IMAGES RÉELLES
   ============================================================ */
.geneve-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}
/* Slot avec image : retire la bordure pointillée, fond navy pour letterbox */
.geneve-slot:has(img) {
  border: none;
  background: var(--c-navy);
  padding: 0;
  gap: 0;
}

/* ============================================================
   LIVRABLE — VISUELS RAPPORT
   ============================================================ */
.livrable-visuals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.livrable-mockup-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(10,26,47,0.18);
  display: block;
}
.livrable-usercase-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 12px 32px rgba(10,26,47,0.1);
  display: block;
}

/* ============================================================
   SECTION VIDÉO-IA — IMAGE RÉELLE
   ============================================================ */
.video-ia-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(10,26,47,0.12);
  display: block;
}
/* Retire le style du frame quand l'image est présente */
.video-ia-placeholder:has(img) .video-ia-frame { display: none; }

/* ============================================================
   QUI SIGNE — PORTRAIT
   ============================================================ */
.authority-photo {
  width: 115%;
  height: auto;
  display: block;
  position: static;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(10,26,47,0.3);
}

/* ============================================================
   GLOBE 3D — HERO CANVAS
   ============================================================ */
.hero-visual #lk-globe {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 0 40px rgba(201,181,122,0.15));
  margin: 0 auto;
  cursor: grab;
}
.hero-visual #lk-globe:active { cursor: grabbing; }

/* ============================================================
   FORMAT PORTRAIT DE RÉFÉRENCE
   ============================================================ */
.portrait-ref {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-xl);
  border: 1px solid rgba(201,181,122,0.4);
  box-shadow: 0 20px 50px rgba(10,26,47,0.2);
  display: block;
}

/* ============================================================
   BOUTON OUTLINE DARK (sections claires)
   ============================================================ */
.btn-outline-dark {
  background: transparent;
  color: var(--c-navy);
  border: 2px solid rgba(10,26,47,0.25);
  border-radius: var(--r-md);
}
.btn-outline-dark:hover { background: rgba(10,26,47,0.05); border-color: rgba(10,26,47,0.4); }

/* ============================================================
   SECTION VIDÉO / MÉTHODE IA — fond navy via .section-dark
   ============================================================ */
.section-video-ia { /* background géré par .section-dark */ }
.video-ia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.video-ia-placeholder {
  width: 100%;
}
.video-ia-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px dashed rgba(201,181,122,0.4);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
}
.video-ia-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-or);
  text-align: center;
}
.video-ia-text h2 { color: var(--c-offwhite); margin-bottom: 20px; }
.video-ia-text h2 em { font-style: normal; color: var(--c-or); }
.video-ia-text .section-lead { color: rgba(247,245,240,0.55); margin-top: 0; }
.video-ia-p2 {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.7;
  color: rgba(247,245,240,0.5);
  margin-top: 20px;
}

/* ============================================================
   ARMOIRIES CANTONALES
   ============================================================ */
.cantons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(247,245,240,0.06);
  border-radius: var(--r-xl);
  padding: 32px 24px;
}
.canton-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.canton-badge:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 6px 16px rgba(201,181,122,0.45));
}
.canton-shield {
  width: 100px;
  height: 100px;
  display: block;
  flex-shrink: 0;
}
.canton-name {
  font-size: 0.68rem;
  font-weight: 600;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--c-offwhite);
  text-align: center;
}

/* ============================================================
   TARIFS — VERSION FOND BLANC CASSÉ
   ============================================================ */
.section-pricing-light {
  background: var(--c-offwhite);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}
.section-pricing-light .section-head { text-align: center; }
.section-pricing-light h2 { color: var(--c-navy); }
.section-pricing-light h2 em { font-style: normal; color: var(--c-or); }
.section-pricing-light .section-lead { color: rgba(31,31,31,0.6); margin-left: auto; margin-right: auto; text-align: center; }
.section-pricing-light .eyebrow { color: var(--c-or); }
.section-pricing-light .price-card {
  background: var(--c-blanc);
  border-color: rgba(10,26,47,0.08);
}
.section-pricing-light .price-card:hover { border-color: rgba(10,26,47,0.15); transform: translateY(-3px); }
.section-pricing-light .price-card-featured {
  background: var(--c-blanc);
  border-color: rgba(201,181,122,0.4);
  box-shadow: 0 0 0 1px rgba(201,181,122,0.2), 0 24px 60px rgba(10,26,47,0.1);
}
.section-pricing-light .price-card-featured:hover { border-color: rgba(201,181,122,0.6); }
.section-pricing-light .price-card h3 { color: var(--c-navy); }
.section-pricing-light .price-sub { color: rgba(31,31,31,0.45); }
.section-pricing-light .price-currency { color: rgba(31,31,31,0.5); }
.section-pricing-light .price-value { color: var(--c-navy); }
.section-pricing-light .price-list li { color: rgba(31,31,31,0.7); }
.section-pricing-light .price-card:not(.price-card-featured) .price-check { background: rgba(10,26,47,0.06); }
.section-pricing-light .price-card:not(.price-card-featured) .price-check svg { stroke: rgba(10,26,47,0.45); }
.section-pricing-light .price-note { color: rgba(31,31,31,0.4); }

/* Formulaire — fond blanc cassé via .section-light */
.section-form { /* background géré par .section-light */ }

/* Livrable — FAQ inline light section */
.section-deliverable .faq-item {
  background: rgba(10,26,47,0.04);
  border-color: rgba(10,26,47,0.07);
}
.section-deliverable .faq-item[open] { border-color: rgba(201,181,122,0.3); }
.section-deliverable .faq-item summary { color: rgba(31,31,31,0.8); }
.section-deliverable .faq-answer p { color: rgba(31,31,31,0.6); }

/* ============================================================
   CARROUSEL — DOTS + MAX-WIDTH
   ============================================================ */
.geneve-slot {
  max-width: 600px;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,181,122,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--c-or);
  transform: scale(1.35);
}
.carousel-dot:hover { background: rgba(201,181,122,0.6); }

/* ============================================================
   SECTION ACTUALITÉS
   ============================================================ */
.section-actualites .section-lead { color: rgba(31,31,31,0.6); margin-left: auto; margin-right: auto; text-align: center; }
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 64px);
}
.actu-card {
  background: var(--c-blanc);
  border: 1px solid rgba(10,26,47,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.actu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,181,122,0.18);
}
.actu-thumb {
  aspect-ratio: 16 / 9;
  background: rgba(10,26,47,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.actu-thumb-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(201,181,122,0.5);
}
.actu-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.actu-title {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 12px;
}
.actu-excerpt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(31,31,31,0.6);
  flex: 1;
  margin-bottom: 20px;
}
.actu-divider {
  border: none;
  border-top: 1px solid rgba(201,181,122,0.35);
  margin: 0 0 14px;
}
.actu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.actu-date { font-size: 0.78rem; color: rgba(31,31,31,0.4); }
.actu-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-or);
  transition: opacity 0.2s;
}
.actu-link:hover { opacity: 0.7; }

/* Footer — lien Actualités différencié */
.footer-nav a.footer-nav-actualites {
  margin-left: auto;
  border: 1px solid rgba(201,181,122,0.6);
  padding: 6px 14px;
  border-radius: 4px;
  color: var(--c-or);
  transition: background 0.2s, color 0.2s;
}
.footer-nav a.footer-nav-actualites:hover {
  background: rgba(201,181,122,0.15);
  color: var(--c-offwhite);
}

/* ============================================================
   SECTION CONFIDENTIALITÉ & ÉTHIQUE
   ============================================================ */
.section-confidentialite { /* fond blanc cassé via .section-light */ }
.confidentialite-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  max-width: 900px;
  margin: clamp(24px, 3vw, 40px) auto 0;
}
.confidentialite-body p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.75;
  color: rgba(31,31,31,0.65);
}
.confidentialite-icons {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  margin-top: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.conf-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.conf-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(10,26,47,0.05);
  border: 1px solid rgba(201,181,122,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.conf-icon-wrap svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--c-or);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.conf-icon-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-navy);
}

/* ============================================================
   SECTION RÉFÉRENCES
   ============================================================ */
.section-references { /* fond géré par .section-light ou .section-dark */ }
/* Références sur fond navy — titres en clair, cards gardent leur propre fond blanc */
.section-references.section-dark h2,
.section-references.section-dark .section-lead { color: var(--c-offwhite); }
.section-references.section-dark .eyebrow-dark { color: var(--c-or); }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(40px, 5vw, 64px);
}
.ref-card {
  background: var(--c-blanc);
  border: 1px solid rgba(10,26,47,0.07);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ref-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,181,122,0.18);
}
.ref-avatar {
  width: 56px; height: 56px;
  background: var(--c-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-or);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ref-fonction {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(31,31,31,0.5);
  text-transform: uppercase;
}
.ref-quote {
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  font-style: italic;
  line-height: 1.65;
  color: rgba(31,31,31,0.75);
  flex: 1;
  margin: 0;
  border: none;
  padding: 0;
}
.ref-mention {
  font-size: 0.72rem;
  color: rgba(31,31,31,0.35);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .actu-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .ref-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .confidentialite-body { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .authority-inner { grid-template-columns: 1fr; }
  .authority-visual { display: block; }
  .deliverable-inner { grid-template-columns: 1fr; }
  .video-ia-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
  .form-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-nav { justify-content: flex-start; }
  .footer-meta { text-align: left; }
  .footer-legal-panel { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .site-nav, .header-cta { display: none; }
  .mobile-nav-toggle, .burger { display: flex; }
  /* Mega menu unusable once nav is hidden — disable it */
  .mega-menu.is-open { display: none; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .angles-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .geneve-slot { flex: 0 0 80%; }
  .footer-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-legal-panel { grid-template-columns: 1fr; }
  .cta-platforms-bg { grid-template-columns: repeat(4, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .cantons-row { gap: 14px; padding: 20px 16px; }
  .canton-shield { width: 72px; height: 72px; }
}
@media (max-width: 480px) {
  .angles-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .geneve-slot { flex: 0 0 85%; }
  .diag-bars li { grid-template-columns: 20px 60px 1fr 24px; gap: 6px; }
}

/* ============================================================
   PAGES INTERNES — STYLES COMMUNS
   ============================================================ */

/* Lien exemple rapport dans le hero */
.hero-example-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(247,245,240,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-example-link:hover { color: var(--c-or); }
.hero-example-arrow { color: var(--c-or); margin-left: 4px; }

/* Hero court pour pages internes */
.page-hero {
  background: var(--c-navy);
  padding: clamp(80px, 10vw, 120px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
}
.page-hero .eyebrow { color: var(--c-or); margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-offwhite);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero .page-hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(247,245,240,0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Sections numérotées (Commander) */
.step-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-or);
  margin-bottom: 16px;
}
.step-label-dark { color: var(--c-or); }

/* Sélecteur d'offres */
.offer-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(32px, 4vw, 48px);
}
.offer-sel-card {
  background: var(--c-blanc);
  border: 2px solid rgba(10,26,47,0.1);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 32px);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  text-align: left;
}
.offer-sel-card:hover { border-color: rgba(201,181,122,0.5); box-shadow: 0 6px 24px rgba(201,181,122,0.12); }
.offer-sel-card.selected {
  border-color: var(--c-or);
  border-width: 2px;
  background: rgba(201,181,122,0.06);
  box-shadow: 0 8px 32px rgba(201,181,122,0.18);
}
.offer-sel-card .offer-badge {
  position: absolute;
  top: -12px; right: 16px;
  background: var(--c-or);
  color: var(--c-navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.offer-sel-card .offer-tier {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-or);
  margin-bottom: 8px;
}
.offer-sel-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.offer-sel-card .offer-sub {
  font-size: 0.8rem;
  color: rgba(31,31,31,0.5);
  margin-bottom: 16px;
}
.offer-sel-card .offer-price {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-navy);
}
.offer-sel-card .offer-price span { font-size: 0.85em; font-weight: 500; }
.offer-sel-card .offer-sel-next {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(201,181,122,0.35);
  font-size: 0.82rem;
  font-weight: 500;
  color: #C9B57A;
  line-height: 1.4;
}
.offer-sel-check {
  position: absolute;
  top: 14px; left: 14px;
  width: 22px; height: 22px;
  border: 2px solid rgba(10,26,47,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.offer-sel-card.selected .offer-sel-check {
  background: var(--c-or);
  border-color: var(--c-or);
}
.offer-sel-check svg { width: 12px; height: 12px; fill: none; stroke: var(--c-navy); stroke-width: 2.5; opacity: 0; transition: opacity 0.2s; }
.offer-sel-card.selected .offer-sel-check svg { opacity: 1; }

/* Formulaire commander */
.commander-form-section { /* fond navy via section-dark */ }
/* Labels sur fond dark — override anthracite → offwhite */
.commander-form .form-grid label span,
.commander-form .form-field-wide label span,
.section-dark .form-grid label span {
  color: rgba(247, 245, 240, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
}
.commander-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.commander-form-lead {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: rgba(247,245,240,0.6);
  margin: 0 0 clamp(24px, 3vw, 36px);
  text-align: center;
}
.commander-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.commander-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Étape 3 — action conditionnelle */
.step3-block { display: none; }
.step3-block.visible { display: block; }
.step3-empty {
  text-align: center;
  color: rgba(31,31,31,0.45);
  font-size: 0.95rem;
  padding: 40px 0;
  border: 2px dashed rgba(10,26,47,0.12);
  border-radius: var(--r-lg);
}
.step3-payment-note {
  font-size: 0.82rem;
  color: rgba(31,31,31,0.5);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}
.step3-dual-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.step3-dual-btns .btn { flex: 1; text-align: center; }

/* Bloc rassurance */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
}
.reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.reassurance-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,181,122,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reassurance-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--c-or); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.reassurance-item span { font-size: 0.88rem; color: rgba(247,245,240,0.75); line-height: 1.5; }

/* Page exemple-rapport — aperçu mockup */
.rapport-mockup-wrap {
  text-align: center;
  padding: clamp(40px, 5vw, 64px) 0;
}
.rapport-mockup-img {
  max-width: min(480px, 90%);
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(10,26,47,0.18);
}

/* Grille aperçu rapport (exemple-rapport.html) */
.apercu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.apercu-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,181,122,0.3);
  box-shadow: 0 6px 24px rgba(10,26,47,0.1);
}
.apercu-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 900px) {
  .apercu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .apercu-grid { grid-template-columns: 1fr; }
}

/* Formulaire capture email (exemple-rapport) */
.capture-form {
  max-width: 460px;
  margin: clamp(24px, 3vw, 40px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Pages merci — hero centré */
.merci-hero {
  background: var(--c-navy);
  padding: clamp(80px, 10vw, 130px) 0 clamp(56px, 7vw, 90px);
  text-align: center;
}
.merci-check-icon {
  width: 72px; height: 72px;
  background: rgba(201,181,122,0.15);
  border: 2px solid rgba(201,181,122,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
}
.merci-check-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--c-or); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.merci-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-offwhite);
  margin-bottom: 20px;
  line-height: 1.15;
}
.merci-hero p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(247,245,240,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.merci-list {
  list-style: none;
  max-width: 580px;
  margin: clamp(24px,3vw,40px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: merci-counter;
}
.merci-list li {
  counter-increment: merci-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(31,31,31,0.75);
  line-height: 1.6;
}
.merci-list li::before {
  content: counter(merci-counter);
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--c-navy);
  color: var(--c-or);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 1px;
}
.merci-bullets {
  list-style: none;
  max-width: 560px;
  margin: clamp(24px,3vw,40px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.merci-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(31,31,31,0.75);
  line-height: 1.6;
}
.merci-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--c-or);
  border-radius: 50%;
  margin-top: 8px;
}

/* Merci pages — list item content */
.merci-list li div strong,
.merci-bullets li div strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 4px;
}
.merci-list li div p,
.merci-bullets li div p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(31,31,31,0.65);
  line-height: 1.65;
}

/* Capture form privacy note */
.capture-note {
  font-size: 0.78rem;
  color: rgba(247,245,240,0.4);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* Responsive pages internes */
@media (max-width: 1024px) {
  .offer-selector-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .reassurance-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .commander-form .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .step3-dual-btns { flex-direction: column; }
  .step3-dual-btns .btn { flex: none; }
}
