/* ============================================================
   P-CONSULTING ACADEMY — Feuille de styles principale
   ============================================================ */

/* Variables */
:root {
  --primary:       #1C2D6E;
  --primary-dark:  #111D4A;
  --primary-light: #2A3E8F;
  --accent:        #CC3300;
  --accent-dark:   #A82900;
  --accent-light:  #E84C1E;
  --green:         #16A34A;
  --dark:          #0F172A;
  --grey-900:      #1E293B;
  --grey-700:      #334155;
  --grey-500:      #64748B;
  --grey-300:      #CBD5E1;
  --grey-100:      #F1F5F9;
  --grey-50:       #F8FAFC;
  --white:         #FFFFFF;
  --whatsapp:      #25D366;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow:        0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.14);
  --transition:    .2s ease;
}

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

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  font-size: .8125rem;
  padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar-left a:hover { color: var(--white); }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.btn-access {
  font-size: .8125rem; font-weight: 500; padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85); transition: all var(--transition);
}
.btn-access:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-preinscription {
  font-size: .8125rem; font-weight: 600; padding: 5px 16px;
  background: var(--accent); color: var(--white); border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.btn-preinscription:hover { background: var(--accent-dark); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--grey-100);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: 1rem; letter-spacing: -.5px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-weight: 800; font-size: .9375rem; color: var(--primary); line-height: 1.2; letter-spacing: -.3px; }
.logo-sub { font-size: .6875rem; color: var(--grey-500); letter-spacing: .01em; }
.logo--white .logo-name { color: var(--white); }
.logo--white .logo-sub { color: rgba(255,255,255,.55); }
.logo--white .logo-icon { background: rgba(255,255,255,.15); }

/* Nav */
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 8px 14px;
  font-size: .875rem; font-weight: 500; color: var(--grey-700);
  border-radius: var(--radius-sm); transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--grey-50); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--grey-100);
  min-width: 220px; padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-4px); transition: all var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 9px 14px; font-size: .875rem;
  color: var(--grey-700); border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown li a:hover { background: var(--grey-50); color: var(--primary); }

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

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: .9375rem; transition: all var(--transition);
  cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--outline-white { border-color: rgba(255,255,255,.4); color: var(--white); background: transparent; }
.btn--outline-white:hover { background: rgba(255,255,255,.1); }
.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { background: #1fba59; }
.btn--sm { padding: 8px 18px; font-size: .875rem; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn svg { flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white); padding: 80px 0 90px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 16px; border-radius: 100px; font-size: .8125rem; font-weight: 500;
  margin-bottom: 24px; color: rgba(255,255,255,.9);
}
.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15;
  letter-spacing: -.04em; margin-bottom: 20px;
}
.hero h1 em { color: var(--accent-light); font-style: normal; }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 560px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; }
.hero-stat {
  background: rgba(255,255,255,.05); padding: 20px 16px; text-align: center;
  transition: background var(--transition);
}
.hero-stat:hover { background: rgba(255,255,255,.1); }
.hero-stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat span { font-size: .8125rem; color: rgba(255,255,255,.65); margin-top: 4px; display: block; }

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
.section { padding: 80px 0; }
.section--grey { background: var(--grey-50); }
.section--dark { background: var(--primary-dark); color: var(--white); }
.section--accent { background: var(--accent); color: var(--white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-label {
  display: inline-block; font-size: .8125rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section--dark .section-label { color: var(--accent-light); }
.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.2; letter-spacing: -.03em; color: var(--dark); margin-bottom: 16px; }
.section--dark .section-title { color: var(--white); }
.section-desc { font-size: 1.0625rem; color: var(--grey-500); line-height: 1.7; }
.section--dark .section-desc { color: rgba(255,255,255,.65); }

/* ============================================================
   CARTES DIFFÉRENCIATEURS
   ============================================================ */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.diff-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.diff-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
}
.diff-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.diff-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--grey-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.5rem;
}
.diff-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.diff-card p { font-size: .9375rem; color: var(--grey-500); line-height: 1.6; }

/* ============================================================
   CARDS FORMATIONS
   ============================================================ */
