﻿/* ==========================================================
   NEMORYS - style.css
   Redesign Premium 2026 - Cabinet de recrutement IT
   Palette : Blanc creme · Violet profond · Violet vif
   Fonts   : DM Serif Display (titres) + Inter (texte)
   ========================================================== */

/* ─── 1. RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-y: scroll; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
svg { display: block; flex-shrink: 0; }

/* ─── 2. VARIABLES ─── */
:root {
  /* Palette */
  --c-bg:            #F9F8FC;
  --c-bg-alt:        #F2EFF9;
  --c-surface:       #FFFFFF;
  --c-text:          #1a1027;
  --c-text-2:        #3d2d52;
  --c-text-muted:    #6b5c7e;
  --c-text-light:    #9e8fb5;
  /* Brand - palette issue du logo */
  --c-navy:          #5b21b6;
  --c-navy-hover:    #4c1d95;
  --c-navy-tint:     #f5f3ff;
  --c-gold:          #7c3aed;
  --c-gold-tint:     #ede9fe;
  /* Borders & Shadows */
  --c-border:        #E4E0F0;
  --c-border-strong: #C8C0E0;
  --sh-xs: 0 1px 3px rgba(91,33,182,0.07);
  --sh-sm: 0 2px 12px rgba(91,33,182,0.08), 0 1px 3px rgba(91,33,182,0.04);
  --sh-md: 0 6px 24px rgba(91,33,182,0.10), 0 2px 6px rgba(91,33,182,0.04);
  --sh-lg: 0 14px 50px rgba(91,33,182,0.12), 0 4px 14px rgba(91,33,182,0.05);
  /* Spacing */
  --sp-1:0.25rem; --sp-2:0.5rem;  --sp-3:0.75rem;
  --sp-4:1rem;    --sp-5:1.25rem; --sp-6:1.5rem;  --sp-7:1.75rem;
  --sp-8:2rem;    --sp-9:2.25rem; --sp-10:2.5rem; --sp-12:3rem;
  --sp-16:4rem;   --sp-20:5rem;   --sp-24:6rem; --sp-32:8rem;
  /* Font sizes */
  --fs-xs:0.75rem;  --fs-sm:0.875rem; --fs-base:1rem;
  --fs-lg:1.125rem; --fs-xl:1.25rem;  --fs-2xl:1.5rem;
  --fs-3xl:2rem;    --fs-4xl:2.75rem; --fs-5xl:3.5rem;
  /* Radii */
  --r-sm:6px; --r-md:12px; --r-lg:20px; --r-xl:28px; --r-full:9999px;
  --r-btn:10px;
  /* Misc */
  --header-h: 88px;
  --max-w:    1280px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --dur:      0.25s;
}

/* ─── 3. TYPOGRAPHY ─── */
h1, h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--c-text); }
h1 { font-size: var(--fs-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-4xl); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-2xl); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-xl); letter-spacing: -0.005em; }
h5 { font-size: var(--fs-lg); font-weight: 600; }
p  { color: var(--c-text-muted); line-height: 1.75; }
strong { font-weight: 600; color: var(--c-text-2); }

/* ─── 4. LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}
.section    { padding-block: var(--sp-24); }
.section-lg { padding-block: var(--sp-32); }
.section-sm { padding-block: var(--sp-16); }
.section-alt   { background: var(--c-bg-alt); }
.section-white { background: var(--c-surface); }
.section-navy  { background: var(--c-navy); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-16);
}
.section-header .sep { margin-inline: auto; }
.section-header .eyebrow { display: block; }

/* Separator line */
.sep {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, #e879f9, #7c3aed);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
  filter: drop-shadow(0 0 6px rgba(232,121,249,0.45));
}

/* Eyebrow label */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}

.section-title { font-size: var(--fs-4xl); margin-bottom: var(--sp-4); }
.section-desc  { font-size: var(--fs-lg); color: var(--c-text-muted); line-height: 1.75; max-width: 600px; margin-inline: auto; }

/* ─── 5. HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(249,248,252,0.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background 0.3s ease;
}
.header.scrolled {
  background: rgba(249,248,252,0.68);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-color: rgba(200,192,240,0.22);
  box-shadow: 0 1px 0 rgba(124,58,237,0.07), 0 4px 28px rgba(91,33,182,0.07);
}
.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img  { width: 42px; height: 42px; object-fit: contain; }
.logo-name {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-text);
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  margin-left: auto;
}
.nav-link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text-2);
  transition: color var(--dur) var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--c-text); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #e879f9, #5b21b6);
  border-radius: var(--r-full);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: var(--sp-4);
  flex-shrink: 0;
}
.nav-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}
.nav-linkedin:hover {
  color: var(--c-navy);
  border-color: var(--c-navy);
  background: var(--c-navy-tint);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--c-text);
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  flex-direction: column;
  z-index: 999;
  box-shadow: var(--sh-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-base);
  color: var(--c-text-2);
}
.mobile-menu .nav-link:last-of-type { border-bottom: none; }
.mobile-menu .btn-primary { margin-top: var(--sp-4); justify-content: center; }

/* ─── 6. BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 13px 26px;
  background: linear-gradient(135deg, #5b21b6 0%, #4c1d95 100%);
  color: #fff;
  font-size: var(--fs-sm); font-weight: 600;
  border-radius: var(--r-btn); letter-spacing: 0.02em;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border: none;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(91,33,182,0.30);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 13px 22px;
  color: var(--c-text-2); font-size: var(--fs-sm); font-weight: 600;
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--r-btn); letter-spacing: 0.01em;
  transition: all var(--dur) var(--ease);
}
.btn-ghost:hover { color: var(--c-navy); border-color: var(--c-navy); background: var(--c-navy-tint); }
.btn-white {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 13px 26px;
  background: #fff; color: var(--c-navy);
  font-size: var(--fs-sm); font-weight: 600;
  border-radius: var(--r-btn);
  transition: all var(--dur) var(--ease);
}
.btn-white:hover { background: var(--c-bg-alt); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 13px 22px;
  color: rgba(255,255,255,0.8); font-size: var(--fs-sm); font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--r-btn);
  transition: all var(--dur) var(--ease);
}
.btn-outline-white:hover { color: #fff; border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.btn-sm  { padding: 9px 18px; font-size: var(--fs-xs); }
.btn-lg  { padding: 15px 32px; font-size: var(--fs-base); }
.btn-arrow::after { content: '→'; transition: transform var(--dur) var(--ease); margin-left: var(--sp-1); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ─── 7. HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--c-bg);
  background-image:
    radial-gradient(ellipse 55% 60% at 72% 38%, rgba(124,58,237,0.11) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(232,121,249,0.09) 0%, transparent 50%);
}
/* Decorative rings — fill empty sides with depth */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -140px;
  width: 580px; height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.09);
  pointer-events: none; z-index: 0;
  animation: heroRingDrift1 18s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 30px; left: -110px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(232,121,249,0.07);
  pointer-events: none; z-index: 0;
  animation: heroRingDrift2 22s ease-in-out infinite;
}
.hero-wm-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.hero-wm {
  width: min(88vw, 860px);
  opacity: 0.065;
  filter: saturate(0) contrast(0.18);
  will-change: transform, opacity;
  user-select: none;
  transform-origin: center center;
}
.hero > .container {
  position: relative; z-index: 1; width: 100%;
  padding-block: var(--sp-20) var(--sp-16);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-gold);
  margin-bottom: var(--sp-6);
}
.hero-eyebrow-line {
  width: 28px; height: 1.5px;
  background: var(--c-gold);
  border-radius: var(--r-full);
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  color: var(--c-text);
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #e879f9, #a855f7, #7c3aed, #a855f7, #e879f9);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s linear infinite;
}
.hero-desc {
  font-size: var(--fs-lg);
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-10);
  max-width: 500px;
}
.hero-actions {
  display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap;
}
.hero-media { position: relative; }
.hero-video-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
  background: var(--c-bg-alt);
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(91,33,182,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.hero-caption {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-top: var(--sp-4);
  font-size: var(--fs-xs); color: var(--c-text-light);
}
.hero-caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-gold); flex-shrink: 0;
}
.scroll-ind {
  position: absolute; bottom: var(--sp-8); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-text-light); z-index: 2;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

