/* ════════════════════════════════════════
   PIERRE CIMARELLI — V3 ULTRA PREMIUM
   Direction : Cabinet stratégique parisien
   Noir profond · Ivoire · Or pâle · Typographie éditoriale
════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
  --ink:          #0e0e0e;
  --ink-mid:      #1a1a1a;
  --ink-soft:     #2a2a2a;
  --ivory:        #faf8f4;
  --ivory-warm:   #f4f0e8;
  --ivory-border: #e8e2d6;
  --gold:         #b8924a;
  --gold-light:   #d4a85a;
  --gold-pale:    #ede0c4;
  --crimson:      #8b2020;
  --text:         #2c2c2c;
  --text-mid:     #5a5a5a;
  --text-light:   #8a8a8a;
  --white:        #ffffff;
  --surface:      #f7f5f0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --container:    1100px;
  --pad-section:  7rem;
  --pad-sm:       4rem;
  --radius:       0px;

  --shadow-card:  0 1px 3px rgba(14,14,14,.06), 0 4px 16px rgba(14,14,14,.04);
  --shadow-lift:  0 8px 40px rgba(14,14,14,.12);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── CONTAINER ─────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── TYPOGRAPHY ────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
h1 em { font-style: italic; color: var(--gold); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--ink-soft); }

ul { list-style: none; padding: 0; margin: 1rem 0; }
ul li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
}
ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 300;
}

/* ── SECTION LABEL ─────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3rem;
  text-align: center;
}

.section-sub {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 3.5rem;
  font-family: var(--font-display);
}

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.75rem;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  border: 1.5px solid var(--ink);
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,14,14,.2);
}
.btn-primary.btn-large {
  padding: 1.25rem 3.5rem;
  font-size: 0.875rem;
}

.btn-ghost {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  transition: background .25s, color .25s;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ivory-border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--ink);
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); }

/* ── HERO ───────────────────────────────────── */
.hero {
  padding-top: calc(68px + 6rem);
  padding-bottom: 6rem;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero-bg-line {
  position: absolute;
  top: 0; right: 12%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--ivory-border) 20%, var(--ivory-border) 80%, transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.hero-amount-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--crimson);
  background: transparent;
  border-left: 2px solid var(--crimson);
  padding: 0.25rem 0 0.25rem 1rem;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.hero-amount-pill strong { color: var(--crimson); }
.hero-lead {
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-lead p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.btn-hint {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.hero-promise {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* Photo */
.hero-photo-frame {
  position: relative;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%);
}
.hero-photo-caption {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.caption-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.caption-rule {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.caption-title {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── IDENTITY BAND ─────────────────────────── */
.identity-band {
  background: var(--ink);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.identity-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,146,74,.06) 0%, transparent 60%);
  pointer-events: none;
}
.identity-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  position: relative;
}
.identity-pre {
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-weight: 300;
}
.identity-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}
.identity-title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto 0;
}
.identity-post {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.06em;
  font-style: italic;
  font-family: var(--font-display);
}

/* ── SECTORS ────────────────────────────────── */
.sectors-section {
  padding: var(--pad-sm) 0;
  background: var(--ivory);
  border-top: 1px solid var(--ivory-border);
  border-bottom: 1px solid var(--ivory-border);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sector-item {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--ivory-border);
}
.sector-item:first-child { padding-left: 0; }
.sector-item:last-child { border-right: none; padding-right: 0; }
.sector-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.sector-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.sector-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── ANGLE MORT ─────────────────────────────── */
.angle-section {
  padding: var(--pad-section) 0;
  background: var(--surface);
}
.angle-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}
.angle-header h2 { margin-bottom: 0; }
.angle-context p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}
.angle-context-alert {
  font-weight: 600;
  color: var(--crimson) !important;
  border-left: 2px solid var(--crimson);
  padding-left: 1rem;
  margin-top: 1rem;
}
.stats-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--ivory);
  border: 1px solid var(--ivory-border);
  margin-bottom: 3.5rem;
}
.stat-block {
  flex: 1;
  padding: 3rem 3rem;
  text-align: center;
}
.stat-divider {
  width: 1px;
  background: var(--ivory-border);
  align-self: stretch;
}
.stat-fig {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1;
}
.stat-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.stat-src {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  font-style: italic;
}
.angle-conclusion {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-style: italic;
  font-family: var(--font-display);
}

