/* ============================================================
   14 LevelUp — Identité Visuelle v1.0
   Encre #1C1A17 · Ivoire #F4F2EF · Ambre #B08050
   Sable #C8B89A · Pierre #7A7670
   Raleway 100–900 · DM Mono 300
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300&family=DM+Mono:wght@300;400&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ── */
:root {
  --encre:      #1C1A17;
  --ivoire:     #F4F2EF;
  --ambre:      #B08050;
  --sable:      #C8B89A;
  --pierre:     #7A7670;

  --encre-05:   rgba(28,26,23,.05);
  --encre-08:   rgba(28,26,23,.08);
  --encre-12:   rgba(28,26,23,.12);
  --encre-20:   rgba(28,26,23,.20);
  --ivoire-08:  rgba(244,242,239,.08);
  --ivoire-12:  rgba(244,242,239,.12);
  --ivoire-20:  rgba(244,242,239,.20);
  --ivoire-50:  rgba(244,242,239,.50);
  --ambre-15:   rgba(176,128,80,.15);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--ivoire);
  color: var(--encre);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(244,242,239,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--encre-08);
  transition: var(--transition);
}
nav.dark-nav {
  background: rgba(28,26,23,.94);
  border-color: var(--ivoire-08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-14 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 15px;
  background: var(--encre);
  color: var(--ivoire);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
nav.dark-nav .logo-14 { background: var(--ivoire); color: var(--encre); }
footer .logo-14      { background: var(--ivoire); color: var(--encre); }

.logo-name {
  font-weight: 200;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--encre);
}
nav.dark-nav .logo-name { color: var(--ivoire); }
footer .logo-name      { color: var(--ivoire); }

.logo-img { height: 36px; width: auto; filter: invert(1); display: block; }
nav .logo-img { height: 78px !important; width: auto !important; }
nav.dark-nav .logo-img { filter: none; }
footer .logo-img       { filter: none; height: 72px !important; width: auto !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pierre);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--encre); }
nav.dark-nav .nav-links a { color: rgba(244,242,239,.50); }
nav.dark-nav .nav-links a:hover,
nav.dark-nav .nav-links a.active { color: var(--ivoire); }

.nav-cta {
  background: var(--ambre) !important;
  color: var(--ivoire) !important;
  padding: 9px 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.25em !important;
}
.nav-cta:hover { background: var(--encre) !important; color: var(--ivoire) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--encre);
  transition: .3s;
}
nav.dark-nav .hamburger span { background: var(--ivoire); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 100vw);
  height: 100vh;
  background: var(--ivoire);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--encre-12);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pierre);
  padding: 18px 0;
  border-bottom: 1px solid var(--encre-05);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--encre); }
.mobile-close {
  position: absolute;
  top: 22px; right: 24px;
  background: none; border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--pierre);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 1.5px solid transparent;
}
.btn svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

.btn-primary {
  background: var(--ambre);
  color: var(--ivoire);
  border-color: var(--ambre);
}
.btn-primary:hover { background: var(--encre); border-color: var(--encre); }

.btn-secondary {
  background: transparent;
  color: var(--encre);
  border-color: var(--encre-20);
}
.btn-secondary:hover { border-color: var(--encre); }

.btn-ghost {
  background: transparent;
  color: var(--ivoire);
  border-color: var(--ivoire-20);
}
.btn-ghost:hover { border-color: var(--ivoire); }

/* ── Content Wrapper ── */
.content-wrapper { padding-top: 72px; }

/* ── Section elements ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ambre);
}
/* legacy support */
.section-badge { display: none; }

.section-title {
  font-weight: 200;
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--encre);
}
.section-subtitle {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--pierre);
  max-width: 540px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Dark section overrides */
.dark-section .section-title { color: var(--ivoire); }
.dark-section .section-subtitle { color: rgba(244,242,239,.55); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .40s; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivoire);
  position: relative;
  overflow: hidden;
  padding: 64px 0 136px;
}
/* Dot pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--encre-08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* "14" watermark */
.hero-watermark {
  display: block;
  font-weight: 800;
  font-size: clamp(100px, 18vw, 240px);
  color: rgba(28,26,23,0.07);
  line-height: 1;
  pointer-events: auto;
  user-select: none;
  letter-spacing: 0.06em;
  width: fit-content;
  cursor: default;
  margin: 40px auto 0;
  transition: color 0.5s ease;
}
.hero-watermark:hover {
  color: rgba(176,128,80,0.22);
}