/* ─── 8. MÉTHODE (3 étapes) ─── */
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
}
.method-step {
  padding: var(--sp-10) var(--sp-8);
  border-right: 1px solid var(--c-border);
  transition: background var(--dur) var(--ease);
}
.method-step:last-child { border-right: none; }
.method-step:hover { background: var(--c-bg); }
.method-num {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.method-num-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs); font-weight: 800;
  color: #fff; flex-shrink: 0;
}
.method-num-label {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-navy);
}
.method-step h3 {
  font-size: var(--fs-xl); font-weight: 700;
  margin-bottom: var(--sp-3); color: var(--c-text);
}
.method-step p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.75; }

/* ─── 9. PROFILS COUVERTS ─── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.profile-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-5);
  transition: all var(--dur) var(--ease);
}
.profile-card:hover {
  border-color: var(--c-navy);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.profile-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--c-navy-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy);
  margin-bottom: var(--sp-4);
}
.profile-card h4 { font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--sp-2); color: var(--c-text); }
.profile-card p  { font-size: var(--fs-xs); color: var(--c-text-light); line-height: 1.65; margin: 0; }

/* ─── 10. APPROCHE (2 colonnes) ─── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.approach-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
  background: var(--c-bg-alt);
  flex-shrink: 0;
}
.approach-media img, .approach-media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.approach-text { max-width: 520px; }
.approach-list {
  display: flex; flex-direction: column; gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.approach-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.approach-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #e879f9 0%, #7c3aed 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-top: 2px;
}
.approach-item h5 { font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-1); color: var(--c-text); }
.approach-item p  { font-size: var(--fs-sm); margin: 0; }

/* ─── 11. POURQUOI NEMORYS ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-card { background: var(--c-surface); padding: var(--sp-8); transition: background var(--dur) var(--ease), box-shadow 0.35s ease; }
.why-card:hover { background: var(--c-bg); box-shadow: inset 0 0 0 1.5px rgba(232,121,249,0.45), inset 0 -2px 0 rgba(124,58,237,0.25); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #a855f7 0%, #5b21b6 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: var(--sp-5);
}
.why-card h3 { font-size: var(--fs-xl); font-weight: 700; margin-bottom: var(--sp-3); }
.why-card p  { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.75; margin: 0; }

/* ─── 12. CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #3b0764 0%, #4c1d95 35%, #5b21b6 70%, #7c3aed 100%);
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,121,249,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,121,249,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cta-banner-inner { max-width: 640px; margin-inline: auto; text-align: center; position: relative; z-index: 1; }
.cta-banner h2   { color: #fff; font-size: var(--fs-4xl); margin-bottom: var(--sp-5); }
.cta-banner p    { color: rgba(255,255,255,0.68); font-size: var(--fs-lg); line-height: 1.75; margin-bottom: var(--sp-10); }
.cta-actions { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }

/* ─── 13. FOOTER ─── */
.footer { background: #0a0a12; color: rgba(255,255,255,0.6); padding-block: var(--sp-24) var(--sp-10); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-img  { filter: brightness(0) invert(1); }
.footer-brand > p {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm); color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px;
}
.footer-col h5 {
  font-size: var(--fs-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; margin-bottom: var(--sp-6);
}
.footer-col a {
  display: block; font-size: var(--fs-base);
  color: rgba(255,255,255,0.5); padding: var(--sp-2) 0;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-col a:hover { color: rgba(255,255,255,0.85); transform: translateX(4px); }
.footer-social {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-5); font-size: var(--fs-xs); font-weight: 600;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm); padding: var(--sp-2) var(--sp-3);
  transition: all var(--dur) var(--ease);
}
.footer-social:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.footer-bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
.footer-copy { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal a { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); padding: 0; transition: color var(--dur) var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─── 14. PAGE HERO (pages intérieures) ─── */
.page-hero {
  padding-top: calc(var(--header-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
  background: var(--c-bg);
  background-image:
    radial-gradient(ellipse 60% 70% at 85% 30%, rgba(124,58,237,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 10% 75%, rgba(232,121,249,0.05) 0%, transparent 55%);
  border-bottom: 1px solid var(--c-border);
}
.page-hero-inner { max-width: 700px; }
.page-hero h1 { font-size: var(--fs-5xl); margin-bottom: var(--sp-5); }
.page-hero-desc { font-size: var(--fs-xl); color: var(--c-text-muted); line-height: 1.65; }

/* ─── 15. FORMULAIRE ─── */
.form-honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); scroll-margin-top: calc(var(--header-h) + 24px); }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-text); }
.form-label span { color: var(--c-gold); }
.form-control {
  padding: 12px 16px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  font-size: var(--fs-base);
  color: var(--c-text); width: 100%; outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { border-color: var(--c-navy); box-shadow: 0 0 0 3px rgba(91,33,182,0.12); }
.form-control::placeholder { color: var(--c-text-light); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b21b6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10); box-shadow: var(--sh-sm);
}
.form-card h3 { margin-bottom: var(--sp-8); font-size: var(--fs-2xl); }
.form-error { color: #c0392b; font-size: var(--fs-xs); margin-top: var(--sp-1); display: none; }
.form-success {
  display: none; align-items: flex-start; gap: var(--sp-4);
  background: #f0faf4; border: 1px solid #a7d7b8;
  border-radius: var(--r-md); padding: var(--sp-6);
  font-size: var(--fs-sm); color: #1a5c36; margin-bottom: var(--sp-6);
}
.form-success svg { flex-shrink: 0; margin-top: 2px; color: #1a8c4e; }
.form-success strong { display: block; margin-bottom: 4px; }
.form-submit-wrap { margin-top: var(--sp-8); }
.form-check {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: var(--fs-xs); color: var(--c-text-muted); line-height: 1.5;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  margin-top: 1px; flex-shrink: 0; accent-color: var(--c-navy);
  width: 18px; height: 18px; cursor: pointer;
}
.btn-full-mobile { white-space: nowrap; }
.btn-primary.loading { opacity: 0.75; cursor: not-allowed; }

/* ─── 16. CONTACT PAGE ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-16); align-items: start;
}
.contact-sidebar h2 { font-size: var(--fs-3xl); margin-bottom: var(--sp-5); }
.contact-sidebar > p { font-size: var(--fs-base); margin-bottom: var(--sp-8); }
.contact-info-list { display: flex; flex-direction: column; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: var(--sp-4);
  padding-block: var(--sp-5); border-bottom: 1px solid var(--c-border);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-md); background: var(--c-navy-tint);
  display: flex; align-items: center; justify-content: center; color: var(--c-navy);
}
.contact-info-text h5 { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 4px; color: var(--c-text); }
.contact-info-text a, .contact-info-text p {
  font-size: var(--fs-sm); color: var(--c-text-muted); margin: 0;
  transition: color var(--dur) var(--ease);
}
.contact-info-text a:hover { color: var(--c-navy); }

/* ─── 17. NOTRE HISTOIRE PAGE ─── */
.histoire-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-20); align-items: start;
}
.histoire-media {
  border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-lg);
  position: sticky; top: calc(var(--header-h) + var(--sp-8));
}
.histoire-media img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
}
.histoire-content > p {
  font-size: var(--fs-lg); color: var(--c-text-muted); line-height: 1.8; margin-bottom: var(--sp-6);
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-4); margin-top: var(--sp-10);
}
.value-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: var(--sp-6);
  transition: all var(--dur) var(--ease);
}
.value-card:hover { border-color: var(--c-navy); box-shadow: var(--sh-sm); }
.value-card h4 { font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-2); color: var(--c-text); }
.value-card p  { font-size: var(--fs-sm); color: var(--c-text-muted); margin: 0; }

