/* =====================================================================
   LCN CONSULTING — STYLE PRINCIPAL
   Version : 1.0 / 2026
   Charte : Bleu / Violet / Turquoise sur fond clair
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. RESET & VARIABLES
--------------------------------------------------------------------- */
:root {
  /* Couleurs charte LCN */
  --lcn-blue: #0D6EFD;
  --lcn-blue-light: #7EC8FF;
  --lcn-purple: #7A2CF3;
  --lcn-purple-light: #C58CFF;
  --lcn-turquoise: #14D9D9;
  --lcn-turquoise-light: #8EFFFF;
  --lcn-anthracite: #2E3138;
  --lcn-gray: #6B7280;
  --lcn-gray-light: #E5E7EB;
  --lcn-gray-50: #F9FAFB;
  --lcn-white: #FFFFFF;
  --lcn-bg: #FAFBFD;
  --lcn-bg-dark: #0E1117;

  /* Gradients signature */
  --lcn-gradient-tri: linear-gradient(135deg, var(--lcn-blue) 0%, var(--lcn-purple) 50%, var(--lcn-turquoise) 100%);
  --lcn-gradient-blue: linear-gradient(135deg, var(--lcn-blue) 0%, var(--lcn-blue-light) 100%);
  --lcn-gradient-purple: linear-gradient(135deg, var(--lcn-purple) 0%, var(--lcn-purple-light) 100%);
  --lcn-gradient-turquoise: linear-gradient(135deg, var(--lcn-turquoise) 0%, var(--lcn-turquoise-light) 100%);

  /* Halos */
  --lcn-glow-blue: 0 0 24px rgba(13, 110, 253, 0.35);
  --lcn-glow-purple: 0 0 24px rgba(122, 44, 243, 0.35);
  --lcn-glow-turquoise: 0 0 24px rgba(20, 217, 217, 0.35);

  /* Ombres */
  --lcn-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --lcn-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --lcn-shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.10);
  --lcn-shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.12);

  /* Typographie */
  --lcn-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --lcn-font-heading: 'Space Grotesk', 'Inter', sans-serif;

  /* Tailles */
  --lcn-text-xs: 0.75rem;
  --lcn-text-sm: 0.875rem;
  --lcn-text-base: 1rem;
  --lcn-text-lg: 1.125rem;
  --lcn-text-xl: 1.25rem;
  --lcn-text-2xl: 1.5rem;
  --lcn-text-3xl: 1.875rem;
  --lcn-text-4xl: 2.25rem;
  --lcn-text-5xl: 3rem;
  --lcn-text-6xl: 3.75rem;

  /* Espacements */
  --lcn-space-1: 0.25rem;
  --lcn-space-2: 0.5rem;
  --lcn-space-3: 0.75rem;
  --lcn-space-4: 1rem;
  --lcn-space-6: 1.5rem;
  --lcn-space-8: 2rem;
  --lcn-space-12: 3rem;
  --lcn-space-16: 4rem;
  --lcn-space-20: 5rem;
  --lcn-space-24: 6rem;

  /* Rayons */
  --lcn-radius-sm: 6px;
  --lcn-radius: 12px;
  --lcn-radius-lg: 18px;
  --lcn-radius-xl: 24px;
  --lcn-radius-full: 9999px;

  /* Layout */
  --lcn-container: 1240px;
  --lcn-header-h: 86px;

  /* Transitions */
  --lcn-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --lcn-transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.lcn-body {
  font-family: var(--lcn-font-body);
  font-size: var(--lcn-text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--lcn-anthracite);
  background: var(--lcn-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lcn-blue); text-decoration: none; transition: color var(--lcn-transition); }
a:hover { color: var(--lcn-purple); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lcn-font-heading);
  font-weight: 700;
  color: var(--lcn-anthracite);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p { margin-bottom: var(--lcn-space-4); }

::selection { background: var(--lcn-blue); color: white; }

/* Skip link accessibilité */
.lcn-skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--lcn-anthracite);
  color: white;
  padding: 1rem;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.lcn-skip-link:focus { top: 0; color: white; }

/* ---------------------------------------------------------------------
   2. CONTAINER
--------------------------------------------------------------------- */
.lcn-container {
  width: 100%;
  max-width: var(--lcn-container);
  margin: 0 auto;
  padding: 0 var(--lcn-space-6);
}