/* 14 décoratif — page À propos, hero droite */
.about-watermark {
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%) translateX(60px);
  font-weight: 800;
  font-size: clamp(160px, 22vw, 300px);
  color: rgba(28,26,23,0.07);
  line-height: 1;
  letter-spacing: 0.06em;
  width: fit-content;
  user-select: none;
  cursor: default;
  pointer-events: auto;
  z-index: 2;
  opacity: 0;
  transition: color 0.5s ease, opacity 0.8s ease, transform 0.8s cubic-bezier(.22,1,.36,1);
}
.about-watermark.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.about-watermark:hover { color: rgba(176,128,80,0.22); }

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--ambre);
  display: block;
}
.hero-title {
  font-weight: 100;
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--encre);
}
.hero-title em {
  font-style: italic;
  font-weight: 200;
  color: var(--ambre);
}
.hero-desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--pierre);
  max-width: 560px;
  margin: 0 auto 40px;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
/* Stats under hero text */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--encre-12);
  border: 1px solid var(--encre-12);
  margin-top: 64px;
}
.hero-stat {
  background: var(--ivoire);
  padding: 24px 20px;
}
.hero-stat-num {
  font-weight: 100;
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--encre);
  margin-bottom: 6px;
}
.hero-stat-label {
  font-weight: 700;
  font-size: 8.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--pierre);
}
/* Hero visual: dark card */
.hero-visual { display: none; }
.hero-card {
  background: var(--encre);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(244,242,239,.035) 0px,
    rgba(244,242,239,.035) 1px,
    transparent 1px,
    transparent 36px
  );
  pointer-events: none;
}
.hero-card-label {
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 24px;
}
.hero-card-title {
  font-weight: 200;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ivoire);
  margin-bottom: 36px;
}
.hero-progress-list { display: flex; flex-direction: column; gap: 18px; }
.hero-progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,242,239,.5);
  margin-bottom: 7px;
}
.hero-progress-bar { height: 1.5px; background: rgba(244,242,239,.1); }
.hero-progress-fill {
  height: 100%;
  background: var(--ambre);
  width: 0;
  transition: width 1.6s cubic-bezier(.4,0,.2,1);
}
.hero-card-quote {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,242,239,.08);
  font-style: italic;
  font-weight: 200;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(244,242,239,.65);
}
.hero-card-quote-author {
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ambre);
}

/* ── METHODOLOGY (dark) ── */
.methodology {
  background: var(--encre);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.methodology::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(244,242,239,.03) 0px, rgba(244,242,239,.03) 1px,
    transparent 1px, transparent 40px
  );
  pointer-events: none;
}
.methodology .section-label { color: var(--ambre); }
.methodology .section-label::before { background: var(--ambre); }
.methodology .section-title { color: var(--ivoire); }
.methodology .section-subtitle { color: rgba(244,242,239,.50); }

/* ── STEPS GRID (contact + index dark sections) ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
}
.step-item--dark .step-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--ambre);
  margin-bottom: 20px;
}
.step-item--dark .step-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(244,242,239,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,242,239,.55);
  margin-bottom: 20px;
}
.step-item--dark .step-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
}
.step-item--dark h4 {
  font-weight: 400;
  font-size: 15px;
  color: var(--ivoire) !important;
  margin-bottom: 8px;
}
.step-item--dark p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(244,242,239,.50);
  max-width: 200px;
}
.step-connector {
  color: rgba(244,242,239,.20);
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px;
}
.step-connector svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
}

/* Step pop animation */
.step-item, .step-connector {
  opacity: 0;
  transform: scale(0.88) translateY(12px);
  transition: opacity 0.9s cubic-bezier(.34,1.56,.64,1), transform 0.9s cubic-bezier(.34,1.56,.64,1);
}
.step-item.step-pop, .step-connector.step-pop {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Contact hero availability badge */
.contact-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176,128,80,.12);
  border: 1px solid rgba(176,128,80,.25);
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 8px;
}
.avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: avail-pulse 2s ease-in-out infinite;
}
@keyframes avail-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Contact hero dark variant */
.contact-hero-dark .section-subtitle { color: rgba(244,242,239,.55); }
.contact-hero-dark { padding-bottom: 0 !important; }
.contact-steps { padding-top: 24px !important; padding-bottom: 24px !important; }
.contact-steps .steps-grid { margin-top: 0; }

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-connector { display: none; }
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244,242,239,.07);
  border: 1px solid rgba(244,242,239,.07);
  margin-top: 64px;
}
.method-card {
  background: var(--encre);
  padding: 48px 36px;
  transition: background .3s;
}
.method-card:hover { background: rgba(244,242,239,.04); }
.method-num {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--ambre);
  margin-bottom: 28px;
}
.method-icon {
  width: 36px; height: 36px;
  color: rgba(244,242,239,.4);
  margin-bottom: 20px;
}
.method-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.method-title {
  font-weight: 200;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ivoire);
  margin-bottom: 12px;
}
.method-desc {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(244,242,239,.50);
}