/* ─── 18. NOTRE OFFRE PAGE ─── */
.offre-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); align-items: center;
}
.offre-media {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/3; background: var(--c-bg-alt);
}
.offre-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.offre-profiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4);
}
.offre-profile {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: all var(--dur) var(--ease);
}
.offre-profile:hover { border-color: var(--c-navy); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.offre-profile h4 { font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-2); }
.offre-profile p  { font-size: var(--fs-xs); color: var(--c-text-muted); line-height: 1.65; margin: 0; }
.tarif-box {
  background: linear-gradient(145deg, #2e1065 0%, #4c1d95 50%, #5b21b6 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-12) var(--sp-12) var(--sp-10);
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91,33,182,0.30), 0 4px 16px rgba(91,33,182,0.15);
}
.tarif-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,249,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.tarif-box h3 {
  color: rgba(255,255,255,0.50);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--sp-5);
}
.tarif-pct {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  line-height: 1;
  margin-block: 0 var(--sp-5);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #f0abfc 0%, #c084fc 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tarif-pct span {
  font-size: 0.52em;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #e879f9, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tarif-box p { color: rgba(255,255,255,0.40); font-size: var(--fs-sm); line-height: 1.7; margin: 0; }

/* ─── 19. PAGES LÉGALES ─── */
.legal-content { max-width: 780px; margin-inline: auto; }
.legal-section { margin-bottom: var(--sp-12); padding-bottom: var(--sp-12); border-bottom: 1px solid var(--c-border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-5); }
.legal-section p, .legal-section li { font-size: var(--fs-base); color: var(--c-text-muted); line-height: 1.8; margin-bottom: var(--sp-4); }
.legal-section ul { list-style: disc; padding-left: var(--sp-5); }
.legal-section ul li { margin-bottom: var(--sp-2); }
.legal-contact-box {
  background: var(--c-navy-tint); border: 1px solid rgba(91,33,182,0.12);
  border-left: 3px solid var(--c-navy); border-radius: var(--r-sm);
  padding: var(--sp-5) var(--sp-6); margin-top: var(--sp-8);
}
.legal-contact-box p { font-size: var(--fs-sm); color: var(--c-navy); font-weight: 500; margin: 0; }

/* ─── 20. REVEAL ANIMATIONS (scroll) ─── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ─── 21. KEYFRAMES ─── */
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 4px 18px rgba(91,33,182,0.38), 0 0 0 0 rgba(91,33,182,0.25); }
  70%  { box-shadow: 0 4px 18px rgba(91,33,182,0.38), 0 0 0 12px rgba(91,33,182,0); }
  100% { box-shadow: 0 4px 18px rgba(91,33,182,0.38), 0 0 0 0 rgba(91,33,182,0); }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.25); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: rgba(124,58,237,0.45); }

/* ─── 22. MISC COMPONENTS ─── */
.quote-block {
  border-left: 3px solid var(--c-gold);
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-gold-tint);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-block: var(--sp-8);
}
.quote-block p { font-size: var(--fs-lg); color: var(--c-text-2); font-style: italic; margin: 0; }
.tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  background: var(--c-bg-alt); border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 600; color: var(--c-text-muted);
}
.tag-navy { background: var(--c-navy-tint); color: var(--c-navy); border-color: rgba(91,33,182,0.15); }

