/* ============================================
   FORUM-EMPLOI.FR — Design System 2025
   ============================================ */

:root {
  --primary-dark: #0F2B6B;
  --primary:      #1B4DDB;
  --primary-light:#3B7BFF;
  --amber:        #F59E0B;
  --amber-dark:   #D97706;
  --green:        #10B981;
  --purple:       #8B5CF6;
  --red:          #EF4444;

  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --white:    #FFFFFF;

  --font-heading: 'Raleway', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  --shadow-xs: 0 1px 3px rgba(15,43,107,.06), 0 1px 2px rgba(15,43,107,.04);
  --shadow-sm: 0 4px 12px rgba(15,43,107,.08);
  --shadow-md: 0 8px 32px rgba(15,43,107,.12);
  --shadow-lg: 0 20px 64px rgba(15,43,107,.16);
  --shadow-xl: 0 32px 96px rgba(15,43,107,.22);

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-in:  cubic-bezier(.4,0,1,1);
  --duration: .25s;

  --max-w: 1200px;
  --nav-h: 76px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.75; }

.text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white p { color: var(--white); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ── SECTION HEADER ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(27,77,219,.1);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-label.amber { color: var(--amber-dark); background: rgba(245,158,11,.12); }
.section-label.green { color: var(--green); background: rgba(16,185,129,.12); }
.section-label.white { color: rgba(255,255,255,.9); background: rgba(255,255,255,.15); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.75;
}
.section-desc.white { color: rgba(255,255,255,.8); max-width: 100%; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--r-full);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,77,219,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(27,77,219,.45);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber);
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.btn-amber:hover {
  background: var(--amber-dark);
  box-shadow: 0 8px 24px rgba(245,158,11,.45);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--duration) var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--gray-200);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card-icon.blue   { background: rgba(27,77,219,.1); }
.card-icon.amber  { background: rgba(245,158,11,.1); }
.card-icon.green  { background: rgba(16,185,129,.1); }
.card-icon.purple { background: rgba(139,92,246,.1); }
.card-icon.red    { background: rgba(239,68,68,.1); }

.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p  { color: var(--gray-500); font-size: .95rem; line-height: 1.7; }

/* ── BADGE / TAG ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: .04em;
}
.badge-blue   { background: rgba(27,77,219,.1); color: var(--primary); }
.badge-amber  { background: rgba(245,158,11,.12); color: #92400E; }
.badge-green  { background: rgba(16,185,129,.12); color: #065F46; }
.badge-purple { background: rgba(139,92,246,.12); color: #5B21B6; }
.badge-gray   { background: var(--gray-100); color: var(--gray-600); }

/* ── NAV ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--duration) var(--ease);
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.98);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo img { height: 40px; width: auto; }
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--primary-dark);
}
.site-logo .logo-text span { color: var(--amber); }

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
#primary-nav a {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--duration) var(--ease);
}
#primary-nav a:hover,
#primary-nav .current-menu-item a {
  color: var(--primary);
  background: rgba(27,77,219,.07);
}
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: var(--r-full) !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 14px rgba(27,77,219,.35) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #162E6E 40%, var(--primary) 100%);
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(59,123,255,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(245,158,11,.12) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.25);
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--amber), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.trust-item .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.5); }
}

/* ── HERO STATS BAND ── */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: 1px solid var(--gray-100);
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: background var(--duration) var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-50); }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num .stat-suffix { font-size: 1.8rem; color: var(--amber); }
.stat-label {
  font-size: .875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(59,123,255,.3) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 580px; line-height: 1.75; }

/* ── FEATURE GRID ── */
.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: transparent;
}
.feature-card .icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.feature-card p  { color: var(--gray-500); font-size: .95rem; line-height: 1.7; }

/* ── FORUM CARDS ── */
.forum-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: all var(--duration) var(--ease);
}
.forum-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.forum-card-top {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 28px;
  position: relative;
}
.forum-card-top .date-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--amber);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 12px;
  border-radius: var(--r-full);
}
.forum-card-top h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.forum-card-top .location {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.forum-card-body { padding: 24px 28px; }
.forum-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.forum-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.forum-card-cta a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration) var(--ease);
}
.forum-card-cta a:hover { gap: 10px; }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .3;
}
.testimonial p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .95rem; color: var(--gray-800); }
.author-role { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }

/* ── STEP INDICATOR ── */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 60px;
  width: 2px;
  height: calc(100% - 12px);
  background: linear-gradient(to bottom, var(--primary-light), transparent);
}
.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27,77,219,.35);
  position: relative;
  z-index: 1;
}
.step-content { padding-top: 10px; }
.step-content h3 { margin-bottom: 8px; }
.step-content p  { color: var(--gray-500); }

/* ── SPLIT CTA ── */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.split-side {
  padding: 64px 56px;
}
.split-side.blue  { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.split-side.dark  { background: linear-gradient(135deg, var(--primary-dark) 0%, #080E2D 100%); }
.split-side h3    { color: var(--white); font-size: 1.6rem; margin-bottom: 14px; }
.split-side p     { color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.75; }
.split-side ul    { margin-bottom: 36px; }
.split-side ul li {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  padding: 8px 0;
  padding-left: 26px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.split-side ul li:last-child { border-bottom: none; }
.split-side ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── NEWSLETTER STRIP ── */
.newsletter-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--r-xl);
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-strip h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-strip p  { color: rgba(255,255,255,.7); }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--duration) var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.15);
}

/* ── ACCENT STRIP ── */
.accent-strip {
  background: linear-gradient(135deg, var(--amber), #FBBF24);
  padding: 20px 0;
}
.accent-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary-dark);
}

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-xs); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  gap: 16px;
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  transition: all var(--duration) var(--ease);
}
.faq-item.open .faq-chevron {
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.75;
}

/* ── CONTACT FORM ── */
.contact-form .wpcf7-form label,
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea,
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--duration) var(--ease);
  margin-bottom: 20px;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27,77,219,.1);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form input[type="submit"],
.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 16px rgba(27,77,219,.35);
}
.contact-form input[type="submit"]:hover,
.contact-form .wpcf7-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,77,219,.45);
}

/* ── CONTACT INFO ── */
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  background: var(--white);
  margin-bottom: 16px;
  transition: all var(--duration) var(--ease);
}
.contact-info-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(27,77,219,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: .95rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a {
  font-size: .9rem;
  color: var(--gray-500);
  transition: color var(--duration);
}
.contact-info-item a:hover { color: var(--primary); }

/* ── REGION CARDS ── */
.region-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--r-lg);
  padding: 32px 28px;
  color: var(--white);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.region-card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.region-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.region-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.region-count {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.region-card p { font-size: .85rem; color: rgba(255,255,255,.65); }
.region-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: 16px;
  transition: gap var(--duration) var(--ease);
}
.region-link:hover { gap: 10px; }

/* ── TEAM CARDS ── */
.team-card {
  text-align: center;
  padding: 40px 28px 32px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration) var(--ease);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.team-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* ── RESOURCE CARDS ── */
.resource-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.resource-card-top {
  padding: 32px 28px 24px;
  flex: 1;
}
.resource-card-top .rtype {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.resource-card-top h3 { font-size: 1.1rem; margin-bottom: 10px; }
.resource-card-top p  { font-size: .9rem; color: var(--gray-500); line-height: 1.7; }
.resource-card-bottom {
  padding: 16px 28px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resource-pages { font-size: .8rem; color: var(--gray-400); }
.resource-download {
  font-size: .875rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration) var(--ease);
}
.resource-download:hover { gap: 10px; color: var(--primary-dark); }

/* ── FOOTER ── */
#site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.footer-logo span { color: var(--amber); }
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col h4 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color var(--duration);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── BG UTILITIES ── */
.bg-white    { background: var(--white); }
.bg-gray     { background: var(--gray-50); }
.bg-primary  { background: var(--primary); }
.bg-dark     { background: var(--primary-dark); }
.bg-gradient { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* ── DECORATIVE SHAPES ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .08;
  pointer-events: none;
}

/* ════════════════════════════════════════════
   PHOTO ENHANCEMENTS — v2
   ════════════════════════════════════════════ */

/* ── HERO PHOTO ── */
.hero-photo {
  background: var(--primary-dark) !important;
}
.hero-photo::before { display: none; }
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}
.hero-photo:hover .hero-photo-bg { transform: scale(1.03); }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,55,.88) 0%,
    rgba(10,22,55,.75) 45%,
    rgba(10,22,55,.3) 100%
  );
  z-index: 1;
}
.hero-content-photo { max-width: 680px; }
.hero-eyebrow-white {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}
.hero-trust-dark .trust-item { color: rgba(255,255,255,.78); }
.dot-green {
  background: #34D399 !important;
  box-shadow: 0 0 0 3px rgba(52,211,153,.2);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  font-family: var(--font-heading);
  font-weight: 700;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
}

