/* ==========================================================================
   NACELIO 2026 — Styles principaux
   HETERACTIS-CMS — Bootstrap 5.3.7 + classes he-*
   ========================================================================== */

:root {
  --he-primary: #29b8ce;
  --he-primary-dark: #1796a6;
  --he-primary-deeper: #0f7a8a;
  --he-charcoal: #3a3a3a;
  --he-gray-text: #474747;
  --he-gray-light: #f5f5f5;
  --he-gray-mid: #e0e0e0;
  --he-accent: #f59e0b;
  --he-white: #ffffff;
  --he-max-width: 1240px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Fira Sans', sans-serif;
  color: var(--he-gray-text);
  background: var(--he-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.he-text-primary { color: var(--he-primary) !important; }
.he-bg-primary { background-color: var(--he-primary) !important; }
.he-bg-charcoal { background-color: var(--he-charcoal) !important; }
.he-bg-gray-light { background-color: var(--he-gray-light) !important; }

/* ---------- Container override ---------- */
.container {
  max-width: var(--he-max-width);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.he-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1050;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.he-header.header-scrolled {
  background-color: rgba(255,255,255,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.he-header-inner {
  height: 64px;
}
@media (min-width: 992px) {
  .he-header-inner { height: 80px; }
}

.he-logo {
  height: 36px;
}
@media (min-width: 992px) {
  .he-logo { height: 40px; }
}

.he-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--he-charcoal);
}
@media (min-width: 992px) {
  .he-brand { font-size: 1.5rem; }
}

/* Nav links */
.he-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--he-charcoal);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.he-nav-link:hover { color: var(--he-primary); }
.he-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--he-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.he-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile menu */
.he-menu-toggle {
  border: none;
  background: none;
  color: var(--he-charcoal);
}
.he-mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}
.he-mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}
.he-mobile-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--he-charcoal);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.he-mobile-link:hover { color: var(--he-primary); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.he-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: var(--he-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
}
.he-btn-primary::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%,-50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.he-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(41,184,206,0.4);
}
.he-btn-primary:hover::after { width: 300px; height: 300px; }
.he-btn-primary:active { transform: translateY(0); }

.he-btn-primary-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.he-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.he-btn-outline::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: var(--he-primary);
  transition: height 0.3s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.he-btn-outline:hover { color: #fff; }
.he-btn-outline:hover::before { height: 100%; }
.he-btn-outline > * { position: relative; z-index: 1; }

.he-btn-outline-primary {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--he-primary);
  color: var(--he-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.he-btn-outline-primary:hover {
  background: var(--he-primary);
  color: #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.he-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.he-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.he-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.he-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(58,58,58,0.9), rgba(58,58,58,0.7), rgba(58,58,58,0.4));
}
.he-hero-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 96px;
  background: linear-gradient(to top, #fff, transparent);
}

.he-hero-content {
  position: relative;
  max-width: 680px;
}

.he-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(41,184,206,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(41,184,206,0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.he-badge-dot {
  width: 8px; height: 8px;
  background: var(--he-primary);
  border-radius: 50%;
  animation: he-pulse 2s ease-in-out infinite;
}
@keyframes he-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.he-badge-text {
  color: var(--he-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.he-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) { .he-hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .he-hero-title { font-size: 3.75rem; } }
@media (min-width: 992px) { .he-hero-title { font-size: 4.5rem; } }

.he-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media (min-width: 576px) { .he-hero-subtitle { font-size: 1.25rem; } }

.he-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}
.he-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.he-hero-meta-item svg { color: var(--he-primary); }
.he-hero-meta-item span { font-weight: 500; color: #fff; }

/* ==========================================================================
   CHIFFRES CLES
   ========================================================================== */

.he-chiffres {
  position: relative;
  margin-top: -48px;
  z-index: 10;
}
.he-chiffres-grid {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  overflow: hidden;
}
.he-chiffre-item {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.he-chiffre-item:last-child { border-right: none; }
@media (min-width: 992px) { .he-chiffre-item { padding: 2rem; } }
.he-chiffre-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--he-primary);
}
@media (min-width: 992px) { .he-chiffre-value { font-size: 2.25rem; } }
.he-chiffre-label {
  font-size: 0.875rem;
  color: rgba(58,58,58,0.6);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ==========================================================================
   SECTIONS GENERIQUES
   ========================================================================== */

.he-section {
  padding: 5rem 0;
}
@media (min-width: 992px) { .he-section { padding: 7rem 0; } }

.he-section-dark {
  background: var(--he-charcoal);
  color: #fff;
}
.he-section-light {
  background: var(--he-gray-light);
}
.he-section-gradient {
  background: linear-gradient(135deg, var(--he-primary-deeper), var(--he-primary-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.he-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.he-section-tag-primary {
  background: rgba(41,184,206,0.1);
  color: var(--he-primary);
}
.he-section-tag-primary-dark {
  background: rgba(41,184,206,0.2);
  color: var(--he-primary);
}
.he-section-tag-white {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.he-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--he-charcoal);
}
@media (min-width: 768px) { .he-section-title { font-size: 2.25rem; } }
.he-section-dark .he-section-title { color: #fff; }

.he-section-subtitle {
  color: rgba(71,71,71,0.6);
  margin-top: 1rem;
  max-width: 640px;
}
.he-section-dark .he-section-subtitle { color: rgba(255,255,255,0.6); }

.he-line-reveal {
  height: 2px;
  background: var(--he-primary);
  max-width: 320px;
  margin: 0 auto 2.5rem;
}

/* ==========================================================================
   POSITIONNEMENT
   ========================================================================== */

.he-about-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.he-about-img-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 320px;
}
@media (min-width: 992px) {
  .he-about-img-wrapper img { height: 480px; }
}

.he-floating-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--he-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.he-floating-badge-value { font-size: 1.5rem; font-weight: 900; }
.he-floating-badge-label { font-size: 0.875rem; opacity: 0.9; }

.he-tag-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--he-gray-light);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--he-charcoal);
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

a.he-tag-chip:hover {
  background: var(--he-primary);
  color: #fff;
}

/* ==========================================================================
   FILIERES CARDS
   ========================================================================== */

.he-filiere-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 288px;
}
.he-filiere-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.he-filiere-card:hover img { transform: scale(1.12); }
.he-filiere-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,58,58,0.9), rgba(58,58,58,0.4), transparent);
}
.he-filiere-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.he-filiere-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.he-filiere-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin: 0;
}
.he-filiere-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--he-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.he-filiere-card:hover::after { transform: scaleX(1); }