/* ─── 23. RESPONSIVE — 1200px ─── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
}

/* ─── 24. RESPONSIVE — 1024px ─── */
@media (max-width: 1024px) {
  :root { --fs-5xl: 2.8rem; --fs-4xl: 2.25rem; --sp-24: 5rem; }
  .hero-grid, .approach-grid, .offre-intro, .histoire-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero-media { max-width: 560px; margin-inline: auto; }
  .histoire-media { position: static; }
  .method-steps { grid-template-columns: 1fr; }
  .method-step { border-right: none; border-bottom: 1px solid var(--c-border); }
  .method-step:last-child { border-bottom: none; }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > p { max-width: none; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .offre-profiles { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── 25. RESPONSIVE — 768px ─── */
@media (max-width: 768px) {
  :root {
    --fs-5xl: 2.3rem; --fs-4xl: 1.9rem; --fs-3xl: 1.6rem;
    --header-h: 68px; --sp-24: 4rem; --sp-20: 3.5rem; --sp-16: 3rem;
  }
  .container { padding-inline: var(--sp-5); }
  .nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding-top: var(--header-h); }
  .hero > .container { padding-block: var(--sp-12) var(--sp-10); }
  .hero-desc { font-size: var(--fs-base); max-width: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .section-header { margin-bottom: var(--sp-10); }
  .profiles-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .why-grid { gap: 1px; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--sp-3); }
  .footer-legal { justify-content: center; }
  .offre-profiles { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .choice-card { padding: var(--sp-8); }
  .form-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .form-group { gap: var(--sp-2); }
  .form-control {
    font-size: 16px;
    padding: 14px 16px;
    min-height: 52px;
  }
  select.form-control { min-height: 52px; }
  textarea.form-control { min-height: 150px; font-size: 16px; }
  .form-card { padding: var(--sp-6); }
  .form-card h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-6); }
  .form-submit-wrap { margin-top: var(--sp-6); }
  .form-submit-wrap .btn-primary { width: 100%; justify-content: center; }
  .form-check { gap: var(--sp-3); }
  .form-check input[type="checkbox"] { width: 22px; height: 22px; margin-top: 0; }
  .form-success { padding: var(--sp-5); }
  .contact-sidebar { order: 2; }
  .contact-layout > .reveal { order: 1; }
  .cta-actions { flex-direction: column; align-items: center; }
  .page-hero { padding-top: calc(var(--header-h) + var(--sp-12)); padding-bottom: var(--sp-12); }
  .page-hero h1 { font-size: 2rem; }
  .histoire-layout { gap: var(--sp-10); }
  .tarif-box { padding: var(--sp-8); }
  .cta-banner { padding-block: var(--sp-16); }
}

/* ─── 26. RESPONSIVE — 480px ─── */
@media (max-width: 480px) {
  :root { --fs-5xl: 2rem; --fs-4xl: 1.75rem; }
  .profiles-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-card { padding: var(--sp-5); border-radius: var(--r-lg); }
  .form-grid { gap: var(--sp-4); }
  .form-control { padding: 13px 14px; min-height: 50px; }
  textarea.form-control { min-height: 140px; }
  .form-submit-wrap .btn-primary { font-size: var(--fs-base); padding: 16px 24px; }
  .form-check { gap: var(--sp-3); align-items: flex-start; }
  .contact-sidebar h2 { font-size: var(--fs-2xl); }
  .footer-legal { flex-direction: column; gap: var(--sp-2); align-items: center; }
}

/* ─── 27. DIFF STRIP ─── */
.diff-strip {
  background: var(--c-navy);
  padding-block: var(--sp-5);
  overflow: hidden;
}
.diff-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-8);
  border-right: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.strip-item:last-child { border-right: none; }
.strip-item svg { color: #e879f9; flex-shrink: 0; }

/* ─── 28. DARK EXPERTISE BLOCK ─── */
.expertise-block {
  background: var(--c-navy);
  padding-block: var(--sp-24);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.expertise-text .eyebrow { color: #c084fc; }
.expertise-text .sep { background: linear-gradient(90deg, #e879f9, #7c3aed); }
.expertise-text h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.expertise-text > p { color: rgba(255,255,255,0.65); font-size: var(--fs-lg); line-height: 1.8; margin-bottom: var(--sp-8); }
.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--dur) var(--ease);
}
.expertise-item:last-child { border-bottom: none; }
.expertise-item:hover { background: rgba(255,255,255,0.05); box-shadow: inset 4px 0 0 #c084fc; }
.expertise-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c084fc;
  flex-shrink: 0;
  margin-top: 7px;
}
.expertise-item p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  margin: 0; line-height: 1.65;
}
.expertise-item strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-1);
}
.expertise-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.expertise-media img, .expertise-media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ─── 29. DIFF ARGUMENTS — table premium ─── */
.diff-args-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--sh-sm);
}
.dat-card {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-10) var(--sp-8);
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
  transition: background var(--dur) var(--ease);
}
.dat-card:hover { background: var(--c-bg); box-shadow: inset 0 2px 0 rgba(232,121,249,0.4); }
.dat-card:nth-child(3n)         { border-right: none; }
.dat-card:nth-last-child(-n+3)  { border-bottom: none; }
.dat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.625rem;
  color: var(--c-navy);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 3px;
  user-select: none;
}
.dat-body { display: flex; flex-direction: column; min-width: 0; }
.dat-body h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
  -webkit-touch-callout: none;
}
.dat-body p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.72;
  margin: 0;
  -webkit-touch-callout: none;
}
/* Override any browser auto-detected link styling */
.dat-body a, .dat-body p a,
.dat-body a:link, .dat-body a:visited, .dat-body a:hover {
  color: var(--c-text-muted) !important;
  text-decoration: none !important;
  pointer-events: none !important;
  cursor: text !important;
}

/* ─── 30. REASSURANCE GRID ─── */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.reassurance-card {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--c-surface), var(--c-surface)) padding-box,
    linear-gradient(135deg, var(--c-border), var(--c-border)) border-box;
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
  animation: cardBorderSpin 4s linear infinite;
  animation-play-state: paused;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.reassurance-card:hover {
  background:
    linear-gradient(var(--c-surface), var(--c-surface)) padding-box,
    conic-gradient(from var(--ba), #e879f9, #7c3aed, rgba(124,58,237,0.08), #7c3aed, #e879f9) border-box;
  animation-play-state: running;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.14), 0 0 0 4px rgba(232,121,249,0.06);
}
.reassurance-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #a855f7 0%, #5b21b6 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin: 0 auto var(--sp-4);
}
.reassurance-card h4 { font-size: var(--fs-base); font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-2); }
.reassurance-card p  { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.65; margin: 0; }

