/* =============================================
   ROOT & RESET
   ============================================= */
@import "components/hero-NJTWIn4.css";

:root {
  --bg:       #07111C;
  --bg-2:     #0D1E2E;
  --bg-3:     #112233;
  --bg-4:     #0F172A;
  --surface:  #152C42;
  --border:   rgba(255,255,255,0.07);
  --accent:   #1D72F5;
  --accent-h: #3A8BFF;
  --accent-2: #0FA87E;
  --text:     #E8EEF5;
  --muted:    #7A94B0;
  --faint:    #5A7A9A;
  --amber:    #F5A623;
  --white:    #FFFFFF;
  --font-head: 'Syne', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --max:      1200px;
  --radius:   6px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,114,245,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,114,245,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: rgba(7,17,28,0.9);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--muted);
  position: relative;
  z-index: 100;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 6px; }
.topbar-left span { color: var(--accent); }
.topbar-right { display: flex; gap: 24px; }
.topbar-right a {
  color: var(--muted);
  transition: color var(--transition);
}
.topbar-right a:hover { color: var(--text); }
.topbar-right a.topbar-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-right a.topbar-link-icon svg {
  flex-shrink: 0;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(7,17,28,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
  padding: 2px;
  margin-right: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--border);
  background: rgba(7,17,28,0.97);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border: none; }
.mobile-nav a:hover { color: var(--white); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(29,114,245,0.4);
}
.btn-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 4px 20px rgba(29,114,245,0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}
.btn-lg {
  font-size: 1rem;
  padding: 14px 30px;
}
.btn-sm {
  font-size: 0.82rem;
  padding: 7px 16px;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =============================================
   HERO
   ============================================= */
/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--muted);
  padding: 4px 16px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 160px;
}
.trust-item:last-child { border-right: none; }
.trust-item .icon {
  width: 30px;
  height: 30px;
  background: rgba(29,114,245,0.1);
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}
.trust-item strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-size: 0.86rem;
}

/* =============================================
   BANDEAU 3 PREUVES (micro-claims)
   ============================================= */
.proofs-bandeau {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.proofs-bandeau-head {
  margin-bottom: 24px;
}
.proofs-bandeau-head .section-title {
  margin-bottom: 0;
}
.proofs-bandeau-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.proofs-bandeau-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proofs-bandeau-item:nth-child(3n) { border-right: none; }
.proofs-bandeau-item:nth-child(n+4) { border-bottom: none; }
.proofs-bandeau-inner--3 .proofs-bandeau-item { border-bottom: none; }
.proofs-bandeau-inner--4 {
  grid-template-columns: repeat(4, 1fr);
}
.proofs-bandeau-inner--4 .proofs-bandeau-item:nth-child(4n) { border-right: none; }
.proofs-bandeau-inner--4 .proofs-bandeau-item { border-bottom: none; }
.pourqui-bandeau-sub {
  margin-top: 8px;
  margin-bottom: 0;
}
.proofs-bandeau-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(29,114,245,0.12);
  border: 1px solid rgba(29,114,245,0.25);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.proofs-bandeau-content { min-width: 0; }
.proofs-bandeau-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}
.proofs-bandeau-desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
section { position: relative; z-index: 1; }
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 88px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-2);
  padding: 40px 36px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover { background: var(--bg-3); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(29,114,245,0.1);
  border: 1px solid rgba(29,114,245,0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 3px;
}

/* =============================================
   WHY US
   ============================================= */
.why {
  padding: 88px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.why-point:last-child { border-bottom: none; }
.why-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 400;
  padding-top: 3px;
  letter-spacing: 0.05em;
}
.why-point h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.why-point p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}
.why-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
}
.why-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-card-title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  flex-shrink: 0;
}
.why-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-card ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  font-weight: 300;
  line-height: 1.55;
}
.why-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 88px 0;
  background: var(--bg);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(29,114,245,0.1));
  z-index: 0;
}
.process-step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 48px;
  height: 48px;
  background: var(--bg-2);
  border: 1px solid rgba(29,114,245,0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
}
.step-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(29,114,245,0.1);
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}
.step-timing {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent-2);
  background: rgba(15,168,126,0.08);
  border: 1px solid rgba(15,168,126,0.2);
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