/* ==========================================================================
   PROGRAMME — Cards journee + Conferences
   ========================================================================== */

.he-card-hover {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
}
.he-card-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41,184,206,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.he-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
.he-card-hover:hover::before { opacity: 1; }
.he-card-hover .he-card-img {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.he-card-hover:hover .he-card-img { transform: scale(1.08); }

.he-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.he-badge-vip { background: var(--he-accent); color: var(--he-charcoal); }
.he-badge-public { background: var(--he-primary); color: #fff; }

.he-badge-shimmer {
  position: relative;
  overflow: hidden;
}
.he-badge-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: he-shimmer 3s ease-in-out infinite;
}
@keyframes he-shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.he-conf-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--he-gray-light);
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.he-conf-row:hover {
  background: rgba(41,184,206,0.05);
  transform: translateX(6px);
}
.he-conf-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--he-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}
.he-conf-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--he-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.he-conf-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--he-charcoal);
  transition: color 0.3s ease;
}
.he-conf-row:hover .he-conf-title { color: var(--he-primary); }
.he-conf-speaker {
  font-size: 0.8125rem;
  color: rgba(71,71,71,0.7);
  font-style: italic;
}
.he-conf-desc {
  font-size: 0.875rem;
  color: rgba(71,71,71,0.6);
  margin-top: 0.25rem;
}

/* ==========================================================================
   LIEUX
   ========================================================================== */

.he-lieu-card {
  overflow: hidden;
  border-radius: 8px;
}
.he-lieu-img {
  position: relative;
  height: 256px;
  overflow: hidden;
}
.he-lieu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.he-lieu-card:hover .he-lieu-img img { transform: scale(1.08); }
.he-lieu-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,58,58,0.6), transparent);
}
.he-lieu-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--he-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   GALERIE
   ========================================================================== */

.he-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.he-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.he-gallery-item:hover img { transform: scale(1.1); }
.he-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--he-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
}
.he-gallery-item:hover::after { opacity: 0.2; }
.he-gallery-square {
  aspect-ratio: 1;
  max-height: 280px;
}
.he-gallery-wide {
  aspect-ratio: 2/1;
  max-height: 280px;
}
@media (min-width: 992px) {
  .he-gallery-square { max-height: 320px; }
  .he-gallery-wide { max-height: 320px; }
}

/* ==========================================================================
   PARTENAIRES
   ========================================================================== */

.he-partner-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.he-partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--he-primary);
  box-shadow: 0 12px 28px rgba(41,184,206,0.18);
}
.he-partner-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}
.he-partner-card-premium {
  border: 2px solid var(--he-primary);
  box-shadow: 0 4px 12px rgba(41,184,206,0.1);
}

.he-partner-tier-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--he-primary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   OFFRES PARTENAIRES
   ========================================================================== */

.he-pricing-card {
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
@media (min-width: 992px) { .he-pricing-card { padding: 2.5rem; } }
.he-pricing-card:hover {
  transform: translateY(-6px);
}
.he-pricing-featured {
  border: 2px solid var(--he-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  position: relative;
}
.he-pricing-featured:hover {
  box-shadow: 0 16px 40px rgba(41,184,206,0.25);
}
.he-pricing-dark {
  background: var(--he-charcoal);
  color: #fff;
  border-color: transparent;
  position: relative;
}
.he-pricing-dark:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.he-pricing-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  white-space: nowrap;
}

.he-pricing-level {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.he-pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.he-pricing-price {
  font-size: 1.875rem;
  font-weight: 900;
}
.he-pricing-price span {
  font-size: 1.125rem;
  font-weight: 600;
}

.he-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.he-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  padding: 0.375rem 0;
}
.he-check-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--he-primary);
  margin-top: 2px;
}