/* ─── 31. FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-cta-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-cta.open .floating-cta-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.floating-cta-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(91,33,182,0.1);
  border-radius: 14px;
  padding: 13px 18px;
  min-width: 210px;
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(0,0,0,0.09), 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.floating-cta-option:hover {
  border-color: rgba(91,33,182,0.3);
  box-shadow: 0 4px 22px rgba(91,33,182,0.15);
  transform: translateX(-3px);
}
.floating-cta-option-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-cta-option-icon.icon-recruteur { background: var(--c-navy-tint); color: var(--c-navy); }
.floating-cta-option-icon.icon-candidat  { background: #fdf4ff; color: #9333ea; }
.floating-cta-option-body { flex: 1; min-width: 0; }
.floating-cta-option-body strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.floating-cta-option-body span {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: 1.3;
}
.floating-cta-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-navy-hover) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(91,33,182,0.38);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  flex-shrink: 0;
  animation: ctaPulse 2.5s ease-out infinite;
}
.floating-cta-btn:hover {
  box-shadow: 0 6px 26px rgba(91,33,182,0.52);
  transform: translateY(-2px);
  animation-play-state: paused;
}
.floating-cta-btn .btn-icon-open,
.floating-cta-btn .btn-icon-close {
  position: absolute;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.floating-cta-btn .btn-icon-close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
}
.floating-cta.open .floating-cta-btn .btn-icon-open {
  opacity: 0;
  transform: rotate(45deg) scale(0.6);
}
.floating-cta.open .floating-cta-btn .btn-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.floating-cta-btn .btn-open,
.floating-cta-btn .btn-close { display: none; }

/* ─── 32. CHOICE PAGE ─── */
.choice-section { padding-block: var(--sp-20); }
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  max-width: 900px;
  margin-inline: auto;
}
.choice-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-10);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.choice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--c-navy-tint) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.choice-card:hover { border-color: var(--c-navy); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.choice-card:hover::before { opacity: 1; }
.choice-card > * { position: relative; }
.choice-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-6);
  flex-shrink: 0;
}
.choice-card-icon.icon-entreprise { background: var(--c-navy-tint); color: var(--c-navy); }
.choice-card-icon.icon-candidat   { background: #fdf4ff; color: #9333ea; }
.choice-card-eyebrow {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-text-light); margin-bottom: var(--sp-2);
}
.choice-card h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: var(--fs-2xl); color: var(--c-navy);
  margin-bottom: var(--sp-4); line-height: 1.25;
}
.choice-card-desc {
  font-size: var(--fs-sm); color: var(--c-text-muted);
  line-height: 1.7; margin-bottom: var(--sp-6); flex: 1;
}
.choice-card-list {
  list-style: none; padding: 0; margin: 0 0 var(--sp-8) 0;
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.choice-card-list li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.5;
}
.choice-card-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-navy); opacity: 0.45;
  flex-shrink: 0; margin-top: 6px;
}
.choice-card-cta {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); font-weight: 700; color: var(--c-navy);
  margin-top: auto; padding-top: var(--sp-2);
}
.choice-card-cta svg { transition: transform 0.2s ease; }
.choice-card:hover .choice-card-cta svg { transform: translateX(4px); }
.choice-divider {
  display: flex; align-items: center; gap: var(--sp-5);
  max-width: 900px; margin: 0 auto var(--sp-8);
}
.choice-divider::before, .choice-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--c-border);
}
.choice-divider-text {
  font-size: var(--fs-xs); font-weight: 600; color: var(--c-text-light);
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}

/* ─── 33. CANDIDATURE PAGE ─── */
.cand-upload-zone {
  border: 2px dashed var(--c-border-strong);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
  background: var(--c-surface);
}
.cand-upload-zone:hover,
.cand-upload-zone:focus-within {
  border-color: var(--c-navy);
  background: var(--c-navy-tint);
}
.cand-upload-zone input[type='file'] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.cand-upload-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--c-navy-tint); color: var(--c-navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-3);
}
.cand-upload-label {
  font-size: var(--fs-sm); font-weight: 600; color: var(--c-text-2);
  margin-bottom: var(--sp-1);
}
.cand-upload-hint {
  font-size: var(--fs-xs); color: var(--c-text-light);
}
.cand-upload-filename {
  font-size: var(--fs-xs); color: var(--c-navy);
  font-weight: 600; margin-top: var(--sp-2);
  display: none;
}
.cand-upload-filename.visible { display: block; }

/* ─── 34. FOOTER TAGLINE ─── */
.footer-tagline {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: var(--sp-10);
  margin-bottom: var(--sp-10);
}
.footer-tagline-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: var(--fs-2xl);
  line-height: 1.3;
  background: linear-gradient(135deg, #f0abfc 0%, #c084fc 40%, rgba(255,255,255,0.90) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline-sub {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-2);
  margin-bottom: 0;
}

