/* ===================================================
   LinkedIn Local Morocco & LogiTerre 2026
   DESIGN SYSTEM v6.0 — Charte graphique unifiée LLM
   Police : Inter + Syne | Couleurs : #0A66C2 + #E87722
   =================================================== */

/* Importer le système de marque centralisé */
@import url('brand.css');

/* Variables supplémentaires spécifiques à ce fichier (hérite de brand.css) */
:root {
  /* Alias de compatibilité */
  --logi-blue-deep:   #002D5B;
}

/* ============================
   RESET & BASE — hérite brand.css
   ============================ */
/* Padding droit uniquement pour pages avec ticker vertical (index.html) */
body.has-ticker { padding-right: 64px; }
@media (max-width: 768px) { body.has-ticker { padding-right: 0; } }
/* img & a définis dans brand.css */

/* Scrollbar LLM */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--llm-blue); border-radius: 3px; }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes loadBar { from{width:0} to{width:100%} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes confirmPop { 0%{transform:scale(0)} 70%{transform:scale(1.1)} 100%{transform:scale(1)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
@keyframes shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes slideRight { from{transform:translateX(-20px);opacity:0} to{transform:translateX(0);opacity:1} }

/* ============================
   LOADER
   ============================ */
/* ============================
   LOADER — PAGE D'ATTENTE
   ============================ */
.loader-wrap {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, #001228 0%, #001A3A 50%, #00224D 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-wrap.out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; text-align: center;
  animation: fadeUp 0.7s ease both;
}

/* Deux logos côte à côte */
.loader-brand {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Logo LinkedIn Local Morocco */
.loader-llm-logo {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.loader-llm-logo img {
  height: 90px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); /* logo bleu → blanc sur fond sombre */
  animation: float 4s ease-in-out infinite;
}

/* Séparateur vertical */
.loader-sep {
  width: 1px; height: 100px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
  flex-shrink: 0;
}

/* Logo LogiTerre */
.loader-logiterre-logo {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.loader-logiterre-logo img {
  height: 90px; width: auto; object-fit: contain;
  animation: float 4s ease-in-out infinite 0.5s;
}

/* Badge 3ème Édition */
.loader-edition {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,119,34,0.18); border: 1px solid rgba(232,119,34,0.35);
  color: var(--llm-orange); font-family: var(--font-display);
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
  padding: 8px 22px; border-radius: 30px;
  margin-bottom: 20px;
}
.loader-edition i { font-size: 12px; }

/* Date et lieu */
.loader-sub-text {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3.5px; color: rgba(255,255,255,0.32);
  margin-bottom: 32px;
}

/* Barre de progression */
.loader-bar {
  width: 320px; height: 2px;
  background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--logi-cyan), var(--llm-orange), var(--logi-green));
  background-size: 200% 100%;
  animation: loadBar 1.8s ease forwards;
}

/* Texte logo sous chaque image */
.loader-logo-caption {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.28);
}

/* ============================
   BARRE COULEURS
   ============================ */
.brand-color-bar { display: flex; height: 4px; }
.brand-color-bar .bcb-cyan  { flex: 1; background: var(--bar-cyan); }
.brand-color-bar .bcb-navy  { flex: 1; background: var(--bar-navy); }
.brand-color-bar .bcb-orange { flex: 1; background: var(--bar-orange); }
.brand-color-bar .bcb-red   { flex: 1; background: var(--bar-red); }

/* ============================
   NAVIGATION — Design premium
   ============================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 72px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 0 32px;
}
.navbar.hero-nav {
  background: rgba(0,29,61,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.scrolled {
  background: rgba(0,29,61,0.98);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(0,180,216,0.15);
  height: 64px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img { transition: opacity 0.2s; }
.nav-brand:hover img { opacity: 0.85; }
.nav-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.18); flex-shrink: 0; }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; margin: 0 auto 0 24px; }
.nav-menu a {
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 13.5px; font-weight: 500; padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s; letter-spacing: 0.01em;
}
.nav-menu a:hover { color: white; background: rgba(255,255,255,0.07); }
.nav-menu a.active { color: var(--logi-cyan); }

/* Dropdown nav */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  cursor: pointer; display: flex !important; align-items: center; gap: 4px;
  user-select: none;
}
.nav-dropdown-toggle .dd-chevron {
  font-size: 9px; margin-left: 4px;
  transition: transform 0.22s ease;
  display: inline-block;
}
.nav-dropdown.open .dd-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #0D1F35; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 10px; min-width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 800;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* petite flèche */
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.1);
}
.nav-dd-item {
  display: flex !important; align-items: center; gap: 14px;
  padding: 12px 14px !important; border-radius: 12px !important;
  background: transparent !important; text-decoration: none;
  transition: background 0.2s !important;
  color: rgba(255,255,255,0.85) !important;
}
.nav-dd-item:hover { background: rgba(255,255,255,0.07) !important; }
.nav-dd-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.nav-dd-item strong { display: block; font-size: 13px; font-weight: 700; color: white; margin-bottom: 2px; }
.nav-dd-item span { display: block; font-size: 11px; color: rgba(255,255,255,0.42); font-weight: 400; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  color: rgba(255,255,255,0.65); font-size: 18px; text-decoration: none;
  transition: all 0.2s;
}
.nav-icon-link:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-icon-link.whatsapp:hover { color: #25D366; }

.nav-cta-btn {
  background: var(--llm-orange) !important; color: white !important;
  padding: 9px 20px !important; border-radius: var(--radius-full) !important;
  font-weight: 700 !important; font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(232,119,34,0.38);
  transition: all 0.25s !important; letter-spacing: 0.01em;
}
.nav-cta-btn:hover {
  background: var(--llm-orange-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 28px rgba(232,119,34,0.5) !important;
}

/* Hamburger mobile */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: transparent;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.9); border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================
   PARCOURS CROSSLINK BAND
   ============================ */
.parcours-crosslink {
  background: #0A1628;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 28px;
  margin-top: 70px; /* compensates fixed navbar */
}
/* When preceded by a full-section hook, no top margin needed */
section + .parcours-crosslink,
.mission-eco-hook + .parcours-crosslink,
.b2b-hero + .parcours-crosslink {
  margin-top: 0;
}
.pcl-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.pcl-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.45);
  white-space: nowrap; display: flex; align-items: center; gap: 6px;
}
.pcl-tracks {
  display: flex; align-items: center; gap: 10px; flex: 1; flex-wrap: wrap;
}
.pcl-track {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none; transition: all 0.2s;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75);
}
.pcl-track i { font-size: 16px; flex-shrink: 0; }
.pcl-track strong { display: block; font-size: 12px; font-weight: 800; color: white; line-height: 1.3; }
.pcl-track span { display: block; font-size: 10px; color: rgba(255,255,255,0.45); }
.pcl-track:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }
.pcl-track--active { border-color: var(--llm-orange) !important; background: rgba(232,119,34,0.10) !important; }
.pcl-track--active i, .pcl-track--active strong { color: var(--llm-orange); }
.pcl-track--blue i { color: var(--llm-blue); }
.pcl-track--active.pcl-track--blue { border-color: var(--llm-blue) !important; background: rgba(10,102,194,0.10) !important; }
.pcl-track--active.pcl-track--blue strong { color: var(--llm-blue); }
.pcl-track--orange i { color: var(--llm-orange); }
.pcl-track--gold i { color: #C9A84C; }
.pcl-track--gold strong { color: #C9A84C; }
.pcl-track--gold { border-color: rgba(201,168,76,0.3) !important; background: rgba(201,168,76,0.07) !important; }
.pcl-or { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 600; }
.pcl-see-all {
  margin-left: auto; white-space: nowrap;
  font-size: 12px; font-weight: 700; color: var(--llm-orange);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 8px;
  border: 1px solid rgba(232,119,34,0.3);
  transition: all 0.2s;
}
.pcl-see-all:hover { background: rgba(232,119,34,0.10); }
@media (max-width: 768px) {
  .parcours-crosslink { padding: 12px 16px; }
  .pcl-inner { gap: 12px; }
  .pcl-label { display: none; }
  .pcl-tracks { gap: 8px; }
  .pcl-track { padding: 7px 12px; }
  .pcl-track strong { font-size: 11px; }
  .pcl-track span { display: none; }
  .pcl-see-all { display: none; }
}

/* ============================
   PAGE HEADER
   ============================ */
.page-header {
  background: var(--grad-hero);
  padding: 118px 28px 64px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(transparent, rgba(0,0,0,0.1));
  pointer-events: none;
}
.page-header-inner { max-width: var(--container-max); margin: 0 auto; position: relative; z-index: 2; }
.page-header .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.page-header .breadcrumb a { color: var(--logi-cyan); text-decoration: none; transition: opacity 0.2s; }
.page-header .breadcrumb a:hover { opacity: 0.8; }
.page-header .breadcrumb span { color: rgba(255,255,255,0.2); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 64px); font-weight: 800;
  color: white; line-height: 1.05; letter-spacing: -0.5px;
}
.page-header p { font-size: 17px; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 580px; line-height: 1.7; }
.page-header .badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

/* ============================
   SECTIONS — Layout
   ============================ */
.section { padding: 96px 32px; }
.section-sm { padding: 64px 32px; }
.section-dark { background: var(--navy); color: white; }
.section-blue { background: var(--logi-blue); color: white; }
.section-deep { background: var(--logi-blue-deep); color: white; }
.section-gray { background: var(--bg-light); }
.section-white { background: var(--white); }
.container { max-width: var(--container-max); margin: 0 auto; }

/* Section header */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--llm-orange); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: currentColor; border-radius: 2px; flex-shrink: 0;
}
.section-eyebrow.cyan { color: var(--logi-cyan); }
.section-eyebrow.blue { color: var(--logi-blue); }
.section-eyebrow.green { color: var(--logi-green); }
.section-eyebrow.gold { color: var(--gold); }