/* ==========================================================================
   AVANTAGES FONDATEURS
   ========================================================================== */

.he-advantage-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              background-color 0.3s ease,
              border-color 0.3s ease;
}
.he-advantage-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.he-advantage-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* ==========================================================================
   CONTACT / CTA
   ========================================================================== */

.he-contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.he-contact-icon {
  width: 48px; height: 48px;
  background: rgba(41,184,206,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.he-contact-icon svg { color: var(--he-primary); }

.he-contact-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.he-contact-img-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 384px;
}
@media (min-width: 992px) {
  .he-contact-img-wrapper img { height: 520px; }
}

.he-contact-avatar {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px;
  max-height: 64px;
  min-width: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .he-contact-avatar {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px;
    max-height: 72px;
    min-width: 72px;
  }
}

.he-contact-card-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.he-footer {
  background: var(--he-charcoal);
  padding: 3rem 0;
}
.he-footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.he-footer p,
.he-footer a { font-size: 0.875rem; }
.he-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.he-footer a:hover { color: var(--he-primary); }
.he-footer h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.he-footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 2.5rem;
}
.he-footer-legal a,
.he-footer-legal span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
}
.he-footer-dot {
  width: 4px; height: 4px;
  background: var(--he-primary);
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================================
   PAGES LEGALES
   ========================================================================== */

.he-legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
  line-height: 1.8;
}
.he-legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--he-charcoal);
  margin-bottom: 2rem;
}
.he-legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--he-charcoal);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.he-legal-content p {
  color: var(--he-gray-text);
  margin-bottom: 1rem;
}
.he-legal-content a { color: var(--he-primary); }

/* ==========================================================================
   UTILITAIRES
   ========================================================================== */

.he-img-parallax {
  will-change: transform;
}

.he-text-white-80 { color: rgba(255,255,255,0.8); }
.he-text-white-70 { color: rgba(255,255,255,0.7); }
.he-text-white-60 { color: rgba(255,255,255,0.6); }
.he-text-white-50 { color: rgba(255,255,255,0.5); }
.he-text-white-30 { color: rgba(255,255,255,0.3); }
.he-text-muted-60 { color: rgba(71,71,71,0.6); }
.he-text-muted-70 { color: rgba(71,71,71,0.7); }
.he-text-muted-80 { color: rgba(71,71,71,0.8); }

/* ==========================================================================
   MARQUEE PARTENAIRES
   ========================================================================== */

.he-marquee-wrap {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--he-gray-light);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.he-marquee-track {
  display: flex;
  width: max-content;
  animation: he-marquee-scroll 40s linear infinite;
}

.he-marquee-wrap:hover .he-marquee-track {
  animation-play-state: paused;
}

.he-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 2.5rem;
  border-right: 1px solid rgba(0,0,0,0.06);
  min-width: 320px;
}

.he-marquee-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.he-marquee-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.he-marquee-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--he-charcoal);
}

.he-marquee-desc {
  font-size: 0.8125rem;
  color: rgba(71,71,71,0.6);
  line-height: 1.4;
}

@keyframes he-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .he-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}

/* ==========================================================================
   SHOWCASE PARTENAIRES (fiches individuelles)
   ========================================================================== */

.he-showcase-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.he-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(41,184,206,0.12);
  border-color: var(--he-primary);
  color: inherit;
}

.he-showcase-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 8px;
  padding: 8px;
  background: var(--he-gray-light);
}

.he-showcase-body {
  flex: 1;
  min-width: 0;
}

.he-showcase-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--he-charcoal);
  margin-bottom: 0.25rem;
}

.he-showcase-text {
  font-size: 0.875rem;
  color: rgba(71,71,71,0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.he-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--he-primary);
}

.he-showcase-card:hover .he-showcase-link {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .he-showcase-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ==========================================================================
   COUNTDOWN
   ========================================================================== */

.he-countdown {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.he-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.he-countdown-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.he-countdown-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.he-countdown-places {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--he-accent);
  font-weight: 600;
  margin-left: 0.5rem;
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */

.he-sticky-cta {
  display: none;
}

@media (max-width: 991.98px) {
  .he-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    justify-content: center;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .he-sticky-cta.visible {
    transform: translateY(0);
  }
  .he-sticky-cta .he-btn-primary {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* ==========================================================================
   PLAN D'IMPLANTATION PLACEHOLDER
   ========================================================================== */

.he-plan-placeholder {
  background: var(--he-gray-light);
  border: 2px dashed rgba(0,0,0,0.1);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   FORMULAIRE CAPTURE
   ========================================================================== */

.he-form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--he-charcoal);
  margin-bottom: 0.25rem;
}

.he-form-input {
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.he-form-input:focus {
  border-color: var(--he-primary);
  box-shadow: 0 0 0 3px rgba(41,184,206,0.15);
}

/* ==========================================================================
   SHOWCASE TIER HEADERS
   ========================================================================== */

.he-showcase-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--he-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(41,184,206,0.2);
}

.he-showcase-tier:first-child {
  margin-top: 0;
}