/* ─── 36. PROFILS MARQUEE v2 ─── */
.pm2-section {
  overflow: hidden;
  padding-block: var(--sp-8);
  -webkit-mask: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.pm2-wrap { display: flex; flex-direction: column; gap: var(--sp-5); }
.pm2-track { overflow: hidden; }
.pm2-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: pm2-fwd 55s linear infinite;
}
.pm2-track--rev .pm2-inner { animation: pm2-rev 65s linear infinite; }
.pm2-track:hover .pm2-inner,
.pm2-track:focus-within .pm2-inner { animation-play-state: paused; }
@keyframes pm2-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pm2-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) { .pm2-inner { animation: none !important; } }
.pm2-card {
  width: 220px;
  flex-shrink: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  user-select: none;
}
.pm2-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--c-border-strong); }
.pm2-card[data-cat="support"]:hover    { box-shadow: var(--sh-md), inset 0 3px 0 #93c5fd; }
.pm2-card[data-cat="systemes"]:hover   { box-shadow: var(--sh-md), inset 0 3px 0 #a78bfa; }
.pm2-card[data-cat="reseaux"]:hover    { box-shadow: var(--sh-md), inset 0 3px 0 #6ee7b7; }
.pm2-card[data-cat="management"]:hover { box-shadow: var(--sh-md), inset 0 3px 0 #d8b4fe; }
.pm2-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pm2-card[data-cat="support"]    .pm2-visual { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 60%, #93c5fd 100%); color: #1d4ed8; }
.pm2-card[data-cat="systemes"]   .pm2-visual { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 60%, #c4b5fd 100%); color: #5b21b6; }
.pm2-card[data-cat="reseaux"]    .pm2-visual { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 60%, #6ee7b7 100%); color: #065f46; }
.pm2-card[data-cat="management"] .pm2-visual { background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 60%, #e9d5ff 100%); color: #6b21a8; }
.pm2-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 5px; }
.pm2-cat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-light); }
.pm2-title { display: block; font-size: 13.5px; font-weight: 700; color: var(--c-text); line-height: 1.3; letter-spacing: -0.01em; }
.pm2-desc { font-size: 11.5px; color: var(--c-text-muted); line-height: 1.6; margin: 0; }

/* ─── 35. PROFILES MARQUEE ─── */
.profiles-marquee-section {
  overflow: hidden;
  padding-block: var(--sp-6);
  -webkit-mask: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.profiles-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.profiles-marquee-track { display: flex; }
.profiles-marquee-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: pm-fwd 44s linear infinite;
  will-change: transform;
}
.profiles-marquee-track--rev .profiles-marquee-inner {
  animation: pm-rev 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .profiles-marquee-inner { animation: none; }
}
.profiles-marquee-wrap:hover .profiles-marquee-inner,
.profiles-marquee-wrap:focus-within .profiles-marquee-inner {
  animation-play-state: paused;
}
@keyframes pm-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pm-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.pm-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  flex-shrink: 0;
  user-select: none;
  box-shadow: var(--sh-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.pm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-sm);
  border-color: rgba(91,33,182,0.25);
}
.pm-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}
.pm-cat::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.pm-card[data-cat="support"]    .pm-cat { color: #0284c7; }
.pm-card[data-cat="systemes"]   .pm-cat { color: #5b21b6; }
.pm-card[data-cat="reseaux"]    .pm-cat { color: #059669; }
.pm-card[data-cat="management"] .pm-cat { color: #7c3aed; }
.pm-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.3;
  white-space: nowrap;
}

/* ─── 33. RESPONSIVE UPDATES ─── */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .diff-args-table { grid-template-columns: 1fr 1fr; }
  .dat-card:nth-child(3n)        { border-right: 1px solid var(--c-border); }
  .dat-card:nth-child(2n)        { border-right: none; }
  .dat-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--c-border); }
  .dat-card:nth-last-child(-n+2) { border-bottom: none; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .strip-item { padding: var(--sp-3) var(--sp-5); }
}
@media (max-width: 768px) {
  .diff-strip-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-inline: var(--sp-5); }
  .strip-item { border-right: none; padding: var(--sp-2) var(--sp-4); }
  .diff-args-table { grid-template-columns: 1fr; }
  .dat-card:nth-child(3n),
  .dat-card:nth-child(2n)        { border-right: none; }
  .dat-card:nth-last-child(-n+3),
  .dat-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--c-border); }
  .dat-card:last-child           { border-bottom: none; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; }
  .floating-cta { bottom: var(--sp-4); right: var(--sp-4); }
  .floating-cta-option { min-width: 180px; padding: 11px 14px; }
}
@media (max-width: 480px) {
  .reassurance-grid { grid-template-columns: 1fr; }
  .dat-card { padding: var(--sp-7) var(--sp-6); gap: var(--sp-4); }
}

/* ─── 34. LOGO OVERLAY ANIMATION ─── */
.logo-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: auto;
  will-change: opacity;
  /* Rich premium background — not a blank white page */
  background-color: var(--c-bg);
  background-image:
    radial-gradient(ellipse 80% 70% at 50% 42%, rgba(91,33,182,0.13) 0%, transparent 62%),
    radial-gradient(circle, rgba(196,132,252,0.09) 1px, transparent 1px);
  background-size: auto, 48px 48px;
}
.logo-overlay.hidden { display: none; }
/* Inner wrapper: the element that JS animates (scale + translate) */
.logo-overlay-inner {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  will-change: transform;
}
.logo-overlay-svg {
  width: min(56vw, 56vh);
  height: auto;
  display: block;
  flex-shrink: 0;
  animation:
    overlayLogoIn 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) both,
    overlayLogoGlow 2.4s ease-in-out 0.65s infinite;
}
.logo-overlay-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-navy);
  text-transform: uppercase;
  white-space: nowrap;
  will-change: opacity;
  pointer-events: none;
  margin: 0;
  animation: overlayNameIn 0.55s ease 0.1s both;
}
/* Overlay atmospheric orbs */
.logo-overlay::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,249,0.14) 0%, transparent 65%);
  top: -8%; left: -5%;
  animation: orbFloat1 9s ease-in-out infinite;
  pointer-events: none;
}
.logo-overlay::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,33,182,0.18) 0%, transparent 65%);
  bottom: -15%; right: -8%;
  animation: orbFloat2 13s ease-in-out infinite;
  pointer-events: none;
}
@keyframes overlayLogoIn {
  from { opacity: 0; transform: scale(0.72); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes overlayLogoGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(232,121,249,0.35)); }
  50% { filter: drop-shadow(0 0 42px rgba(232,121,249,0.8)) drop-shadow(0 0 70px rgba(124,58,237,0.5)); }
}
@keyframes overlayNameIn {
  from { opacity: 0; letter-spacing: 0.22em; }
  to   { opacity: 1; letter-spacing: 0.1em; }
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(50px, 35px) scale(1.06); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  55% { transform: translate(-45px, -28px) scale(1.04); }
}

/* Intro hint + CTA — shown at bottom of overlay */
.overlay-hint {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  pointer-events: auto;
  transition: opacity 0.3s ease;
  text-align: center;
}
.overlay-hint-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--c-text-light);
  margin: 0;
}
.overlay-enter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--r-btn);
  border: 1px solid rgba(91,33,182,0.18);
  background: linear-gradient(135deg, #5b21b6 0%, #4c1d95 100%);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--sh-sm);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.overlay-enter-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}
.overlay-enter-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.overlay-enter-btn:focus-visible,
.hamburger:focus-visible,
.faq-tab:focus-visible,
.faq-question:focus-visible,
.floating-cta-btn:focus-visible {
  outline: 3px solid rgba(91,33,182,0.35);
  outline-offset: 3px;
}
.overlay-hint-arrow {
  color: var(--c-text-light);
  animation: hintBounce 1.6s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ─── 35. FAQ ACCORDION ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
  transition: background var(--dur) var(--ease);
}
.faq-item:last-child { border-bottom: none; }
.faq-item.open { background: var(--c-navy-tint); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-6) var(--sp-8);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--dur) var(--ease);
}
.faq-item.open .faq-question { color: var(--c-navy); }
.faq-question-icon {
  width: 24px; height: 24px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: all 0.2s var(--ease);
}
.faq-item.open .faq-question-icon {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  padding-inline: var(--sp-8);
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: var(--sp-6); }
.faq-answer p {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: 1.8;
  margin: 0;
}
.faq-tabs {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 0;
}
.faq-tab {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s var(--ease);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: 'Inter', sans-serif;
  position: relative;
}
.faq-tab.active { color: var(--c-navy); border-bottom-color: transparent; }
.faq-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: var(--sp-5); right: var(--sp-5);
  height: 2.5px;
  background: linear-gradient(90deg, #e879f9, #5b21b6);
  border-radius: var(--r-full);
}
.faq-panel { display: none; }
.faq-panel.active { display: block; }

/* ─── 36. SECTION FIXES ─── */
.section-alt   { background: var(--c-bg-alt); }
.section-white { background: var(--c-surface); }

/* ─── 38. PROFILES GRID EXPANDED ─── */
.profiles-grid-lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.profile-tag {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
  transition: all var(--dur) var(--ease);
}
.profile-tag:hover { border-color: var(--c-navy); background: var(--c-navy-tint); color: var(--c-navy); }
.profile-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}
.profiles-categories {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}
.profile-category h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-light);
  margin-bottom: var(--sp-4);
}

/* ─── 39. APPROACH LIST ─── */
.approach-item h5 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-1);
}
.approach-item p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── 40. STATS ROW ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--sp-12);
}
.stat-item {
  background: var(--c-surface);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}