/* Alias pour compatibilité */
.section-label {
  font-family: var(--font-heading);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--llm-orange); margin-bottom: 12px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--llm-orange); border-radius: 2px; }
.section-label.cyan { color: var(--logi-cyan); }
.section-label.cyan::before { background: var(--logi-cyan); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900; line-height: 1.08; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title.white { color: white; }
.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-medium);
  max-width: 580px; line-height: 1.7;
}
.section-subtitle.white { color: rgba(255,255,255,0.65); }

/* Grid dividers */
.divider {
  height: 1px; background: var(--border);
  margin: 0; border: none;
}
.divider-light { background: rgba(255,255,255,0.07); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-size: 14px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-orange { background: var(--llm-orange); color: white; box-shadow: 0 4px 16px rgba(232,119,34,0.35); }
.btn-orange:hover { background: var(--llm-orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,119,34,0.5); }
.btn-blue { background: var(--logi-blue); color: white; box-shadow: 0 4px 16px rgba(0,112,192,0.3); }
.btn-blue:hover { background: var(--logi-blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,112,192,0.45); }
.btn-cyan { background: var(--logi-cyan); color: white; box-shadow: 0 4px 16px rgba(0,180,216,0.3); }
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,180,216,0.45); }
.btn-white { background: white; color: var(--logi-blue); font-weight: 700; box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-1px); }
.btn-outline-blue { background: transparent; color: var(--logi-blue); border: 1.5px solid var(--logi-blue); }
.btn-outline-blue:hover { background: var(--logi-blue); color: white; transform: translateY(-1px); }
.btn-outline-orange { background: transparent; color: var(--llm-orange); border: 1.5px solid var(--llm-orange); }
.btn-outline-orange:hover { background: var(--llm-orange); color: white; transform: translateY(-1px); }
.btn-gold { background: var(--grad-gold); color: var(--navy); font-weight: 700; box-shadow: 0 4px 16px rgba(201,168,76,0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 15px 40px; font-size: 15px; font-weight: 700; }

/* ============================
   CARDS — Design premium logiterre style
   ============================ */
.card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); }
.card-dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.card-dark:hover { background: rgba(255,255,255,0.07); box-shadow: 0 20px 48px rgba(0,0,0,0.25); }

