/*
Theme Name:  MerciExcel
Theme URI:   https://merciexcel.com
Author:      Groupe AGALAK
Author URI:  https://merciexcel.com
Description: Thème WordPress officiel de MerciExcel · Groupe AGALAK · RDC. Thème autonome et complet — aucun thème parent requis. Formations Modern Excel, Support Informatique & Visibilité Entreprise. Toutes les pages, polices, couleurs et tailles sont personnalisables via le Customizer.
Version:     2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: merciexcel
Tags: business, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, responsive-layout, translation-ready
*/

/* ================================================================
   VARIABLES CSS — tout modifiable depuis le Customizer
   ================================================================ */
:root {
  /* Couleurs principales */
  --g:      #1D7A3A;
  --gd:     #145C2B;
  --gl:     #28A34D;
  --gp:     #E8F5ED;
  --gxp:    #F5FBF7;
  --ivory:  #FAFDF8;
  --cream:  #F3F8F1;
  --bdr:    #DDF0E3;
  --tx:     #0E2318;
  --mu:     #5A7A65;
  --bk:     #071410;
  --gold:   #E8A020;
  --goldl:  #FFC84A;

  /* Ombres */
  --sh-sm: 0 2px 8px rgba(14,35,24,.07);
  --sh-md: 0 8px 32px rgba(14,35,24,.1);
  --sh-lg: 0 20px 60px rgba(14,35,24,.14);

  /* Forme */
  --r: 14px;

  /* Typographie */
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-display: 'Fraunces', serif;
  --font-size-base: 16px;
  --line-height:    1.6;

  /* Tailles de police personnalisables */
  --font-h1:   clamp(2.8rem, 5vw, 4.8rem);
  --font-h2:   clamp(1.9rem, 3.5vw, 3rem);
  --font-lead: 1.02rem;
  --font-body-sm: .87rem;

  /* Espacement sections */
  --section-py: 88px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: var(--font-size-base); }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--tx);
  overflow-x: hidden;
  line-height: var(--line-height);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
section { padding: var(--section-py) 5%; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.site-content { padding-top: 80px; }

/* ================================================================
   TYPOGRAPHIE
   ================================================================ */
.h1 {
  font-family: var(--font-display);
  font-size: var(--font-h1);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.5px;
}
.h2 {
  font-family: var(--font-display);
  font-size: var(--font-h2);
  font-weight: 900;
  line-height: 1.1;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 900;
  line-height: 1.2;
}
.lead {
  font-size: var(--font-lead);
  color: var(--mu);
  line-height: 1.78;
  font-weight: 400;
  max-width: 540px;
}
.tc { text-align: center; }
.tc .lead { margin: 0 auto; }
.tc .sec-label { justify-content: center; }

/* ================================================================
   SECTION LABEL
   ================================================================ */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--g);
  border-radius: 2px;
}