.stat-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: var(--fs-4xl);
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ─── 41. RESPONSIVE UPDATES v2 ─── */
@media (max-width: 1024px) {
  .profiles-grid-lg { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .profiles-grid-lg { grid-template-columns: 1fr; }
  .faq-question { padding: var(--sp-5) var(--sp-5); }
  .faq-answer { padding-inline: var(--sp-5); }
  .logo-overlay-svg { width: min(85vw, 85vh); }
}

/* ─── 42. PM2 ROLE MODAL ─── */
.pm2-card { cursor: pointer; }
.pm2-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 5, 40, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.pm2-overlay.open { opacity: 1; pointer-events: all; }
.pm2-modal-card {
  background: #fff;
  border-radius: 20px;
  width: min(580px, 100%);
  max-height: min(700px, 88vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10, 0, 30, 0.45);
  transform: translateY(28px) scale(0.96);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.28s ease;
}
.pm2-overlay.open .pm2-modal-card { transform: translateY(0) scale(1); opacity: 1; }
.pm2-modal-header {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden; flex-shrink: 0;
}
.pm2-modal-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 72% 28%, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.pm2-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; z-index: 2;
  transition: background 0.18s ease; flex-shrink: 0;
}
.pm2-modal-close:hover { background: rgba(255,255,255,0.42); }
.pm2-modal-content {
  padding: 28px 32px 36px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}