/* ============================
   SECTION 2 — PDF DESIGN
   (Concept + Meryem Mazini)
   ============================ */

/* Wrapper général */
.s2-wrap {
  width: 100%;
  background: #ffffff;
  font-family: var(--font-body);
}

/* ─── EN-TÊTE dégradé violet→rose ─── */
.s2-header {
  background: linear-gradient(100deg, #7B2FF7 0%, #B44EE8 40%, #E040AE 75%, #F56FA8 100%);
  padding: 22px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 110px;
}
/* Colonne centrale (logo) */
.s2-header-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; flex: 1;
}
/* Colonnes latérales équilibrantes */
.s2-header-side {
  flex: 0 0 200px;
}
.s2-header-cta-wrap {
  display: flex; justify-content: flex-end; align-items: center;
}

/* ── BOUTON REJOINDRE ── */
.s2-header-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  color: white; text-decoration: none;
  padding: 12px 20px; border-radius: 14px;
  transition: background 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}
.s2-header-cta:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
/* Icône ticket */
.s2-header-cta > .fa-ticket-alt {
  font-size: 18px;
  opacity: 0.9;
}
/* Texte */
.s2-header-cta-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.s2-header-cta-text strong {
  font-family: var(--font-display); font-size: 15px; font-weight: 900;
  letter-spacing: 0.2px;
}
.s2-header-cta-text small {
  font-size: 10px; font-weight: 600; opacity: 0.75;
  text-transform: uppercase; letter-spacing: 1.2px;
}
/* Flèche */
.s2-header-cta-arrow {
  font-size: 12px; opacity: 0.7;
  transition: transform 0.22s;
}
.s2-header-cta:hover .s2-header-cta-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Wrapper logo LogiTerre avec Third + Edition */
.s2-logi-logo-wrap {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  flex-wrap: nowrap;
}
.s2-logi-third {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.80);
  font-style: italic; align-self: flex-start; padding-top: 4px;
  font-family: var(--font-body);
}
.s2-logi-logo {
  height: 62px; object-fit: contain;
}
.s2-logi-edition {
  font-size: 16px; font-weight: 400; color: #F5C842;
  font-style: italic; align-self: flex-end; padding-bottom: 6px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}
.s2-header-sub {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.80);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.s2-header-dot { opacity: 0.5; }

/* ── Responsive header ── */
@media (max-width: 820px) {
  .s2-header {
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }
  .s2-header-side { flex: 0; }
  .s2-header-side:first-child { display: none; } /* cacher l'espace vide gauche */
  .s2-header-cta-wrap { justify-content: center; }
}
@media (max-width: 480px) {
  .s2-header-cta { padding: 10px 16px; gap: 10px; }
  .s2-header-cta-text strong { font-size: 13px; }
}

/* ─── CORPS PRINCIPAL 2 colonnes ─── */
.s2-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  max-width: 100%;
  background: #ffffff;
}

/* ─── COLONNE GAUCHE ─── */
.s2-left {
  padding: 36px 40px 36px 48px;
  border-right: 1px solid #e8ecf0;
}
.s2-para {
  font-size: 12.5px;
  line-height: 1.75;
  color: #2a2a2a;
  margin-bottom: 14px;
}
.s2-para--final {
  margin-top: 16px;
  font-size: 11.5px;
  color: #3a3a3a;
}
.s2-trademark {
  font-size: 10.5px;
  color: #888;
}

/* Titre piliers en orange */
.s2-pillars-title {
  font-size: 13px;
  font-weight: 600;
  color: #D97706;
  margin: 16px 0 14px;
  line-height: 1.5;
}
.s2-pillars-title strong { font-weight: 800; }

/* Grille 3 piliers */
.s2-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 6px;
}