/* ── TESTIMONIAL (ambre) ── */
.testimonial-section {
  background: var(--ambre);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-section::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244,242,239,0.18), transparent);
  animation: shimmer-slide 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer-slide {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 115%; opacity: 0; }
}
.testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-weight: 100;
  font-size: 100px;
  line-height: 0.8;
  display: block;
  color: rgba(244,242,239,.30);
  margin-bottom: 8px;
}
.testimonial-text {
  font-weight: 200;
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--ivoire);
  margin-bottom: 40px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: rgba(244,242,239,.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ivoire);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ivoire);
}
.author-role {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(244,242,239,.65);
  margin-top: 3px;
}

/* ── FEATURES (light) ── */
.features-section { padding: 120px 0; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 64px;
}
.features-list { display: flex; flex-direction: column; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--encre-08);
  cursor: pointer;
  transition: .2s;
}
.feature-item:first-child { border-top: 1px solid var(--encre-08); }
.feature-item-dot {
  width: 5px; height: 5px;
  background: var(--encre-20);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .2s;
}
.feature-item.active .feature-item-dot { background: var(--ambre); }
.feature-item-label {
  font-weight: 500;
  font-size: 13px;
  color: var(--pierre);
  transition: color .2s;
  flex: 1;
}
.feature-item.active .feature-item-label,
.feature-item:hover .feature-item-label { color: var(--encre); }
.feature-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--pierre);
  letter-spacing: 0.1em;
}
.feature-item.active .feature-num { color: var(--ambre); }

.feature-showcase {
  padding: 48px 40px;
  background: var(--encre);
  color: var(--ivoire);
  position: sticky;
  top: 92px;
}
.feature-showcase-title {
  font-weight: 200;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ivoire);
  margin-bottom: 14px;
}
.feature-showcase-desc {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(244,242,239,.55);
  margin-bottom: 28px;
}
/* Sentiment */
.sentiment-demo { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.sentiment-row { display: flex; align-items: center; gap: 10px; }
.sentiment-label { font-weight: 700; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(244,242,239,.55); min-width: 50px; }
.sentiment-bar-wrap { flex: 1; height: 1.5px; background: rgba(244,242,239,.1); }
.sentiment-bar { height: 100%; background: var(--ambre); width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.sentiment-positive .sentiment-bar { width: 72%; }
.sentiment-neutral .sentiment-bar { width: 18%; background: var(--sable); }
.sentiment-negative .sentiment-bar { width: 10%; background: rgba(244,242,239,.25); }
.sentiment-pct { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(244,242,239,.55); min-width: 28px; text-align: right; }

/* ── PROBLÈMES / SOLUTIONS ── */
.pb-sol-section {
  background: var(--encre);
  padding: 100px 0;
}
.pb-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}
.pb-card, .sol-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.pb-card::before, .sol-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(280px circle at var(--cx, -500px) var(--cy, -500px), rgba(176,128,80,0.18), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
.pb-card:hover::before, .sol-card:hover::before { opacity: 1; }
.pb-card:hover { background: rgba(255,255,255,0.06); }
.sol-card {
  background: rgba(176,128,80,0.08);
  border-color: rgba(176,128,80,0.18);
}
.sol-card:hover { background: rgba(176,128,80,0.13); }
.pb-label {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--ivoire);
  margin-bottom: 18px;
}
.sol-label {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--ambre);
  margin-bottom: 18px;
}
.pb-text, .sol-text {
  color: var(--pierre);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 768px) {
  .pb-sol-grid { grid-template-columns: 1fr; }
  .pb-sol-section { padding: 70px 0; }
}