/* ── FORUM CARD PHOTO ── */
.forum-card-photo {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px 20px;
}
.forum-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,43,107,.92) 0%, rgba(15,43,107,.5) 55%, transparent 100%);
  z-index: 0;
}
.forum-card-photo .date-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: var(--amber);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .78rem;
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.forum-card-photo h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.forum-card-photo .location {
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

/* ── HOW IT WORKS PHOTO ── */
.howto-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.howto-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.howto-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--r-lg);
  padding: 18px 24px;
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 32px rgba(15,43,107,.4);
}
.howto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.howto-stat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.howto-stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.howto-stat-label {
  font-size: .75rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ── SPLIT CTA PHOTO ── */
.split-photo {
  width: calc(100% + 80px);
  height: 180px;
  margin: -48px -40px 28px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  display: block;
}
@media (max-width: 768px) {
  .split-photo { width: calc(100% + 64px); margin: -40px -32px 24px; }
}

/* ── TESTIMONIALS WITH PHOTOS ── */
.testimonial-stars {
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.author-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-100);
}
.author-result {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}
.testimonial-quote { display: none; }


/* ── WHY US GRID ── */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.why-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-xl); padding:32px 28px; transition:box-shadow .2s,transform .2s; }
.why-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.why-icon { width:52px; height:52px; border-radius:var(--r-lg); background:linear-gradient(135deg,var(--primary-50),var(--primary-100,#dbeafe)); display:flex; align-items:center; justify-content:center; color:var(--primary); margin-bottom:20px; }
.why-card h3 { font-size:1.05rem; font-weight:700; color:var(--primary-dark); margin-bottom:10px; }
.why-card p { font-size:.9rem; line-height:1.65; color:var(--text-secondary); }

/* ── TESTIMONIALS GRID ── */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.testimonials-cta { display:flex; align-items:center; gap:20px; justify-content:center; margin-top:48px; }

/* ── SPLIT CTA LAYOUT ── */
.split-cta { padding:0; }
.split-cta-inner { display:flex; min-height:520px; }
.split-side { flex:1; position:relative; padding:64px 56px; display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.split-photo { background-size:cover; background-position:center; }
.split-photo-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,22,55,.85) 0%,rgba(10,22,55,.55) 100%); z-index:0; }
.split-content { position:relative; z-index:1; color:var(--white); max-width:480px; }
.split-badge { display:inline-block; font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.3); border-radius:100px; padding:5px 14px; margin-bottom:20px; }
.split-content h2 { font-size:1.7rem; font-weight:800; line-height:1.2; color:var(--white); margin-bottom:16px; }
.split-content p { font-size:.95rem; line-height:1.65; color:rgba(255,255,255,.85); margin-bottom:24px; }
.split-list { list-style:none; margin:0 0 32px; padding:0; display:flex; flex-direction:column; gap:10px; }
.split-list li { display:flex; align-items:flex-start; gap:10px; font-size:.9rem; color:rgba(255,255,255,.9); }
.split-list svg { flex-shrink:0; color:#4ade80; margin-top:2px; }
.btn-white { background:var(--white); color:var(--primary-dark); font-weight:700; border-radius:100px; padding:13px 30px; display:inline-block; transition:opacity .2s; }
.btn-white:hover { opacity:.9; color:var(--primary-dark); }

/* ── NEWSLETTER LAYOUT ── */
.newsletter-inner { display:flex; align-items:center; gap:48px; background:linear-gradient(135deg,var(--primary-dark) 0%,var(--primary) 100%); border-radius:var(--r-xl); padding:56px 64px; }
.newsletter-icon { flex-shrink:0; width:72px; height:72px; background:rgba(255,255,255,.15); border-radius:var(--r-xl); display:flex; align-items:center; justify-content:center; color:var(--white); }
.newsletter-text { flex:1; color:var(--white); }
.newsletter-text h2 { font-size:1.6rem; font-weight:800; color:var(--white); margin-bottom:10px; }
.newsletter-text p { font-size:.95rem; color:rgba(255,255,255,.85); margin-bottom:16px; }
.newsletter-badges { display:flex; flex-wrap:wrap; gap:10px; }
.nl-badge { font-size:.8rem; background:rgba(255,255,255,.15); color:var(--white); border-radius:100px; padding:4px 12px; }
.newsletter-form { flex-shrink:0; width:340px; }
.nl-input-group { display:flex; gap:0; }
.nl-input { flex:1; border-radius:100px 0 0 100px; border:none; padding:14px 20px; font-size:.95rem; outline:none; }
.nl-btn { border-radius:0 100px 100px 0; white-space:nowrap; padding:14px 24px; }
.nl-legal { font-size:.78rem; color:rgba(255,255,255,.65); margin-top:10px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .newsletter-strip { grid-template-columns: 1fr; gap: 32px; }
  .split-cta { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section, .section-lg { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  #primary-nav { display: none; }
  .nav-toggle { display: flex; }
  #primary-nav.open {
    display: block;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
  }
  #primary-nav.open ul { flex-direction: column; gap: 4px; }
  #primary-nav.open a { display: block; padding: 12px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .split-side { padding: 40px 32px; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
  h1 { font-size: 2rem; }
}


/* ══════════════════════════════════════════════════════
   REFONTE DESIGN v2 — Corrections globales Forum-Emploi
   ══════════════════════════════════════════════════════ */

/* ─── 1. NAVIGATION : WordPress ul direct dans nav-inner ─── */
.nav-inner > ul {
  display: flex !important;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav-inner > ul > li { list-style: none; position: relative; }
.nav-inner > ul > li > a {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 13px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-inner > ul > li > a:hover,
.nav-inner > ul > li.current-menu-item > a,
.nav-inner > ul > li.current_page_item > a {
  color: var(--primary);
  background: rgba(27,77,219,.07);
}
/* "Accueil" masqué sur desktop (logo = retour accueil) */
.nav-inner > ul > li:first-child { display: none; }
/* "Forums Emploi" mis en avant */
.nav-inner > ul > li:nth-child(2) > a {
  color: var(--primary);
  font-weight: 600;
}
/* "Contact" → bouton CTA */
.nav-inner > ul > li:last-child > a {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 9px 22px !important;
  font-weight: 700 !important;
  margin-left: 10px;
}
.nav-inner > ul > li:last-child > a:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

/* ─── 2. HEADER — hauteur & ombre ─── */
:root { --nav-h: 72px; }
#site-header {
  height: var(--nav-h) !important;
  border-bottom: 1px solid rgba(0,0,0,.07) !important;
}
.nav-inner { height: var(--nav-h); }

/* ─── 3. SECTION PADDING — réduction des grands espaces ─── */
.section { padding: 80px 0 !important; }
.section-sm { padding: 56px 0 !important; }
.section-lg { padding: 100px 0 !important; }

/* ─── 4. SECTION HEADER — moins d'espace sous le titre ─── */
.section-header { margin-bottom: 40px !important; }
.section-title { margin-bottom: 12px; }
.section-sub, .section-desc { margin-bottom: 0; }

/* ─── 5. STATS BAND — forcer visibilité ─── */
.stats-band .stat-item {
  opacity: 1 !important;
  transform: none !important;
}
.stat-number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.stat-label  { font-size: .85rem; color: var(--gray-500); margin-top: 4px; }

/* ─── 6. FORUM CARDS PHOTO — hauteur augmentée ─── */
.forum-card-photo { height: 230px !important; }
.forum-card-top { min-height: 120px; }

/* ─── 7. HOWTO SECTION — correction layout 2 colonnes ─── */
.section.bg-white .grid-2 {
  align-items: start;
  gap: 80px;
}
.howto-photo-wrap img { display: block; }
.howto-stats { margin-top: 24px; }
.howto-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); }
.howto-stat-label { font-size: .78rem; color: var(--gray-500); margin-top: 2px; }

/* ─── 8. WHY-CARDS — fond blanc + ombre douce ─── */
.why-grid {
  margin-top: 48px;
  gap: 20px !important;
}
.why-card {
  background: #fff !important;
  border: 1px solid #E8EDF5 !important;
  border-radius: 16px !important;
  padding: 28px 24px !important;
  box-shadow: 0 2px 12px rgba(15,43,107,.05) !important;
}
.why-card:hover {
  box-shadow: 0 8px 32px rgba(15,43,107,.12) !important;
  transform: translateY(-4px) !important;
  border-color: rgba(27,77,219,.2) !important;
}
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--primary-dark); }
.why-card p  { font-size: .875rem; line-height: 1.65; color: var(--gray-500); margin: 0; }

