/* ============================================
   EKWALLA PRIS MARIE SONIA — Site Vitrine
   Palette vivante · Innovante · Engageante
   ============================================ */

:root {
  /* Couleurs vivantes */
  --coral: #FF6B6B;
  --coral-light: #FF8E8E;
  --magenta: #E91E8C;
  --magenta-deep: #C2185B;
  --teal: #00D4AA;
  --teal-dark: #00A888;
  --cyan: #06B6D4;
  --purple: #9333EA;
  --purple-deep: #7C3AED;
  --gold: #FBBF24;
  --gold-light: #FCD34D;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --slate: #334155;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container: min(1200px, 92vw);

  /* Effects */
  --shadow-glow: 0 0 60px rgba(0, 212, 170, 0.25);
  --shadow-card: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  background: var(--off-white);
  overflow-x: hidden;
}

/* Accessibilité — lien d'évitement */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  padding: 0.75rem 1.25rem;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

#main-content:focus {
  outline: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Cursor glow effect */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  padding: 0.55rem 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.nav-menu {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-menu-inner {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.nav-backdrop.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.5px;
}

.logo-text {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  max-width: 11rem;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  transition: color var(--transition), background var(--transition), transform var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links > li > a:not(.nav-cta):not(.nav-link) {
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.84rem;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: linear-gradient(135deg, var(--coral), var(--magenta));
  padding: 0.62rem 1.25rem !important;
  border-radius: 999px;
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.28);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 30, 140, 0.38);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  gap: 0.45rem;
}

.nav-dropdown-label {
  white-space: nowrap;
}

.nav-dropdown-caret {
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-toggle {
  background: rgba(20, 184, 166, 0.14);
  color: var(--white);
}

.nav-dropdown.open .nav-dropdown-caret {
  transform: rotate(-135deg) translateY(1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.98);
  min-width: 250px;
  list-style: none;
  padding: 0.45rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s ease;
  z-index: 1002;
  overflow: hidden;
}

.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown-heading {
  padding: 0.45rem 0.75rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  pointer-events: none;
}

.nav-dropdown-menu li:not(.nav-dropdown-heading) {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-dropdown.open .nav-dropdown-menu li:not(.nav-dropdown-heading) {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown.open .nav-dropdown-menu li:nth-child(2) { transition-delay: 0.03s; }
.nav-dropdown.open .nav-dropdown-menu li:nth-child(3) { transition-delay: 0.07s; }
.nav-dropdown.open .nav-dropdown-menu li:nth-child(4) { transition-delay: 0.11s; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.62rem 0.8rem;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}

.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(168, 85, 247, 0.08));
  color: var(--navy);
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + 3rem) 0 4rem;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--teal);
  opacity: 0.35;
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--magenta);
  opacity: 0.3;
  bottom: 10%;
  left: -10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--purple);
  opacity: 0.25;
  top: 40%;
  left: 30%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-overlay {
  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;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portrait-frame {
  position: relative;
  width: min(360px, 88vw);
  aspect-ratio: 602 / 1024;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  padding: 3px;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: calc(var(--radius-lg) - 3px);
  background: var(--navy);
}

.portrait-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.4rem 1.2rem;
  background: linear-gradient(135deg, var(--coral), var(--magenta));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
}

.portrait-caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-lead strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 170, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 212, 170, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  background: rgba(233, 30, 140, 0.06);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.05rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 700px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.25s; }
.animate-in:nth-child(3) { animation-delay: 0.4s; }
.animate-in:nth-child(4) { animation-delay: 0.55s; }
.animate-in:nth-child(5) { animation-delay: 0.7s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SECTIONS COMMON ========== */
.section {
  padding: var(--section-pad) 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}

.section-tag.light {
  color: var(--teal);
}

.section-header h2,
.vision-content h2,
.ambition-content h2,
.contact-intro h2,
.international-text h2,
.leadership-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 1.1rem;
}

.story-lead {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.story-lead strong {
  color: var(--navy);
}

/* ========== PARCOURS ========== */
.parcours {
  background: var(--white);
}

.parcours-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.parcours-story p {
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.parcours-story em {
  color: var(--magenta);
  font-style: normal;
  font-weight: 600;
}

.parcours-highlights {
  list-style: none;
  margin-top: 2rem;
}

.parcours-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.highlight-icon {
  color: var(--teal);
  font-size: 0.7rem;
  margin-top: 0.4rem;
}

.parcours-visual {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.parcours-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.photo-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}

.photo-card--tall {
  grid-row: span 2;
}

.photo-card--offset {
  transform: translateY(12px);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.82));
}

.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.photo-card--offset:hover {
  transform: translateY(6px);
}

.photo-card:hover img {
  transform: scale(1.08);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--teal);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding: 1.25rem 0 1.25rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline.visible .timeline-item {
  opacity: 1;
  transform: translateX(0);
}