/* ================================================================
   BOUTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 50px;
  transition: all .25s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-primary   { background: var(--g);    color: #fff; border-color: var(--g);    padding: 13px 28px; font-size: .92rem; }
.btn-primary:hover  { background: var(--gd); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(29,122,58,.3); color: #fff; }
.btn-outline   { background: transparent; border-color: var(--g); color: var(--g); padding: 13px 28px; font-size: .92rem; }
.btn-outline:hover  { background: var(--g); color: #fff; transform: translateY(-2px); }
.btn-white     { background: #fff; color: var(--g); border-color: #fff; padding: 13px 28px; font-size: .92rem; }
.btn-white:hover    { background: var(--gp); transform: translateY(-2px); color: var(--g); }
.btn-gold      { background: var(--gold); color: #fff; border-color: var(--gold); padding: 13px 28px; font-size: .92rem; }
.btn-gold:hover     { background: #c88010; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,160,32,.35); color: #fff; }
.btn-sm        { padding: 9px 18px !important; font-size: .82rem !important; }
.btn-lg        { padding: 16px 36px !important; font-size: 1rem !important; }

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(29,122,58,.2); }

/* ================================================================
   BADGES
   ================================================================ */
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: .73rem; font-weight: 700; letter-spacing: .5px; }
.bg    { background: var(--gp); color: var(--g); }
.bgold { background: rgba(232,160,32,.15); color: #9a6800; }
.bdark { background: var(--tx); color: #fff; }

/* ================================================================
   ANIMATIONS REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(250,253,248,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--bdr);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
}
.nav-logo img,
.custom-logo { height: 65px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: .87rem;
  font-weight: 600;
  color: var(--tx);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--g);
  border-radius: 2px;
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a { color: var(--g); }
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--g);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .87rem;
  font-weight: 700;
  transition: all .25s;
  border: 2px solid var(--g);
}
.nav-cta:hover { background: var(--gd); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,122,58,.3); color: #fff; }

/* ================================================================
   HAMBURGER
   ================================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 201;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--tx); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   MENU MOBILE
   ================================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,20,16,.97);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 20px;
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all .2s;
  text-align: center;
  width: 100%;
  max-width: 320px;
  display: block;
}
.mobile-menu a:hover { background: rgba(255,255,255,.06); color: #6fcf97; }
.mobile-menu .mm-cta { background: var(--g); color: #fff; margin-top: 12px; font-size: 1.1rem; }
.mobile-menu .mm-sub { font-size: .78rem; color: rgba(255,255,255,.35); text-align: center; margin-top: 16px; font-family: var(--font-body); font-weight: 300; }

/* ================================================================
   HERO — VERSION PROFESSIONNELLE AMÉLIORÉE
   ================================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #071410 0%, #0E2318 40%, #145C2B 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Motif de grille décoratif */
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(45deg, rgba(29,122,58,.04) 0, rgba(29,122,58,.04) 1px, transparent 1px, transparent 80px);
}
/* Halo lumineux */
.hero-glow {
  position: absolute;
  top: -150px; right: -150px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,122,58,.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -200px; left: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { padding: 10rem 5% 6rem 8%; position: relative; z-index: 2; }
.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
  letter-spacing: .3px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--font-h1);
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 16px;
}
.hero h1 em  { color: #6fcf97; font-style: italic; }
.hero h1 strong { color: var(--goldl); }
.hero-slogan { font-size: .88rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.hero-p { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.72); max-width: 480px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-modes { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
.mode-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.mode-chip strong { color: #fff; }
/* Badge de confiance dans le hero */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}
.hero-trust-item strong { color: rgba(255,255,255,.85); font-weight: 700; }
.hero-right { padding: 10rem 8% 6rem 2%; position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; }

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar { background: var(--g); padding: 20px 5%; }
.stats-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.stat { text-align: center; }
.stat-n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: #fff; display: block; line-height: 1; }
.stat-l { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ================================================================
   MOCK EXCEL (décoratif dans le hero)
   ================================================================ */
.mock-win { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; overflow: hidden; }
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.07); }
.md { width: 9px; height: 9px; border-radius: 50%; }
.mock-title { font-size: .7rem; color: rgba(255,255,255,.3); margin-left: 6px; font-family: monospace; }
.ribbon { display: flex; gap: 2px; padding: 4px 8px; background: rgba(255,255,255,.02); border-bottom: 1px solid rgba(255,255,255,.06); }
.rb { padding: 3px 8px; border-radius: 3px; font-size: .63rem; color: rgba(255,255,255,.4); background: rgba(255,255,255,.03); }
.rb.act { background: rgba(29,122,58,.2); color: #6fcf97; }
.fml { padding: 5px 10px; font-size: .7rem; font-family: monospace; color: #6fcf97; background: rgba(0,0,0,.12); border-bottom: 1px solid rgba(255,255,255,.06); }
.xg { padding: 6px 8px; }
.xr { display: grid; grid-template-columns: 22px repeat(4,1fr); gap: 2px; margin-bottom: 2px; }
.xc { padding: 3px 5px; font-size: .65rem; color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.05); border-radius: 2px; background: rgba(255,255,255,.02); text-align: center; white-space: nowrap; }
.xc.rn  { color: rgba(255,255,255,.18); background: transparent; border: none; }
.xc.hd  { background: rgba(29,122,58,.18); color: #6fcf97; font-weight: 700; font-size: .61rem; }
.xc.sel { background: rgba(29,122,58,.25); border-color: rgba(29,122,58,.5); color: #fff; font-weight: 600; }
.xc.val { color: var(--goldl); font-weight: 700; }
.xc.grn { color: #6fcf97; font-weight: 700; }
.chart-area { padding: 8px; border-top: 1px solid rgba(255,255,255,.06); }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(29,122,58,.35); border: 1px solid rgba(29,122,58,.55); }
.bar.hi { background: rgba(232,160,32,.4); border-color: rgba(232,160,32,.6); }
.prog-wrap { padding: 10px 12px; display: flex; flex-direction: column; gap: 7px; }
.prog-row { display: flex; align-items: center; gap: 10px; }
.prog-name { font-size: .7rem; color: rgba(255,255,255,.5); width: 90px; flex-shrink: 0; }
.prog-track { flex: 1; height: 4px; background: rgba(255,255,255,.07); border-radius: 10px; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--gl), var(--goldl)); animation: grow 2s ease 1s both; }
@keyframes grow { from { width: 0 !important; } }

/* ================================================================
   SERVICES
   ================================================================ */
.svcs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  padding: 36px 32px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--bdr);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--bdr); transition: background .3s; }
.svc-card:hover::before { background: linear-gradient(90deg, var(--g), var(--goldl)); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(29,122,58,.2); }
.svc-icon  { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.svc-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--tx); margin-bottom: 10px; }
.svc-desc  { font-size: .88rem; color: var(--mu); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }

/* ================================================================
   MÉTHODE 3C
   ================================================================ */
.c3-section { background: var(--gxp); }
.c3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.c3-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.c3-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.c3-num    { font-family: var(--font-display); font-size: 5rem; font-weight: 900; color: var(--gp); position: absolute; top: -10px; right: 10px; line-height: 1; pointer-events: none; }
.c3-letter { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--g); display: block; margin-bottom: 8px; }
.c3-title  { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--tx); margin-bottom: 10px; }
.c3-desc   { font-size: .88rem; color: var(--mu); line-height: 1.7; font-weight: 300; }

/* ================================================================
   PARCOURS
   ================================================================ */
.step-card { display: flex; gap: 16px; align-items: flex-start; background: var(--gxp); border: 1px solid var(--bdr); border-radius: 12px; padding: 20px; transition: all .3s; }
.step-card:hover { border-color: rgba(29,122,58,.3); box-shadow: var(--sh-sm); }
.step-num  { width: 40px; height: 40px; border-radius: 50%; background: var(--g); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; flex-shrink: 0; }
.step-num.gold { background: var(--gold); }
.step-title { font-size: .92rem; color: var(--tx); font-weight: 600; }
.step-desc  { font-size: .83rem; color: var(--mu); margin-top: 4px; line-height: 1.6; font-weight: 300; }

/* ================================================================
   TÉMOIGNAGES
   ================================================================ */
.testi-section { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  border-left: 4px solid var(--g);
  transition: all .3s;
}
.testi-card:hover { transform: translateX(4px); box-shadow: var(--sh-md); }
.testi-stars  { color: var(--gold); font-size: .85rem; margin-bottom: 10px; }
.testi-text   { font-size: .9rem; color: var(--tx); line-height: 1.75; font-style: italic; font-weight: 300; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.tav   { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.tname { font-size: .84rem; font-weight: 700; color: var(--tx); }
.trole { font-size: .75rem; color: var(--mu); }
.tcity { margin-left: auto; font-size: .7rem; background: var(--gp); color: var(--g); padding: 3px 8px; border-radius: 50px; font-weight: 600; }

/* ================================================================
   SECTION CHIFFRES CLÉS (nouvelle)
   ================================================================ */
.kpi-section { background: var(--gd); padding: 72px 5%; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1180px; margin: 48px auto 0; }
.kpi-card {
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 32px 20px;
  transition: all .3s;
}
.kpi-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.kpi-num   { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--goldl); display: block; line-height: 1; }
.kpi-label { font-size: .84rem; color: rgba(255,255,255,.65); margin-top: 8px; line-height: 1.5; font-weight: 400; }

/* ================================================================
   SECTION POURQUOI (nouvelle — avec icônes)
   ================================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  transition: all .3s;
}
.why-item:hover { border-color: rgba(29,122,58,.25); box-shadow: var(--sh-md); transform: translateY(-2px); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--gp);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-title { font-size: .95rem; font-weight: 700; color: var(--tx); margin-bottom: 6px; }
.why-desc  { font-size: .85rem; color: var(--mu); line-height: 1.65; font-weight: 300; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band { background: var(--gd); padding: 88px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.05) 0%, transparent 60%); }
.cta-band h2 { font-family: var(--font-display); font-size: var(--font-h2); font-weight: 900; color: #fff; position: relative; margin-bottom: 16px; }
.cta-band p  { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 32px; font-weight: 300; position: relative; }
.cta-band .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ================================================================
   PACK / PRICING
   ================================================================ */
.pack-section { background: #fff; }
.pack-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.pack-card { border-radius: var(--r); overflow: hidden; border: 2px solid var(--bdr); transition: all .3s; }
.pack-card:hover     { border-color: var(--g); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.pack-card.featured  { border-color: var(--g); background: var(--gd); }
.pack-head  { padding: 28px; background: var(--gxp); }
.pack-card.featured .pack-head { background: rgba(255,255,255,.08); }
.pack-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--tx); margin-bottom: 6px; }
.pack-card.featured .pack-title { color: #fff; }
.pack-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--g); }
.pack-card.featured .pack-price { color: var(--goldl); }
.pack-body  { padding: 28px; }
.pack-item  { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; color: var(--mu); padding: 7px 0; border-bottom: 1px solid var(--bdr); font-weight: 300; }
.pack-item::before { content: '✓'; color: var(--g); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pack-card.featured .pack-body  { background: rgba(255,255,255,.03); }
.pack-card.featured .pack-item  { color: rgba(255,255,255,.7); border-bottom-color: rgba(255,255,255,.08); }
.pack-card.featured .pack-item::before { color: var(--goldl); }

/* ================================================================
   PAGE HERO (pages intérieures)
   ================================================================ */
.page-hero {
  padding: 148px 5% 88px;
  background: linear-gradient(135deg, var(--gd) 0%, var(--g) 60%, var(--gl) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,.06) 0%, transparent 60%); }