/* ─── 9. TESTIMONIALS — cartes avec ombre ─── */
.testimonial-card {
  background: #fff;
  border: 1px solid #E8EDF5;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(15,43,107,.04);
}
.testimonial-card blockquote {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 12px 0 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-info .author-name { font-weight: 700; font-size: .9rem; color: var(--primary-dark); }
.author-info .author-role { font-size: .78rem; color: var(--gray-500); margin-top: 2px; }
.author-info .author-result { font-size: .75rem; font-weight: 600; color: #16a34a; margin-top: 4px; }

/* ─── 10. NEWSLETTER — overflow fix ─── */
.newsletter-inner {
  overflow: hidden;
  flex-wrap: nowrap;
}
.newsletter-form { min-width: 300px; max-width: 340px; flex-shrink: 0; }

/* ─── 11. HERO — padding-top correct sous nav fixe ─── */
.hero { padding-top: calc(var(--nav-h) + 40px) !important; min-height: 100vh; }

/* ─── 12. SPLIT CTA — overlay amélioré ─── */
.split-photo-overlay {
  background: linear-gradient(135deg, rgba(10,22,55,.82) 0%, rgba(10,22,55,.45) 100%) !important;
}

/* ─── 13. FOOTER SPACING ─── */
.site-footer { margin-top: 0; }

/* ─── Fin refonte v2 ─── */

/* ── PATCH split-cta width + reveal whitespace ── */
.split-cta-inner { width: 100% !important; min-width: 100% !important; }
.split-side { width: 50%; min-width: 0; box-sizing: border-box; }

/* Force reveal visible pour toutes les sections (évite whitespace) */
.reveal { opacity: 1 !important; transform: none !important; }

/* Newsletter fix overflow */
.newsletter-inner { overflow: hidden !important; }
.nl-input { min-width: 0; }

/* Sections gap réduit */
.section.bg-gray { padding: 72px 0 !important; }
.section.bg-white { padding: 72px 0 !important; }

/* ── PATCH FINAL split-cta + newsletter ── */
.section.split-cta {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}
.split-cta-inner {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  min-height: 540px !important;
}
.split-side {
  flex: 1 1 50% !important;
  width: 50% !important;
  min-height: 540px !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
}
.split-content { position: relative; z-index: 1; color: #fff; max-width: 460px; }
.split-content h2 { color: #fff !important; }
.split-photo { background-size: cover !important; background-position: center !important; }
.split-photo-overlay { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg,rgba(10,22,55,.85) 0%,rgba(10,22,55,.5) 100%) !important; }

/* Newsletter - fix overflow texte légal */
.newsletter-inner {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 40px;
  overflow: hidden !important;
}
.newsletter-form { flex-shrink: 0 !important; width: 320px !important; }
.nl-legal { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ── FIX: Double checkmark split-cta ── */
.split-side ul li::before { content: none !important; display: none !important; }
.split-side ul li { display: flex !important; align-items: flex-start !important; gap: 10px !important; padding-left: 0 !important; }
.split-side ul li svg { flex-shrink: 0; margin-top: 2px; color: #4ade80; }

/* ── FIX: Newsletter overflow ── */
.newsletter-strip { overflow: hidden; }
.nl-legal { font-size: .72rem; opacity: .75; line-height: 1.5; max-width: 260px; }

/* ── FIX: Excess whitespace between sections ── */
.section.bg-white { padding: 80px 0 !important; }
.howto-section { padding: 80px 0 !important; }

/* ── FIX: Newsletter form layout ── */
.newsletter-form { display: flex !important; flex-direction: column !important; gap: 10px !important; width: 340px !important; flex-shrink: 0 !important; }
.nl-input-group { width: 100% !important; display: flex !important; flex-direction: row !important; }
.nl-input { flex: 1 !important; min-width: 0 !important; }
.nl-legal { width: 100% !important; white-space: normal !important; word-break: break-word !important; font-size: .7rem !important; opacity: .75 !important; color: rgba(255,255,255,.75) !important; }


/* ═══════════════════════════════════════════
   PAGES INTÉRIEURES — CSS COMPLET
   ═══════════════════════════════════════════ */

/* ── Grid 4 colonnes ── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
@media(max-width:900px){ .grid-4 { grid-template-columns: repeat(2,1fr); } }

/* ── Accent Strip ── */
.accent-strip { background: var(--amber); padding: 20px 0; overflow: hidden; }
.accent-strip-inner { display: flex !important; flex-wrap: nowrap !important; align-items: center; justify-content: space-between; gap: 24px; }
.strip-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--primary-dark); white-space: nowrap; flex-shrink: 0; }

/* ── Page Hero avec photo ── */
.page-hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 0;
}
.page-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,80,.88) 0%, rgba(30,80,200,.72) 100%);
}
.page-hero.has-photo { background: var(--primary-dark); }
.page-hero.has-photo .page-hero-content { z-index: 3; }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; cursor: pointer; font-weight: 600; font-size: 1rem;
  color: var(--gray-900); background: none; border: none; padding: 22px 0;
  text-align: left; font-family: var(--font-heading); line-height: 1.4;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: var(--r-full);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 400; flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer { display: none; padding: 0 0 22px; color: var(--gray-600); line-height: 1.8; font-size: .95rem; max-width: 680px; }