.timeline.visible .timeline-item:nth-child(1) { transition-delay: 0.05s; }
.timeline.visible .timeline-item:nth-child(2) { transition-delay: 0.15s; }
.timeline.visible .timeline-item:nth-child(3) { transition-delay: 0.25s; }
.timeline.visible .timeline-item:nth-child(4) { transition-delay: 0.35s; }
.timeline.visible .timeline-item:nth-child(5) { transition-delay: 0.45s; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  background: var(--magenta);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
}

.inline-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--magenta);
  background: rgba(233, 30, 140, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--slate);
  line-height: 1.7;
}

.inline-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--magenta);
  font-weight: 600;
}

.vision-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
}

.parcours-visual-old {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visual-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  color: var(--white);
  transition: var(--transition);
}

.visual-card:hover {
  transform: translateX(8px);
}

.card-1 {
  background: linear-gradient(135deg, var(--coral), var(--magenta));
}

.card-2 {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  margin-left: 2rem;
}

.card-3 {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  margin-left: 4rem;
}

.card-number {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

.visual-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0.5rem 0;
}

.visual-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ========== VISION ========== */
.vision {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 45%, rgba(15, 23, 42, 0.9) 100%),
    url('images/photo-vision-pont.jpg') center / cover no-repeat;
  animation: visionKenBurns 24s ease-in-out infinite alternate;
}

@keyframes visionKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.vision-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.vision-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.vision-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  text-align: left;
}

.vision-intro strong {
  color: var(--white);
}

.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-left: 4px solid var(--teal);
  background: var(--glass);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 3.5rem;
  text-align: left;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.pillar {
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--teal);
}

.pillar p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ========== PROJETS ========== */
.projets {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.projets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.projet-card {
  position: relative;
  padding: 2.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
}

.projet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.projet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
}

.projet-card:hover::before {
  transform: scaleX(1);
}

.projet-card.featured {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border: none;
}

.projet-card.featured h3,
.projet-card.featured p {
  color: var(--white);
}

.projet-card.featured .projet-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--teal);
}

.projet-card.wide {
  grid-column: span 2;
}

.projet-card--holding {
  border: 1px dashed rgba(20, 184, 166, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 253, 250, 0.55) 100%);
}

.projet-badge--holding {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: var(--white);
}

.projet-holding-layout {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 2rem;
  align-items: center;
}

.projet-holding-visual {
  min-width: 0;
}

.projet-holding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.projet-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
}