/* Pilier générique */
.s2-pillar {
  border-radius: 10px;
  padding: 16px 14px 18px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
}
/* Numéro en filigrane */
.s2-pillar-num {
  position: absolute;
  top: -10px; right: 10px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  user-select: none;
  pointer-events: none;
}
.s2-pillar-content { position: relative; z-index: 1; }
.s2-pillar-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: white;
}
.s2-pillar p {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* Couleurs des 3 piliers */
.s2-pillar--1 { background: linear-gradient(145deg, #0f2d4a 0%, #1e3a5f 100%); }
.s2-pillar--2 { background: linear-gradient(145deg, #1a4a6e 0%, #1d6a9e 100%); }
.s2-pillar--3 { background: linear-gradient(145deg, #0e6e8c 0%, #0891b2 100%); }

/* ─── COLONNE DROITE ─── */
.s2-right {
  display: flex;
  flex-direction: column;
  background: #f0f4f8;
}

/* Bloc LinkedIn Local Morocco (mosaïque bleue) */
.s2-llm-block {
  position: relative;
  background: linear-gradient(160deg, #0a1628 0%, #0a2a4a 50%, #0d3a6e 100%);
  flex: 1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 28px 20px;
}
/* Pattern mosaïque */
.s2-mosaic-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,102,194,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,102,194,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
}
.s2-mosaic-grid::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(10,102,194,0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(96,196,255,0.15) 0%, transparent 50%);
}
/* Logo LLM : image réelle centrée */
.s2-llm-logo-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%;
}
.s2-llm-img {
  width: 80%;
  max-width: 230px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  drop-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Photo + carte Meryem */
.s2-meryem-wrap {
  position: relative;
  flex: 1;
  background: #0a1628;
  display: flex;
  flex-direction: column;
}

/* Lien englobant la photo */
.s2-meryem-photo-link {
  position: relative;
  display: block;
  flex: 1;
  overflow: hidden;
  text-decoration: none;
}
.s2-meryem-photo {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease, filter 0.35s ease;
}
.s2-meryem-photo-link:hover .s2-meryem-photo {
  transform: scale(1.04);
  filter: brightness(0.55);
}

/* Overlay LinkedIn au survol */
.s2-meryem-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: rgba(0, 10, 30, 0.35);
}
.s2-meryem-photo-link:hover .s2-meryem-overlay { opacity: 1; }
.s2-meryem-overlay-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: white; text-align: center;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}
.s2-meryem-photo-link:hover .s2-meryem-overlay-inner { transform: translateY(0); }
.s2-meryem-overlay-inner i {
  font-size: 42px;
  color: #0A66C2;
  background: white;
  width: 70px; height: 70px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(10,102,194,0.5);
}
.s2-meryem-overlay-inner span {
  font-size: 13px; font-weight: 700; color: white;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  letter-spacing: 0.3px;
}

/* Carte nom toujours visible — fond solide sous la photo */
.s2-meryem-card {
  background: linear-gradient(135deg, #0A1628 0%, #0a2240 100%);
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 3px solid #E87722;
}
.s2-meryem-card-line {
  display: none; /* remplacé par border-top */
}
.s2-meryem-card strong {
  font-size: 14px; font-weight: 800; color: #ffffff;
  display: block; letter-spacing: 0.3px;
}
.s2-meryem-card span {
  font-size: 11px; color: rgba(255,255,255,0.72); line-height: 1.5;
}

/* Bouton LinkedIn dans la carte */
.s2-meryem-li-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: #0A66C2;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 17px; flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(10,102,194,0.4);
}
.s2-meryem-li-btn:hover {
  background: #004182;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(10,102,194,0.55);
}

/* ─── BANDE DU BAS ─── */
.s2-footer-band {
  background: linear-gradient(100deg, #7B2FF7 0%, #B44EE8 40%, #E040AE 75%, #F56FA8 100%);
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: center;
}
.s2-footer-inner {
  display: flex; align-items: center; justify-content: center;
}
.s2-footer-llm-img {
  height: 80px;
  max-width: 340px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .s2-body { grid-template-columns: 1fr; }
  .s2-right { flex-direction: row; }
  .s2-llm-block { min-height: 140px; }
  .s2-meryem-photo { height: 200px; width: 50%; }
  .s2-left { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .s2-header { padding: 20px 20px 16px; }
  .s2-logi-logo { height: 40px; }
  .s2-pillars { grid-template-columns: 1fr; }
  .s2-right { flex-direction: column; }
  .s2-meryem-photo { width: 100%; height: 240px; }
  .s2-footer-morocco { font-size: 20px; letter-spacing: 4px; }
  .s2-llm-morocco { font-size: 18px; letter-spacing: 3px; }
}

/* ============================
   STATS BAR — Inspiré logiterre
   ============================ */
.stats-bar {
  background: var(--logi-blue-deep);
  border-top: 1px solid rgba(0,180,216,0.12);
  border-bottom: 1px solid rgba(0,180,216,0.12);
}
.stats-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  align-items: stretch; /* même hauteur pour tous les items */
}
.stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
  min-width: 0; /* prevent overflow in grid */
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-icon-wrap {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; /* never squish the icon */
}
.stat-icon { font-size: 20px; line-height: 1; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 800; color: white; line-height: 1;
  white-space: nowrap; /* empêche le saut de ligne */
}
.stat-label {
  font-size: 10px; color: rgba(255,255,255,0.42);
  margin-top: 5px; text-transform: uppercase; letter-spacing: 0.8px;
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}

/* ============================
   HERO CARD (droite)
   ============================ */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 32px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-card-title {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  color: var(--logi-cyan); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 8px;
}
.hero-card-event {
  font-family: var(--font-display); font-size: 22px; font-weight: 800; color: white; margin-bottom: 4px;
}
.hero-card-loc { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 22px; }
.hero-card-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 0 0 20px; }
.hero-card-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hero-card-item:last-of-type { border-bottom: none; }
.hero-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.hci-orange { background: rgba(232,119,34,0.18); color: var(--llm-orange); }
.hci-blue { background: rgba(0,180,216,0.18); color: var(--logi-cyan); }
.hci-green { background: rgba(58,170,53,0.18); color: var(--logi-green); }
.hci-gold { background: rgba(201,168,76,0.14); color: var(--gold); }
.hero-card-text { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; line-height: 1.4; }
.hero-card-text small { display: block; font-size: 11px; opacity: 0.55; margin-top: 2px; }

/* Countdown */
.countdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-top: 22px; }
.cd-block { text-align: center; background: rgba(0,0,0,0.2); border-radius: var(--radius-sm); padding: 12px 6px; }
.cd-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: white; line-height: 1; }
.cd-label { font-size: 8px; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ============================
   PILIERS / PARCOURS — Cards modernes
   ============================ */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar-card {
  border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border);
  background: white; box-shadow: var(--card-shadow);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--hover-shadow); }

.pillar-head { padding: 32px 28px 24px; display: flex; align-items: flex-start; gap: 16px; }
.pillar-head.orange { background: linear-gradient(135deg, rgba(232,119,34,0.06) 0%, rgba(255,255,255,0) 100%); border-bottom: 1px solid rgba(232,119,34,0.12); }
.pillar-head.blue { background: linear-gradient(135deg, rgba(0,112,192,0.06) 0%, rgba(255,255,255,0) 100%); border-bottom: 1px solid rgba(0,112,192,0.12); }
.pillar-head.cyan { background: linear-gradient(135deg, rgba(0,180,216,0.06) 0%, rgba(255,255,255,0) 100%); border-bottom: 1px solid rgba(0,180,216,0.12); }
.pillar-head.gold { background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(255,255,255,0) 100%); border-bottom: 1px solid rgba(201,168,76,0.18); }