/* ---------------------------------------------------------------------
   3. HEADER & NAVIGATION
--------------------------------------------------------------------- */
.lcn-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: box-shadow var(--lcn-transition);
}
.lcn-header.lcn-header--scrolled { box-shadow: var(--lcn-shadow-md); }

.lcn-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--lcn-header-h);
  gap: var(--lcn-space-6);
}

.lcn-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lcn-logo__img {
  height: 56px;
  width: auto;
  transition: transform var(--lcn-transition);
}
.lcn-logo:hover .lcn-logo__img { transform: scale(1.04); }

/* Menu centré */
.lcn-nav { justify-self: center; }

.lcn-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.1rem;
  white-space: nowrap;
}

/* Bouton Contact visible uniquement dans le panneau mobile */
.lcn-nav__cta { display: none; }

/* Actions à droite (Contact + accès admin) */
.lcn-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.lcn-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.72rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--lcn-anthracite);
  border-radius: 11px;
  transition: all var(--lcn-transition);
  position: relative;
  white-space: nowrap;
}

/* Boutons du header : une seule échelle, quelle que soit la largeur */
.lcn-header .lcn-btn--sm {
  font-size: 1rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--lcn-radius-full);
}
.lcn-header .lcn-btn--admin-icon {
  width: 42px; min-width: 42px; height: 42px;
  padding: 0;
  border-radius: 13px;
}

/* Filet de sécurité juste avant le passage en menu burger */
@media (max-width: 1400px) and (min-width: 1321px) {
  .lcn-header__inner { gap: var(--lcn-space-4); }
  .lcn-nav-link { padding: 0.55rem 0.58rem; font-size: 0.98rem; }
  .lcn-header .lcn-btn--sm { padding: 0.6rem 1.15rem; font-size: 0.94rem; }
  .lcn-header .lcn-btn--admin-icon { width: 40px; min-width: 40px; height: 40px; }
}

.lcn-nav-link:hover {
  color: var(--lcn-blue);
  background: rgba(13, 110, 253, 0.06);
}
.lcn-nav-link[data-accent="purple"]:hover {
  color: var(--lcn-purple);
  background: rgba(122, 44, 243, 0.06);
}
.lcn-nav-link[data-accent="turquoise"]:hover {
  color: var(--lcn-turquoise);
  background: rgba(20, 217, 217, 0.08);
}
.lcn-nav-link--active {
  color: var(--lcn-blue);
  background: rgba(13, 110, 253, 0.08);
  font-weight: 600;
}
.lcn-nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--lcn-gradient-tri);
}

/* Burger mobile */
.lcn-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.lcn-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lcn-anthracite);
  border-radius: 2px;
  transition: all var(--lcn-transition);
}
.lcn-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lcn-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lcn-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------------------
   4. BOUTONS
--------------------------------------------------------------------- */
.lcn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--lcn-font-body);
  font-size: var(--lcn-text-base);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border: none;
  border-radius: var(--lcn-radius);
  cursor: pointer;
  transition: all var(--lcn-transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.lcn-btn--sm { padding: 0.6rem 1.1rem; font-size: var(--lcn-text-sm); }
.lcn-btn--lg { padding: 1.05rem 2rem; font-size: var(--lcn-text-lg); }

.lcn-btn--primary {
  background: var(--lcn-gradient-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.30);
}
.lcn-btn--primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.40);
}

.lcn-btn--admin {
  background: rgba(122, 44, 243, 0.09);
  color: var(--lcn-purple);
  border: 1px solid rgba(122, 44, 243, 0.20);
  box-shadow: none;
}
.lcn-btn--admin:hover {
  color: white;
  background: var(--lcn-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 44, 243, 0.28);
}
.lcn-btn--admin-icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
}
.lcn-lock-icon {
  position: relative;
  display: block;
  width: 15px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
  margin-top: 5px;
}
.lcn-lock-icon::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
}
.lcn-lock-icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
}

.lcn-btn--turquoise {
  background: var(--lcn-gradient-turquoise);
  color: var(--lcn-anthracite);
  box-shadow: 0 4px 14px rgba(20, 217, 217, 0.30);
}
.lcn-btn--turquoise:hover {
  color: var(--lcn-anthracite);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 217, 217, 0.45);
}