.formations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.formation-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.formation-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.formation-card-top {
  padding: 24px; border-bottom: 1px solid var(--grey-100); flex: 1;
}
.formation-card-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 100px; font-size: .75rem; font-weight: 600;
}
.badge--type { background: #EFF6FF; color: #1D4ED8; }
.badge--domain { background: var(--grey-50); color: var(--grey-700); border: 1px solid var(--grey-200, #E2E8F0); }
.badge--new { background: #ECFDF5; color: #065F46; }
.formation-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.formation-card p { font-size: .9rem; color: var(--grey-500); line-height: 1.6; }
.formation-card-meta { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.formation-card-meta span { display: flex; align-items: center; gap: 5px; font-size: .8125rem; color: var(--grey-500); }
.formation-card-meta svg { flex-shrink: 0; color: var(--grey-400, #94A3B8); }
.formation-card-bottom { padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.formation-price { }
.formation-price .mode { font-size: .75rem; color: var(--grey-500); }
.formation-price .price { font-size: 1.125rem; font-weight: 800; color: var(--primary); }
.formation-price .price-alt { font-size: .8125rem; color: var(--grey-500); margin-top: 2px; }

/* ============================================================
   SAMEDI FISCO CARDS
   ============================================================ */
.samedi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.samedi-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column;
  transition: all var(--transition);
}
.samedi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.samedi-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; gap: 12px; }
.samedi-date {
  background: var(--primary); color: var(--white);
  border-radius: var(--radius); padding: 8px 12px; text-align: center;
  min-width: 60px; flex-shrink: 0;
}
.samedi-date .day { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.samedi-date .month { font-size: .6875rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.samedi-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); flex: 1; line-height: 1.35; }
.samedi-card p { font-size: .9rem; color: var(--grey-500); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.samedi-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.samedi-price { font-size: 1.125rem; font-weight: 800; color: var(--accent); }
.samedi-duration { font-size: .8125rem; color: var(--grey-500); }

/* ============================================================
   CALENDRIER
   ============================================================ */
.calendar-table { width: 100%; border-collapse: collapse; }
.calendar-table thead th {
  padding: 12px 16px; text-align: left; font-size: .8125rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--grey-500); background: var(--grey-50);
  border-bottom: 1px solid var(--grey-100);
}
.calendar-table tbody tr { border-bottom: 1px solid var(--grey-100); transition: background var(--transition); }
.calendar-table tbody tr:hover { background: var(--grey-50); }
.calendar-table tbody td { padding: 14px 16px; font-size: .9rem; color: var(--grey-700); vertical-align: middle; }
.calendar-table td:first-child { font-weight: 600; color: var(--dark); }
.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: .75rem; font-weight: 600;
}
.status-badge--upcoming { background: #FEF3C7; color: #92400E; }
.status-badge--open { background: #D1FAE5; color: #065F46; }
.status-badge--closed { background: var(--grey-100); color: var(--grey-500); }

/* ============================================================
   ÉTAPES / PROCESSUS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; counter-reset: step; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
  margin: 0 auto 20px; transition: all var(--transition);
  box-shadow: 0 0 0 6px var(--white);
}
.step:hover .step-num { background: var(--primary); color: var(--white); }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--grey-500); line-height: 1.6; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #F59E0B; }
.testimonial-text { font-size: .9375rem; color: var(--grey-700); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.testimonial-role { font-size: .8125rem; color: var(--grey-500); }

/* ============================================================
   SECTION ENTREPRISES
   ============================================================ */
.entreprise-features { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.entreprise-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.entreprise-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9375rem; color: rgba(255,255,255,.8); }
.entreprise-list li svg { flex-shrink: 0; color: var(--accent-light); margin-top: 3px; }
.entreprise-visual {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 32px;
}
.entreprise-visual h4 { font-size: 1.125rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.entreprise-stat-row { display: flex; gap: 16px; flex-wrap: wrap; }
.e-stat { flex: 1; min-width: 100px; text-align: center; padding: 16px; background: rgba(255,255,255,.06); border-radius: var(--radius); }
.e-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.e-stat span { font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: 4px; display: block; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 0; text-align: center; color: var(--white);
}
.cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 14px; }
.cta-section p { font-size: 1.0625rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FORMULAIRES
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--grey-700); margin-bottom: 6px; }
.form-label span { color: var(--accent); }
.form-control {
  width: 100%; padding: 11px 14px; font-size: .9375rem; font-family: var(--font);
  border: 1.5px solid var(--grey-300); border-radius: var(--radius);
  background: var(--white); color: var(--dark); transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,60,94,.1); }
.form-control::placeholder { color: var(--grey-500); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .8125rem; color: var(--grey-500); margin-top: 5px; }
.form-error { font-size: .8125rem; color: #DC2626; margin-top: 5px; display: none; }

/* ============================================================
   PAGE HERO (sous-pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0; color: var(--white);
}
.page-hero-content { max-width: 680px; }
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; }
.page-hero p { font-size: 1.0625rem; color: rgba(255,255,255,.75); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: .875rem; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { color: rgba(255,255,255,.35); }

/* ============================================================
   ESPACES CONNECTÉS (login)
   ============================================================ */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--grey-50); padding: 40px 24px; }
.auth-card { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; max-width: 440px; overflow: hidden; }
.auth-card-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 32px; text-align: center; color: var(--white); }
.auth-card-header .logo { justify-content: center; margin-bottom: 16px; }
.auth-card-header h1 { font-size: 1.25rem; font-weight: 700; }
.auth-card-header p { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 4px; }
.auth-card-body { padding: 32px; }
.auth-links { text-align: center; margin-top: 20px; font-size: .875rem; color: var(--grey-500); }
.auth-links a { color: var(--primary); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand { }
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 20px 0 12px; }
.footer-tagline { font-size: .8125rem; font-weight: 700; letter-spacing: .15em; color: var(--accent-light); margin-bottom: 20px; }
.footer-col h4 { font-size: .9375rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.footer-contact li svg { flex-shrink: 0; color: rgba(255,255,255,.35); margin-top: 2px; }
.footer-contact li a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal li a { font-size: .8125rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-legal li a:hover { color: rgba(255,255,255,.75); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--grey-500); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px; font-size: .875rem; font-weight: 500;
  border: 1.5px solid var(--grey-300); color: var(--grey-700);
  background: var(--white); transition: all var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--primary); color: var(--primary); background: #EFF6FF; }
.view-all { text-align: center; margin-top: 40px; }
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 20px; }
.alert--success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.alert--error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert--info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .entreprise-features { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar-right { margin-left: auto; }

  .main-nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
    height: 100vh; background: var(--white); z-index: 2000;
    box-shadow: var(--shadow-lg); padding: 80px 0 24px;
    transition: right .3s ease; overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 0; padding: 0 16px; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    background: var(--grey-50); border-radius: var(--radius);
    margin: 4px 0; padding: 4px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.4);
    z-index: 1999; display: none;
  }
  .nav-overlay.visible { display: block; }

  .hero { padding: 56px 0 64px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .steps-grid { gap: 32px; }
  .formations-grid { grid-template-columns: 1fr; }
  .samedi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .topbar-right .btn-access { display: none; }
}