.pillar-icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.pillar-icon.orange { background: var(--llm-orange); color: white; }
.pillar-icon.blue { background: var(--logi-blue); color: white; }
.pillar-icon.cyan { background: var(--logi-cyan); color: white; }
.pillar-icon.gold { background: var(--gold); color: var(--navy); }

.pillar-head-info .day-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px;
}
.orange .day-tag { color: var(--llm-orange); }
.blue .day-tag { color: var(--logi-blue); }
.cyan .day-tag { color: var(--logi-cyan); }
.gold .day-tag { color: var(--gold); }
.pillar-head-info h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); line-height: 1.25; }
.pillar-body { padding: 22px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pillar-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-medium); line-height: 1.55; }
.pillar-feature i { font-size: 11px; margin-top: 3px; flex-shrink: 0; }
.pillar-feature i.check-orange { color: var(--llm-orange); }
.pillar-feature i.check-blue { color: var(--logi-blue); }
.pillar-feature i.check-cyan { color: var(--logi-cyan); }
.pillar-foot { padding: 18px 28px 28px; border-top: 1px solid var(--border); }

/* ============================
   PROGRAMME / AGENDA
   ============================ */
.programme-section { background: var(--navy); padding: 96px 32px; }
.programme-inner { max-width: var(--container-max); margin: 0 auto; }

.day-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  background: rgba(255,255,255,0.04); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08); width: fit-content; overflow: hidden;
}
.day-tab {
  padding: 14px 32px; cursor: pointer; background: transparent;
  border: none; color: rgba(255,255,255,0.45);
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  transition: all 0.25s; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.day-tab:last-child { border-right: none; }
.day-tab:hover { background: rgba(255,255,255,0.06); color: white; }
.day-tab.active { background: var(--logi-blue); color: white; font-weight: 700; }
.day-tab .day-num { font-size: 18px; font-weight: 800; display: block; font-family: var(--font-display); }
.day-tab .day-date { font-size: 10px; opacity: 0.7; margin-top: 2px; }
.day-panel { display: none; }
.day-panel.active { display: block; animation: fadeUp 0.4s ease; }

.agenda-timeline { display: flex; flex-direction: column; }
.agenda-item {
  display: grid; grid-template-columns: 86px 24px 1fr; gap: 0 20px;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.agenda-item:last-child { border-bottom: none; }
.agenda-time {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  color: var(--logi-cyan); padding-top: 3px; text-align: right;
}
.agenda-dot { display: flex; flex-direction: column; align-items: center; padding-top: 6px; }
.agenda-dot .dc { width: 10px; height: 10px; border-radius: 50%; background: var(--logi-cyan); flex-shrink: 0; }
.agenda-dot .dl { width: 1px; flex: 1; background: rgba(255,255,255,0.06); margin-top: 7px; }
.agenda-item:last-child .dl { display: none; }
.agenda-title { font-size: 15px; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 6px; }
.agenda-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.6; }
.agenda-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 20px; display: inline-block; margin-top: 8px;
}
.badge-orange { background: rgba(232,119,34,0.18); color: var(--llm-orange-light); border: 1px solid rgba(232,119,34,0.28); }
.badge-blue { background: rgba(0,112,192,0.18); color: #60B4FF; border: 1px solid rgba(0,112,192,0.28); }
.badge-green { background: rgba(58,170,53,0.18); color: #6BDB65; border: 1px solid rgba(58,170,53,0.22); }
.badge-cyan { background: rgba(0,180,216,0.18); color: var(--logi-cyan); border: 1px solid rgba(0,180,216,0.28); }
.badge-gold { background: rgba(201,168,76,0.18); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.28); }

/* ============================
   TICKETS — Design premium
   ============================ */
.tickets-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ticket-card {
  border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border);
  background: white; box-shadow: var(--card-shadow);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  display: flex; flex-direction: column; position: relative;
}
.ticket-card:hover { transform: translateY(-7px); box-shadow: var(--hover-shadow); }
.ticket-card.featured { border-color: var(--llm-orange); box-shadow: 0 0 0 3px rgba(232,119,34,0.08), var(--shadow-md); }
.ticket-card.pplus { border-color: var(--logi-blue); box-shadow: 0 0 0 3px rgba(0,112,192,0.08), var(--shadow-md); }
.ticket-card.partner { border-color: var(--gold); background: var(--navy); box-shadow: 0 0 0 3px rgba(201,168,76,0.12), var(--hover-shadow); }
.ticket-pop { position: absolute; top: 16px; right: 16px; background: var(--llm-orange); color: white; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 20px; }
.ticket-vip { position: absolute; top: 16px; right: 16px; background: var(--grad-gold); color: var(--navy); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 20px; }
.ticket-head { padding: 28px 24px 20px; }
.ticket-type { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.ticket-type.std { color: var(--text-medium); }
.ticket-type.prem { color: var(--llm-orange); }
.ticket-type.pplu { color: var(--logi-blue); }
.ticket-type.part { color: var(--gold); }
.ticket-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 6px; }
.ticket-amount { font-family: var(--font-display); font-size: 40px; font-weight: 800; line-height: 1; }
.ticket-amount.std { color: var(--text-dark); }
.ticket-amount.prem { color: var(--llm-orange); }
.ticket-amount.pplu { color: var(--logi-blue); }
.ticket-amount.part { color: var(--gold); }
.ticket-currency { font-size: 15px; font-weight: 600; color: var(--text-medium); }
.ticket-card.partner .ticket-currency { color: rgba(255,255,255,0.5); }
.ticket-ht { font-size: 12px; color: var(--text-light); }
.ticket-card.partner .ticket-ht { color: rgba(255,255,255,0.28); }
.ticket-desc { font-size: 13.5px; color: var(--text-medium); line-height: 1.55; }
.ticket-card.partner .ticket-desc { color: rgba(255,255,255,0.5); }
.ticket-div { border: none; border-top: 1px solid var(--border); margin: 0; }
.ticket-card.partner .ticket-div { border-color: rgba(255,255,255,0.08); }
.ticket-features { padding: 18px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ticket-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-medium); line-height: 1.55; }
.ticket-card.partner .ticket-feature { color: rgba(255,255,255,0.65); }
.ticket-feature i { font-size: 11px; margin-top: 3px; flex-shrink: 0; }
.tfi-check { color: var(--logi-green); }
.tfi-star { color: var(--gold); }
.tfi-no { color: var(--border); }
.ticket-feature.dim { opacity: 0.3; }
.ticket-foot { padding: 18px 24px 26px; }
.ticket-foot .btn { width: 100%; justify-content: center; }