.lcn-btn--purple {
  background: var(--lcn-gradient-purple);
  color: white;
  box-shadow: 0 4px 14px rgba(122, 44, 243, 0.30);
}
.lcn-btn--purple:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 44, 243, 0.45);
}

.lcn-btn--outline {
  background: white;
  color: var(--lcn-anthracite);
  border: 2px solid var(--lcn-gray-light);
}
.lcn-btn--outline:hover {
  border-color: var(--lcn-blue);
  color: var(--lcn-blue);
  transform: translateY(-2px);
}

.lcn-btn--ghost {
  background: transparent;
  color: var(--lcn-anthracite);
}
.lcn-btn--ghost:hover {
  background: rgba(13, 110, 253, 0.08);
  color: var(--lcn-blue);
}

/* Effet glow au hover */
.lcn-btn--primary::before,
.lcn-btn--turquoise::before,
.lcn-btn--purple::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.lcn-btn:hover::before { left: 100%; }

/* ---------------------------------------------------------------------
   5. HERO SECTION
--------------------------------------------------------------------- */
.lcn-hero {
  position: relative;
  padding: var(--lcn-space-24) 0 var(--lcn-space-20);
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--lcn-bg) 100%);
}

.lcn-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.lcn-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: lcn-float 16s ease-in-out infinite;
}
.lcn-hero__orb--blue {
  width: 480px; height: 480px;
  background: var(--lcn-blue);
  top: -120px; left: -120px;
}
.lcn-hero__orb--purple {
  width: 540px; height: 540px;
  background: var(--lcn-purple);
  top: 20%; right: -180px;
  animation-delay: -4s;
}
.lcn-hero__orb--turquoise {
  width: 420px; height: 420px;
  background: var(--lcn-turquoise);
  bottom: -120px; left: 35%;
  animation-delay: -8s;
}

.lcn-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--lcn-space-12);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.lcn-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(13, 110, 253, 0.15);
  border-radius: var(--lcn-radius-full);
  font-size: var(--lcn-text-sm);
  font-weight: 500;
  color: var(--lcn-blue);
  margin: 0 auto;
  width: fit-content;
}
.lcn-hero__badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lcn-turquoise);
  box-shadow: 0 0 12px var(--lcn-turquoise);
  animation: lcn-pulse 2s ease-in-out infinite;
}

.lcn-hero__title {
  font-size: clamp(2rem, 5vw, var(--lcn-text-6xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.lcn-hero__title-gradient {
  background: var(--lcn-gradient-tri);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.lcn-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, var(--lcn-text-xl));
  color: var(--lcn-gray);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

.lcn-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lcn-space-4);
  justify-content: center;
}

.lcn-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--lcn-space-6);
  padding-top: var(--lcn-space-12);
  margin-top: var(--lcn-space-8);
  border-top: 1px solid var(--lcn-gray-light);
}
.lcn-hero__stat-num {
  font-family: var(--lcn-font-heading);
  font-size: var(--lcn-text-3xl);
  font-weight: 700;
  background: var(--lcn-gradient-tri);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lcn-hero__stat-label {
  font-size: var(--lcn-text-sm);
  color: var(--lcn-gray);
  font-weight: 500;
}

/* ---------------------------------------------------------------------
   6. SECTIONS GÉNÉRIQUES
--------------------------------------------------------------------- */
.lcn-section {
  padding: var(--lcn-space-20) 0;
  position: relative;
}
.lcn-section--alt { background: white; }
.lcn-section--dark {
  background: var(--lcn-anthracite);
  color: rgba(255, 255, 255, 0.92);
}
.lcn-section--dark h1, .lcn-section--dark h2, .lcn-section--dark h3 {
  color: white;
}

.lcn-section__head {
  text-align: center;
  margin-bottom: var(--lcn-space-16);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lcn-section__eyebrow {
  display: inline-block;
  font-size: var(--lcn-text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lcn-blue);
  margin-bottom: var(--lcn-space-3);
}
.lcn-section__title {
  font-size: clamp(1.75rem, 3.5vw, var(--lcn-text-4xl));
  margin-bottom: var(--lcn-space-4);
}
.lcn-section__lead {
  font-size: var(--lcn-text-lg);
  color: var(--lcn-gray);
  line-height: 1.7;
}

/* Séparateur futuriste */
.lcn-divider {
  position: relative;
  height: 2px;
  background: var(--lcn-gray-light);
  margin: var(--lcn-space-16) auto;
  max-width: 200px;
}
.lcn-divider::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lcn-gradient-tri);
  box-shadow: 0 0 12px rgba(122, 44, 243, 0.5);
}