.projet-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.projet-logo-wrap {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.logo-link {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.logo-link:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.projet-logo-wrap-dark {
  background: #0F172A;
}

.projet-logo-wrap-light {
  background: var(--off-white);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.projet-logo-wrap-on-dark {
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.projet-logo {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.projet-logo-wide {
  max-height: 120px;
}

.projet-logo-amoura {
  max-height: 100px;
}

.projet-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.projet-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.projet-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.projet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.projet-tags span {
  padding: 0.35rem 0.85rem;
  background: rgba(0, 212, 170, 0.1);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}

.projet-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.projet-link:hover {
  color: var(--gold);
}

.projet-card.featured .projet-link {
  color: var(--teal);
}

/* ========== LEADERSHIP ========== */
.leadership {
  background: var(--white);
}

.leadership-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.leadership-text h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leadership-text p {
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.leadership-traits {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trait-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.trait-bar {
  height: 8px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 50px;
  overflow: hidden;
}

.trait-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  border-radius: 50px;
  transition: width 1.5s ease;
}

.quote-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--purple-deep), var(--magenta-deep));
  border-radius: var(--radius-lg);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-card cite {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.8;
}

.leadership-photo {
  margin-bottom: 1.5rem;
}

.leaderchef-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: var(--off-white);
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--teal), var(--gold), var(--magenta)) 1;
  border-radius: var(--radius);
  text-align: center;
}

.badge-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-sub {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.5rem;
}

/* ========== CONSULTING ========== */
.consulting {
  background: var(--white);
}

/* --- Accroche consulting --- */
.consulting-hook {
  position: relative;
  margin-bottom: 4rem;
  padding: 3rem 2.5rem;
  text-align: center;
  background: linear-gradient(160deg, var(--navy) 0%, #1a2744 50%, var(--purple-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
}

.consulting-hook-glow {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 212, 170, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(233, 30, 140, 0.15) 0%, transparent 45%);
  animation: hookGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hookGlow {
  0% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  100% { transform: scale(1.08) rotate(3deg); opacity: 1; }
}

.consulting-hook-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hook-line {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.hook-highlight {
  display: block;
  background: linear-gradient(135deg, var(--teal), var(--gold), var(--coral));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.consulting-hook-lead {
  position: relative;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 1.25rem;
}

.consulting-hook-lead strong {
  color: var(--teal);
}

.consulting-hook-text {
  position: relative;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.consulting-hook-cta-line {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  animation: pulseCta 3s ease-in-out infinite;
}

@keyframes pulseCta {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

.anim-text {
  animation: fadeSlideUp 0.8s ease forwards;
}

.anim-text-delay {
  animation: fadeSlideUp 0.8s ease 0.25s forwards;
  opacity: 0;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.theory-block {
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.06), rgba(147, 51, 234, 0.06));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.theory-header {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.theory-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.theory-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.theory-photo:hover img {
  transform: scale(1.05);
}

.theory-intro {
  text-align: left;
  max-width: none;
  margin: 0;
}

.theory-intro .btn {
  margin-top: 1rem;
}

.theory-intro h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.theory-intro p {
  color: var(--slate);
  line-height: 1.8;
}

.theory-intro em {
  color: var(--magenta);
  font-style: normal;
  font-weight: 600;
}

.theory-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.theory-card {
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.theory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.theory-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.1em;
}

.theory-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0.6rem 0;
}

.theory-card p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.55;
}

.services-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
  color: var(--navy);
  margin-bottom: 2rem;
}

.services-block {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.service-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.formats-block {
  margin-bottom: 3rem;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.format-card {
  padding: 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
}

.format-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.format-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.format-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.dual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ========== CONFERENCES ========== */
.conferences {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.conferences-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(233, 30, 140, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.12) 0%, transparent 50%);
}

.conferences-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.conferences-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.story-lead.light,
.light {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-lead.light strong,
.light strong {
  color: var(--white);
}

.light em {
  color: var(--teal);
  font-style: normal;
}

.conference-quote {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
  background: var(--glass);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.conferences-visual {
  position: relative;
  margin: 0 0 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.conferences-visual img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.conferences-visual:hover img {
  transform: scale(1.04);
}

.conferences-visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
}

.conferences-formats h3 {
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.conferences-formats h3:first-child {
  margin-top: 0;
}

.formats-list {
  list-style: none;
}

.formats-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.formats-list li span {
  flex-shrink: 0;
}

.topics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topics-tags span {
  padding: 0.4rem 0.9rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
}

.conference-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.conf-stat {
  text-align: center;
}

.conf-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.conf-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.conferences-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.conferences-cta .btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ========== EXPERTISE ========== */
.expertise {
  background: var(--off-white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.expertise-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.expertise-card:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.expertise-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.expertise-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

.expertise-banner {
  text-align: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.85);
}

.expertise-banner strong {
  color: var(--teal);
}

.expertise-banner a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.expertise-banner a:hover {
  text-decoration: underline;
}

.expertise-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  transition: var(--transition);
}

.expertise-link:hover {
  color: var(--magenta);
}

/* ========== VALEURS ========== */
.valeurs {
  background: var(--white);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.valeur-item {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.valeur-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: var(--transition);
}

.valeur-item[data-color="coral"]::before { background: var(--coral); }
.valeur-item[data-color="teal"]::before { background: var(--teal); }
.valeur-item[data-color="purple"]::before { background: var(--purple); }
.valeur-item[data-color="gold"]::before { background: var(--gold); }
.valeur-item[data-color="magenta"]::before { background: var(--magenta); }

.valeur-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.valeur-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--slate);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.valeur-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0.75rem 0;
}

.valeur-item p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ========== MES ŒUVRES ========== */
.oeuvres {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.oeuvre-block {
  padding: 2.5rem;
  margin-bottom: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
  scroll-margin-top: 100px;
}

.oeuvre-block-header {
  margin-bottom: 1.75rem;
}

.oeuvre-label {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(168, 85, 247, 0.12));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-layout,
.medias-layout,
.oeuvre-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 2.5rem;
  align-items: start;
}

.film-media-column {
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.film-layout .film-media-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.film-poster-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.oeuvre-cover-visual {
  display: flex;
  justify-content: center;
}

.oeuvre-cover-frame {
  margin: 0;
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.oeuvre-cover-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.oeuvre-cover-frame--portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 3;
  background: linear-gradient(165deg, #f1f5f9 0%, #e8edf4 100%);
}

.oeuvre-cover-frame--portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: contain;
  object-position: center;
}

.oeuvre-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.oeuvre-text h2 em {
  font-style: italic;
  color: var(--purple-deep);
}

.oeuvre-text p {
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.oeuvre-text .parcours-highlights {
  margin-bottom: 1.5rem;
}

.oeuvre-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.film-poster-badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.88) 55%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.film-poster-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.film-poster-badge-status {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}

.film-media-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.film-media-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.film-poster-frame.film-media-item {
  border: none;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.film-media-item--image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.film-media-item--video iframe,
.film-media-item--video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0f172a;
}

.film-media-caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--slate);
  text-align: center;
  background: var(--white);
}

/* Lecteur bande-annonce → film */
.film-media-item--cinema-intro {
  overflow: visible;
}

.film-cinema-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0f1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.film-cinema-stage {
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease;
}

.film-cinema-stage.is-fading {
  opacity: 0;
}

.film-cinema-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-cinema-stage--bande {
  background: #000;
  z-index: 2;
}

.film-cinema-bande-src {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.film-cinema-screen-glow {
  position: absolute;
  inset: 18% 22% 38%;
  background: radial-gradient(ellipse at center, rgba(255, 200, 120, 0.35) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
}

.film-cinema-player.curtains-opening .film-cinema-screen-glow {
  animation: screenGlow 1.2s ease-in-out infinite alternate, screenFlicker 4s linear infinite;
  opacity: 1;
}

@keyframes screenGlow {
  0% { opacity: 0.45; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.03); }
}

@keyframes screenFlicker {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
  52% { filter: brightness(0.95); }
  54% { filter: brightness(1.05); }
}

.film-cinema-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.film-cinema-projector-beam {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 220, 160, 0.12) 0%, transparent 75%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.film-cinema-player.curtains-opening .film-cinema-projector-beam {
  animation: projectorBeam 1.5s ease forwards;
}

@keyframes projectorBeam {
  to { opacity: 1; }
}

.film-cinema-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background: linear-gradient(90deg, #4a0e12, #8b1a22 40%, #6d1218);
  z-index: 4;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.film-cinema-curtain--left {
  left: 0;
  transform: translateX(0);
  border-radius: 0 0 12px 0;
}

.film-cinema-curtain--right {
  right: 0;
  transform: translateX(0);
  border-radius: 0 0 0 12px;
}

.film-cinema-player.is-curtain-phase .film-cinema-curtain {
  opacity: 1;
}

.film-cinema-player.is-curtain-phase .film-cinema-curtain--left,
.film-cinema-player.is-curtain-phase .film-cinema-curtain--right {
  transform: translateX(0);
}

.film-cinema-player.curtains-opening .film-cinema-curtain--left {
  transform: translateX(-92%);
}

.film-cinema-player.curtains-opening .film-cinema-curtain--right {
  transform: translateX(92%);
}

.film-cinema-player.curtains-closing .film-cinema-curtain--left,
.film-cinema-player.curtains-closing .film-cinema-curtain--right {
  transform: translateX(0);
  transition-duration: 1.2s;
}

.film-cinema-player.is-outro-phase .film-cinema-curtain {
  opacity: 1;
}

.film-cinema-announcement {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.film-cinema-announcement.is-visible {
  opacity: 1;
  transform: scale(1);
}

.film-announce-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.film-announce-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.8vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  margin-bottom: 0.35rem;
}

.film-announce-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 3vw, 1.15rem);
  font-style: italic;
  color: #ffd979;
  margin-bottom: 0.85rem;
}

.film-announce-lead,
.film-announce-author {
  font-size: clamp(0.72rem, 2.5vw, 0.9rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.film-announce-author {
  margin-top: 0.5rem;
  font-weight: 600;
}

.film-cinema-multilang {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  opacity: 0;
  pointer-events: none;
}

.film-cinema-multilang.is-visible {
  opacity: 1;
}

.film-cinema-multilang.is-switching .film-multilang-lang,
.film-cinema-multilang.is-switching .film-multilang-text {
  animation: multilangFade 0.9s ease forwards;
}

@keyframes multilangFade {
  0% { opacity: 0; transform: translateY(16px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

.film-multilang-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.film-multilang-lang {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.film-multilang-text {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 3.2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  max-width: 92%;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
}

.film-cinema-player.is-curtain-phase .film-cinema-title {
  opacity: 0;
  pointer-events: none;
}

.film-cinema-player.curtains-opening .film-cinema-title {
  opacity: 1;
}

.film-cinema-player.is-curtain-phase .film-cinema-announcement {
  z-index: 6;
}

.film-cinema-title {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 78%;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.film-cinema-title span {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 180, 80, 0.4);
  opacity: 0;
  transform: translateY(24px) scale(0.92);
}

.film-cinema-title-line1 {
  font-size: clamp(0.95rem, 3.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.film-cinema-title-line2 {
  margin-top: 0.35rem;
  font-size: clamp(0.8rem, 3vw, 1.1rem);
  font-style: italic;
  background: linear-gradient(135deg, #ffd979, #ff9a5c, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.film-cinema-title-line1.is-visible {
  animation: filmTitleReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.film-cinema-title-line2.is-visible {
  animation: filmTitleReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards,
             filmTitleShimmer 4s linear 1.5s infinite;
}

@keyframes filmTitleReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes filmTitleShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.film-cinema-stage--film .film-cinema-film-src {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.film-cinema-pause-cover {
  position: absolute;
  inset: 0;
  display: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(2, 6, 23, 0.78);
  z-index: 4;
}

.film-cinema-pause-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.film-cinema-pause-cover span {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

.film-cinema-player.is-film-paused .film-cinema-pause-cover {
  display: block;
}

.film-cinema-play-btn {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.film-cinema-play-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 36px rgba(20, 184, 166, 0.55);
}

.film-cinema-player.is-playing .film-cinema-play-btn {
  display: none;
}

.film-poster-actions {
  padding: 0.75rem 1rem 1rem;
  text-align: center;
  background: var(--white);
}

.film-poster-next-btn {
  width: 100%;
  max-width: 280px;
}

.film-visual {
  display: flex;
  justify-content: center;
}

.film-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1e2b4d, #251c2e 55%, #9a6a4b);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.film-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.film-frame h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.film-frame p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.film-text h2,
.medias-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.theory-poster-showcase {
  display: flex;
  justify-content: center;
}

.theory-poster-visible {
  margin: 0;
  width: 100%;
  max-width: 380px;
  opacity: 1 !important;
  transform: none !important;
}

.theory-poster-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

#theorie-reussite:target .theory-poster-img {
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.35), 0 24px 60px rgba(15, 23, 42, 0.2);
}

.medias-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.media-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.media-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.media-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.media-card p {
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.livre-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

.livre-cover {
  position: relative;
  display: flex;
  perspective: 800px;
}

.book-spine {
  width: 18px;
  background: linear-gradient(180deg, var(--purple-deep), var(--navy));
  border-radius: 4px 0 0 4px;
  box-shadow: inset -2px 0 8px rgba(0, 0, 0, 0.3);
}

.book-front {
  width: 240px;
  min-height: 340px;
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--purple-deep) 55%, var(--magenta-deep) 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.book-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.book-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 1.5rem 0;
}

.book-author {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.book-badge {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background: rgba(251, 191, 36, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.livre-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.livre-text .btn {
  margin-top: 2rem;
}

/* ========== INTERNATIONAL ========== */
.international {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.international-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.international-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-visual {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.55), rgba(0, 212, 170, 0.25)),
    url('images/photo-international.jpg') center / cover no-repeat;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  animation: floatGentle 6s ease-in-out infinite;
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.map-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(0, 212, 170, 0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.map-dot.africa {
  background: var(--coral);
  top: 55%;
  left: 48%;
  box-shadow: 0 0 20px var(--coral);
}

.map-dot.europe {
  background: var(--teal);
  top: 30%;
  left: 50%;
  box-shadow: 0 0 20px var(--teal);
  animation-delay: -0.7s;
}

.map-dot.global {
  background: var(--purple);
  top: 45%;
  left: 70%;
  box-shadow: 0 0 20px var(--purple);
  animation-delay: -1.4s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.international-text p {
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.regions-list {
  list-style: none;
  margin-top: 2rem;
}

.regions-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.region-flag {
  font-size: 1.25rem;
}

/* ========== AMBITION ========== */
.ambition {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.ambition-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(0, 212, 170, 0.12) 0%, transparent 40%);
}

.ambition-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.ambition-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.ambition-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.ambition-content strong {
  color: var(--teal);
}

.ambition-sectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.ambition-sectors span {
  padding: 0.6rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
}

.ambition-sectors span:hover {
  background: rgba(0, 212, 170, 0.15);
  transform: scale(1.05);
}

/* ========== ECOSYSTEM ========== */
.ecosystem {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.ecosystem-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 920px;
  margin: 1.5rem auto 0;
}

.ecosystem-brand-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.ecosystem-brand-pill:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(20, 184, 166, 0.15);
}

.ecosystem-brand-pill-accent {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(168, 85, 247, 0.12));
  border-color: rgba(20, 184, 166, 0.35);
}

.ecosystem-logo-wrap-text {
  background: linear-gradient(135deg, var(--navy), var(--purple-deep));
}

.ecosystem-text-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
}

.ecosystem-layout {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.ecosystem-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ecosystem-group-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  text-align: center;
  margin: 0;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(20, 184, 166, 0.2);
}

.ecosystem-grid {
  display: grid;
  gap: 1.35rem;
  align-items: stretch;
}

.ecosystem-grid--firms {
  grid-template-columns: repeat(6, 1fr);
}

.ecosystem-grid--firms .ecosystem-card {
  grid-column: span 2;
}

.ecosystem-grid--firms .ecosystem-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.ecosystem-grid--firms .ecosystem-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.ecosystem-grid--associations {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-inline: auto;
  width: 100%;
}

.ecosystem-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}

.ecosystem-card--lead {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 1.75rem;
  align-items: center;
  min-height: auto;
  padding: 1.75rem 2rem;
  text-align: left;
  border-color: rgba(20, 184, 166, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 253, 250, 0.65) 100%);
}

.ecosystem-card--lead .ecosystem-logo-wrap {
  margin-bottom: 0;
  height: 130px;
  min-height: 130px;
}

.ecosystem-card--lead .ecosystem-card-body h3 {
  font-size: 1.2rem;
}

.ecosystem-card--assoc {
  border-color: rgba(168, 85, 247, 0.18);
  background: linear-gradient(180deg, var(--white) 0%, rgba(250, 245, 255, 0.55) 100%);
}

.ecosystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.ecosystem-logo-wrap {
  height: 112px;
  min-height: 112px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.ecosystem-logo-wrap .logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ecosystem-logo-wrap-dark {
  background: #0F172A;
}

.ecosystem-logo-wrap-light {
  background: var(--off-white);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.ecosystem-logo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.ecosystem-logo-tall {
  max-height: 88px;
}

.ecosystem-logo-sos {
  max-height: 68px;
}

.ecosystem-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.ecosystem-card h3 {
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
  min-height: 2.7em;
}

.ecosystem-card--lead .ecosystem-card-body h3 {
  min-height: auto;
}

.ecosystem-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.ecosystem-card:target {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25), 0 24px 60px rgba(15, 23, 42, 0.12);
}

.ecosystem-grid--public {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin-inline: auto;
  width: 100%;
}

.ecosystem-grid--public .ecosystem-card--lead {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 300px;
}

.ecosystem-grid--public .ecosystem-card--lead .ecosystem-logo-wrap {
  margin-bottom: 1rem;
  height: 112px;
  min-height: 112px;
}

.ecosystem-grid--holding {
  grid-template-columns: repeat(2, 1fr);
}

.entities-structure {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(20, 184, 166, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 253, 250, 0.45) 100%);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.entities-structure-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  text-align: center;
  margin: 0 0 0.5rem;
}

.entities-structure-intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.entities-structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.ecosystem-card--structure {
  border-color: rgba(20, 184, 166, 0.18);
}

.ecosystem-card--confidential {
  border-style: dashed;
  border-color: rgba(15, 23, 42, 0.15);
}

.ecosystem-text-logo-sm {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
}

/* Holding verrouillée */
.ecosystem-holding {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.03), rgba(20, 184, 166, 0.06));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.holding-visual {
  position: relative;
  max-width: 340px;
  margin-inline: auto;
}

/* Cadran holding — logo GIBG + immeuble holding intégré */
.holding-frame {
  margin: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(20, 184, 166, 0.32);
  background: var(--white);
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.12);
  text-align: center;
  overflow: hidden;
}

.holding-frame--large {
  position: relative;
  max-width: 380px;
  width: 100%;
  margin-inline: auto;
}

.holding-frame-header {
  margin: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 2px solid rgba(20, 184, 166, 0.22);
}

.holding-frame-logo-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.holding-frame-logo {
  display: block;
  max-width: min(100%, 280px);
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.holding-frame-illustration {
  position: relative;
  line-height: 0;
  background: #0f172a;
  overflow: hidden;
  border-radius: 0 0 calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px);
}

.holding-frame-building {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
}

.holding-frame-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.35) 100%);
}

.holding-frame-lock {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.holding-frame--large .holding-building-cta {
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 5.5%;
  height: 11%;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.holding-frame--large .holding-building-cta:hover,
.holding-frame--large .holding-building-cta:focus-visible {
  background: rgba(20, 184, 166, 0.18);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.45);
  outline: none;
}

.holding-building-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.holding-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(15, 23, 42, 0.15);
}

.holding-building-cta {
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 4%;
  height: 12%;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.holding-building-cta:hover,
.holding-building-cta:focus-visible {
  background: rgba(20, 184, 166, 0.15);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.45);
  outline: none;
}

.holding-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.85rem;
}

.holding-title-wrap {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.35rem;
}

.holding-title-image {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.holding-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--slate);
  margin: 0 0 0.85rem;
}

.holding-desc--muted {
  font-size: 0.85rem;
  opacity: 0.88;
}

.holding-desc strong {
  color: var(--navy);
}

.holding-access-btn {
  margin-top: 0.5rem;
}

/* Portail d'accès holding */
.holding-access-gate {
  margin-top: 0.25rem;
}

.holding-access-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding: 0.35rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.holding-access-tab {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.holding-access-tab.is-active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.holding-access-tab:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.holding-access-panel-lead {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--slate);
}

.holding-access-form {
  display: grid;
  gap: 0.55rem;
  max-width: 520px;
}

.holding-access-form label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 0.35rem;
}

.holding-access-form input,
.holding-access-form textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.holding-access-form input:focus,
.holding-access-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}

.holding-access-form textarea {
  resize: vertical;
  min-height: 110px;
}

.holding-access-form .btn {
  margin-top: 0.65rem;
  justify-self: start;
}

.holding-form-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--slate);
  opacity: 0.9;
}

.holding-form-error {
  margin: 0.25rem 0 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
}

.holding-partner-block-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.holding-partner-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  max-width: 520px;
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.holding-partner-divider::before,
.holding-partner-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
}

.holding-partner-status {
  max-width: 560px;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(20, 184, 166, 0.22);
  text-align: center;
}

.holding-partner-status--rejected {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.06), rgba(15, 23, 42, 0.04));
  border-color: rgba(239, 68, 68, 0.22);
}

.holding-partner-status h3 {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}

.holding-partner-status p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--slate);
}