/* =============================================
   SECONDARY / ARTISANS
   ============================================= */
.secondary {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.secondary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.secondary-text .section-label { margin-bottom: 10px; }
.secondary-text h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.secondary-text p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}
.secondary-services {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.secondary-tag {
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius);
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-section {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(29,114,245,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-label { display: block; margin: 0 auto 20px; }
.cta-section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.12;
}
.cta-section p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.reassurance-pills {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.pill::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent-2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   PAGE SERVICES — Hero, cartes, how, engagements, pour qui, stack, FAQ, devis
   ============================================= */
.services-page-hero {
  padding: 80px 0 32px 0;
  position: relative;
  overflow: hidden;
}
.services-page-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(29,114,245,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  background: rgba(29,114,245,0.09);
  border: 1px solid rgba(29,114,245,0.22);
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.services-page-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 740px;
  margin-bottom: 20px;
}
.services-page-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.72;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.proof {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--muted);
}
.proof::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent-2);
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-section { padding: 88px 0; }
.svc-hd { margin-bottom: 56px; }
.svc-hd .section-sub { margin-bottom: 0; }
.cgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.sc {
  background: var(--bg-3);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.sc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.sc:hover { background: var(--bg-4); }
.sc:hover::after { transform: scaleX(1); }
.sc-tag {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.sc-ico {
  width: 44px;
  height: 44px;
  background: rgba(29,114,245,0.09);
  border: 1px solid rgba(29,114,245,0.18);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.sc-ico svg { width: 20px; height: 20px; }
.sc-ico.sc-ico-green {
  background: rgba(15,168,126,0.09);
  border-color: rgba(15,168,126,0.18);
  color: var(--accent-2);
}
.sc-ico.sc-ico-amber {
  background: rgba(245,166,35,0.09);
  border-color: rgba(245,166,35,0.18);
  color: var(--amber);
}
.sc h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.sc-ben {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 22px;
}
.sc-ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  flex: 1;
  list-style: none;
}
.sc-ul li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.55;
  font-weight: 300;
}
.sc-ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.72rem;
  top: 1px;
}
.sc-tgt {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--faint);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(29,114,245,0.25);
  font-size: 0.82rem;
  padding: 7px 16px;
  align-self: flex-start;
  margin-top: auto;
}
.btn-ghost:hover {
  background: rgba(29,114,245,0.07);
  border-color: rgba(29,114,245,0.4);
}