/* ---------------------------------------------------------------------
   7. CARDS DES 3 SERVICES (Expertises / Conseils / Formations)
--------------------------------------------------------------------- */
.lcn-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lcn-space-8);
}

.lcn-service-card {
  position: relative;
  padding: var(--lcn-space-12) var(--lcn-space-8);
  background: white;
  border-radius: var(--lcn-radius-xl);
  border: 1px solid var(--lcn-gray-light);
  transition: all var(--lcn-transition-slow);
  overflow: hidden;
  text-align: center;
}

.lcn-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--lcn-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--lcn-transition-slow);
}
.lcn-service-card:hover::before { transform: scaleX(1); }

.lcn-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--lcn-shadow-xl);
  border-color: transparent;
}

.lcn-service-card--blue { --accent: var(--lcn-blue); }
.lcn-service-card--blue:hover { box-shadow: var(--lcn-shadow-xl), 0 0 60px rgba(13, 110, 253, 0.15); }
.lcn-service-card--purple { --accent: var(--lcn-purple); }
.lcn-service-card--purple:hover { box-shadow: var(--lcn-shadow-xl), 0 0 60px rgba(122, 44, 243, 0.15); }
.lcn-service-card--turquoise { --accent: var(--lcn-turquoise); }
.lcn-service-card--turquoise:hover { box-shadow: var(--lcn-shadow-xl), 0 0 60px rgba(20, 217, 217, 0.20); }

.lcn-service-card__bird {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--lcn-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--lcn-transition-slow);
}
.lcn-service-card__bird::after {
  content: '';
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  filter: blur(24px);
  z-index: -1;
  transition: opacity var(--lcn-transition);
}
.lcn-service-card:hover .lcn-service-card__bird {
  transform: translateY(-4px) scale(1.06);
}
.lcn-service-card:hover .lcn-service-card__bird::after { opacity: 0.5; }

.lcn-service-card__bird img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.lcn-service-card__title {
  font-size: var(--lcn-text-2xl);
  margin-bottom: var(--lcn-space-3);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lcn-service-card__desc {
  color: var(--lcn-gray);
  margin-bottom: var(--lcn-space-6);
  min-height: 4.5em;
}

.lcn-service-card__list {
  list-style: none;
  text-align: left;
  margin-bottom: var(--lcn-space-6);
}
.lcn-service-card__list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: var(--lcn-text-sm);
  color: var(--lcn-anthracite);
}
.lcn-service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.lcn-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent);
  font-size: var(--lcn-text-sm);
}
.lcn-service-card__link::after {
  content: '→';
  transition: transform var(--lcn-transition);
}
.lcn-service-card:hover .lcn-service-card__link::after {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------------
   8. CARDS GÉNÉRIQUES (Formations, témoignages, etc.)
--------------------------------------------------------------------- */
.lcn-card {
  background: white;
  border-radius: var(--lcn-radius-lg);
  border: 1px solid var(--lcn-gray-light);
  overflow: hidden;
  transition: all var(--lcn-transition);
  display: flex;
  flex-direction: column;
}
.lcn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lcn-shadow-lg);
  border-color: transparent;
}