/* ── ACCORDION SITUATIONS ── */
.pb-accordion {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.pb-accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pb-accordion-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.pb-accordion-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  color: var(--ivoire);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.5;
  transition: color .2s;
}
.pb-accordion-q:hover { color: var(--ambre); }
.pb-accordion-q[aria-expanded="true"] { color: var(--ambre); }
.pb-accordion-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  color: var(--ambre);
}
.pb-accordion-q[aria-expanded="true"] .pb-accordion-icon {
  transform: rotate(180deg);
}
.pb-accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s;
}
.pb-accordion-a.open {
  max-height: 300px;
}
.pb-accordion-a p {
  padding-bottom: 28px;
  color: rgba(244,242,239,.65);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

/* ── VALUES GRID 2-col variant ── */
.values-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .values-grid--2col { grid-template-columns: 1fr; }
}

/* ── MOBILE CTA SABLE ── */
.mobile-menu .mobile-cta {
  color: var(--ambre) !important;
  font-weight: 500;
}

/* ── CTA (dark) ── */
.cta-section {
  background: var(--encre);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(244,242,239,.04) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-label  { color: var(--ambre); }
.cta-inner .section-label::before { background: var(--ambre); }
.cta-inner .section-title  { color: var(--ivoire); margin-bottom: 14px; }
.cta-inner .section-subtitle { color: rgba(244,242,239,.50); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RIPPLE DOTS — canvas gère le rendu, masque ::before ── */
.has-ripple-canvas::before { display: none; }

/* ── SPOTLIGHT AMBRE — calque global fixed ── */
#global-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    400px circle at var(--gx, -500px) var(--gy, -500px),
    rgba(176,128,80,.11) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 100px 0 80px;
  background: var(--ivoire);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--encre-08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-title { max-width: 680px; }
.page-hero .section-subtitle { max-width: 540px; margin: 0; }
.page-hero em { font-style: italic; font-weight: 200; color: var(--ambre); }

/* ── SERVICES PAGE ── */
.services-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-card {
  background: var(--ivoire);
  padding: 0;
  width: 100%;
  border: 1px solid var(--encre-12);
  transition: background .25s, box-shadow .35s;
  overflow: hidden;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(300px circle at var(--cx, -500px) var(--cy, -500px), rgba(176,128,80,0.10), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: #edeae6; }
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter .4s, transform .4s;
}
/* Fallback gradient si l'image n'est pas encore uploadée */
.service-card-img[src="images/approche-analyse.jpg"]     { background: linear-gradient(135deg, #e2dcd5 0%, #cec5b8 100%); }
.service-card-img[src="images/approche-solutions.jpg"]   { background: linear-gradient(135deg, #d8d0c5 0%, #c4b9ab 100%); }
.service-card-img[src="images/approche-fidelisation.jpg"]{ background: linear-gradient(135deg, #e6e0d8 0%, #d2c8bc 100%); }
.service-card-img[src="images/approche-digital.jpg"]     { background: linear-gradient(135deg, #dbd4cc 0%, #c8bfb5 100%); }
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card:hover .service-card-img {
  filter: grayscale(0%) contrast(1.1);
}
.service-card-body {
  padding: 28px 28px 32px;
}
.service-card-icon {
  width: 34px; height: 34px;
  color: var(--ambre);
  margin-bottom: 20px;
  margin-top: 0;
}
.service-card-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.service-card h3 {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--encre);
  margin-bottom: 12px;
}
.service-card p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: var(--pierre);
  margin-bottom: 20px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--encre-12);
  color: var(--pierre);
}

/* ── PROCESS (dark) ── */
.services-process {
  background: var(--encre);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.services-process::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(244,242,239,.03) 0px, rgba(244,242,239,.03) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.services-process .section-label { color: var(--ambre); }
.services-process .section-label::before { background: var(--ambre); }
.services-process .section-title { color: var(--ivoire); }
.services-process .section-subtitle { color: rgba(244,242,239,.50); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244,242,239,.07);
  border: 1px solid rgba(244,242,239,.07);
  margin-top: 64px;
}
.process-node {
  background: var(--encre);
  padding: 40px 28px;
}
.process-node-circle {
  width: 34px; height: 34px;
  border: 1.5px solid var(--ambre);
  color: var(--ambre);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.process-node h4 {
  font-weight: 500;
  font-size: 13px;
  color: var(--ivoire);
  margin-bottom: 10px;
}
.process-node p {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(244,242,239,.50);
}

/* ── PRICING ── */
.pricing-section { padding: 120px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--encre-12);
  border: 1px solid var(--encre-12);
  margin-top: 64px;
}
.pricing-card {
  background: var(--ivoire);
  padding: 48px 36px;
  position: relative;
}
.pricing-card.featured { background: var(--encre); }
.pricing-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--ambre);
  color: var(--ivoire);
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.pricing-plan {
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 20px;
}
.pricing-price {
  font-weight: 100;
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--encre);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-price { color: var(--ivoire); }
.pricing-price span { font-size: 14px; font-weight: 300; letter-spacing: 0; }
.pricing-desc {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--pierre);
  margin-bottom: 24px;
}
.pricing-card.featured .pricing-desc { color: rgba(244,242,239,.55); }
.pricing-divider {
  height: 1px;
  background: var(--encre-08);
  margin-bottom: 24px;
}
.pricing-card.featured .pricing-divider { background: rgba(244,242,239,.10); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  font-size: 13px;
  color: var(--pierre);
}
.pricing-card.featured .pricing-feature { color: rgba(244,242,239,.65); }
.pricing-feature-check {
  width: 16px; height: 16px;
  border: 1px solid var(--ambre);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pricing-feature-check svg { width: 10px; height: 10px; fill: none; stroke: var(--ambre); stroke-width: 2.5; }

/* ── ABOUT ── */
.about-story { padding: 120px 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-grid p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--pierre);
  margin-bottom: 20px;
}
.about-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--encre-12);
  border: 1px solid var(--encre-12);
}
.stat-card {
  background: var(--ivoire);
  padding: 36px 28px;
}
.stat-number {
  font-weight: 100;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--encre);
  margin-bottom: 8px;
}
.stat-label {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--pierre);
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--encre-12);
  border: 1px solid var(--encre-12);
  margin-top: 64px;
}
.value-card, .glass-card {
  background: var(--ivoire);
  padding: 40px 32px;
  transition: background .25s;
}
.value-card:hover, .glass-card:hover { background: #edeae6; }
.value-icon {
  width: 30px; height: 30px;
  color: var(--ambre);
  margin-bottom: 18px;
}
.value-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.value-card h3 {
  font-weight: 500;
  font-size: 15px;
  color: var(--encre);
  margin-bottom: 10px;
}
.value-card p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: var(--pierre);
}

/* ── TEAM ── */
.team-section { padding: 120px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--encre-12);
  border: 1px solid var(--encre-12);
  margin-top: 64px;
}
.team-card {
  background: var(--ivoire);
  padding: 36px 28px;
  transition: background .25s;
}
.team-card:hover { background: #edeae6; }
.team-avatar {
  width: 48px; height: 48px;
  background: var(--encre);
  color: var(--ivoire);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.team-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--encre);
  margin-bottom: 4px;
}
.team-role {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 14px;
}
.team-bio {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
  color: var(--pierre);
}