.how-section {
  padding: 88px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-hd { margin-bottom: 56px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.hs {
  background: var(--bg-3);
  padding: 32px 28px;
  transition: background var(--transition);
}
.hs:hover { background: var(--bg-4); }
.sn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sn::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(29,114,245,0.2);
}
.hs h4 {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.hs p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}
.hs ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.hs ul li {
  font-size: 0.8rem;
  color: var(--faint);
  padding-left: 12px;
  position: relative;
  font-weight: 300;
}
.hs ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.eng-section { padding: 88px 0; }
.eng-hd { margin-bottom: 56px; }
.egrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ei {
  background: var(--bg-3);
  padding: 32px 26px;
  transition: background var(--transition);
}
.ei:hover { background: var(--bg-4); }
.ei.ei-span2 { grid-column: span 2; }
.eico {
  width: 36px;
  height: 36px;
  background: rgba(29,114,245,0.08);
  border: 1px solid rgba(29,114,245,0.15);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.eico svg { width: 16px; height: 16px; }
.ei h4 {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.ei p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.pq-section {
  padding: 88px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pq-hd { margin-bottom: 56px; }
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pp {
  background: var(--bg-3);
  padding: 44px 40px;
}
.pp-lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 20px;
}
.pp-lbl-blue {
  color: var(--accent);
  background: rgba(29,114,245,0.1);
  border: 1px solid rgba(29,114,245,0.2);
}
.pp-lbl-green {
  color: var(--accent-2);
  background: rgba(15,168,126,0.1);
  border: 1px solid rgba(15,168,126,0.2);
}
.pp h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pp > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.cases {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.case {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.case-t {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.case-d {
  font-size: 0.8rem;
  color: var(--faint);
  font-weight: 300;
  line-height: 1.5;
}

/* Page Pour qui */
.pourqui-main { position: relative; z-index: 1; }
.pourqui-card-intro {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
}
.pourqui-card-block {
  margin-top: 20px;
}
.pourqui-card-block:first-of-type { margin-top: 0; }
.pourqui-block-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.pourqui-card-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.55;
}
.pourqui-card-block li { margin: 5px 0; }
.pourqui-card-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stk-section { padding: 88px 0; }
.stk-hd { margin-bottom: 56px; }
.stk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sg { margin-bottom: 30px; }
.sg-t {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tg {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: border-color var(--transition), color var(--transition);
}
.tg:hover {
  border-color: rgba(29,114,245,0.3);
  color: var(--text);
}
.tg.tg-green { border-color: rgba(15,168,126,0.15); }
.tg.tg-green:hover {
  border-color: rgba(15,168,126,0.35);
  color: var(--accent-2);
}
.nolist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.ni {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}
.ni::before {
  content: '×';
  position: absolute;
  left: 0;
  color: rgba(245,166,35,0.6);
  font-size: 0.8rem;
  font-weight: 500;
}
.stk-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  position: sticky;
  top: 96px;
}
.stk-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.stk-card-p {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}
.stk-card-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.stk-card-lbl {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.stk-card-cta p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}

.faq-section {
  padding: 88px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.faq-hd { margin-bottom: 56px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.fi { background: var(--bg-3); }
.fq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  transition: background var(--transition);
  user-select: none;
}
.fq:hover { background: var(--bg-4); }
.fq-t {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.fchev {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s, color var(--transition);
}
.fi.op .fchev {
  transform: rotate(180deg);
  color: var(--accent);
}
.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.fa-in {
  padding: 0 28px 24px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
  border-top: 1px solid var(--border);
}
.fa-in p { padding-top: 18px; }
.fa-in p + p { margin-top: 12px; }

.dv-section {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dv-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(29,114,245,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.dv-section .section-label { display: block; margin: 0 auto 18px; }
.dv-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 620px;
  margin: 0 auto 18px;
  line-height: 1.12;
}
.dv-sub {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.72;
}
.prq {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 40px;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.prq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 12px 12px 0 0;
}
.prq-t {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.prq-d {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}
.prq-ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}
.prq-ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}
.prq-ul li strong {
  color: var(--text);
  font-weight: 500;
}
.pnum {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--accent);
  background: rgba(29,114,245,0.1);
  border: 1px solid rgba(29,114,245,0.2);
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.dv-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.dv-section .pills {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* =============================================
   PAGE À PROPOS
   ============================================= */
.about-main { position: relative; z-index: 1; }

.about-hero {
  padding: 30px 0 50px;
}
.about-hero .container { padding: 0 32px; }
.about-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(29,114,245,0.28);
  background: rgba(29,114,245,0.1);
  color: var(--text);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  width: fit-content;
}
.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(29,114,245,0.16);
}
.about-hero-title {
  margin: 14px 0 10px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}
.about-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 60ch;
  line-height: 1.6;
  font-weight: 300;
}
.about-hero-ctas {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.about-proofs {
  margin-top: 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 62ch;
}
.about-proofs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.about-check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(15,168,126,0.12);
  border: 1px solid rgba(15,168,126,0.3);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
}
.about-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent-2);
}

.about-hero-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(14,26,49,0.72), rgba(14,26,49,0.4));
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  overflow: hidden;
  min-height: 340px;
}
.about-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  background: rgba(255,255,255,0.02);
}
.about-chromes { display: flex; gap: 7px; }
.about-chrome {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.about-chrome-r { background: rgba(245,92,92,0.55); }
.about-chrome-a { background: rgba(245,166,35,0.55); }
.about-chrome-g { background: rgba(15,168,126,0.55); }
.about-card-body {
  padding: 16px;
  display: grid;
  gap: 12px;
}
.about-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-mini {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 12px;
}
.about-mini-k {
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin: 0 0 6px;
  font-family: var(--font-mono);
}
.about-mini-v {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 300;
}
.about-codepanel {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(9,14,27,0.55);
  border-radius: 14px;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(230,237,247,0.95);
  overflow: hidden;
  position: relative;
}
.about-codepanel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(550px 220px at 20% 10%, rgba(29,114,245,0.1), transparent 65%),
              radial-gradient(380px 220px at 80% 90%, rgba(15,168,126,0.08), transparent 55%);
  pointer-events: none;
}
.about-code { position: relative; display: grid; gap: 6px; }
.about-line { display: flex; gap: 10px; }
.about-ln {
  width: 18px;
  color: rgba(167,180,204,0.55);
  text-align: right;
  flex: 0 0 auto;
  user-select: none;
  font-size: 0.75rem;
}
.about-kw { color: rgba(121,184,255,0.95); }
.about-fn { color: rgba(181,120,255,0.95); }
.about-st { color: rgba(15,168,126,0.95); }
.about-cm { color: rgba(167,180,204,0.65); }
.about-op { color: rgba(230,237,247,0.78); }
.about-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}
.about-sdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(15,168,126,0.12);
  flex: 0 0 auto;
}