/* ── COSTS ──────────────────────────────────── */
.costs-section {
  padding: var(--pad-section) 0;
  background: var(--ivory);
}
.costs-section h2 { text-align: center; }
.costs-grid {
  border: 1px solid var(--ivory-border);
  margin-bottom: 3rem;
}
.cost-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 3rem;
  border-bottom: 1px solid var(--ivory-border);
  transition: background .2s;
}
.cost-row:last-child { border-bottom: none; }
.cost-row:hover { background: var(--surface); }
.cost-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.cost-left p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 600px;
}
.cost-right {
  text-align: right;
  min-width: 180px;
}
.cost-amount {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cost-freq {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-top: 0.375rem;
}
.cost-src {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  font-style: italic;
  margin-top: 0.375rem;
}
.costs-conclusion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
  background: var(--ink);
  gap: 3rem;
}
.costs-conclusion p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.costs-conclusion p strong { color: var(--ivory); }

/* ── DIRIGEANT ──────────────────────────────── */
.dirigeant-section {
  padding: var(--pad-section) 0;
  background: var(--surface);
}
.dirigeant-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.dirigeant-inner h2 { margin-bottom: 0; position: sticky; top: 5rem; }
.dirigeant-text p { font-size: 1.0625rem; line-height: 1.9; }
.text-accent {
  font-family: var(--font-display);
  font-size: 1.1rem !important;
  font-style: italic;
  color: var(--ink) !important;
  font-weight: 500 !important;
}
.text-strong {
  font-weight: 600 !important;
  color: var(--ink) !important;
}

/* ── RISQUE ─────────────────────────────────── */
.risque-section {
  padding: var(--pad-section) 0;
  background: var(--ivory);
}
.risque-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.risque-inner h2 { margin-bottom: 0; position: sticky; top: 5rem; }
.risque-text p { font-size: 1.0625rem; line-height: 1.9; }
.risque-list {
  margin: 1.75rem 0;
  padding: 2rem 2.5rem;
  background: var(--surface);
  border-left: 2px solid var(--gold);
}
.risque-list-item {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ivory-border);
  font-family: var(--font-display);
  font-style: italic;
}
.risque-list-item:last-child { border-bottom: none; }
.risque-differenciateur {
  margin-top: 2rem;
  padding: 2rem 2.5rem;
  background: var(--ink);
  color: var(--ivory);
}
.risque-differenciateur p {
  color: rgba(250,248,244,.75) !important;
  font-size: 0.9375rem;
  line-height: 1.8;
}
.risque-differenciateur strong { color: var(--ivory) !important; }

/* ── METHOD ─────────────────────────────────── */
.method-section {
  padding: var(--pad-section) 0;
  background: var(--surface);
}
.method-section h2 { text-align: center; }
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ivory-border);
  border: 1px solid var(--ivory-border);
  margin-top: 1rem;
}
.method-step {
  background: var(--ivory);
  padding: 3rem 2.5rem;
}
.method-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--ivory-border);
  line-height: 1;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}
.method-step h3 { color: var(--ink); margin-bottom: 1rem; }
.method-step p { font-size: 0.9375rem; line-height: 1.75; color: var(--text-mid); }

/* ── RESULTS ────────────────────────────────── */
.results-section {
  padding: var(--pad-section) 0;
  background: var(--ivory);
}
.results-inner { max-width: 900px; margin: 0 auto; }
.results-header { text-align: center; margin-bottom: 3.5rem; }
.results-header p { font-size: 1rem; color: var(--text-mid); letter-spacing: 0.04em; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.result-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--ivory-border);
}
.result-check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  line-height: 1;
}
.result-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.result-body p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.65; }
.results-quote, .j90-quote {
  padding: 2.5rem 3rem;
  background: var(--ink);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: .25;
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
}
.results-quote p, .j90-quote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(250,248,244,.8);
  line-height: 1.75;
}
.results-quote em, .j90-quote em { color: var(--ivory); font-style: italic; }