/* ── CONTACT ── */
.contact-section { padding: 0 0 120px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-grid h3 {
  font-weight: 200;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--encre);
  margin-bottom: 14px;
}
.contact-grid > div > p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--pierre);
  margin-bottom: 36px;
}
.contact-methods { display: flex; flex-direction: column; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--encre-08);
}
.contact-method:first-child { border-top: 1px solid var(--encre-08); }
.contact-method-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--ambre);
  margin-top: 2px;
}
.contact-method-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact-method-label {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--pierre);
  margin-bottom: 4px;
}
.contact-method-value {
  font-weight: 300;
  font-size: 14px;
  color: var(--encre);
}

/* Contact form (dark) */
.contact-form {
  background: var(--encre);
  padding: 48px 44px;
}

/* ── CONTACT FORM ÉPURÉ ── */
.contact-form-centered {
  max-width: 560px;
  margin: 0 auto;
  background: var(--ivoire);
  padding: 40px 44px;
}
@media (max-width: 600px) { .contact-form-centered { padding: 28px 20px; } }
.contact-form-slim {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cfs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cfs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cfs-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(28,26,23,.45);
}
.cfs-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(28,26,23,.18);
  color: var(--encre);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.cfs-input::placeholder { color: rgba(28,26,23,.28); }
.cfs-input:focus { border-bottom-color: var(--ambre); }
.cfs-textarea {
  resize: none;
  min-height: 90px;
}
@media (max-width: 600px) {
  .cfs-row { grid-template-columns: 1fr; }
}
.form-label {
  display: block;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(244,242,239,.50);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(244,242,239,.06);
  border: 1px solid rgba(244,242,239,.10);
  color: var(--ivoire);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(244,242,239,.28); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--ambre); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; background-image: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 48px 0; }