.about-section {
  padding: 40px 0;
  scroll-margin-top: 100px;
}
.about-section .container { padding: 0 32px; }
.about-section-head { margin-bottom: 20px; }
.about-section-head .section-title { margin-bottom: 10px; }
.about-sub { margin-top: 0; }
.about-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.about-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.about-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 20px;
}
.about-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}
.about-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
}
.about-card li { margin: 6px 0; }

.about-steps {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-step {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.about-step::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(500px 200px at 20% 0%, rgba(29,114,245,0.1), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.about-step-n {
  position: relative;
  font-weight: 700;
  color: rgba(230,237,247,0.92);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
}
.about-pill {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29,114,245,0.3);
  background: rgba(29,114,245,0.12);
  color: var(--text);
  font-weight: 800;
  font-size: 0.75rem;
}
.about-step p {
  position: relative;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
}

/* Page Reprise de projet */
.reprise-main { position: relative; z-index: 1; }
.reprise-section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reprise-steps-3 { grid-template-columns: repeat(3, 1fr); }
.reprise-step-ul {
  position: relative;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.55;
  list-style: none;
}
.reprise-step-ul li {
  margin: 6px 0;
  position: relative;
}
.reprise-step-ul li::before {
  content: '·';
  position: absolute;
  left: -12px;
  color: var(--accent);
}

.about-bullets {
  margin-top: 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}
.about-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.02);
}
.about-bullet-ico {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(29,114,245,0.25);
  background: rgba(29,114,245,0.1);
  flex: 0 0 auto;
  margin-top: 2px;
}