/* ── J90 ────────────────────────────────────── */
.j90-section {
  padding: var(--pad-section) 0;
  background: var(--surface);
}
.j90-section h2 { text-align: center; }
.j90-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ivory-border);
  border: 1px solid var(--ivory-border);
  margin-bottom: 3rem;
}
.j90-item {
  background: var(--ivory);
  padding: 2.5rem 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.j90-icon {
  font-size: 1.125rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-family: var(--font-display);
}
.j90-item p { font-size: 0.9375rem; line-height: 1.75; margin: 0; }

/* ── CASES ──────────────────────────────────── */
.cases-section {
  padding: var(--pad-section) 0;
  background: var(--ivory);
}
.cases-section h2 { text-align: center; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--ivory-border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.case-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ivory-border);
}
.case-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.case-ctx {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-light);
}
.case-amount-block { text-align: right; }
.case-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.case-amount-red { color: var(--crimson); }
.case-amount-label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 0.25rem;
}
.case-card h3 { margin-bottom: 0; }
.case-diag, .case-lever {
  padding: 1.25rem 1.5rem;
  background: var(--ivory);
  border-left: 2px solid var(--ivory-border);
}
.case-diag { border-left-color: var(--ink); }
.case-lever { border-left-color: var(--gold); }
.case-diag-label, .case-lever-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.case-diag-label { color: var(--text-mid); }
.case-lever-label { color: var(--gold); }
.case-diag p, .case-lever p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* ── APPROACH ───────────────────────────────── */
.approach-section {
  padding: var(--pad-section) 0;
  background: var(--surface);
}
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.approach-inner h2 { position: sticky; top: 5rem; }
.approach-statement {
  padding: 2rem 2.5rem;
  background: var(--ink);
  margin-bottom: 2rem;
}
.approach-statement p {
  color: rgba(250,248,244,.7);
  font-size: 1rem;
  line-height: 1.8;
}
.approach-statement p strong { color: var(--ivory); }
.approach-body p { font-size: 1.0625rem; line-height: 1.9; }
.approach-quote {
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
}
.approach-quote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  line-height: 1.7;
}
.approach-quote strong { color: var(--ink); }

/* ── MANAGEMENT ─────────────────────────────── */
.mgmt-section {
  padding: var(--pad-section) 0;
  background: var(--ivory);
}
.mgmt-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.mgmt-inner h2 { position: sticky; top: 5rem; }
.mgmt-body p { font-size: 1.0625rem; line-height: 1.9; }

/* ── CONFIDENTIALITÉ ─────────────────────────── */
.confid-section {
  padding: var(--pad-sm) 0;
  background: var(--surface);
  border-top: 1px solid var(--ivory-border);
  border-bottom: 1px solid var(--ivory-border);
}
.confid-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.confid-header { margin-bottom: 2.5rem; }
.confid-icon {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.2em;
}
.confid-header h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.confid-header p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; }
.confid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ivory-border);
  border: 1px solid var(--ivory-border);
  text-align: left;
}
.confid-item {
  background: var(--ivory);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
}
.confid-check {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ── SANS RÉFÉRENCES ────────────────────────── */
.noref-section {
  padding: var(--pad-section) 0;
  background: var(--ink);
  color: var(--ivory);
}
.noref-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.noref-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.noref-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ivory);
  margin: 0;
}
.noref-right {
  padding-top: 0.25rem;
}
.noref-right p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(250,248,244,0.65);
  margin: 0 0 1.25rem;
}
.noref-right p:last-of-type { margin-bottom: 0; }
.noref-quote {
  margin-top: 2.25rem;
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(184,146,74,0.07);
  position: relative;
}
.noref-guillemet {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  position: absolute;
  top: 1.75rem;
  left: 1.5rem;
  opacity: 0.4;
}
.noref-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250,248,244,0.8) !important;
  margin: 0 !important;
  padding-left: 1.25rem;
}