.page-hero .ph-label { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 16px; font-size: .78rem; color: rgba(255,255,255,.55); position: relative; }
.page-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; line-height: 1.1; margin-bottom: 16px; position: relative; }
.page-hero .ph-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto; line-height: 1.75; position: relative; font-weight: 300; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-home-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 24px;
  transition: all .3s;
}
.faq-home-card:hover { border-color: rgba(29,122,58,.25); box-shadow: var(--sh-md); }
.fhq {
  font-weight: 700; font-size: .92rem; color: var(--tx);
  margin-bottom: 10px;
  display: flex; align-items: flex-start; gap: 9px;
}
.fhq::before {
  content: "?";
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--gp); border-radius: 50%;
  color: var(--g); font-size: .72rem; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}
.fha { font-size: .85rem; color: var(--mu); line-height: 1.72; font-weight: 300; }

/* ================================================================
   FOOTER
   ================================================================ */
footer { background: var(--bk); padding: 72px 5% 32px; color: rgba(255,255,255,.55); }
.ft { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; max-width: 1180px; margin-left: auto; margin-right: auto; }
.ft-logo img { height: 48px; filter: brightness(10); margin-bottom: 16px; }
.ft-desc    { font-size: .86rem; line-height: 1.75; max-width: 260px; font-weight: 300; }
.ft-cities  { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.ft-city    { font-size: .72rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 3px 10px; border-radius: 50px; color: rgba(255,255,255,.5); }
.ft-gt      { font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.ft ul      { list-style: none; }
.ft li      { margin-bottom: 10px; }
.ft a       { font-size: .86rem; font-weight: 400; transition: color .2s; }
.ft a:hover { color: var(--gl); }
.ft-bot {
  max-width: 1180px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.ft-bot p   { font-size: .8rem; }
.ft-tag     { font-size: .8rem; color: var(--gl); font-weight: 600; font-style: italic; }

/* ================================================================
   WHATSAPP FAB
   ================================================================ */
#wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-chip {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #ddd; border-radius: 50px;
  padding: 8px 16px 8px 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  font-size: .82rem; font-weight: 600; color: #0E2318;
  white-space: nowrap; text-decoration: none;
  transition: all .2s;
}
.wa-chip:hover { transform: scale(1.03); color: #0E2318; }
#wa-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .3s; font-size: 1.6rem;
}

/* ================================================================
   WORDPRESS SPECIFICS
   ================================================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--mu); text-align: center; padding: 6px 0; }
.alignleft   { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright  { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.screen-reader-text { position: absolute; left: -9999px; }
.skip-link { position: absolute; top: -100%; left: 0; background: var(--g); color: #fff; padding: 8px 16px; border-radius: 0 0 8px 0; z-index: 999; }
.skip-link:focus { top: 0; }

/* ================================================================
   BLOG / SINGLE
   ================================================================ */
.entry-content { max-width: 720px; margin: 0 auto; padding: 64px 5%; }
.entry-content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; margin: 40px 0 16px; color: var(--tx); }
.entry-content h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; margin: 32px 0 12px; color: var(--tx); }
.entry-content p  { margin-bottom: 20px; line-height: 1.8; color: var(--mu); }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; color: var(--mu); line-height: 1.8; }
.entry-content blockquote { border-left: 4px solid var(--g); padding: 16px 24px; margin: 32px 0; background: var(--gxp); border-radius: 0 8px 8px 0; font-style: italic; color: var(--tx); }
.entry-content img { border-radius: 12px; margin: 32px 0; }
.entry-meta { font-size: .85rem; color: var(--mu); display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--bdr); }