.about-cta-block {
  margin-top: 20px;
  border: 1px solid rgba(29,114,245,0.22);
  background: linear-gradient(180deg, rgba(29,114,245,0.1), rgba(255,255,255,0.02));
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-cta-txt { max-width: 78ch; }
.about-cta-block h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.about-cta-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}
.about-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-faq {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.about-details {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 14px 16px;
}
.about-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  font-family: var(--font-head);
  font-size: 0.95rem;
}
.about-details summary::-webkit-details-marker { display: none; }
.about-details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Responsive page À propos */
@media (max-width: 980px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-card { order: 2; min-height: auto; }
  .about-hero-title { font-size: clamp(1.75rem, 4vw, 2.4rem); }
  .about-grid-3 { grid-template-columns: 1fr; }
  .about-grid-2 { grid-template-columns: 1fr; }
  .about-steps { grid-template-columns: 1fr; }
  .reprise-steps-3 { grid-template-columns: 1fr; }
  .proofs-bandeau-inner--4 { grid-template-columns: repeat(2, 1fr); }
  .proofs-bandeau-inner--4 .proofs-bandeau-item:nth-child(4n) { border-right: 1px solid var(--border); }
  .proofs-bandeau-inner--4 .proofs-bandeau-item:nth-child(2n) { border-right: none; }
  .proofs-bandeau-inner--4 .proofs-bandeau-item:nth-child(n+3) { border-bottom: none; }
}
@media (max-width: 768px) {
  .about-hero .container,
  .about-section .container { padding: 0 20px; }
  .about-cta-block { flex-direction: column; align-items: stretch; }
  .about-cta-btns { justify-content: flex-start; }
  .ressources-populaires-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE RESSOURCES
   ============================================= */
.ressources-main { position: relative; z-index: 1; }
.ressources-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ressources-hero-cta .btn { font-size: 0.88rem; }
.ressources-cards.about-grid-3 { align-items: stretch; }
.ressources-cards .about-card {
  display: flex;
  flex-direction: column;
}
.ressources-cards .about-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
}
.ressources-cards .about-card ul li { margin-bottom: 4px; }
.ressources-card-btn {
  margin-top: auto;
  padding-top: 16px;
  align-self: flex-start;
}
.ressources-populaires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.ressources-pop-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.ressources-pop-card:hover {
  border-color: rgba(29,114,245,0.35);
  background: rgba(29,114,245,0.06);
}
.ressources-pop-title {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
}
.ressources-pop-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ressources-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .ressources-populaires-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ressources-populaires-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.6;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color var(--transition);
  opacity: 0.7;
}
.footer-links a:hover { color: var(--text); opacity: 1; }

/* =============================================
   PAGES LÉGALES (charte graphique)
   ============================================= */
.legal-section {
  padding: 96px 0;
  background: var(--bg);
  min-height: 60vh;
}
.legal-header {
  margin-bottom: 48px;
}
.legal-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.09;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.legal-section .section-label {
  margin-bottom: 12px;
}
.legal-intro {
  font-size: 0.97rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.72;
  margin: 0;
}
.legal-content {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  margin: 0 0 16px;
}
.legal-content strong {
  font-weight: 500;
  color: var(--text);
}
.legal-updated {
  margin-top: 40px !important;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* =============================================
   CONTACT PAGE (charte graphique)
   ============================================= */
.contact-section {
  padding: 96px 0;
  background: var(--bg);
  min-height: 60vh;
}
.contact-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.09;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-section .section-sub {
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: #0B1220;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  position: relative;
}
.contact-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(29,114,245,0.15) 60%, transparent 100%);
}
.contact-card-inner {
  padding: 40px 36px;
}
.contact-company {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
}
.contact-item a {
  color: var(--accent);
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--accent-h);
}
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(29,114,245,0.1);
  border: 1px solid rgba(29,114,245,0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}

/* Carte devis (sous le bloc informations) */
.contact-devis-card {
  background: #0B1220;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  position: relative;
}
.contact-devis-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(29,114,245,0.15) 60%, transparent 100%);
}
.contact-devis-inner {
  padding: 28px 36px;
}
.contact-devis-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.contact-devis-card .btn {
  display: inline-flex;
}