/* Prog days grid (index) */
.prog-days-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border-radius: var(--radius-lg); overflow: hidden; }
.prog-day-col {
  background: rgba(255,255,255,0.04); padding: 28px 24px;
  border-top: 3px solid transparent; transition: background 0.25s;
}
.prog-day-col:hover { background: rgba(255,255,255,0.06); }
.prog-day-col.d1 { border-top-color: var(--llm-orange); }
.prog-day-col.d2 { border-top-color: var(--logi-cyan); }
.prog-day-col.d3 { border-top-color: var(--gold); }
.prog-day-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.d1 .prog-day-label { color: var(--llm-orange); }
.d2 .prog-day-label { color: var(--logi-cyan); }
.d3 .prog-day-label { color: var(--gold); }
.prog-day-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: white; margin-bottom: 4px; }
.prog-day-date { font-size: 12px; color: rgba(255,255,255,0.38); margin-bottom: 20px; }
.prog-day-items { display: flex; flex-direction: column; gap: 10px; }
.prog-day-item { display: flex; gap: 12px; align-items: flex-start; }
.prog-day-item .t { font-size: 11px; font-weight: 700; color: var(--llm-orange); white-space: nowrap; padding-top: 2px; min-width: 38px; }
.d2 .prog-day-item .t { color: var(--logi-cyan); }
.d3 .prog-day-item .t { color: var(--gold); }
.prog-day-item .s { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.45; }

/* ============================
   FORMULAIRES
   ============================ */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; letter-spacing: 0.01em; }
.form-label .req { color: var(--llm-orange); margin-left: 2px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px; color: var(--text-dark);
  background: white; transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-control:focus { border-color: var(--logi-blue); box-shadow: 0 0 0 3px rgba(0,112,192,0.08); }
.form-control::placeholder { color: var(--text-light); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
textarea.form-control { resize: vertical; min-height: 100px; }

/* ============================
   BADGES / TAGS
   ============================ */
.tl-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.tl-badge.orange { background: rgba(232,119,34,0.14); color: var(--llm-orange-light); border: 1px solid rgba(232,119,34,0.28); }
.tl-badge.blue { background: rgba(0,112,192,0.14); color: #60B4FF; border: 1px solid rgba(0,112,192,0.28); }
.tl-badge.green { background: rgba(58,170,53,0.14); color: #6BDB65; border: 1px solid rgba(58,170,53,0.22); }
.tl-badge.cyan { background: rgba(0,180,216,0.14); color: var(--logi-cyan); border: 1px solid rgba(0,180,216,0.28); }
.tl-badge.gold { background: rgba(201,168,76,0.14); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.28); }

/* ============================
   MODAL
   ============================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.65);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: white; border-radius: 24px; max-width: 640px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 40px;
  transform: scale(0.96) translateY(8px); transition: transform 0.3s;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.modal-header h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.modal-close {
  width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--bg-light);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background 0.2s; flex-shrink: 0; margin-left: 16px;
}
.modal-close:hover { background: var(--border); }

/* ============================
   CONFIRMATION
   ============================ */
.confirm-box {
  text-align: center; padding: 64px 40px; background: var(--bg-light);
  border-radius: 24px; max-width: 600px; margin: 0 auto;
}
.confirm-icon {
  width: 80px; height: 80px; border-radius: 50%; background: var(--logi-green);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 34px; margin: 0 auto 28px;
  animation: confirmPop 0.5s ease;
}
.confirm-ref {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--logi-blue); letter-spacing: 2px; margin: 12px 0;
  padding: 12px 28px; background: rgba(0,112,192,0.08);
  border-radius: var(--radius-md); display: inline-block;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  background: var(--grad-hero); padding: 96px 32px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 56px); font-weight: 800;
  color: white; margin-bottom: 18px; letter-spacing: -0.5px;
}
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.62); margin-bottom: 40px; line-height: 1.75; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================
   HOST / QUOTE
   ============================ */