@media (max-width: 768px) {
  .noref-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── FAQ ────────────────────────────────────── */
.faq-section {
  padding: var(--pad-section) 0;
  background: var(--ivory);
}
.faq-section h2 { text-align: center; margin-bottom: 3rem; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--ivory-border);
}
.faq-item { border-bottom: 1px solid var(--ivory-border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  padding: 1.375rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.5;
  transition: background .15s;
  letter-spacing: 0.01em;
}
.faq-q:hover { background: var(--surface); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform .3s;
  font-family: var(--font-display);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a p {
  padding: 0.75rem 1.75rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
}

/* ── CTA FINAL ──────────────────────────────── */
.cta-final {
  padding: 8rem 0;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,146,74,.07) 0%, transparent 55%);
  pointer-events: none;
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.cta-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.cta-final h2 {
  color: var(--ivory);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 1.75rem;
}
.cta-final p {
  color: rgba(250,248,244,.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.cta-final strong { color: var(--ivory); }
.cta-hint {
  margin-top: 1.25rem !important;
  font-size: 0.8125rem !important;
  color: rgba(250,248,244,.3) !important;
  letter-spacing: 0.1em;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: #070707;
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2.5rem;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.footer-brand p {
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255,255,255,.3);
  margin: 0;
  font-family: var(--font-display);
}
.footer-trust {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.footer-trust span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  font-weight: 300;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,.25);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,.15);
  margin: 0;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 300px; gap: 3rem; }
  .angle-header { grid-template-columns: 1fr; gap: 2rem; }
  .cases-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .dirigeant-inner, .risque-inner, .approach-inner, .mgmt-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .dirigeant-inner h2, .risque-inner h2, .approach-inner h2, .mgmt-inner h2 { position: static; }
  .noref-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  /* ── Tokens ── */
  :root {
    --pad-section: 4rem;
    --pad-sm: 2.5rem;
  }

  /* ── Base ── */
  body { font-size: 16px; -webkit-text-size-adjust: 100%; }
  .container { padding: 0 1.25rem; }

  h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); line-height: 1.15; }
  h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); line-height: 1.2; }
  h3 { font-size: 1.15rem; }

  /* ── Nav ── */
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo { font-size: 0.95rem; }

  /* ── Hero ── */
  .hero { padding-top: calc(64px + 3rem); padding-bottom: 3.5rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-right {
    order: -1;
    max-width: 220px;
    margin: 0 auto;
  }
  .hero-right img { border-radius: 4px; }
  .hero-photo-name { text-align: center; }
  .hero-tag { justify-content: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-left blockquote { text-align: left; width: 100%; }
  .hero-left p { text-align: left; width: 100%; }
  .btn-primary { width: 100%; text-align: center; justify-content: center; display: block; }
  .btn-hint { display: block; margin-top: 0.75rem; }

  /* ── Tagline band ── */
  .tagline-band { padding: 3rem 0; }
  .tagline-band h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* ── Sectors ── */
  .sectors-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .sector-item {
    padding: 1.5rem 0.75rem;
    border-right: none;
    border-bottom: 1px solid var(--ivory-border);
  }
  .sector-item:nth-child(odd) { border-right: 1px solid var(--ivory-border); }
  .sector-item:last-child, .sector-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* ── Angle / Stats ── */
  .stats-row { flex-direction: column; gap: 0; }
  .stat-item { padding: 1.75rem 1.5rem; }
  .stat-divider { width: 100%; height: 1px; }
  .stat-num { font-size: 2.8rem; }

  /* ── Costs ── */
  .cost-row { grid-template-columns: 1fr; padding: 2rem 1.25rem; gap: 1rem; }
  .cost-right { text-align: left; }
  .cost-amount { font-size: 2.2rem; }
  .costs-conclusion { flex-direction: column; gap: 1.25rem; padding: 1.75rem 1.25rem; }

  /* ── Dirigeant / Risque / Approach / Mgmt ── */
  .dirigeant-inner, .risque-inner, .approach-inner, .mgmt-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mgmt-inner h2 { position: static; }
  .mgmt-body p { font-size: 1rem; }
  .risque-quote { padding: 1.5rem; }

  /* ── Method steps ── */
  .method-steps { grid-template-columns: 1fr; gap: 1px; }
  .method-step { padding: 2rem 1.5rem; }

  /* ── Results ── */
  .results-grid { grid-template-columns: 1fr; }
  .result-card { padding: 1.5rem; }

  /* ── J90 ── */
  .j90-grid { grid-template-columns: 1fr; }
  .j90-card { padding: 1.5rem; }

  /* ── Cases ── */
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { padding: 1.75rem 1.5rem; }
  .case-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }

  /* ── Approach / Mgmt ── */
  .approach-box { padding: 1.5rem; }

  /* ── Confidentialité ── */
  .confid-grid { grid-template-columns: 1fr; }
  .confid-item { padding: 1rem 1.25rem; }

  /* ── No References ── */
  .noref-inner { grid-template-columns: 1fr; gap: 2rem; }
  .noref-title { font-size: clamp(1.4rem, 5vw, 1.75rem); }
  .noref-right p { font-size: 0.9375rem; }
  .noref-quote { padding: 1.25rem 1.25rem 1.25rem 1.5rem; }
  .noref-guillemet { font-size: 2.5rem; top: 1.25rem; left: 1rem; }
  .noref-quote p { padding-left: 1rem; font-size: 0.9375rem; }

  /* ── FAQ ── */
  .faq-section h2 { text-align: left; margin-bottom: 2rem; }
  .faq-q { font-size: 0.9375rem; padding: 1.1rem 0; line-height: 1.4; text-align: left; }
  .faq-a p { font-size: 0.9rem; }

  /* ── CTA Final ── */
  .cta-final { padding: 5rem 0; }
  .cta-final h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }
  .btn-large { width: 100%; display: block; text-align: center; }

  /* ── Footer ── */
  .footer-top { flex-direction: column; gap: 1.75rem; }
  .footer-trust { gap: 1.25rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { gap: 1rem; flex-wrap: wrap; }
  .footer-links a { font-size: 0.8rem; }
}

@media (max-width: 400px) {
  :root { --pad-section: 3rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 1rem; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-item { border-right: none !important; }
  .sector-item:nth-last-child(2) { border-bottom: 1px solid var(--ivory-border) !important; }
}