.pm2-modal-cat-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 4px 12px; border-radius: var(--r-full);
  margin-bottom: 14px;
}
.pm2-modal-card[data-modal-cat="support"]    .pm2-modal-cat-tag { background: #dbeafe; color: #1d4ed8; }
.pm2-modal-card[data-modal-cat="systemes"]   .pm2-modal-cat-tag { background: #ede9fe; color: #5b21b6; }
.pm2-modal-card[data-modal-cat="reseaux"]    .pm2-modal-cat-tag { background: #d1fae5; color: #065f46; }
.pm2-modal-card[data-modal-cat="management"] .pm2-modal-cat-tag { background: #f3e8ff; color: #6b21a8; }
.pm2-modal-role-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  color: var(--c-text); margin-bottom: 10px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.pm2-modal-lead {
  font-size: var(--fs-base); color: var(--c-text-muted);
  line-height: 1.72; margin-bottom: 24px;
  border-bottom: 1px solid var(--c-border); padding-bottom: 22px;
}
.pm2-modal-sec {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c-text-light); margin: 0 0 10px;
}
.pm2-modal-missions {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 7px;
}
.pm2-modal-missions li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--fs-sm); color: var(--c-text); line-height: 1.55;
}
.pm2-modal-missions li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}
.pm2-modal-card[data-modal-cat="support"]    .pm2-modal-missions li::before { background: #3b82f6; }
.pm2-modal-card[data-modal-cat="systemes"]   .pm2-modal-missions li::before { background: #7c3aed; }
.pm2-modal-card[data-modal-cat="reseaux"]    .pm2-modal-missions li::before { background: #059669; }
.pm2-modal-card[data-modal-cat="management"] .pm2-modal-missions li::before { background: #9333ea; }
.pm2-modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.pm2-modal-tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--r-full);
  background: var(--c-bg-alt); border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.pm2-modal-levels { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 28px; }
.pm2-modal-level {
  font-size: 11px; font-weight: 700;
  padding: 5px 13px; border-radius: var(--r-full); color: #fff;
}
.pm2-modal-card[data-modal-cat="support"]    .pm2-modal-level { background: #3b82f6; }
.pm2-modal-card[data-modal-cat="systemes"]   .pm2-modal-level { background: #7c3aed; }
.pm2-modal-card[data-modal-cat="reseaux"]    .pm2-modal-level { background: #059669; }
.pm2-modal-card[data-modal-cat="management"] .pm2-modal-level { background: #9333ea; }
.pm2-modal-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--r-full);
  background: var(--c-navy); color: #fff;
  font-size: var(--fs-sm); font-weight: 700; text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pm2-modal-cta:hover { background: var(--c-gold); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,33,182,0.3); }
@media (max-width: 640px) {
  .pm2-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .pm2-modal-card {
    width: 100%;
    max-height: 88svh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .pm2-overlay.open .pm2-modal-card {
    transform: translateY(0) scale(1);
  }
  .pm2-modal-header { height: 140px; }
  .pm2-modal-content { padding: 20px 20px 32px; }
}

/* ─── 43. SCROLL PROGRESS & BACK TO TOP ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, #e879f9, #a855f7, #5b21b6);
  z-index: 1001;
  transition: width 0.1s linear;
  pointer-events: none;
}
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  pointer-events: none;
  z-index: 805;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { border-color: var(--c-navy); background: var(--c-navy-tint); }
@media (max-width: 768px) { .back-to-top { bottom: 90px; right: var(--sp-4); } }

/* ─── 44. PAGE TRANSITIONS ─── */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
main#main-content { animation: pageFadeIn 0.3s var(--ease) both; }

/* ─── 45. HERO RING ANIMATIONS ─── */
@keyframes heroRingDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  40% { transform: translate(-30px, 20px) scale(1.05); opacity: 0.7; }
  70% { transform: translate(15px, -10px) scale(0.96); opacity: 1; }
}
@keyframes heroRingDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  35% { transform: translate(20px, -15px) scale(1.08); opacity: 0.6; }
  65% { transform: translate(-10px, 25px) scale(0.95); opacity: 1; }
}

/* ─── 46. STAGGER REVEALS ─── */
.js-stagger .why-card,
.js-stagger .reassurance-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}
.js-stagger .why-card.card-visible,
.js-stagger .reassurance-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 47. UX POLISH ─── */
::selection { background: rgba(192,132,252,0.28); color: var(--c-navy); }
:focus-visible { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #7c3aed; border-radius: var(--r-sm); }
.btn-primary:focus-visible,
.btn-ghost:focus-visible { box-shadow: 0 0 0 2px #fff, 0 0 0 4px #e879f9; }
@keyframes gradientShift {
  from { background-position: 0% 50%; }
  to   { background-position: 300% 50%; }
}

/* ─── 48. BUTTON RIPPLE ─── */
.btn-primary { overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  background: rgba(255,255,255,0.28);
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ─── 49. FORM FOCUS LINE ─── */
.form-group { position: relative; }
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #e879f9, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: var(--r-full);
  pointer-events: none;
}
.form-group:focus-within::after { transform: scaleX(1); }

/* ─── 50. APPROACH STAGGER ─── */
.js-stagger .approach-item {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-stagger .approach-item.card-visible { opacity: 1; transform: translateX(0); }

/* ─── 51. SECTION DOTS ─── */
.section-dots {
  position: fixed;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 700;
}
.section-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(91,33,182,0.18);
  border: 1.5px solid rgba(91,33,182,0.28);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.section-dot.active { background: var(--c-navy); border-color: var(--c-navy); transform: scale(1.4); }
.section-dot:hover { background: var(--c-navy); border-color: var(--c-navy); }
.section-dot[data-label]::before {
  content: attr(data-label);
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  background: var(--c-surface);
  color: var(--c-text);
  font-size: 11px; font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: var(--sh-sm);
}
.section-dot:hover::before { opacity: 1; }
/* Dark-section variant (auto-toggled by JS) */
.section-dots.on-dark .section-dot {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
}
.section-dots.on-dark .section-dot.active {
  background: #fff;
  border-color: #fff;
}
.section-dots.on-dark .section-dot:hover {
  background: #fff;
  border-color: #fff;
}
.section-dots.on-dark .section-dot[data-label]::before {
  background: rgba(15,5,40,0.92);
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.1);
}
@media (max-width: 1024px) { .section-dots { display: none; } }

/* ─── 52. ROTATING GRADIENT BORDER ─── */
@property --ba {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes cardBorderSpin { to { --ba: 360deg; } }

@media (prefers-reduced-motion: reduce) {
  main#main-content { animation: none; }
  .hero h1 em { animation: none; }
  .reassurance-card { animation: none; }
  .logo-overlay-svg, .logo-overlay-name { animation: none; }
  .logo-overlay::before, .logo-overlay::after { animation: none; }
  .hero::before, .hero::after { animation: none; }
  .js-stagger .why-card, .js-stagger .reassurance-card,
  .js-stagger .approach-item { transition: none; }
  .form-group::after { transition: none; }
  .expertise-block::before, .expertise-block::after { animation: none; }
  .word-inner { transition: none; }
}

/* ─── 53. CURSOR SPOTLIGHT ─── */
.cursor-spotlight {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: radial-gradient(600px circle at var(--cx,-9999px) var(--cy,-9999px), rgba(124,58,237,0.055) 0%, transparent 70%);
}
.cursor-spotlight.active { opacity: 1; }

/* ─── 54. AURORA EXPERTISE-BLOCK ─── */
@keyframes aurora1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(80px,40px) scale(1.12)} }
@keyframes aurora2 { 0%,100%{transform:translate(0,0) scale(1)} 60%{transform:translate(-60px,-30px) scale(0.9)} }
.expertise-block { position: relative; overflow: hidden; }
.expertise-block::before {
  content:''; position:absolute; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(ellipse 500px 400px at 8% 55%, rgba(232,121,249,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 88% 18%, rgba(124,58,237,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 400px 350px at 55% 88%, rgba(168,85,247,0.14) 0%, transparent 60%);
  animation: aurora1 14s ease-in-out infinite;
}
.expertise-block::after {
  content:''; position:absolute; inset:0; pointer-events:none; z-index:0;
  background: radial-gradient(ellipse 700px 450px at 50% 45%, rgba(196,92,252,0.1) 0%, transparent 70%);
  animation: aurora2 20s ease-in-out infinite;
}
.expertise-block > .container { position: relative; z-index: 1; }

/* ─── 55. WORD REVEAL ─── */
.word-wrap  { overflow: hidden; display: inline-block; vertical-align: bottom; }
.word-inner {
  display: inline-block;
  transform: translateY(110%); opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), opacity 0.45s ease;
}
.word-inner.revealed { transform: translateY(0); opacity: 1; }

/* ─── 57. MOBILE UX ─── */

/* Touch baseline */
a, button, [role="button"], label,
.nav-link, .faq-tab, .faq-question, .pm2-card { -webkit-tap-highlight-color: transparent; }
a, button, input, select, textarea, label { touch-action: manipulation; }

/* Hamburger — 44 × 44 px tap target */
.hamburger { width: 44px; height: 44px; padding: 4px; }

/* Animated mobile menu */
@media (max-width: 768px) {
  .mobile-menu {
    display: flex !important;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.22s ease, visibility 0s linear 0.3s;
    background: rgba(249,248,252,0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(200,192,240,0.22);
  }
  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.22s ease;
  }
  .mobile-menu .nav-link { font-size: var(--fs-lg); padding: 15px var(--sp-1); font-weight: 500; }
  .mobile-menu .btn-primary { font-size: var(--fs-base); width: 100%; justify-content: center; }
}

/* Safe area insets — iPhone notch / Dynamic Island / home bar */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .header-inner {
    padding-left:  max(var(--sp-8), env(safe-area-inset-left));
    padding-right: max(var(--sp-8), env(safe-area-inset-right));
  }
  .mobile-menu {
    padding-bottom: calc(var(--sp-6) + env(safe-area-inset-bottom));
    padding-left:   max(var(--sp-5), env(safe-area-inset-left));
    padding-right:  max(var(--sp-5), env(safe-area-inset-right));
  }
  .floating-cta {
    bottom: calc(28px + env(safe-area-inset-bottom));
    right:  calc(28px + env(safe-area-inset-right));
  }
  .back-to-top {
    bottom: calc(96px + env(safe-area-inset-bottom));
    right:  calc(28px + env(safe-area-inset-right));
  }
  @media (max-width: 768px) {
    .floating-cta { bottom: calc(16px + env(safe-area-inset-bottom)); right: calc(16px + env(safe-area-inset-right)); }
    .back-to-top  { bottom: calc(80px + env(safe-area-inset-bottom)); right: calc(16px + env(safe-area-inset-right)); }
  }
}

/* No-hover (touch) device overrides */
@media (hover: none) and (pointer: coarse) {
  .cursor-spotlight { display: none !important; }

  /* Cards — static gradient border since hover doesn't fire on touch */
  .reassurance-card {
    background:
      linear-gradient(var(--c-surface), var(--c-surface)) padding-box,
      linear-gradient(135deg, rgba(232,121,249,0.22), rgba(124,58,237,0.22)) border-box;
    animation: none;
  }

  /* Touch active feedback */
  .btn-primary:active { opacity: 0.82; transform: scale(0.97) !important; }
  .btn-ghost:active   { opacity: 0.65; }
  .nav-link:active    { opacity: 0.55; }
  .why-card:active    { background: var(--c-bg); }
  .choice-card:active { transform: scale(0.99); box-shadow: var(--sh-md); }
  .pm2-card:active    { transform: translateY(-2px) !important; }
  .dat-card:active    { background: var(--c-bg); }

  /* Kill hover states that can get stuck on touch */
  .why-card:hover          { box-shadow: none; }
  .dat-card:hover          { box-shadow: none; }
  .reassurance-card:hover  { transform: none; box-shadow: none; }
  .expertise-item:active   { background: rgba(255,255,255,0.06); }
}

/* iPhone SE / small Android */
@media (max-width: 375px) {
  :root { --fs-5xl: 1.9rem; --fs-4xl: 1.65rem; }
  .container { padding-inline: var(--sp-4); }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { font-size: var(--fs-sm); }
}