.lcn-card__header {
  padding: var(--lcn-space-6);
  border-bottom: 1px solid var(--lcn-gray-light);
  position: relative;
}
.lcn-card__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: var(--lcn-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(13, 110, 253, 0.08);
  color: var(--lcn-blue);
  border-radius: var(--lcn-radius-full);
  margin-bottom: var(--lcn-space-3);
}
.lcn-card__title {
  font-size: var(--lcn-text-xl);
  margin-bottom: var(--lcn-space-2);
}
.lcn-card__desc {
  color: var(--lcn-gray);
  font-size: var(--lcn-text-sm);
}
.lcn-card__body {
  padding: var(--lcn-space-6);
  flex: 1;
}
.lcn-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lcn-space-3);
  margin-bottom: var(--lcn-space-4);
}
.lcn-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--lcn-text-sm);
  color: var(--lcn-gray);
}
.lcn-card__meta-item svg {
  width: 16px; height: 16px;
  color: var(--lcn-blue);
}
.lcn-card__footer {
  padding: var(--lcn-space-4) var(--lcn-space-6);
  background: var(--lcn-gray-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lcn-card__price {
  font-weight: 700;
  color: var(--lcn-anthracite);
  font-size: var(--lcn-text-base);
}

/* ---------------------------------------------------------------------
   9. GRILLES
--------------------------------------------------------------------- */
.lcn-grid {
  display: grid;
  gap: var(--lcn-space-6);
}
.lcn-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lcn-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lcn-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------------------------------------------------------------
   10. TÉMOIGNAGES
--------------------------------------------------------------------- */
.lcn-testimonial {
  background: white;
  padding: var(--lcn-space-8);
  border-radius: var(--lcn-radius-lg);
  border: 1px solid var(--lcn-gray-light);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lcn-testimonial::before {
  content: '"';
  position: absolute;
  top: 10px; left: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--lcn-blue);
  opacity: 0.15;
  font-weight: 700;
}
.lcn-testimonial__rating {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: var(--lcn-space-4);
  letter-spacing: 2px;
}
.lcn-testimonial__text {
  font-size: var(--lcn-text-base);
  font-style: italic;
  color: var(--lcn-anthracite);
  line-height: 1.7;
  margin-bottom: var(--lcn-space-6);
  flex: 1;
}
.lcn-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--lcn-gray-light);
  padding-top: var(--lcn-space-4);
}
.lcn-testimonial__name {
  font-weight: 700;
  font-size: var(--lcn-text-base);
  color: var(--lcn-anthracite);
}
.lcn-testimonial__role {
  font-size: var(--lcn-text-sm);
  color: var(--lcn-gray);
}

/* ---------------------------------------------------------------------
   11. CTA SECTION
--------------------------------------------------------------------- */
.lcn-cta {
  position: relative;
  padding: var(--lcn-space-20) 0;
  background: var(--lcn-anthracite);
  color: white;
  overflow: hidden;
}
.lcn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(20, 217, 217, 0.20) 0%, transparent 50%),
              radial-gradient(circle at 50% 100%, rgba(122, 44, 243, 0.20) 0%, transparent 50%);
  pointer-events: none;
}
.lcn-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.lcn-cta__title {
  font-size: clamp(1.75rem, 4vw, var(--lcn-text-5xl));
  color: white;
  margin-bottom: var(--lcn-space-4);
}
.lcn-cta__lead {
  font-size: var(--lcn-text-lg);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--lcn-space-8);
}

/* ---------------------------------------------------------------------
   12. FORMULAIRES
--------------------------------------------------------------------- */
.lcn-form {
  display: flex;
  flex-direction: column;
  gap: var(--lcn-space-4);
}
.lcn-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--lcn-space-4); }
.lcn-form__group { display: flex; flex-direction: column; gap: var(--lcn-space-2); }
.lcn-form__label {
  font-size: var(--lcn-text-sm);
  font-weight: 600;
  color: var(--lcn-anthracite);
}
.lcn-form__label--required::after {
  content: ' *';
  color: var(--lcn-purple);
}

.lcn-form__input,
.lcn-form__textarea,
.lcn-form__select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--lcn-font-body);
  font-size: var(--lcn-text-base);
  color: var(--lcn-anthracite);
  background: white;
  border: 2px solid var(--lcn-gray-light);
  border-radius: var(--lcn-radius);
  transition: all var(--lcn-transition);
}
.lcn-form__input:focus,
.lcn-form__textarea:focus,
.lcn-form__select:focus {
  outline: none;
  border-color: var(--lcn-blue);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
}
.lcn-form__textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--lcn-font-body);
}
.lcn-form__hint {
  font-size: var(--lcn-text-xs);
  color: var(--lcn-gray);
}