.holding-status-icon {
  font-size: 1.75rem;
}

.holding-portfolio {
  margin-top: 0.25rem;
}

.holding-session-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.holding-session-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.holding-session-badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(20, 184, 166, 0.14);
}

.holding-session-badge--partenaire {
  color: #6d28d9;
  background: rgba(168, 85, 247, 0.14);
}

.holding-session-email {
  font-size: 0.85rem;
  color: var(--slate);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

/* Modal holding */
.holding-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.holding-modal[hidden] {
  display: none;
}

body.holding-modal-open {
  overflow: hidden;
}

.holding-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}

.holding-modal-panel {
  position: relative;
  width: min(100%, 1040px);
  max-height: min(90vh, 900px);
  overflow-y: auto;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  animation: holdingModalIn 0.35s ease;
}

@keyframes holdingModalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.holding-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.holding-modal-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(20, 184, 166, 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.holding-modal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.holding-modal-intro {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}

.holding-modal-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.holding-modal-close:hover {
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal-dark);
}

.holding-modal-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.holding-modal-footer p {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0 0 0.85rem;
}

.ecosystem-card--flash {
  animation: holdingCardFlash 1.6s ease;
}

@keyframes holdingCardFlash {
  0%, 100% { box-shadow: var(--shadow-card); }
  30%, 70% { box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.45), 0 24px 60px rgba(15, 23, 42, 0.12); }
}