.host-section { background: var(--bg-light); padding: 96px 32px; }
.host-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.host-quote-mark { font-size: 80px; line-height: 1; color: var(--logi-blue); font-family: var(--font-display); margin-bottom: -20px; opacity: 0.5; }
.host-quote-text { font-size: 19px; font-style: italic; line-height: 1.75; color: var(--text-dark); font-weight: 500; margin-bottom: 24px; }
.host-meta { display: flex; align-items: center; gap: 14px; }
.host-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-blue); display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; font-weight: 800; flex-shrink: 0; }
.host-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.host-role { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.host-card { background: var(--navy); border-radius: var(--radius-xl); padding: 36px; }
.host-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: white; margin-bottom: 24px; }
.host-day { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.host-day:last-child { border-bottom: none; }
.host-day-badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.host-day-badge.d1 { background: rgba(232,119,34,0.18); color: var(--llm-orange-light); }
.host-day-badge.d2 { background: rgba(0,180,216,0.18); color: var(--logi-cyan); }
.host-day-badge.d3 { background: rgba(201,168,76,0.18); color: var(--gold-light); }
.host-day-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.host-day-text strong { color: white; display: block; font-size: 14px; margin-bottom: 2px; }

/* ============================
   VENUE
   ============================ */
.venue-section { padding: 96px 32px; background: white; }
.venue-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: start; }
.venue-detail { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-dark); margin-bottom: 12px; }
.venue-detail i { color: var(--logi-blue); width: 20px; text-align: center; }
.venue-map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.venue-map iframe { display: block; width: 100%; height: 380px; border: none; }

/* ============================
   STEPS
   ============================ */
.parcours-steps { display: flex; gap: 0; align-items: stretch; }
.parcours-step {
  flex: 1; background: white; border: 1px solid var(--border);
  padding: 28px 20px; text-align: center; position: relative; transition: all 0.25s;
}
.parcours-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -18px; top: 50%;
  transform: translateY(-50%); font-size: 22px; color: var(--logi-blue);
  z-index: 2; background: white; padding: 0 4px;
}
.parcours-step:hover { background: rgba(0,112,192,0.04); border-color: var(--logi-blue); }
.ps-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--logi-blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 800; margin: 0 auto 14px;
}
.ps-num.orange { background: var(--llm-orange); }
.ps-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.ps-desc { font-size: 12px; color: var(--text-medium); line-height: 1.5; }

/* ============================
   ALERTS
   ============================ */
.alert { padding: 14px 18px; border-radius: var(--radius-md); font-size: 14px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.alert-info { background: rgba(0,180,216,0.08); border: 1px solid rgba(0,180,216,0.18); color: var(--logi-blue-dark); }
.alert-success { background: rgba(58,170,53,0.08); border: 1px solid rgba(58,170,53,0.18); color: #2A8A26; }
.alert-warning { background: rgba(232,119,34,0.08); border: 1px solid rgba(232,119,34,0.18); color: var(--llm-orange-dark); }

/* ============================
   FOOTER — Design premium
   ============================ */
/* ============================================================
   FOOTER — Dégradé bleu LinkedIn
   ============================================================ */
.footer {
  background: linear-gradient(160deg, #0A66C2 0%, #004182 35%, #002D5B 65%, #001A3A 100%);
  color: rgba(255,255,255,0.82);
  padding: 72px 32px 0;
  border-top: none;
  position: relative;
  overflow: hidden;
}
/* Grille décorative subtile en fond */
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
/* Halo lumineux haut-gauche */
.footer::after {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.footer-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  position: relative; z-index: 1;
}
.footer-brand p {
  font-size: 13.5px; line-height: 1.75; margin-top: 18px; max-width: 280px;
  color: rgba(255,255,255,0.80);
}
.footer-col h4 {
  font-size: 11px; font-weight: 800; color: white;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 18px;
  opacity: 1;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px; color: rgba(255,255,255,0.78);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  max-width: var(--container-max); margin: 0 auto;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.65); }
.footer-copy a { color: rgba(255,255,255,0.65) !important; }
.footer-copy strong { color: rgba(255,255,255,0.75) !important; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.80); font-size: 14px; text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { background: white; color: var(--llm-blue); }
/* ── Footer contact column ── */
.footer-col-contact h4 {
  font-size: 11px; font-weight: 800; color: white;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 18px;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.80);
  text-decoration: none; line-height: 2; transition: color 0.2s;
}
.footer-contact-item i { color: #FFD580; font-size: 14px; width: 18px; flex-shrink: 0; }
.footer-contact-item:hover { color: white; }
.footer-tel-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.80);
  text-decoration: none; line-height: 2;
}
.footer-tel-item i { color: #FFD580; font-size: 14px; width: 18px; flex-shrink: 0; }
/* ── Footer social icons ── */
.footer-social-row { display: flex; gap: 8px; margin-top: 16px; }
.footer-social-row a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); font-size: 14px;
  text-decoration: none; transition: all 0.2s;
}
.footer-social-row a:hover { background: white; color: var(--llm-blue); }
.footer-color-bar { display: flex; height: 5px; }
.footer-color-bar .cb1 { flex: 1; background: var(--bar-cyan); }
.footer-color-bar .cb2 { flex: 1; background: var(--bar-navy); }
.footer-color-bar .cb3 { flex: 1; background: var(--bar-orange); }
.footer-color-bar .cb4 { flex: 1; background: var(--bar-red); }