/* ---------------------------------------------------------------------
   13. BADGES
--------------------------------------------------------------------- */
.lcn-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  font-size: var(--lcn-text-xs);
  font-weight: 600;
  border-radius: var(--lcn-radius-full);
  background: var(--lcn-gray-50);
  color: var(--lcn-anthracite);
}
.lcn-badge--qualiopi {
  background: linear-gradient(135deg, #0D6EFD, #14D9D9);
  color: white;
}
.lcn-badge--info { background: rgba(13, 110, 253, 0.10); color: var(--lcn-blue); }
.lcn-badge--success { background: rgba(20, 217, 217, 0.15); color: #0E9E9E; }
.lcn-footer__qualiopi-link { display: inline-flex; align-items: center; background: white; border-radius: var(--lcn-radius-sm); padding: .3rem .45rem; }
.lcn-footer__qualiopi-link img { display: block; width: 132px; height: auto; }

.lcn-handicap-notice { border-top: 1px solid rgba(255,255,255,.18); margin-top: var(--lcn-space-8); padding: var(--lcn-space-6) 0; color: rgba(255,255,255,.82); font-size: var(--lcn-text-sm); line-height: 1.65; }
.lcn-handicap-notice a { color: var(--lcn-turquoise-light); }
.lcn-certification-notice { display: flex; align-items: flex-start; gap: 1rem; border-top: 1px solid rgba(255,255,255,.18); padding: var(--lcn-space-6) 0; color: rgba(255,255,255,.82); font-size: var(--lcn-text-sm); line-height: 1.65; }
.lcn-certification-notice img { width: 132px; min-width: 132px; background: white; border-radius: var(--lcn-radius-sm); padding: .3rem .45rem; }
.lcn-certification-notice p { margin: 0; }
.lcn-certification-notice a { color: var(--lcn-turquoise-light); }
.lcn-handicap-card { margin-top: var(--lcn-space-12); padding: 1.5rem 1.75rem; border-left: 4px solid var(--lcn-turquoise); background: rgba(20,217,217,.07); border-radius: var(--lcn-radius-md); }
.lcn-handicap-card h2 { font-size: var(--lcn-text-xl); margin-bottom: .5rem; }
.lcn-handicap-card p { margin: 0; line-height: 1.7; }
.lcn-results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--lcn-space-5); margin-top: var(--lcn-space-8); }
.lcn-result-card { padding: 1.75rem; background: white; border: 1px solid var(--lcn-gray-light); border-radius: var(--lcn-radius-lg); box-shadow: var(--lcn-shadow-sm); display: flex; flex-direction: column; gap: .5rem; }
.lcn-result-card strong { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1; color: var(--lcn-blue); }
.lcn-result-card span { font-weight: 700; color: var(--lcn-anthracite); }
.lcn-result-card small, .lcn-results-update { color: var(--lcn-gray); }
.lcn-results-method { margin-top: var(--lcn-space-12); padding: 1.75rem; background: white; border: 1px solid var(--lcn-gray-light); border-radius: var(--lcn-radius-lg); }
.lcn-results-method h2 { margin-top: 0; }
.lcn-financing-card { padding: 1.75rem; background: rgba(13,110,253,.05); border-left: 4px solid var(--lcn-blue); border-radius: var(--lcn-radius-md); }
.lcn-financing-card h2 { margin-top: 0; }
.lcn-cpf-notice { padding: 1.25rem 1.75rem; background: rgba(122,44,243,.06); border-left: 4px solid var(--lcn-purple); border-radius: var(--lcn-radius-md); }
.lcn-cpf-notice h2 { margin-top: 0; font-size: var(--lcn-text-xl); }
.lcn-carsat-card { margin-top: var(--lcn-space-8); padding: 2rem; border: 1px solid rgba(122,44,243,.2); border-left: 5px solid var(--lcn-purple); border-radius: var(--lcn-radius-lg); background: linear-gradient(135deg, rgba(122,44,243,.06), rgba(17,173,183,.05)); }
.lcn-carsat-card h2 { margin-top: 0; color: var(--lcn-purple); }
.lcn-catalogue-accessible-note { margin: 1rem 0 0; max-width: 52rem; font-size: 1rem; line-height: 1.55; color: var(--lcn-gray); }
.lcn-catalogue-accessible-note a { font-weight: 700; }
.lcn-certification-card { margin-top: var(--lcn-space-8); padding: 1.75rem; background: white; border: 1px solid var(--lcn-gray-light); border-radius: var(--lcn-radius-lg); }
.lcn-certification-card h2 { margin-top: 0; }
@media (max-width: 640px) { .lcn-certification-notice { flex-direction: column; } }
@media (max-width: 640px) { .lcn-results-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   14. FILTRES (catalogue formations)
--------------------------------------------------------------------- */
.lcn-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lcn-space-3);
  margin-bottom: var(--lcn-space-12);
  padding: var(--lcn-space-6);
  background: white;
  border-radius: var(--lcn-radius-lg);
  border: 1px solid var(--lcn-gray-light);
  align-items: center;
}
.lcn-filter-chip {
  padding: 0.5rem 1rem;
  font-size: var(--lcn-text-sm);
  font-weight: 500;
  color: var(--lcn-anthracite);
  background: var(--lcn-gray-50);
  border: 1px solid transparent;
  border-radius: var(--lcn-radius-full);
  cursor: pointer;
  transition: all var(--lcn-transition);
  text-decoration: none;
}
.lcn-filter-chip:hover {
  background: rgba(13, 110, 253, 0.08);
  color: var(--lcn-blue);
  border-color: rgba(13, 110, 253, 0.3);
}
.lcn-filter-chip--active {
  background: var(--lcn-gradient-blue);
  color: white;
  border-color: transparent;
}
.lcn-filter-chip--active:hover { color: white; }