/* ================================================================
   POST CARDS
   ================================================================ */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: #fff; border: 1px solid var(--bdr); border-radius: var(--r); overflow: hidden; transition: all .3s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(29,122,58,.2); }
.post-card-img     { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card-body    { padding: 24px; }
.post-card-cat     { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--g); margin-bottom: 8px; }
.post-card-title   { font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; color: var(--tx); margin-bottom: 10px; line-height: 1.3; }
.post-card-excerpt { font-size: .87rem; color: var(--mu); line-height: 1.7; margin-bottom: 16px; }
.post-card-meta    { font-size: .78rem; color: var(--mu); display: flex; justify-content: space-between; align-items: center; }

/* ================================================================
   FORMULAIRE CONTACT
   ================================================================ */
.contact-form { background: #fff; border: 1px solid var(--bdr); border-radius: var(--r); padding: 40px; }
.form-group   { margin-bottom: 20px; }
.form-label   { display: block; font-size: .87rem; font-weight: 600; color: var(--tx); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--bdr); border-radius: 10px;
  font-family: var(--font-body); font-size: .92rem;
  background: var(--gxp); color: var(--tx);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { outline: none; border-color: var(--g); box-shadow: 0 0 0 3px rgba(29,122,58,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: #fff; border: 1.5px solid var(--bdr); font-size: .87rem; font-weight: 600; color: var(--tx); transition: all .2s; }
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--g); color: #fff; border-color: var(--g); }

/* ================================================================
   WIDGETS
   ================================================================ */
.widget { margin-bottom: 32px; }
.widget-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--tx); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bdr); }
.widget ul { list-style: none; }
.widget ul li { padding: 6px 0; border-bottom: 1px solid var(--bdr); }
.widget ul li a { font-size: .87rem; color: var(--mu); transition: color .2s; }
.widget ul li a:hover { color: var(--g); }

/* ================================================================
   COMMENTAIRES
   ================================================================ */
.comment-list { list-style: none; margin-bottom: 40px; }
.comment-body { background: var(--gxp); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
.comment-author .fn { font-weight: 700; color: var(--tx); }
.comment-meta { font-size: .8rem; color: var(--mu); margin-bottom: 10px; }
.comment-content p { font-size: .9rem; color: var(--mu); line-height: 1.7; }
.comment-form-comment textarea { width: 100%; padding: 12px; border: 1.5px solid var(--bdr); border-radius: 10px; font-family: var(--font-body); min-height: 100px; }
.comment-form-comment label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .87rem; }
.form-submit input { background: var(--g); color: #fff; border: none; padding: 12px 28px; border-radius: 50px; font-weight: 700; cursor: pointer; font-family: var(--font-body); }
.form-submit input:hover { background: var(--gd); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse   { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .hero                     { grid-template-columns: 1fr; }
  .hero-right               { display: none; }
  .hero-left                { padding: 8rem 5% 4rem !important; }
  .svcs-grid                { grid-template-columns: 1fr; }
  .c3-grid                  { grid-template-columns: 1fr; }
  .testi-grid               { grid-template-columns: 1fr; }
  .pack-grid                { grid-template-columns: 1fr; }
  .posts-grid               { grid-template-columns: 1fr 1fr; }
  .ft                       { grid-template-columns: 1fr 1fr; }
  .nav-links                { display: none !important; }
  .hamburger                { display: flex !important; }
  .faq-home-grid            { grid-template-columns: 1fr !important; }
  .why-grid                 { grid-template-columns: 1fr !important; }
  .kpi-grid                 { grid-template-columns: repeat(2, 1fr); }
  .parcours-2col            { grid-template-columns: 1fr !important; gap: 32px !important; }
  section > .container > [style*="grid-template-columns:1fr 1fr"],
  section > .container > [style*="grid-template-columns: 1fr 1fr"] { display: block !important; }
  section > .container > [style*="grid-template-columns:1fr 1fr"] > *,
  section > .container > [style*="grid-template-columns: 1fr 1fr"] > * { margin-bottom: 32px; }
}
@media (max-width: 600px) {
  :root { --section-py: 64px; }
  section                   { padding: var(--section-py) 5%; }
  .ft                       { grid-template-columns: 1fr; }
  .posts-grid               { grid-template-columns: 1fr; }
  .stats-inner              { flex-direction: column; gap: 16px; }
  .stat-div                 { display: none; }
  .kpi-grid                 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-trust               { gap: 12px; }
}
@media (min-width: 961px) {
  .hamburger                { display: none !important; }
  .mobile-menu              { display: none !important; }
}