/* ============================
   PHOTOS GRID
   ============================ */
.photos-section { overflow: hidden; }
.photos-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.photo-item { overflow: hidden; aspect-ratio: 4/3; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); display: block; }
.photo-item:hover img { transform: scale(1.07); }

/* ============================
   QUOTE SECTION
   ============================ */
.quote-section { background: var(--logi-blue); padding: 80px 32px; }
.quote-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-inner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 22px); font-weight: 500;
  color: white; font-style: italic; line-height: 1.7; margin-bottom: 22px;
}
.quote-author { color: rgba(255,255,255,0.6); font-size: 14px; }
.quote-author strong { color: white; }

/* ============================
   PROGRAMME PREVIEW
   ============================ */
.prog-preview-section { background: var(--navy); padding: 96px 32px; }
.prog-preview-inner { max-width: var(--container-max); margin: 0 auto; }
.prog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }

/* ============================
   TARIFS RÉSUMÉ
   ============================ */
.tarifs-section { padding: 96px 32px; background: white; }
.tarifs-inner { max-width: var(--container-max); margin: 0 auto; }
.tarifs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .tickets-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .host-inner { grid-template-columns: 1fr; }
  /* stats-bar : légèrement plus compacte entre 900-1100px */
  .stat-item { padding: 20px 18px; gap: 12px; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 10px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .nav-menu { display: none; }
  .nav-actions .btn-outline-white { display: none; }
  .nav-hamburger { display: flex; }
  .section, .section-sm { padding: 64px 20px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 18px 16px; gap: 12px; }
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 9.5px; }
  .tickets-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .venue-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .parcours-steps { flex-direction: column; }
  .parcours-step::after { display: none !important; }
  .photos-grid { grid-template-columns: repeat(2,1fr); }
  .prog-days-grid { grid-template-columns: 1fr; }
  .nav-icon-link { width: 32px; height: 32px; font-size: 16px; }
  /* Grilles formules en colonne sur mobile */
  .formules-grid, .tfc-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  /* Titre hero réduit */
  .page-header h1 { font-size: clamp(26px, 7vw, 40px); }
  /* Boutons hero en colonne */
  .rj-hero-nav, .hero-cta-row { flex-direction: column; align-items: center; }
  .rj-hero-nav a { width: 100%; max-width: 300px; justify-content: center; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-actions { gap: 4px; }
  .nav-actions .nav-icon-link { display: none; }
}

/* ======================================================
   HARMONISATION BRANDING LLM v6.0
   Éléments visuels signature LinkedIn Local Morocco
   ====================================================== */

/* --- Typographie display accentuée --- */
.section-title,
.page-header h1 {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
}

/* --- Accent orange LLM sur les éléments actifs --- */
.nav-link.active,
.nav-link:hover {
  color: var(--llm-orange) !important;
}

/* --- Bouton CTA nav harmonisé LLM --- */
.nav-cta-btn {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* --- Footer branding LLM renforcé --- */
footer h4, footer .footer-title {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px !important;
  color: rgba(255,255,255,0.35) !important;
}
footer a:hover {
  color: var(--llm-orange) !important;
}

/* --- Badges LLM harmonisés --- */
.badge, .status-badge, .tier-badge {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --- Accordions branding LLM --- */
.accordion-header {
  font-family: var(--font-display);
}

/* --- Prix en display font --- */
.price, .amount, .tfc-amount, .rec-price, .plan-price {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
}

/* --- Inputs focus LLM blue --- */
input:focus, select:focus, textarea:focus {
  border-color: var(--llm-blue) !important;
  box-shadow: 0 0 0 3px rgba(10,102,194,0.12) !important;
  outline: none;
}

/* --- Labels de formulaire uppercase LLM --- */
.form-group label, .field-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-medium);
}

/* --- Cartes harmonisées LLM --- */
.card, .formule-card, .pcard, .benefit-card {
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .formule-card:hover {
  transform: translateY(-4px);
}

/* --- Section eyebrow harmonisée --- */
.section-eyebrow, .section-label {
  font-family: var(--font-heading) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
}

/* --- Ligne décorative orange sous les titres de section --- */
.section-title-decorated::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--grad-orange);
  border-radius: 2px;
  margin-top: 12px;
}

/* --- Icône LLM "in" unifiée --- */
.llm-in-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--llm-blue);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -1px;
}

/* --- Gradient hero LLM actualisé --- */
.mission-hook,
.hero-section,
.rec-hero {
  background: var(--grad-hero);
}

/* --- Confirmation ref box --- */
.confirm-ref {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  letter-spacing: 2px;
}

/* --- Step circles LLM --- */
.step-num, .step-number, .stepper-step-num {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
}

/* --- CTA sections harmonisées --- */
.cta-section h2, .cta-section h3 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em;
}