.lcn-search {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.lcn-search input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  font-size: var(--lcn-text-sm);
  border: 1px solid var(--lcn-gray-light);
  border-radius: var(--lcn-radius-full);
  background: white;
  transition: all var(--lcn-transition);
}
.lcn-search input:focus {
  outline: none;
  border-color: var(--lcn-blue);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
}
.lcn-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--lcn-gray);
}

/* ---------------------------------------------------------------------
   15. PLANNING TIMELINE
--------------------------------------------------------------------- */
.lcn-planning-list { display: flex; flex-direction: column; gap: var(--lcn-space-4); }
.lcn-planning-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: var(--lcn-space-6);
  align-items: center;
  padding: var(--lcn-space-6);
  background: white;
  border-radius: var(--lcn-radius-lg);
  border: 1px solid var(--lcn-gray-light);
  border-left: 4px solid var(--lcn-blue);
  transition: all var(--lcn-transition);
}
.lcn-planning-item:hover {
  transform: translateX(4px);
  box-shadow: var(--lcn-shadow-md);
}

.lcn-planning__date {
  text-align: center;
  padding: var(--lcn-space-3);
  background: var(--lcn-gradient-blue);
  border-radius: var(--lcn-radius);
  color: white;
}
.lcn-planning__day {
  display: block;
  font-family: var(--lcn-font-heading);
  font-size: var(--lcn-text-3xl);
  font-weight: 700;
  line-height: 1;
}
.lcn-planning__month {
  display: block;
  font-size: var(--lcn-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.lcn-planning__info h3 {
  font-size: var(--lcn-text-lg);
  margin-bottom: var(--lcn-space-2);
}
.lcn-planning__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lcn-space-4);
  font-size: var(--lcn-text-sm);
  color: var(--lcn-gray);
}
.lcn-planning__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.lcn-planning__seats {
  text-align: center;
  font-size: var(--lcn-text-sm);
}
.lcn-planning__seats strong {
  display: block;
  font-size: var(--lcn-text-xl);
  color: var(--lcn-blue);
  font-family: var(--lcn-font-heading);
}

/* ---------------------------------------------------------------------
   16. FOOTER
--------------------------------------------------------------------- */
.lcn-footer {
  background: var(--lcn-anthracite);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--lcn-space-20) 0 var(--lcn-space-8);
  position: relative;
}
.lcn-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--lcn-gradient-tri);
  opacity: 0.5;
}

.lcn-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--lcn-space-12);
  margin-bottom: var(--lcn-space-12);
}
.lcn-footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--lcn-space-4);
  filter: brightness(1.1);
}
.lcn-footer__tagline {
  font-family: var(--lcn-font-heading);
  font-size: var(--lcn-text-base);
  font-weight: 500;
  color: white;
  margin-bottom: var(--lcn-space-3);
}
.lcn-footer__desc {
  font-size: var(--lcn-text-sm);
  line-height: 1.7;
  margin-bottom: var(--lcn-space-4);
}
.lcn-footer__certifs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lcn-space-2);
}
.lcn-footer__title {
  color: white;
  font-size: var(--lcn-text-base);
  font-weight: 600;
  margin-bottom: var(--lcn-space-4);
}
.lcn-footer__links { list-style: none; }
.lcn-footer__links li { padding: 0.3rem 0; }
.lcn-footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--lcn-text-sm);
  transition: color var(--lcn-transition);
}
.lcn-footer__links a:hover { color: var(--lcn-turquoise); }

