/* =============================================
   ASTENN RH — CSS v2.1
   Police : Neue Montreal (locale)
   ============================================= */

/* ── @font-face ── */
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/Neue_Montreal_Regular.woff2') format('woff2'),
       url('../fonts/Neue_Montreal_Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/Neue_Montreal.woff2') format('woff2'),
       url('../fonts/Neue_Montreal.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/Neue_Montreal_Medium.woff2') format('woff2'),
       url('../fonts/Neue_Montreal_Medium.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/Neue_Montreal_Bold.woff2') format('woff2'),
       url('../fonts/Neue_Montreal_Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* 800/900 → on utilise Bold avec font-synthesis */
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/Neue_Montreal_Bold.woff2') format('woff2'),
       url('../fonts/Neue_Montreal_Bold.woff') format('woff');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --cream:  #F5F0E8;
  --dark:   #1a1a1a;
  --pink:   #FF4B6E;
  --coral:  #FF6B35;
  --purple: #8B2FC9;
  --orange: #F97316;
  --grad:   linear-gradient(135deg, #FF4B6E 0%, #C026D3 50%, #7C3AED 100%);
  --grad-h: linear-gradient(90deg,  #FF4B6E 0%, #C026D3 50%, #7C3AED 100%);
  --font:   'Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* WordPress cleanup */
.entry-content, .page-content { max-width: none !important; padding: 0 !important; margin: 0 !important; }
p { margin: 0; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--grad);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-brand { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo {
  color: #fff; font-size: 22px; font-weight: 700;
  letter-spacing: -0.3px; line-height: 1; text-decoration: none; display: block;
}
.nav-logo strong { font-weight: 700; }
.nav-sub { color: rgba(255,255,255,0.65); font-size: 10px; letter-spacing: 0.8px; margin-top: 2px; font-weight: 400; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  border: 2px solid rgba(255,255,255,0.85) !important;
  padding: 9px 18px !important; border-radius: 6px !important;
  font-weight: 700 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.15) !important; }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-burger span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: var(--grad);
  display: flex; flex-direction: column;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.nav-mobile.open { max-height: 400px; padding: 16px 0 24px; }
.nav-mobile a { color: #fff; text-decoration: none; font-size: 16px; font-weight: 600; padding: 12px 32px; }
.nav-mobile a:hover { background: rgba(255,255,255,0.1); }
.nav-cta-mobile { margin: 8px 32px 0 !important; border: 2px solid rgba(255,255,255,0.8); border-radius: 6px; text-align: center; padding: 12px 32px !important; }

/* ══════════════════════════════════════════
   HERO — fidèle à la maquette Canva
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 100px 120px;
  position: relative;
  overflow: hidden;
}

/* Cercle décoratif arrière-plan */
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -8%;
  width: 700px; height: 700px;
  background: rgba(255,255,255,0.035);
  border-radius: 50%;
  pointer-events: none;
}

/* Vague crème en bas */
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: var(--cream);
  clip-path: ellipse(70% 100% at 50% 100%);
  pointer-events: none;
}

.hero-tag {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(44px, 5.8vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.5px;
  max-width: 860px;
  margin-bottom: 0;
}

/* Ligne dégradée sous le H1 — comme dans la maquette */
.hero-line {
  display: block;
  width: 480px;
  max-width: 100%;
  height: 4px;
  margin: 18px 0 32px;
  background: var(--grad-h);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-sub {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  font-weight: 400;
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-sub strong { color: #fff; font-weight: 700; }

/* Bouton hero */
.hero .btn-primary {
  font-size: 16px;
  padding: 16px 32px;
  background: var(--coral);
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* Stats row */
.hero-stats {
  display: flex;
  gap: 64px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-val {
  display: block;
  color: var(--coral);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stat-label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 400;
  margin-top: 6px;
}

/* ══════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════ */
.btn-primary {
  display: inline-block; background: var(--coral); color: #fff;
  padding: 16px 32px; border-radius: 6px; font-size: 16px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); color: #fff; }
.btn-center { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════════
   ÉLÉMENTS COMMUNS
══════════════════════════════════════════ */
.section-tag {
  display: block; color: var(--coral); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.8px; margin-bottom: 6px;
}
.section-title em { font-style: normal; color: var(--pink); }
.title-line { width: 80px; height: 4px; background: var(--grad-h); border-radius: 2px; margin: 18px 0 44px; }
.title-line.center { margin-left: auto; margin-right: auto; }
.section-lead { font-size: 17px; color: #555; max-width: 580px; line-height: 1.65; margin-bottom: 52px; font-weight: 400; }

/* ══════════════════════════════════════════
   ENJEUX RH
══════════════════════════════════════════ */
.enjeux-intro { background: var(--cream); padding: 80px 100px 0; text-align: center; }
.enjeux-intro .section-title { text-align: center; }
.enjeux-banner {
  display: block; background: #9333EA; color: #fff; text-align: center;
  padding: 13px 40px; font-size: 15px; font-weight: 600;
  border-radius: 6px; max-width: 680px; margin: 0 auto 32px;
}
.enjeux-intro-text { font-size: 16px; color: #555; max-width: 520px; margin: 0 auto 56px; line-height: 1.65; font-weight: 400; }
.enjeux-grid-wrap { background: var(--cream); padding: 0 100px 60px; }
.enjeux-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.enjeux-card { background: #fff; border-radius: 12px; padding: 26px 22px; border-left: 5px solid var(--purple); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.enjeux-card-title { display: inline-block; color: #fff; background: var(--purple); padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; }
.enjeux-card ul { list-style: none; padding: 0; }
.enjeux-card ul li { font-size: 13px; color: #444; padding: 7px 0; border-bottom: 1px solid #f2f2f2; line-height: 1.45; font-weight: 400; }
.enjeux-card ul li:last-child { border-bottom: none; }
.enjeux-card ul li::before { content: "· "; color: var(--purple); font-weight: 700; }
.enjeux-footer-bar { background: var(--purple); color: #fff; text-align: center; padding: 28px 100px; font-size: 15px; line-height: 1.65; font-weight: 400; }

/* ══════════════════════════════════════════
   ACCOMPAGNEMENTS
══════════════════════════════════════════ */
.accomp { background: #fff; padding: 90px 100px; }
.accomp-main {
  background: #fff; border: 1.5px solid #E8E0D0; border-radius: 12px;
  padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  margin-bottom: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.accomp-main-left h3 { font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.accomp-main-left p { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 18px; font-weight: 400; }
.accomp-main-left p strong { color: var(--coral); font-weight: 600; }
.lien { color: var(--coral); font-weight: 600; font-size: 14px; text-decoration: none; transition: opacity 0.2s; display: inline-block; }
.lien:hover { opacity: 0.75; }
.lien.purple { color: var(--purple); }
.accomp-main-right ul { list-style: none; padding: 0; }
.accomp-main-right ul li { padding: 13px 0; border-bottom: 1px solid #f2f2f2; font-size: 14px; color: #333; display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; font-weight: 400; }
.accomp-main-right ul li:last-child { border-bottom: none; }
.arrow { color: var(--coral); font-size: 10px; margin-top: 3px; flex-shrink: 0; }
.bridge-banner { display: block; background: var(--coral); color: #fff; text-align: center; padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-bottom: 28px; }
.accomp-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.accomp-sub-card { border: 1.5px solid #E8E0D0; border-radius: 12px; padding: 32px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.accomp-sub-card.left { border-left: 5px solid var(--coral); }
.accomp-sub-card.right { border-left: 5px solid var(--purple); }
.accomp-sub-card h3 { font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.sub-tag { font-size: 13px; margin-bottom: 18px; font-weight: 600; display: block; }
.sub-tag.orange { color: var(--coral); }
.sub-tag.purple { color: var(--purple); }
.accomp-sub-card ul { list-style: none; padding: 0; }
.accomp-sub-card ul li { font-size: 13px; color: #444; padding: 9px 0; border-bottom: 1px solid #f2f2f2; display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; font-weight: 400; }
.accomp-sub-card ul li:last-child { border-bottom: none; }
.accomp-sub-card.left ul li::before { content: "▶"; color: var(--coral); font-size: 9px; margin-top: 3px; flex-shrink: 0; }
.accomp-sub-card.right ul li::before { content: "▶"; color: var(--purple); font-size: 9px; margin-top: 3px; flex-shrink: 0; }
.accomp-sub-card small { display: block; margin-top: 14px; font-size: 12px; color: #999; font-style: italic; line-height: 1.5; }

/* ══════════════════════════════════════════
   POUR QUI
══════════════════════════════════════════ */
.pourqui { background: var(--cream); padding: 90px 100px; }
.pourqui-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pourqui-card { background: #fff; border-radius: 12px; padding: 28px 32px; display: grid; grid-template-columns: 1fr 100px; align-items: center; gap: 28px; border-left: 5px solid var(--coral); box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform 0.2s; }
.pourqui-card:hover { transform: translateX(4px); }
.pourqui-card:nth-child(2) { border-left-color: var(--pink); }
.pourqui-card:nth-child(3) { border-left-color: var(--orange); }
.pourqui-card:nth-child(4) { border-left-color: var(--purple); }
.pourqui-card:nth-child(5) { border-left-color: #7C3AED; }
.pourqui-tag { display: inline-block; background: var(--coral); color: #fff; padding: 5px 14px; border-radius: 4px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.pourqui-card:nth-child(2) .pourqui-tag { background: var(--pink); }
.pourqui-card:nth-child(3) .pourqui-tag { background: var(--orange); }
.pourqui-card:nth-child(4) .pourqui-tag { background: var(--purple); }
.pourqui-card:nth-child(5) .pourqui-tag { background: #7C3AED; }
.pourqui-card p { font-size: 14px; color: #555; line-height: 1.65; font-weight: 400; }
.pourqui-cta { display: block; color: var(--coral); font-weight: 600; font-size: 13px; margin-top: 10px; }
.pourqui-card:nth-child(2) .pourqui-cta { color: var(--pink); }
.pourqui-card:nth-child(3) .pourqui-cta { color: var(--orange); }
.pourqui-card:nth-child(4) .pourqui-cta { color: var(--purple); }
.pourqui-card:nth-child(5) .pourqui-cta { color: #7C3AED; }
.pourqui-img { width: 100%; max-width: 90px; height: auto; opacity: 0.85; }

/* ══════════════════════════════════════════
   METHODE
══════════════════════════════════════════ */
.methode { background: #fff; padding: 90px 100px; }
.methode-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.methode-steps { display: flex; flex-direction: column; gap: 20px; }
.step-card { background: var(--cream); border-radius: 12px; padding: 30px 32px; border-top: 4px solid var(--coral); position: relative; }
.step-card::after { content: ''; position: absolute; left: 40px; bottom: -20px; width: 2px; height: 20px; background: var(--coral); opacity: 0.3; }
.step-card:last-child::after { display: none; }
.step-num { display: block; color: var(--coral); font-size: 36px; font-weight: 700; letter-spacing: -1px; line-height: 1; }
.step-card h3 { font-size: 18px; font-weight: 700; margin: 10px 0 12px; }
.step-card p { font-size: 14px; color: #555; line-height: 1.65; font-weight: 400; }
.methode-side { position: sticky; top: 88px; }
.methode-cta-card { background: var(--cream); border: 2px solid var(--coral); border-radius: 12px; padding: 32px; text-align: center; }
.methode-cta-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.methode-cta-card p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 24px; font-weight: 400; }

/* ══════════════════════════════════════════
   VISION
══════════════════════════════════════════ */
.vision { background: var(--cream); padding: 90px 100px; text-align: center; }
.vision h2 { font-size: clamp(40px, 5vw, 60px); font-weight: 700; letter-spacing: -1px; margin-bottom: 10px; line-height: 1.05; }
.vision-quote { display: inline-block; background: var(--orange); color: #fff; border-radius: 8px; padding: 18px 36px; font-size: 17px; font-weight: 500; margin-bottom: 44px; line-height: 1.55; max-width: 820px; }
.vision-text { display: block; font-size: 16px; color: #555; max-width: 680px; margin: 0 auto; line-height: 1.7; font-weight: 400; }

/* ══════════════════════════════════════════
   A PROPOS
══════════════════════════════════════════ */
.apropos { background: #fff; padding: 90px 100px; }
.apropos-tagline { display: block; background: var(--grad); border-radius: 8px; padding: 15px 28px; text-align: center; color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 52px; }
.apropos-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.apropos-left p { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 18px; font-weight: 400; }
.apropos-left p strong { color: var(--dark); font-weight: 700; }
.founder-block { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #f0f0f0; }
.founder-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--cream); box-shadow: 0 0 0 3px var(--coral); flex-shrink: 0; }
.founder-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.founder-name { font-weight: 700; font-size: 15px; display: block; }
.founder-role { font-size: 13px; color: #888; margin-top: 2px; display: block; font-weight: 400; }
.conv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.conv-item { background: var(--cream); border-radius: 12px; padding: 20px; border-top: 3px solid var(--coral); transition: transform 0.2s; }
.conv-item:hover { transform: translateY(-2px); }
.conv-item:nth-child(even) { border-top-color: var(--purple); }
.conv-num { display: block; font-size: 26px; font-weight: 700; color: var(--coral); line-height: 1; }
.conv-item:nth-child(even) .conv-num { color: var(--purple); }
.conv-item h4 { font-size: 13px; font-weight: 700; margin: 6px 0 8px; }
.conv-item p { font-size: 12px; color: #666; line-height: 1.45; font-weight: 400; }

/* ══════════════════════════════════════════
   CAS CLIENTS
══════════════════════════════════════════ */
.cas { background: var(--cream); padding: 90px 100px; }
.cas .section-title { text-align: center; }
.cas-list { display: grid; grid-template-columns: 1fr; gap: 28px; }
.cas-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 16px rgba(0,0,0,0.07); }
.cas-header { padding: 11px 24px; font-size: 12px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; }
.cas-card:nth-child(1) .cas-header { background: var(--coral); }
.cas-card:nth-child(2) .cas-header { background: var(--purple); }
.cas-card:nth-child(3) .cas-header { background: var(--orange); }
.cas-card:nth-child(4) .cas-header { background: var(--pink); }
.cas-card:nth-child(5) .cas-header { background: #9333EA; }
.cas-body { padding: 24px 28px; }
.cas-who { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cas-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.cas-card:nth-child(1) .cas-avatar { background: var(--coral); }
.cas-card:nth-child(2) .cas-avatar { background: var(--purple); }
.cas-card:nth-child(3) .cas-avatar { background: var(--orange); }
.cas-card:nth-child(4) .cas-avatar { background: var(--pink); }
.cas-card:nth-child(5) .cas-avatar { background: #9333EA; }
.cas-name { font-weight: 700; font-size: 15px; display: block; }
.cas-role { font-size: 12px; color: #999; margin-top: 2px; display: block; font-weight: 400; }
.cas-body blockquote { font-size: 14px; color: #444; line-height: 1.65; font-style: italic; border-left: 3px solid #e8e0d8; padding-left: 16px; margin-bottom: 20px; font-weight: 400; }
.cas-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cas-metric { border-radius: 10px; padding: 14px 12px; text-align: center; }
.cas-card:nth-child(1) .cas-metric { background: #FFF5F0; }
.cas-card:nth-child(2) .cas-metric { background: #F7F0FF; }
.cas-card:nth-child(3) .cas-metric { background: #FFF8EE; }
.cas-card:nth-child(4) .cas-metric { background: #FFF0F3; }
.cas-card:nth-child(5) .cas-metric { background: #F5F0FF; }
.cas-metric-label { display: block; font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; font-weight: 500; }
.cas-metric-val { display: block; font-size: 19px; font-weight: 700; }
.cas-card:nth-child(1) .cas-metric-val { color: var(--coral); }
.cas-card:nth-child(2) .cas-metric-val { color: var(--purple); }
.cas-card:nth-child(3) .cas-metric-val { color: var(--orange); }
.cas-card:nth-child(4) .cas-metric-val { color: var(--pink); }
.cas-card:nth-child(5) .cas-metric-val { color: #9333EA; }
.cas-metric-sub { display: block; font-size: 11px; color: #777; margin-top: 3px; font-weight: 400; }

/* ══════════════════════════════════════════
   CONTACT + CF7
══════════════════════════════════════════ */
.contact-section { background: var(--grad); padding: 90px 100px; text-align: center; color: #fff; }
.contact-section h2 { font-size: clamp(36px, 4.5vw, 54px); font-weight: 700; margin-bottom: 18px; letter-spacing: -1px; }
.contact-section .title-line { background: rgba(255,255,255,0.35); margin: 16px auto 28px; }
.contact-intro { display: block; font-size: 16px; opacity: 0.85; max-width: 500px; margin: 0 auto 52px; line-height: 1.65; font-weight: 400; }
.contact-form-wrap { max-width: 620px; margin: 0 auto; text-align: left; }

/* CF7 reskin */
.contact-form-wrap .wpcf7-form { display: flex; flex-direction: column; }
.cf7-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.cf7-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.contact-form-wrap label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); display: block; margin-bottom: 7px; font-family: var(--font); }
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100%; background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 8px; padding: 13px 16px; color: #fff;
  font-family: var(--font); font-size: 14px; outline: none;
  transition: border-color 0.2s, background 0.2s; font-weight: 400;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.22); }
.contact-form-wrap textarea { resize: vertical; }
.contact-form-wrap .wpcf7-checkbox .wpcf7-list-item { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; }
.contact-form-wrap .wpcf7-checkbox .wpcf7-list-item label { margin: 0; font-size: 14px; font-weight: 400; }
.contact-form-wrap .wpcf7-checkbox input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--coral); flex-shrink: 0; cursor: pointer; }
.contact-form-wrap .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.contact-form-wrap .wpcf7-acceptance label { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; font-weight: 400; }
.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  width: 100%; background: var(--coral); color: #fff; border: none;
  border-radius: 8px; padding: 17px; font-size: 16px; font-weight: 700;
  cursor: pointer; margin-top: 16px; font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.wpcf7-response-output {
  color: #fff !important; border-radius: 8px !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  padding: 14px 18px !important; margin-top: 16px !important;
  font-family: var(--font) !important; font-size: 14px !important;
  background: rgba(255,255,255,0.12) !important;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #181818; color: #fff;
  padding: 52px 100px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr; gap: 48px; align-items: start;
}
.footer-logo { font-size: 22px; font-weight: 700; color: #fff; text-decoration: none; display: block; }
.footer-tagline { font-size: 12px; color: #777; margin-top: 4px; font-weight: 400; }
.footer-desc { font-size: 13px; color: #666; margin-top: 20px; line-height: 1.55; font-weight: 400; }
.footer-col h5 { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: #ccc; }
.footer-col a { display: block; font-size: 13px; color: #666; text-decoration: none; margin-bottom: 9px; transition: color 0.2s; font-weight: 400; }
.footer-col a:hover { color: #fff; }
.linkedin-icon { display: inline-flex; width: 38px; height: 38px; background: #0077B5; border-radius: 8px; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; transition: background 0.2s; }
.linkedin-icon:hover { background: #005fa3; color: #fff; }
.footer-bottom { background: #111; padding: 18px 100px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #555; font-weight: 400; }
.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: #999; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .site-nav { padding: 0 40px; }
  .hero, .accomp, .pourqui, .methode, .vision, .apropos, .cas,
  .contact-section, .site-footer, .enjeux-intro, .enjeux-grid-wrap { padding-left: 40px; padding-right: 40px; }
  .enjeux-footer-bar { padding-left: 40px; padding-right: 40px; }
  .footer-bottom { padding-left: 40px; padding-right: 40px; }
  .site-footer { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 108px 24px 100px; }
  .hero h1 { font-size: 36px; letter-spacing: -0.5px; }
  .hero-stats { flex-direction: column; gap: 20px; margin-top: 32px; padding-top: 28px; }
  .hero-stat-val { font-size: 32px; }
  .hero-line { width: 200px; }
  .enjeux-intro { padding: 60px 20px 0; }
  .enjeux-grid-wrap { padding: 0 20px 40px; }
  .enjeux-grid { grid-template-columns: 1fr 1fr; }
  .enjeux-footer-bar { padding: 24px 20px; }
  .accomp, .pourqui, .methode, .vision, .apropos, .cas, .contact-section { padding: 60px 20px; }
  .accomp-main { grid-template-columns: 1fr; }
  .accomp-sub { grid-template-columns: 1fr; }
  .pourqui-card { grid-template-columns: 1fr; }
  .pourqui-img { display: none; }
  .methode-layout { grid-template-columns: 1fr; }
  .methode-side { position: static; }
  .apropos-layout { grid-template-columns: 1fr; gap: 40px; }
  .conv-grid { grid-template-columns: 1fr 1fr; }
  .cas-metrics { grid-template-columns: 1fr; }
  .cf7-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 20px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .enjeux-grid { grid-template-columns: 1fr; }
  .conv-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}