/* Formulaire de contact (carte droite) */
.contact-form-card {
  background: #0B1220;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  position: relative;
}
.contact-form-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(29,114,245,0.15) 60%, transparent 100%);
}
.contact-form-inner {
  padding: 40px 36px;
}
.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%237A94B0' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form select:focus {
  outline: none;
  border-color: rgba(29,114,245,0.4);
  box-shadow: 0 0 0 2px rgba(29,114,245,0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(29,114,245,0.4);
  box-shadow: 0 0 0 2px rgba(29,114,245,0.1);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn {
  margin-top: 8px;
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   PAGE DEMANDER UN DEVIS
   ============================================= */
.devis-main { position: relative; z-index: 1; }
.devis-section-title { margin-bottom: 8px; }
.devis-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
  max-width: 900px;
}
.devis-col ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}
.devis-col ul li { margin-bottom: 6px; }
.devis-col-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.devis-col-ok { color: var(--accent-2); }
.devis-col-no { color: var(--muted); }
.devis-col-info { color: var(--accent); }
.devis-three-blocs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.devis-bloc ul,
.devis-bloc .devis-bloc-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}
.devis-bloc ul li,
.devis-bloc .devis-bloc-list li { margin-bottom: 6px; }
.devis-infos-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  max-width: 560px;
}
.devis-infos-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.5;
}
.devis-infos-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.devis-form-wrapper {
  margin-top: 24px;
  width: 100%;
}
.devis-form-heading {
  margin-bottom: 24px;
}
.devis-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.devis-form-row .form-group { margin-bottom: 0; }
.devis-form .form-group { margin-bottom: 20px; }
.devis-form .btn { margin-top: 12px; }
@media (max-width: 600px) {
  .devis-form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 20px; }
  .devis-form-row .form-group { margin-bottom: 20px; }
  .devis-form-row .form-group:last-child { margin-bottom: 0; }
}
.devis-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}
.devis-legend {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding: 0;
}
.devis-optional {
  font-weight: 400;
  color: var(--faint, #5A7A9A);
  font-size: 0.85em;
}
.devis-reassurance {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  max-width: 520px;
}
.devis-reassurance li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
}
.devis-reassurance li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.devis-cta-alt {
  text-align: center;
  padding: 24px 0;
}
.devis-cta-alt-title {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.devis-flash {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
}
.devis-flash-success {
  background: rgba(15,168,126,0.15);
  border: 1px solid rgba(15,168,126,0.35);
  color: var(--accent-2);
}
.devis-flash-error {
  background: rgba(220,53,69,0.12);
  border: 1px solid rgba(220,53,69,0.3);
  color: #e8a0a0;
}
@media (max-width: 768px) {
  .devis-two-cols { grid-template-columns: 1fr; gap: 28px; }
  .devis-three-blocs { grid-template-columns: 1fr; gap: 24px; }
  .devis-form-wrapper .container { padding: 0 20px; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .cgrid { grid-template-columns: repeat(2, 1fr); }
  .egrid { grid-template-columns: repeat(2, 1fr); }
  .ei.ei-span2 { grid-column: span 2; }
  .stk-inner { grid-template-columns: 1fr; gap: 48px; }
  .stk-card { position: static; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
}
@media (max-width: 860px) {
  .pq-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .topbar-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .cgrid { grid-template-columns: 1fr; }
  .egrid { grid-template-columns: 1fr; }
  .ei.ei-span2 { grid-column: span 1; }
  .services-page-hero { padding: 36px 0 48px; }
  .prq { padding: 24px 20px; }
  .pp { padding: 32px 28px; }
  .trust-bar .container { justify-content: flex-start; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); min-width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .proofs-bandeau-inner { grid-template-columns: 1fr; }
  .proofs-bandeau-inner--4 { grid-template-columns: 1fr; }
  .proofs-bandeau-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .proofs-bandeau-item:last-child { border-bottom: none; }
  .proofs-bandeau-inner--4 .proofs-bandeau-item { border-bottom: 1px solid var(--border); }
  .proofs-bandeau-inner--4 .proofs-bandeau-item:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .secondary-inner { flex-direction: column; }
}
@media (max-width: 500px) {
  .proofs { flex-direction: column; gap: 12px; }
  .dv-cta { flex-direction: column; align-items: center; }
}