.lcn-footer__contact { list-style: none; }
.lcn-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: var(--lcn-text-sm);
}
.lcn-footer__contact svg { color: var(--lcn-turquoise); flex-shrink: 0; margin-top: 2px; }
.lcn-footer__contact a { color: rgba(255, 255, 255, 0.85); }
.lcn-footer__contact a:hover { color: var(--lcn-turquoise); }

.lcn-footer__legal-mini {
  font-size: var(--lcn-text-xs);
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--lcn-space-4);
  line-height: 1.6;
}

.lcn-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: var(--lcn-space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--lcn-space-4);
  font-size: var(--lcn-text-sm);
  color: rgba(255, 255, 255, 0.50);
}
.lcn-footer__admin-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--lcn-text-xs);
}
.lcn-footer__admin-link:hover { color: var(--lcn-turquoise); }

/* ---------------------------------------------------------------------
   17. FLASH MESSAGES
--------------------------------------------------------------------- */
.lcn-flash-wrapper {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
}
.lcn-flash {
  padding: 1rem 1.5rem;
  border-radius: var(--lcn-radius);
  font-weight: 500;
  font-size: var(--lcn-text-sm);
  box-shadow: var(--lcn-shadow-lg);
  background: white;
  border-left: 4px solid var(--lcn-blue);
  animation: lcn-slideInRight 0.4s ease-out;
}
.lcn-flash-success { border-left-color: var(--lcn-turquoise); }
.lcn-flash-error { border-left-color: #DC2626; color: #991B1B; }
.lcn-flash-warning { border-left-color: #F59E0B; }

/* ---------------------------------------------------------------------
   18. PAGE GENERIC HEADER
--------------------------------------------------------------------- */
.lcn-page-header {
  position: relative;
  padding: var(--lcn-space-20) 0 var(--lcn-space-16);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--lcn-bg) 100%);
  text-align: center;
  overflow: hidden;
}
.lcn-page-header::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.lcn-page-header__inner { position: relative; z-index: 1; }
.lcn-page-header__breadcrumb {
  font-size: var(--lcn-text-sm);
  color: var(--lcn-gray);
  margin-bottom: var(--lcn-space-3);
}
.lcn-page-header__breadcrumb a { color: var(--lcn-blue); }
.lcn-page-header__title {
  font-size: clamp(2rem, 4.5vw, var(--lcn-text-5xl));
  margin-bottom: var(--lcn-space-3);
}
.lcn-page-header__lead {
  font-size: var(--lcn-text-lg);
  color: var(--lcn-gray);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------
   19. CONTENU RICHE (.lcn-prose)
--------------------------------------------------------------------- */
.lcn-prose { color: var(--lcn-anthracite); line-height: 1.8; }
.lcn-prose h2, .lcn-prose h3, .lcn-prose h4 {
  margin-top: var(--lcn-space-8);
  margin-bottom: var(--lcn-space-4);
}
.lcn-prose h2 { font-size: var(--lcn-text-2xl); }
.lcn-prose h3 { font-size: var(--lcn-text-xl); }
.lcn-prose p { margin-bottom: var(--lcn-space-4); }
.lcn-prose ul, .lcn-prose ol {
  margin: var(--lcn-space-4) 0;
  padding-left: var(--lcn-space-6);
}
.lcn-prose li { margin-bottom: var(--lcn-space-2); }
.lcn-prose strong { color: var(--lcn-anthracite); font-weight: 700; }
.lcn-prose a {
  color: var(--lcn-blue);
  border-bottom: 1px solid rgba(13, 110, 253, 0.3);
}
.lcn-prose a:hover {
  color: var(--lcn-purple);
  border-bottom-color: var(--lcn-purple);
}

/* ---------------------------------------------------------------------
   20. UTILITAIRES
--------------------------------------------------------------------- */
.lcn-text-center { text-align: center; }
.lcn-mt-4 { margin-top: var(--lcn-space-4); }
.lcn-mt-8 { margin-top: var(--lcn-space-8); }
.lcn-mb-8 { margin-bottom: var(--lcn-space-8); }
.lcn-flex { display: flex; }
.lcn-flex-center { display: flex; align-items: center; justify-content: center; }
.lcn-gap-4 { gap: var(--lcn-space-4); }
.lcn-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