.form-success-icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--ambre);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.form-success-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--ambre); stroke-width: 2.5; }
.form-success h4 { font-weight: 200; font-size: 22px; color: var(--encre); margin-bottom: 8px; }
.form-success p { font-weight: 300; font-size: 13px; color: var(--pierre); }

/* ── FAQ ── */
.faq-section { padding: 60px 0; }
.faq-list { display: flex; flex-direction: column; margin-top: 32px; max-width: 760px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.faq-item { border-top: 1px solid var(--encre-08); }
.faq-item:last-child { border-bottom: 1px solid var(--encre-08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  color: var(--encre);
  transition: color .2s;
}
.faq-question:hover { color: var(--ambre); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--ambre); transition: transform .3s; }
.faq-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-answer-inner {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: var(--pierre);
  padding-bottom: 16px;
  padding-right: 36px;
}
/* FAQ inside dark sections */
.methodology .faq-item { border-top-color: rgba(244,242,239,.12); }
.methodology .faq-item:last-child { border-bottom-color: rgba(244,242,239,.12); }
.methodology .faq-question { color: var(--ivoire); }
.methodology .faq-answer-inner { color: rgba(244,242,239,.65); }

/* ── FOOTER ── */
footer {
  background: var(--encre);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(244,242,239,.025) 0px, rgba(244,242,239,.025) 1px,
    transparent 1px, transparent 40px
  );
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,242,239,.07);
  position: relative;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand .nav-logo {
  margin-bottom: 18px;
  display: inline-flex;
}
.footer-brand p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(244,242,239,.40);
}
.footer-col { text-align: center; }
.footer-col h4 {
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-col li a {
  font-weight: 300;
  font-size: 13px;
  color: rgba(244,242,239,.40);
  transition: color .2s;
}
.footer-col li a:hover { color: var(--ivoire); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 48px;
  padding: 28px 24px 0;
  position: relative;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(244,242,239,.28);
  letter-spacing: 0.1em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(244,242,239,.28);
  transition: color .2s;
}
.footer-links a:hover { color: var(--ivoire); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .about-watermark { display: none; }
  .hero-watermark  { display: none; }
  .method-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .services-grid { padding: 0 16px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }

  /* Nav : hamburger dès tablette */
  .nav-links { display: none; }
  .nav-inner {
    position: relative;
    justify-content: center;
    padding: 0 20px;
    gap: 0;
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    margin-left: 0;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    margin-left: 0;
    z-index: 2;
  }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  /* Nav mobile : ajustements taille logo */
  .nav-logo .logo-img {
    height: 44px !important;
    width: auto !important;
  }
  /* Footer : tout centré */
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  footer .logo-img-light { height: 90px; }
  .hero { padding: 28px 0 100px; }
  .hero-title { font-size: 38px; }
  .hero-stats { grid-template-columns: 1fr; }
  .services-grid { padding: 0 12px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stat-cards { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .feature-showcase { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .methodology, .services-process, .cta-section { padding: 80px 0; }
}

/* ── TYPEWRITER CURSOR ── */
.typewriter-cursor {
  display: inline-block;
  width: 1.5px;
  height: 0.9em;
  background: var(--ambre);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: tw-blink 0.7s step-end infinite;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── MENTIONS LÉGALES ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-block {
  margin-bottom: 48px;
}
.legal-block h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--encre);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--encre-08);
}
.legal-block h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--encre);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.legal-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--pierre);
  margin-bottom: 12px;
}
.legal-block ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-block ul li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--pierre);
  margin-bottom: 4px;
}
.legal-block a { color: var(--ambre); text-decoration: underline; }
.legal-block strong { font-weight: 500; color: var(--encre); }
.legal-divider {
  border: none;
  border-top: 2px solid var(--encre-08);
  margin: 64px 0;
}
.legal-block--cta {
  background: var(--encre);
  padding: 40px;
  text-align: center;
  border-radius: 2px;
}
.legal-block--cta p {
  color: rgba(244,242,239,.6);
  margin-bottom: 20px;
}
.legal-block--cta .btn-primary { color: #fff; }