.faq-item.open .faq-answer { display: block; }

/* ── Resource Cards ── */
.resource-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 16px;
  transition: all var(--duration) var(--ease);
}
.resource-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-light); }
.resource-card-top { flex: 1; }
.resource-card-top .rtype { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.resource-card-top h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--gray-900); }
.resource-card-top p { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }
.resource-card-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.resource-pages { font-size: .8rem; color: var(--gray-400); font-weight: 500; }
.resource-download { font-size: .875rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.resource-download:hover { text-decoration: underline; }

/* ── Feature Card inner layout ── */
.feature-card-content { display: flex; gap: 20px; align-items: flex-start; }
.feature-card-icon { width: 48px; height: 48px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.feature-card-icon.blue { background: var(--primary-light); }
.feature-card-icon.amber { background: rgba(245,158,11,.12); }
.feature-card-icon.green { background: rgba(16,185,129,.12); }
.feature-card-bar { height: 3px; background: linear-gradient(90deg,var(--primary),var(--primary-light)); border-radius: 2px; margin-bottom: 20px; width: 40px; }

/* ── Step / Pitch Builder ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 16px; padding-bottom: 0; }
.step-num {
  width: 44px; height: 44px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.step-content { flex: 1; }

/* ── Card icon helpers ── */
.card-icon { width: 52px; height: 52px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.card-icon.blue { background: var(--primary-light); }
.card-icon.amber { background: rgba(245,158,11,.12); }
.card-icon.green { background: rgba(16,185,129,.12); }
.card-icon.purple { background: rgba(139,92,246,.12); }

/* ── Testimonial card ── */
.testimonial { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 32px 28px; }
.testimonial-quote { font-size: 3rem; line-height: 1; color: var(--primary-light); margin-bottom: 12px; }
.testimonial-text { color: rgba(255,255,255,.85); line-height: 1.75; font-size: .95rem; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: .95rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: white; font-size: .95rem; }
.testimonial-role { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 2px; }