.legal-page {
  min-height: 60vh;
  padding-top: 6rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 1.5rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-back {
  display: inline-flex;
  margin-top: 2rem;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
}

.legal-back:hover {
  color: var(--magenta);
}

/* ========== CONTACT / CTA ========== */
.contact {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.contact-page-header {
  margin-bottom: 3rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
  text-align: left;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details-card,
.contact-hours,
.contact-form-card,
.social-links-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-details-card h3,
.contact-hours h3,
.contact-form-card h3,
.social-links-card h3,
.contact-map-panel h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-details-card .contact-phone,
.contact-details-card .contact-email,
.contact-details-card .contact-address {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-details-card .contact-phone a,
.contact-details-card .contact-email a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-details-card .contact-phone a:hover,
.contact-details-card .contact-email a:hover {
  color: var(--magenta);
}

.contact-quick-link {
  display: block;
  padding: 0.65rem 0;
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.contact-quick-link:hover {
  color: var(--teal-dark);
  padding-left: 0.5rem;
}

.contact-form-card {
  display: grid;
  gap: 0.65rem;
}

.contact-form-card label {
  font-size: 0.86rem;
  color: var(--navy);
  font-weight: 600;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  font-family: inherit;
  font-size: 0.94rem;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

.contact-hours p {
  color: var(--slate);
  font-size: 0.92rem;
  margin: 0.35rem 0;
  line-height: 1.7;
}

.section-cta {
  margin-top: 1.75rem;
  text-align: center;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.engagement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.engagement-icon {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.contact-map-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  overflow: hidden;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 1rem;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-link {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.map-link:hover {
  color: var(--magenta);
}

.contact-page-header .section-subtitle {
  line-height: 1.8;
}

.contact-wrapper {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.contact-intro {
  margin-bottom: 3rem;
}

.contact-intro p {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 650px;
  margin-inline: auto;
  margin-top: 1rem;
}

.contact-phone {
  margin-top: 1.25rem;
}

.contact-phone a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.contact-phone a:hover {
  color: var(--magenta);
}

.contact-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-details p {
  margin: 0;
  font-size: 1rem;
}

.contact-details a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--magenta);
}

.contact-address {
  color: var(--slate) !important;
  font-size: 0.95rem !important;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--navy);
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.contact-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

.contact-cta-final {
  padding: 3rem;
  background: linear-gradient(135deg, var(--navy), var(--purple-deep));
  border-radius: var(--radius-lg);
  color: var(--white);
}

.cta-statement {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-statement strong {
  color: var(--gold);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr 0.9fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-name {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-tagline {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--teal);
}

.footer-domain {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social-icons {
  display: flex;
  gap: 0.55rem;
}

.footer-social-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.footer-social-icon svg {
  width: 1rem;
  height: 1rem;
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.footer-social-linkedin { color: #0A66C2; }
.footer-social-hcfw { color: #14B8A6; }
.footer-social-linkedin { background: #0A66C2; border-color: #0A66C2; }
.footer-social-web { background: #16A34A; border-color: #16A34A; }

.footer-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-nav-col h3,
.footer-contact-block h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.75rem;
}

.footer-nav-col a,
.footer-contact-block a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.9;
  transition: color var(--transition);
}

.footer-nav-col a:hover,
.footer-contact-block a:hover {
  color: var(--teal);
}

.footer-contact-block p {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-copy,
.footer-signature {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-signature strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--teal);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.54s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Section photos & banners */
.section-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.section-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-photo:hover img {
  transform: scale(1.04);
}

.section-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.8));
}

.section-photo-banner {
  position: relative;
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 320px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.section-photo-banner img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s linear;
}

.section-photo-banner figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.82));
}

.section-photo-banner--partenariats {
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.section-photo-banner--partenariats img {
  object-position: center 32%;
}

.contact-header-photo {
  margin: 0 auto 1.75rem;
  max-width: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

.contact-header-photo img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

/* Extended reveal animations */
.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.engagement-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.engagement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.conf-stat {
  transition: transform 0.35s ease;
}

.conference-stats.visible .conf-stat:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Card hover lift */
.theory-card,
.service-card,
.projet-card,
.ecosystem-card,
.expertise-card,
.valeur-item,
.format-card,
.contact-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-icon,
.expertise-icon,
.projet-icon {
  display: inline-block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon,
.expertise-card:hover .expertise-icon {
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  70% { transform: translateY(-3px); }
}

/* Pillar pulse on visible */
.theory-card.visible-pulse {
  animation: cardPop 0.5s ease forwards;
}

@keyframes cardPop {
  0% { transform: scale(0.95); }
  60% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Section tag fade */
.section-tag {
  animation: tagFade 0.6s ease forwards;
}

@keyframes tagFade {
  from { opacity: 0; letter-spacing: 0.2em; }
  to { opacity: 1; letter-spacing: 0.12em; }
}

/* Reduced motion — garder le contenu visible (sinon opacity:0 reste invisible) */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .reveal-scale,
  .reveal-left,
  .reveal-right,
  .timeline-item,
  .animate-in,
  .hook-highlight,
  .consulting-hook-glow,
  .consulting-hook-cta-line,
  .orb,
  .vision-bg,
  .map-visual,
  .holding-modal-panel,
  .ecosystem-card--flash {
    animation: none !important;
  }

  .nav-dropdown-menu,
  .nav-dropdown-menu li,
  .nav-dropdown-menu::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal,
  .reveal-stagger > *,
  .reveal-scale,
  .reveal-left,
  .reveal-right,
  .timeline-item,
  .animate-in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .nav-link,
  .nav-dropdown-toggle,
  .nav-links a {
    font-size: 0.78rem;
    padding: 0.5rem 0.62rem;
  }

  .logo-text {
    max-width: 9rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-menu {
    order: 3;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .nav-menu-inner {
    width: 100%;
    border-radius: 16px;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-menu-inner::-webkit-scrollbar {
    display: none;
  }

  .nav-links {
    gap: 0.05rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-portrait {
    order: -1;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin-inline: auto;
  }

  .parcours-grid,
  .leadership-layout,
  .international-layout,
  .livre-layout,
  .film-layout,
  .oeuvre-layout,
  .medias-layout,
  .conferences-layout,
  .contact-page-grid,
  .theory-header {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .parcours-photos {
    grid-template-columns: 1fr 1fr;
  }

  .photo-card--tall {
    grid-row: span 1;
  }

  .photo-card--offset {
    transform: none;
  }

  .theory-intro {
    text-align: center;
  }

  .theory-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .theory-poster {
    max-width: 360px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formats-grid {
    grid-template-columns: 1fr;
  }

  .conference-stats {
    grid-template-columns: 1fr;
  }

  .livre-cover {
    justify-content: center;
  }

  .card-2, .card-3 {
    margin-left: 0;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
  }

  .projets-grid {
    grid-template-columns: 1fr;
  }

  .projet-card.featured {
    grid-row: auto;
  }

  .projet-card.wide {
    grid-column: auto;
  }

  .projet-holding-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .projet-holding-visual {
    max-width: 200px;
    margin-inline: auto;
  }

  .projet-holding-actions {
    justify-content: center;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .valeurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .entities-structure-grid,
  .ecosystem-grid--public,
  .ecosystem-grid--holding {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-holding {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .holding-access-btn {
    width: 100%;
    max-width: 360px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88%, 360px);
    height: 100vh;
    padding: 5.5rem 1.25rem 2rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    transition: right var(--transition);
    z-index: 1001;
    overflow-y: auto;
    justify-content: flex-start;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu-inner {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    width: 100%;
  }

  .nav-link,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .nav-dropdown-label {
    white-space: normal;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 0;
    margin-top: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease, visibility 0.3s ease;
  }

  .nav-dropdown-menu::after {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 260px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0.15rem 0 0.35rem;
    padding: 0.15rem 0 0.35rem 0.75rem;
    border-left: 2px solid rgba(20, 184, 166, 0.35);
  }

  .nav-dropdown-heading {
    color: rgba(255, 255, 255, 0.5);
    padding-left: 0.25rem;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.92);
    padding: 0.7rem 0.8rem;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-end {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expertise-grid,
  .valeurs-grid,
  .contact-actions,
  .entities-structure-grid,
  .ecosystem-grid--public,
  .ecosystem-grid--holding,
  .theory-pillars,
  .services-grid,
  .medias-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card h3 {
    min-height: auto;
  }

  .holding-modal-panel {
    padding: 1.25rem;
  }

  .holding-access-tabs {
    flex-direction: column;
  }

  .holding-access-tab {
    width: 100%;
    text-align: center;
  }

  .holding-session-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .holding-session-bar .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .map-visual {
    width: 250px;
    height: 250px;
  }

  .consulting-hook {
    padding: 2rem 1.25rem;
  }

  .hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
 }
}
