/* ========================================
   BEEHIVES - Refonte Design
   Palette Bleu Nuit + Miel
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* Clash Display — auto-hébergé (indépendant du CDN fontshare) */
@font-face {
  font-family: 'Clash Display';
  src: url('/fonts/clash-display/clash-display-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('/fonts/clash-display/clash-display-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('/fonts/clash-display/clash-display-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('/fonts/clash-display/clash-display-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

/* ========================================
   VARIABLES CSS
   ======================================== */

:root {
  /* ===== PALETTE BLEU NUIT + MIEL ===== */

  /* Bleus - Du plus foncé au plus clair */
  --color-navy-deep: #0A1929;
  --color-navy: #0D2137;
  --color-navy-medium: #132F4C;
  --color-navy-light: #1E4976;
  --color-blue-accent: #2D6CB5;

  /* Jaune Miel */
  --color-honey: #F7B32B;
  --color-honey-light: #FFD166;
  --color-honey-dark: #D99A1D;
  --color-honey-glow: rgba(247, 179, 43, 0.4);

  /* Fonds clairs */
  --color-light-bg: #F8FAFC;
  --color-light-alt: #EEF2F6;
  --color-light-border: #E3E8EE;
  --color-white: #FFFFFF;

  /* Fonds de sections */
  --color-background: var(--color-light-bg);
  --color-background-alt: var(--color-white);
  --color-border: var(--color-light-border);

  /* Couleurs sémantiques */
  --color-accent: var(--color-honey);
  --color-secondary: var(--color-text-muted);
  --color-primary: var(--color-navy-deep);

  /* Textes */
  --color-text-dark: #0A1929;
  --color-text-medium: #3D5A80;
  --color-text-muted: #5C7493;
  --color-text-light: #F8FAFC;
  --color-text-light-muted: rgba(248, 250, 252, 0.7);

  /* Gradients */
  --gradient-honey: linear-gradient(135deg, var(--color-honey) 0%, #FFD166 50%, var(--color-honey) 100%);
  --gradient-navy: linear-gradient(180deg, #0A1929 0%, #0D2137 100%);
  --gradient-hero:
    radial-gradient(ellipse at 70% 20%, rgba(247, 179, 43, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(29, 73, 118, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 90%, rgba(247, 179, 43, 0.08) 0%, transparent 30%);

  /* Typographie */
  --font-heading: 'Clash Display', 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', 'Inter', system-ui, sans-serif;

  /* Tailles de texte - Fluid Typography */
  --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
  --text-lg: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  --text-xl: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --text-3xl: clamp(1.75rem, 1.5rem + 2vw, 3rem);
  --text-4xl: clamp(2rem, 1.5rem + 3vw, 4rem);
  --text-hero: clamp(2.5rem, 2rem + 4vw, 5.5rem);

  /* Espacements */
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1400px;
  --nav-width: 180px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESPONSIVE VARIABLES OVERRIDES */
@media (max-width: 768px) {
  :root {
    --text-hero: clamp(2rem, 1.5rem + 3vw, 3.5rem);
    --text-4xl: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --container-padding: var(--space-md);
  }
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

/* ========================================
   TYPOGRAPHIE
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* ========================================
   NAVIGATION VERTICALE - Style Octo
   ======================================== */

.nav-vertical {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--nav-width);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #0D2137 0%, #0A1929 60%, #081422 100%);
  border-right: 1px solid rgba(247, 179, 43, 0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

/* Zone Logo avec sous-titre */
.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
}

.nav-logo {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100px;
  cursor: pointer;
  transition: transform var(--transition-bounce), filter var(--transition-base);
  filter: drop-shadow(0 0 0px var(--color-honey));
  margin-bottom: var(--space-xs);
}

.nav-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px var(--color-honey-glow));
}

.nav-tagline {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  line-height: 1.4;
}

.nav-tagline strong {
  display: block;
  color: var(--color-honey);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

/* Menu principal - Style Octo */
.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
  padding: var(--space-lg) var(--space-lg);
  flex: 1;
  width: 100%;
}

.nav-item {
  width: 100%;
}

.nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 1rem 0;
  transition: all var(--transition-base);
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-item:last-child .nav-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-link:hover {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Menu actif - Style fin avec barre de surlignage */
.nav-link.active {
  color: var(--color-honey);
  font-weight: 600;
  border-top-color: transparent;
  border-bottom: 2px solid var(--color-honey);
  padding-bottom: calc(1rem - 2px);
}

.nav-link.active:hover {
  border-bottom-color: var(--color-honey-light);
}

/* Fix double border: Hide top border of the next item when previous is active */
.nav-item:has(> .nav-link.active)+.nav-item .nav-link {
  border-top-color: transparent;
}

/* Pas d'indicateurs supplémentaires */
.nav-link::before,
.nav-link::after {
  display: none;
}

/* Zone CTA en bas */
.nav-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md);
  width: 100%;
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem var(--space-md);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.nav-cta-btn--primary {
  background: var(--color-honey);
  color: var(--color-navy-deep);
  border: none;
}

.nav-cta-btn--primary:hover {
  background: var(--color-honey-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 179, 43, 0.3);
}

.nav-cta-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.nav-cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   MOBILE HEADER & HAMBURGER MENU
   ======================================== */

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, #0D2137 0%, #0A1929 100%);
  z-index: 1001;
  padding: 0 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(247, 179, 43, 0.1);
}

.mobile-header__logo {
  height: 80px;
}

.mobile-header__logo img {
  height: 100%;
  width: auto;
}

.mobile-header__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
}

.mobile-header__title {
  color: var(--color-honey);
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-header__subtitle {
  color: var(--color-text-light-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.mobile-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-header__toggle:hover {
  background: rgba(247, 179, 43, 0.1);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

/* Hamburger animation to X */
.mobile-header__toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-header__toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-header__toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 41, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
}

/* ========================================
   MOBILE RESPONSIVE - Global
   ======================================== */

@media (max-width: 768px) {


  /* Show mobile header */
  .mobile-header {
    display: flex;
  }

  /* Transform vertical nav to slide-out menu */
  .nav-vertical {
    width: 280px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding-top: 100px;
    overflow-y: auto;
  }

  .nav-vertical.is-open {
    transform: translateX(0);
  }

  /* Show overlay */
  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.is-visible {
    pointer-events: auto;
  }

  .nav-overlay.is-visible {
    pointer-events: auto;
  }

  /* Page Specific Mobile Fixes */
  .page-hero--expertises {
    padding-top: calc(120px + var(--space-xl));
  }

  /* Main content - full width */
  .main-container {
    margin-left: 0;
    padding-top: 100px;
  }

  /* Nav brand adjustments */
  .nav-brand {
    padding: var(--space-lg) var(--space-md) var(--space-xl);
  }

  .nav-logo {
    width: 80px;
  }

  .nav-tagline {
    font-size: 0.6rem;
  }

  /* Nav menu */
  .nav-menu {
    padding: var(--space-md) var(--space-lg);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 1.1rem 0;
  }

  /* Nav CTA */
  .nav-cta {
    padding: var(--space-lg) var(--space-md) var(--space-2xl);
  }

  .nav-cta-btn {
    padding: 0.85rem var(--space-md);
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .mobile-header {
    height: 90px;
    padding: 0 0.75rem;
  }

  .mobile-header__logo {
    height: 72px;
  }

  .mobile-header__toggle {
    width: 40px;
    height: 40px;
  }

  .nav-vertical {
    width: 100%;
    padding-top: 90px;
  }

  .main-container {
    padding-top: 56px;
  }
}

/* ========================================
   LAYOUT PRINCIPAL
   ======================================== */

.main-container {
  margin-left: var(--nav-width);
  min-height: 100vh;
}

/* Mobile override - must come after base rule */
@media (max-width: 768px) {
  .main-container {
    margin-left: 0 !important;
  }
}

.section {
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

/* ========================================
   HERO SECTION - Bleu Nuit Impactant
   ======================================== */

.hero {
  position: relative;
  background: var(--color-navy-deep);
  overflow: hidden;
  min-height: 100vh;
}

/* Fond avec dégradés subtils */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

/* Overlay pour profondeur */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 179, 43, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(45, 108, 181, 0.1) 0%, transparent 40%);
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
}

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

/* Tagline principale style Octo */
.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease both;
}

.hero-tagline__main {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-tagline__sub {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-honey);
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
  position: relative;
  padding-left: var(--space-sm);
}

.hero-tagline__sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 80%;
  background: var(--color-honey);
}

/* Badge Hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(247, 179, 43, 0.1);
  border: 1px solid rgba(247, 179, 43, 0.3);
  border-radius: 100px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.1s both;
  backdrop-filter: blur(10px);
}

.hero-badge__icon {
  width: 20px;
  height: 20px;
  color: var(--color-honey);
}

.hero-badge__text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-honey);
}

.hero-title {
  margin-bottom: var(--space-lg);
  line-height: 1.05;
  color: var(--color-text-light);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .text-accent {
  color: var(--color-honey);
  position: relative;
  display: inline-block;
}

.hero-title .text-accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.15em;
  background: var(--gradient-honey);
  opacity: 0.4;
  transform: skewX(-5deg);
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-xl);
  max-width: 650px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* ========================================
   HERO EPURE - LIGNES ARRONDIES
   ======================================== */

.hero-epure #honeycomb-canvas {
  opacity: 0.35;
}

.hero-grid--epure {
  align-items: center;
  gap: var(--space-3xl);
}

.hero-badge--clean {
  gap: 0;
}

.hero-images.hero-images--epure {
  max-width: 560px;
  height: 520px;
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-images.hero-images--epure .hero-main-image {
  z-index: 2;
}

.hero-honey-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.hero-honey-lines__loop {
  stroke: rgba(247, 179, 43, 0.45);
  stroke-width: 2;
  fill: none;
}

.hero-honey-lines__loop--right {
  stroke: rgba(45, 108, 181, 0.35);
}

.hero-honey-lines__connector {
  stroke: rgba(247, 179, 43, 0.35);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.hero-honey-lines__hex {
  stroke: rgba(247, 179, 43, 0.75);
  stroke-width: 1.5;
  fill: rgba(247, 179, 43, 0.12);
}

.hero-honey-lines__hex--main {
  stroke-width: 2;
  fill: rgba(247, 179, 43, 0.22);
}

.hero-honey-lines__hex--accent {
  stroke: rgba(45, 108, 181, 0.7);
  fill: rgba(45, 108, 181, 0.12);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Éléments décoratifs masqués */
.hero-curves,
.hero-hex-decoration {
  display: none;
}

/* ========================================
   HERO OCTO - Style Épuré
   ======================================== */

.hero-octo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.hero-octo .container {
  position: relative;
  z-index: 10;
}

/* Lignes décoratives fines */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-lines__svg {
  width: 100%;
  height: 100%;
}

.hero-line {
  fill: none;
  stroke: rgba(247, 179, 43, 0.12);
  stroke-width: 1;
  animation: lineFlow 20s ease-in-out infinite;
}

.hero-line--1 {
  animation-delay: 0s;
}

.hero-line--2 {
  stroke: rgba(45, 108, 181, 0.08);
  animation-delay: -5s;
}

.hero-line--3 {
  animation-delay: -10s;
}

@keyframes lineFlow {

  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.5;
  }

  50% {
    stroke-dashoffset: 50;
    opacity: 1;
  }
}

.hero-hex-line {
  fill: none;
  stroke: rgba(247, 179, 43, 0.15);
  stroke-width: 1;
  animation: hexRotate 30s linear infinite;
  transform-origin: center;
}

.hero-hex-line--sm {
  stroke: rgba(45, 108, 181, 0.1);
  animation-direction: reverse;
  animation-duration: 40s;
}

@keyframes hexRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Contenu principal */
.hero-octo__content {
  max-width: 800px;
  margin: 0 auto;
}

/* Signature BEEHIVES */
.hero-signature {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.8s ease both;
}

.hero-signature__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-honey);
  letter-spacing: 0.1em;
}

.hero-signature__divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-honey), transparent);
}

.hero-signature__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

/* Titre principal */
.hero-octo__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-octo__highlight {
  position: relative;
  color: var(--color-honey);
  display: inline-block;
}

.hero-octo__highlight::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 0.08em;
  background: var(--color-honey);
  opacity: 0.3;
  border-radius: 2px;
}

/* Description */
.hero-octo__description {
  font-size: var(--text-lg);
  color: var(--color-text-light-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Actions */
.hero-octo__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Indicateurs */
.hero-octo__indicators {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(247, 179, 43, 0.1);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-indicator__icon {
  width: 20px;
  height: 20px;
  color: var(--color-honey);
  opacity: 0.7;
}

.hero-indicator__icon svg {
  width: 100%;
  height: 100%;
}

.hero-indicator__text {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--color-text-light-muted);
  letter-spacing: 0.02em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
  animation: fadeIn 1s ease 1s both;
}

.hero-scroll__text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  color: var(--color-text-light-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Hero Octo */
@media (max-width: 768px) {
  .hero-octo {
    padding: var(--space-3xl) var(--space-md);
  }

  .hero-signature {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .hero-signature__divider {
    width: 30px;
  }

  .hero-octo__title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-octo__description {
    font-size: var(--text-base);
  }

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

  .hero-octo__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-octo__indicators {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .hero-scroll {
    display: none;
  }

  .hero-hex-line {
    display: none;
  }
}

/* Canvas pour animation honeycomb */
#honeycomb-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

/* === IMAGES HEXAGONALES === */
.hero-images {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 500px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container de l'image principale */
.hero-main-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image principale hexagonale */
.hero-main-image img {
  width: 360px;
  height: 400px;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  opacity: 0;
  animation: heroImageReveal 1s ease 0.4s forwards;
  position: relative;
  z-index: 2;
}

.hero-main-image:hover img {
  transform: scale(1.02);
}

/* Bordure dorée externe (halo) */
.hero-main-image::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 420px;
  background: linear-gradient(135deg,
      var(--color-honey) 0%,
      var(--color-honey-light) 30%,
      var(--color-honey) 60%,
      var(--color-honey-dark) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  opacity: 0;
  animation: borderReveal 1s ease 0.2s forwards;
}

/* Effet de lueur derrière */
.hero-main-image::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(247, 179, 43, 0.25) 0%, transparent 70%);
  z-index: 0;
  opacity: 0;
  animation: glowReveal 1.2s ease 0.1s forwards;
}

/* Hex decorations removed */

/* Animations */
@keyframes heroImageReveal {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

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

@keyframes borderReveal {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowReveal {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hexFloat {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes hexPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Animation d'entrée */
@keyframes hexReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* === ANIMATIONS D'ENTRÉE === */

/* === ANIMATIONS FLOTTANTES === */
@keyframes hexFloat1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes hexFloat2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes hexFloat3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Éléments décoratifs du hero */
.hero-curves,
.hero-hex-decoration {
  display: none;
}

/* ========================================
   HERO OPTIONS - 3 Variantes
   ======================================== */

/* Label indicateur d'option */
.hero-option-label {
  position: absolute;
  top: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-honey);
  color: var(--color-navy-deep);
  padding: var(--space-xs) var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 50px;
  z-index: 100;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Layout centré pour les 3 options */
.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--space-3xl) 0;
}

.hero-tagline--centered {
  align-items: center;
}

.hero-tagline--centered .hero-tagline__sub {
  padding-left: 0;
}

.hero-tagline--centered .hero-tagline__sub::before {
  display: none;
}

.hero-description--centered {
  text-align: center;
  max-width: 600px;
}

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

/* Container illustration */
.hero-illustration {
  position: relative;
  margin: var(--space-xl) 0;
}

/* ========================================
   OPTION 1 : LA RUCHE STRATÉGIQUE
   ======================================== */

.ruche-strategique {
  width: 400px;
  height: 400px;
}

/* Lignes de connexion */
.ruche-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ruche-line {
  stroke: rgba(247, 179, 43, 0.3);
  stroke-width: 2;
  stroke-dasharray: 5 5;
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {

  0%,
  100% {
    stroke-opacity: 0.3;
  }

  50% {
    stroke-opacity: 0.7;
  }
}

/* Cellules de la ruche */
.ruche-cell {
  position: absolute;
  width: 90px;
  height: 78px;
  z-index: 2;
}

.ruche-cell__inner {
  width: 100%;
  height: 100%;
  background: var(--color-navy-medium);
  border: 2px solid rgba(247, 179, 43, 0.3);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.ruche-cell:hover .ruche-cell__inner {
  background: var(--color-navy-light);
  border-color: var(--color-honey);
  transform: scale(1.1);
}

.ruche-cell__icon {
  width: 24px;
  height: 24px;
  color: var(--color-honey);
  margin-bottom: 4px;
}

.ruche-cell__text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cellule centrale */
.ruche-cell--center {
  width: 120px;
  height: 104px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.ruche-cell--center .ruche-cell__inner {
  background: linear-gradient(135deg, var(--color-honey) 0%, var(--color-honey-dark) 100%);
  border: none;
}

.ruche-cell__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy-deep);
}

.ruche-cell__subtitle {
  font-size: 0.6rem;
  color: var(--color-navy-deep);
  opacity: 0.8;
}

/* Positionnement des 6 satellites */
.ruche-cell--1 {
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.ruche-cell--2 {
  top: 32%;
  right: 28%;
}

.ruche-cell--3 {
  bottom: 32%;
  right: 28%;
}

.ruche-cell--4 {
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.ruche-cell--5 {
  bottom: 32%;
  left: 28%;
}

.ruche-cell--6 {
  top: 32%;
  left: 28%;
}

/* Animation d'entrée */
.ruche-cell {
  opacity: 0;
  animation: rucheReveal 0.6s ease forwards;
}

.ruche-cell--center {
  animation-delay: 0s;
}

.ruche-cell--1 {
  animation-delay: 0.1s;
}

.ruche-cell--2 {
  animation-delay: 0.2s;
}

.ruche-cell--3 {
  animation-delay: 0.3s;
}

.ruche-cell--4 {
  animation-delay: 0.4s;
}

.ruche-cell--5 {
  animation-delay: 0.5s;
}

.ruche-cell--6 {
  animation-delay: 0.6s;
}

@keyframes rucheReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.ruche-cell--2,
.ruche-cell--3,
.ruche-cell--5,
.ruche-cell--6 {
  animation-name: rucheRevealSide;
}

@keyframes rucheRevealSide {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========================================
   OPTION 2 : THINKERS & BUILDERS
   ======================================== */

.thinkers-builders {
  width: 600px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Connexions */
.tb-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tb-line {
  stroke: rgba(247, 179, 43, 0.4);
  stroke-width: 3;
  stroke-linecap: round;
}

.tb-line--left {
  animation: lineGrow 1.5s ease-out forwards;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.tb-line--right {
  animation: lineGrow 1.5s ease-out 0.3s forwards;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

@keyframes lineGrow {
  to {
    stroke-dashoffset: 0;
  }
}

/* Hexagones principaux */
.tb-hex {
  position: relative;
  width: 180px;
  height: 200px;
  z-index: 2;
}

.tb-hex__inner {
  width: 100%;
  height: 100%;
  background: var(--color-navy-medium);
  border: 2px solid rgba(247, 179, 43, 0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  transition: all 0.4s ease;
}

.tb-hex:hover .tb-hex__inner {
  border-color: var(--color-honey);
  background: var(--color-navy-light);
}

.tb-hex__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-honey);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.tb-hex__icons {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.tb-hex__icons svg {
  width: 28px;
  height: 28px;
  color: var(--color-text-light-muted);
}

.tb-hex__subtitle {
  font-size: 0.7rem;
  color: var(--color-text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* THINKERS - teinte bleue */
.tb-hex--thinkers .tb-hex__inner {
  background: linear-gradient(135deg, var(--color-navy-medium) 0%, var(--color-navy-light) 100%);
}

.tb-hex--thinkers .tb-hex__title {
  color: var(--color-blue-accent);
}

/* BUILDERS - teinte miel */
.tb-hex--builders .tb-hex__title {
  color: var(--color-honey);
}

/* Centre */
.tb-center {
  position: relative;
  width: 80px;
  height: 80px;
  z-index: 5;
}

.tb-center__inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-honey) 0%, var(--color-honey-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tbCenterPulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(247, 179, 43, 0.4);
}

.tb-center__logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy-deep);
}

@keyframes tbCenterPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(247, 179, 43, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(247, 179, 43, 0.6);
  }
}

/* Animation d'entrée */
.tb-hex--thinkers {
  opacity: 0;
  animation: tbSlideIn 0.8s ease forwards;
  animation-delay: 0.2s;
}

.tb-hex--builders {
  opacity: 0;
  animation: tbSlideIn 0.8s ease forwards;
  animation-delay: 0.4s;
}

.tb-center {
  opacity: 0;
  animation: tbCenterReveal 0.6s ease forwards;
  animation-delay: 0.6s;
}

@keyframes tbSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes tbCenterReveal {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========================================
   OPTION 3 : L'ÉCOSYSTÈME BEEHIVES
   ======================================== */

.ecosysteme-bees {
  width: 450px;
  height: 450px;
  position: relative;
}

/* Orbites */
.eco-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(247, 179, 43, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.eco-orbit--1 {
  width: 200px;
  height: 200px;
  animation: orbitRotate 30s linear infinite;
}

.eco-orbit--2 {
  width: 300px;
  height: 300px;
  animation: orbitRotate 45s linear infinite reverse;
}

.eco-orbit--3 {
  width: 400px;
  height: 400px;
  animation: orbitRotate 60s linear infinite;
}

@keyframes orbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Centre */
.eco-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.eco-center__inner {
  width: 120px;
  height: 140px;
  background: linear-gradient(135deg, var(--color-honey) 0%, var(--color-honey-dark) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.eco-center__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy-deep);
}

.eco-center__sub {
  font-size: 0.6rem;
  color: var(--color-navy-deep);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eco-center__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(247, 179, 43, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Satellites */
.eco-satellite {
  position: absolute;
  width: 45px;
  height: 45px;
  background: var(--color-navy-medium);
  border: 2px solid rgba(247, 179, 43, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
}

.eco-satellite svg {
  width: 22px;
  height: 22px;
  color: var(--color-honey);
}

.eco-satellite:hover {
  background: var(--color-navy-light);
  border-color: var(--color-honey);
  transform: scale(1.2);
}

/* Positionnement sur orbite 2 (300px) */
.eco-satellite--1 {
  top: 50%;
  left: calc(50% + 150px);
  transform: translateY(-50%);
}

.eco-satellite--2 {
  top: calc(50% - 130px);
  left: calc(50% + 75px);
}

.eco-satellite--3 {
  top: calc(50% - 130px);
  left: calc(50% - 75px);
}

.eco-satellite--4 {
  top: 50%;
  left: calc(50% - 150px);
  transform: translateY(-50%);
}

.eco-satellite--5 {
  top: calc(50% + 130px);
  left: calc(50% - 75px);
}

.eco-satellite--6 {
  top: calc(50% + 130px);
  left: calc(50% + 75px);
}

/* Animation d'entrée satellites */
.eco-satellite {
  opacity: 0;
  animation: satReveal 0.5s ease forwards;
}

.eco-satellite--1 {
  animation-delay: 0.3s;
}

.eco-satellite--2 {
  animation-delay: 0.4s;
}

.eco-satellite--3 {
  animation-delay: 0.5s;
}

.eco-satellite--4 {
  animation-delay: 0.6s;
}

.eco-satellite--5 {
  animation-delay: 0.7s;
}

.eco-satellite--6 {
  animation-delay: 0.8s;
}

@keyframes satReveal {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Petits hexagones flottants */
.eco-hex {
  position: absolute;
  width: 20px;
  height: 23px;
  background: rgba(247, 179, 43, 0.2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 3;
}

.eco-hex--1 {
  top: 10%;
  left: 20%;
  animation: hexFloat 8s ease-in-out infinite;
}

.eco-hex--2 {
  top: 15%;
  right: 15%;
  animation: hexFloat 10s ease-in-out infinite reverse;
  background: rgba(45, 108, 181, 0.2);
}

.eco-hex--3 {
  bottom: 20%;
  left: 10%;
  animation: hexFloat 12s ease-in-out infinite;
  width: 15px;
  height: 17px;
}

.eco-hex--4 {
  bottom: 10%;
  right: 20%;
  animation: hexFloat 9s ease-in-out infinite reverse;
  background: rgba(45, 108, 181, 0.15);
}

@keyframes hexFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.8;
  }
}

/* Centre animation d'entrée */
.eco-center {
  opacity: 0;
  animation: ecoCenterReveal 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes ecoCenterReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ========================================
   RESPONSIVE HERO OPTIONS
   ======================================== */

@media (max-width: 768px) {
  .hero-option-label {
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-md);
  }

  .ruche-strategique {
    width: 300px;
    height: 300px;
    transform: scale(0.8);
  }

  .thinkers-builders {
    width: 100%;
    flex-direction: column;
    height: auto;
    gap: var(--space-md);
  }

  .tb-hex {
    width: 160px;
    height: 180px;
  }

  .tb-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .ecosysteme-bees {
    width: 320px;
    height: 320px;
    transform: scale(0.85);
  }
}

/* ========================================
   BOUTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

/* Bouton primaire - fond honey (référence: nav-cta-btn--primary) */
.btn-primary {
  background: var(--color-honey);
  color: var(--color-navy-deep);
}

.btn-primary:hover {
  background: var(--color-honey-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 179, 43, 0.35);
}

/* Bouton outline/secondary - bordure claire (référence: nav-cta-btn--secondary) */
.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Bouton accent - même style que primary pour sections claires */
.btn-accent {
  background: var(--color-honey);
  color: var(--color-navy-deep);
}

.btn-accent:hover {
  background: var(--color-honey-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 179, 43, 0.3);
}

/* ========================================
   SECTIONS COMMUNES
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-honey-dark);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '⬡';
  font-size: 0.6em;
  opacity: 0.5;
  margin: 0 var(--space-sm);
  color: var(--color-navy-light);
}

.section-title {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-dark);
}

/* ========================================
   GRILLE SERVICES
   ======================================== */

.section-services {
  background-color: var(--color-background);
  min-height: 100vh;
  max-height: 100vh;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
  position: relative;
}

/* Bordure décorative subtile en bas */
.section-services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(247, 179, 43, 0.15), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Décorations hexagonales flottantes */
.expertise-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.expertise-deco svg {
  filter: drop-shadow(0 0 8px rgba(247, 179, 43, 0.15));
}

.expertise-deco--1 {
  top: 3%;
  left: 3%;
  width: 160px;
  animation: hexDrift 15s ease-in-out infinite, hexPulse 4s ease-in-out infinite;
}

.expertise-deco--2 {
  top: 8%;
  right: 3%;
  width: 220px;
  animation: hexOrbit 20s linear infinite, hexGlow 5s ease-in-out infinite;
}

.expertise-deco--3 {
  bottom: 15%;
  left: 4%;
  width: 100px;
  animation: hexFloat 8s ease-in-out infinite, hexSpin 25s linear infinite;
}

.expertise-deco--4 {
  bottom: 5%;
  right: 6%;
  width: 180px;
  animation: hexDrift 18s ease-in-out infinite reverse, hexPulse 6s ease-in-out infinite 1s;
}

.expertise-deco--5 {
  top: 45%;
  left: 8%;
  width: 80px;
  animation: hexFloat 10s ease-in-out infinite 2s, hexGlow 3s ease-in-out infinite;
}

/* Animation de dérive douce */
@keyframes hexDrift {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(15px, -10px) rotate(3deg);
  }

  50% {
    transform: translate(5px, -20px) rotate(-2deg);
  }

  75% {
    transform: translate(-10px, -8px) rotate(2deg);
  }
}

/* Animation de flottement vertical */
@keyframes hexFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}

/* Animation orbitale subtile */
@keyframes hexOrbit {
  0% {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}

/* Pulsation d'opacité */
@keyframes hexPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.9;
  }
}

/* Effet de lueur */
@keyframes hexGlow {

  0%,
  100% {
    opacity: 0.4;
    filter: drop-shadow(0 0 5px rgba(247, 179, 43, 0.1));
  }

  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(247, 179, 43, 0.25));
  }
}

/* Rotation lente */
@keyframes hexSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Masquer sur mobile pour les performances */
@media (max-width: 768px) {

  .expertise-deco,
  .expertise-particles {
    display: none;
  }
}

/* Particules flottantes */
.expertise-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-honey);
}

.particle--1 {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 15%;
  opacity: 0.4;
  animation: particleFloat 12s ease-in-out infinite, particlePulse 3s ease-in-out infinite;
}

.particle--2 {
  width: 4px;
  height: 4px;
  top: 35%;
  right: 12%;
  opacity: 0.5;
  background: var(--color-blue-accent);
  animation: particleFloat 10s ease-in-out infinite 1s, particlePulse 4s ease-in-out infinite;
}

.particle--3 {
  width: 8px;
  height: 8px;
  bottom: 25%;
  left: 20%;
  opacity: 0.3;
  animation: particleFloat 14s ease-in-out infinite 2s, particlePulse 5s ease-in-out infinite;
}

.particle--4 {
  width: 5px;
  height: 5px;
  top: 60%;
  right: 18%;
  opacity: 0.45;
  animation: particleFloat 11s ease-in-out infinite 0.5s, particlePulse 3.5s ease-in-out infinite;
}

.particle--5 {
  width: 3px;
  height: 3px;
  top: 15%;
  right: 25%;
  opacity: 0.5;
  background: var(--color-blue-accent);
  animation: particleFloat 9s ease-in-out infinite 1.5s, particlePulse 2.5s ease-in-out infinite;
}

.particle--6 {
  width: 7px;
  height: 7px;
  bottom: 35%;
  right: 8%;
  opacity: 0.35;
  animation: particleFloat 13s ease-in-out infinite 3s, particlePulse 4.5s ease-in-out infinite;
}

.particle--7 {
  width: 4px;
  height: 4px;
  top: 75%;
  left: 8%;
  opacity: 0.4;
  animation: particleFloat 10s ease-in-out infinite 2.5s, particlePulse 3s ease-in-out infinite;
}

.particle--8 {
  width: 5px;
  height: 5px;
  top: 10%;
  left: 35%;
  opacity: 0.3;
  background: var(--color-blue-accent);
  animation: particleFloat 15s ease-in-out infinite 1s, particlePulse 4s ease-in-out infinite;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, -15px);
  }

  50% {
    transform: translate(-10px, -25px);
  }

  75% {
    transform: translate(-20px, -10px);
  }
}

@keyframes particlePulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

.section-services .section-header {
  margin-bottom: var(--space-lg);
}

.section-services .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.service-number {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.1em;
}

.service-icon {
  color: var(--color-accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  padding: var(--space-xl);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: 8px;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: 0 2px 8px rgba(10, 25, 41, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
}

.service-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.service-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ========================================
   EXPERTISE HONEYCOMB - Style Alvéole
   ======================================== */

.expertise-honeycomb {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  /* Espacement entre les cellules */
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 80px var(--space-md);
}

.expertise-cell {
  position: relative;
  width: 220px;
  height: 250px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--color-navy-medium);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.expertise-cell__inner {
  position: absolute;
  inset: 3px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  transition: all 0.4s ease;
}

.expertise-cell {
  filter: drop-shadow(0 8px 20px rgba(10, 25, 41, 0.12));
}

.expertise-cell:hover {
  transform: scale(1.06) translateY(-5px);
  z-index: 10;
  filter: drop-shadow(0 15px 35px rgba(10, 25, 41, 0.2));
}

.expertise-cell:hover .expertise-cell__inner {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-bg) 100%);
}

.expertise-cell__icon {
  width: 40px;
  height: 40px;
  color: var(--color-honey);
  margin-bottom: var(--space-xs);
}

.expertise-cell__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy-deep);
  margin-bottom: var(--space-xs);
  line-height: 1.25;
}

.expertise-cell__desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin: 0;
}

/* Grille 2x2 propre et organisée */

/* Animation d'entrée pour les cellules - déclenchée au scroll */
.expertise-cell {
  opacity: 0;
  filter: drop-shadow(0 8px 20px rgba(10, 25, 41, 0.12));
}

/* État initial - Cellules impaires (1, 3, 5) = viennent de la gauche */
.expertise-cell--1,
.expertise-cell--3,
.expertise-cell--5 {
  transform: translateX(-80px) translateY(-62.5px) scale(0.8) rotate(-10deg);
}

/* État initial - Cellules paires (2, 4) = viennent de la droite */
.expertise-cell--2,
.expertise-cell--4 {
  transform: translateX(80px) translateY(62.5px) scale(0.8) rotate(10deg);
}

/* Animation déclenchée quand la section est visible */
.expertise-honeycomb.animate .expertise-cell--1 {
  animation: expertiseZigzagLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.1s;
}

.expertise-honeycomb.animate .expertise-cell--2 {
  animation: expertiseZigzagRight 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.25s;
}

.expertise-honeycomb.animate .expertise-cell--3 {
  animation: expertiseZigzagLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.4s;
}

.expertise-honeycomb.animate .expertise-cell--4 {
  animation: expertiseZigzagRight 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.55s;
}

.expertise-honeycomb.animate .expertise-cell--5 {
  animation: expertiseZigzagLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.7s;
}

/* Animation zigzag depuis la gauche (cellules impaires) */
@keyframes expertiseZigzagLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px) translateY(-62.5px) scale(0.8) rotate(-10deg);
  }

  60% {
    opacity: 1;
    transform: translateX(10px) translateY(-62.5px) scale(1.05) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(-62.5px) scale(1) rotate(0deg);
  }
}

/* Animation zigzag depuis la droite (cellules paires) */
@keyframes expertiseZigzagRight {
  0% {
    opacity: 0;
    transform: translateX(80px) translateY(62.5px) scale(0.8) rotate(10deg);
  }

  60% {
    opacity: 1;
    transform: translateX(-10px) translateY(62.5px) scale(1.05) rotate(-2deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(62.5px) scale(1) rotate(0deg);
  }
}

.expertise-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Hexagones décoratifs en arrière-plan */
.expertise-honeycomb::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -60px;
  width: 100px;
  height: 115px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.04), rgba(247, 179, 43, 0.08));
  z-index: -1;
  animation: floatHexSlow 8s ease-in-out infinite;
}

.expertise-honeycomb::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -60px;
  width: 100px;
  height: 115px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(45, 108, 181, 0.02), rgba(45, 108, 181, 0.06));
  z-index: -1;
  animation: floatHexSlow 10s ease-in-out infinite reverse;
}

@keyframes floatHexSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Honeycomb */
@media (max-width: 1024px) {
  .expertise-honeycomb {
    flex-wrap: wrap;
    max-width: 500px;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-sm);
  }

  .expertise-cell {
    width: 160px;
    height: 185px;
  }

  .expertise-cell__icon {
    width: 32px;
    height: 32px;
  }

  .expertise-cell__title {
    font-size: 0.8rem;
  }

  .expertise-cell__desc {
    font-size: 0.7rem;
  }

  .section-services {
    padding: var(--space-lg) var(--space-md);
  }
}

@media (max-width: 768px) {
  .expertise-honeycomb {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 100%;
    padding: var(--space-lg) var(--space-md);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  .expertise-cell {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.15;
    min-height: 140px;
    max-height: 180px;
  }

  .expertise-cell__inner {
    padding: var(--space-sm);
  }

  .expertise-cell__icon {
    width: 28px;
    height: 28px;
    margin-bottom: var(--space-xs);
  }

  .expertise-cell__title {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }

  .expertise-cell__desc {
    font-size: 0.65rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Disable complex animations on mobile */
  .expertise-cell--1,
  .expertise-cell--2,
  .expertise-cell--3,
  .expertise-cell--4,
  .expertise-cell--5 {
    transform: none;
    opacity: 1;
  }

  .expertise-honeycomb.animate .expertise-cell--1,
  .expertise-honeycomb.animate .expertise-cell--2,
  .expertise-honeycomb.animate .expertise-cell--3,
  .expertise-honeycomb.animate .expertise-cell--4,
  .expertise-honeycomb.animate .expertise-cell--5 {
    animation: expertiseFadeIn 0.5s ease-out forwards;
  }

  .expertise-cell:hover {
    transform: scale(1.02);
  }

  .section-services {
    padding: var(--space-xl) var(--space-sm);
  }

  .section-services .section-header {
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-sm);
  }

  /* Hide decorative elements on mobile */
  .expertise-deco,
  .expertise-particles {
    display: none;
  }
}

@media (max-width: 480px) {


  .expertise-cell {
    min-height: 160px;
    max-height: 200px;
  }

  .expertise-cell__title {
    font-size: 0.85rem;
  }

  .expertise-cell__desc {
    font-size: 0.7rem;
    -webkit-line-clamp: 3;
  }
}

/* Simple fade animation for mobile */
@keyframes expertiseFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ========================================
   SECTION BLOG
   ======================================== */

.section-blog {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Fond décoratif Blog */
.blog-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.section-blog .container {
  position: relative;
  z-index: 1;
}

.blog-hex {
  position: absolute;
}

.blog-hex--1 {
  width: 160px;
  top: 5%;
  right: 5%;
  animation: blogHexFloat 17s ease-in-out infinite;
}

.blog-hex--2 {
  width: 120px;
  top: 40%;
  left: 3%;
  animation: blogHexFloat 14s ease-in-out infinite 1s reverse;
}

.blog-hex--3 {
  width: 200px;
  bottom: 10%;
  right: 8%;
  animation: blogHexFloat 19s ease-in-out infinite 2s;
}

.blog-hex--4 {
  width: 100px;
  bottom: 25%;
  left: 6%;
  animation: blogHexFloat 15s ease-in-out infinite 0.5s;
}

/* Particules Blog */
.blog-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-honey);
}

.blog-particle--1 {
  width: 5px;
  height: 5px;
  top: 12%;
  left: 10%;
  opacity: 0.4;
  animation: blogParticleFloat 12s ease-in-out infinite;
}

.blog-particle--2 {
  width: 4px;
  height: 4px;
  top: 20%;
  right: 15%;
  opacity: 0.45;
  background: var(--color-blue-accent);
  animation: blogParticleFloat 10s ease-in-out infinite 1s;
}

.blog-particle--3 {
  width: 6px;
  height: 6px;
  bottom: 35%;
  left: 5%;
  opacity: 0.35;
  animation: blogParticleFloat 14s ease-in-out infinite 2s;
}

.blog-particle--4 {
  width: 4px;
  height: 4px;
  top: 55%;
  right: 8%;
  opacity: 0.4;
  animation: blogParticleFloat 11s ease-in-out infinite 0.5s;
}

.blog-particle--5 {
  width: 5px;
  height: 5px;
  bottom: 15%;
  right: 20%;
  opacity: 0.35;
  background: var(--color-blue-accent);
  animation: blogParticleFloat 13s ease-in-out infinite 1.5s;
}

.blog-particle--6 {
  width: 4px;
  height: 4px;
  top: 70%;
  left: 12%;
  opacity: 0.4;
  animation: blogParticleFloat 15s ease-in-out infinite 3s;
}

@keyframes blogHexFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-12px) rotate(4deg);
    opacity: 0.9;
  }
}

@keyframes blogParticleFloat {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }

  50% {
    transform: translate(-10px, -15px);
    opacity: 0.55;
  }
}

@media (max-width: 768px) {
  .blog-bg-decor {
    display: none;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.blog-card {
  background: var(--color-light-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--color-light-border);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 25, 41, 0.1);
  border-color: var(--color-honey);
}

.blog-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-honey);
  color: var(--color-navy-deep);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

/* M2M : un post peut porter plusieurs catégories. Le wrapper prend la place
   absolue (ex-position du chip unique) et dispose les chips en ligne. */
.blog-card__categories {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.blog-card__categories .blog-card__category {
  position: static;
  top: auto;
  left: auto;
}

.blog-card__content {
  padding: var(--space-lg);
}

.blog-card__date {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy-deep);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
  color: var(--color-honey-dark);
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-honey-dark);
  transition: all 0.3s ease;
}

.blog-card__link:hover {
  color: var(--color-honey);
  gap: var(--space-sm);
}

.blog-card__link svg {
  transition: transform 0.3s ease;
}

.blog-card__link:hover svg {
  transform: translateX(4px);
}

.blog-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

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

.btn-outline-dark:hover {
  background: var(--color-navy-deep);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Responsive Blog */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card__image {
    height: 180px;
  }
}

/* ========================================
   SECTION APPROCHE
   ======================================== */

.approach-section {
  background-color: var(--color-background-alt);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
  align-items: center;
}

.approach-content h3 {
  margin-bottom: var(--space-md);
}

.approach-list {
  list-style: none;
  margin-top: var(--space-lg);
}

.approach-list li {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  position: relative;
  color: var(--color-secondary);
}

.approach-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.approach-visual {
  position: relative;
  height: 400px;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-list li strong {
  display: block;
  color: var(--color-primary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

/* Courbes décoratives approche */
.approach-curves {
  display: none;
}

/* Cluster hexagonal */
.honeycomb-cluster {
  position: relative;
  width: 300px;
  height: 300px;
}

.hex-connections {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hex-connection {
  stroke: var(--color-border);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  opacity: 0.5;
}

.hex-cell {
  position: absolute;
  width: 80px;
  height: 69px;
  background: var(--color-background);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  z-index: 1;
}

.hex-cell:hover {
  background: var(--color-background-alt);
  transform: scale(1.05);
}

.hex-cell--center {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  border-color: var(--color-accent);
}

.hex-cell--1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hex-cell--2 {
  top: 22%;
  left: 12%;
}

.hex-cell--3 {
  top: 22%;
  right: 12%;
}

.hex-cell--4 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hex-cell--5 {
  bottom: 22%;
  left: 12%;
}

.hex-cell--6 {
  bottom: 22%;
  right: 12%;
}

.hex-cell--7 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ========================================
   SECTION CULTURE - Design Premium
   ======================================== */

.section-culture {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  padding-top: var(--space-xl);
  /* Réduit de 3xl à xl */
  padding-bottom: var(--space-xl);
}

/* Séparation visuelle élégante en haut */

.section-culture .container {
  position: relative;
  z-index: 2;
}

/* Motifs décoratifs arrière-plan */
.culture-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.culture-hex {
  position: absolute;
  opacity: 0.8;
}

.culture-hex--1 {
  width: 200px;
  top: 5%;
  left: 3%;
  animation: cultureHexFloat 18s ease-in-out infinite;
}

.culture-hex--2 {
  width: 150px;
  top: 10%;
  right: 5%;
  animation: cultureHexFloat 15s ease-in-out infinite reverse;
}

.culture-hex--3 {
  width: 120px;
  top: 45%;
  left: 2%;
  animation: cultureHexFloat 20s ease-in-out infinite 2s;
}

.culture-hex--4 {
  width: 280px;
  bottom: 15%;
  right: 2%;
  animation: cultureHexFloat 22s ease-in-out infinite 1s;
}

.culture-hex--5 {
  width: 100px;
  bottom: 25%;
  left: 8%;
  animation: cultureHexFloat 16s ease-in-out infinite 3s;
}

.culture-hex--6 {
  width: 180px;
  top: 60%;
  right: 10%;
  animation: cultureHexFloat 19s ease-in-out infinite 0.5s;
}

.culture-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/* Particules */
.culture-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-honey);
}

.culture-particle--1 {
  width: 5px;
  height: 5px;
  top: 15%;
  left: 12%;
  opacity: 0.35;
  animation: cultureParticleFloat 14s ease-in-out infinite;
}

.culture-particle--2 {
  width: 4px;
  height: 4px;
  top: 30%;
  right: 15%;
  opacity: 0.4;
  background: var(--color-blue-accent);
  animation: cultureParticleFloat 12s ease-in-out infinite 1s;
}

.culture-particle--3 {
  width: 6px;
  height: 6px;
  bottom: 35%;
  left: 6%;
  opacity: 0.3;
  animation: cultureParticleFloat 16s ease-in-out infinite 2s;
}

.culture-particle--4 {
  width: 3px;
  height: 3px;
  top: 55%;
  right: 8%;
  opacity: 0.45;
  animation: cultureParticleFloat 11s ease-in-out infinite 0.5s;
}

.culture-particle--5 {
  width: 5px;
  height: 5px;
  bottom: 20%;
  right: 20%;
  opacity: 0.35;
  background: var(--color-blue-accent);
  animation: cultureParticleFloat 13s ease-in-out infinite 1.5s;
}

.culture-particle--6 {
  width: 4px;
  height: 4px;
  top: 75%;
  left: 15%;
  opacity: 0.4;
  animation: cultureParticleFloat 15s ease-in-out infinite 3s;
}

@keyframes cultureHexFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }

  33% {
    transform: translateY(-12px) rotate(3deg);
    opacity: 0.9;
  }

  66% {
    transform: translateY(8px) rotate(-2deg);
    opacity: 0.7;
  }
}

@keyframes cultureParticleFloat {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }

  25% {
    transform: translate(15px, -12px);
    opacity: 0.5;
  }

  50% {
    transform: translate(-8px, -20px);
    opacity: 0.4;
  }

  75% {
    transform: translate(-15px, -8px);
    opacity: 0.6;
  }
}

/* Masquer sur mobile */
@media (max-width: 768px) {
  .culture-bg-pattern {
    display: none;
  }
}

.section-culture .section-header {
  margin-bottom: var(--space-lg);
  /* Réduit de 2xl à lg */
}

/* Sous-sections Culture */
.culture-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  /* Réduit de 3xl à xl */
  align-items: center;
  /* Par défaut centré (pour la 2ème section) */
  margin-bottom: -154px;
  /* Réduit de 3xl à xl */
}

/* Première ligne (Nos Valeurs) : alignement haut */
.culture-row:first-of-type {
  align-items: start;
  padding-top: var(--space-lg);
}

.culture-row:last-of-type {
  margin-bottom: 0;
}

.culture-content-2 {
  margin-top: 105px;
}

.culture-row--reverse {
  direction: rtl;
}

.culture-row--reverse>* {
  direction: ltr;
}

/* Illustration Hive */
.culture-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  margin-top: var(--space-xl);
}

/* ========================================
   HIVE CLUSTER - Ruche Hexagonale
   ======================================== */

/* HIVE CLUSTER - Augmentation de taille (+15%) */
.hive-cluster {
  position: relative;
  width: 460px;
  /* Augmenté de 400px (+15%) */
  height: 460px;
  /* Augmenté de 400px (+15%) */
  --radius: 138px;
  /* Augmenté de 120px (+15%) */
  /* Distance du centre aux satellites */
}

.hive-cell {
  position: absolute;
  width: 150px;
  /* Augmenté de 130px (+15%) */
  height: 130px;
  /* Augmenté de 113px (+15%) */
  background: var(--color-navy-medium);
  border: 1px solid rgba(247, 179, 43, 0.2);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 8px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  opacity: 0;
  animation: hiveReveal 0.6s ease forwards;
}

.hive-cell:hover {
  transform: scale(1.08);
  /* Effet hover conservé */
  z-index: 10;
  box-shadow: 0 15px 40px rgba(247, 179, 43, 0.2);
  background: var(--color-navy-light);
  border-color: var(--color-honey);
}

.hive-cell__text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  /* Ajusté */
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.3;
}

.hive-cell__sub {
  font-size: 0.75rem;
  /* Ajusté */
  font-weight: 400;
  color: var(--color-honey-light);
  margin-top: 4px;
}

/* Cellule centrale */
.hive-cell--center {
  width: 172px;
  /* Augmenté de 150px (+15%) */
  height: 150px;
  /* Augmenté de 130px (+15%) */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
  animation: hiveCenterReveal 0.8s ease 0.3s forwards;
}

.hive-cell--center:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.hive-cell--center .hive-cell__text {
  font-size: 1.15rem;
  /* Ajusté */
  font-weight: 600;
  color: white;
}

/* Responsive pour mobile - Retour aux tailles initiales ou adaptées */
@media (max-width: 768px) {
  .hive-cluster {
    width: 320px;
    height: 320px;
    --radius: 100px;
  }

  .hive-cell {
    width: 105px;
    height: 90px;
    padding: 8px 4px;
  }

  .hive-cell--center {
    width: 120px;
    height: 104px;
  }

  .hive-cell__text {
    font-size: 0.7rem;
  }

  .hive-cell--center .hive-cell__text {
    font-size: 0.9rem;
  }

  .hive-cell__sub {
    font-size: 0.6rem;
  }
}

/* Satellites - positionnés au centre puis déplacés */
.hive-cell:not(.hive-cell--center) {
  top: 50%;
  left: 50%;
}

.hive-cell--accent-green {
  background: linear-gradient(135deg, var(--color-honey) 0%, var(--color-honey-dark) 100%);
  box-shadow: 0 8px 30px rgba(247, 179, 43, 0.4);
  border: none;
}

.hive-cell--accent-green:hover {
  background: linear-gradient(135deg, var(--color-honey-light) 0%, var(--color-honey) 100%);
}

.hive-cell--accent-green .hive-cell__text {
  color: var(--color-navy-deep);
}

.hive-cell--accent-blue {
  background: linear-gradient(135deg, var(--color-blue-accent) 0%, var(--color-navy-light) 100%);
  box-shadow: 0 8px 30px rgba(45, 108, 181, 0.4);
  border: none;
}

.hive-cell--accent-blue:hover {
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-blue-accent) 100%);
}

/* Positionnement hexagonal - Approche trigonométrique */
/* 6 satellites à 60° d'intervalle autour du centre */
/* Formule: translate(radius * sin(angle), radius * -cos(angle)) */

.hive-cell--1 {
  /* 0° - Haut */
  --angle: 0deg;
  transform: translate(calc(-50% + var(--radius) * sin(var(--angle))),
      calc(-50% + var(--radius) * cos(var(--angle)) * -1));
  animation-delay: 0.1s;
}

.hive-cell--2 {
  /* 300° - Haut-gauche */
  --angle: 300deg;
  transform: translate(calc(-50% + var(--radius) * sin(var(--angle))),
      calc(-50% + var(--radius) * cos(var(--angle)) * -1));
  animation-delay: 0.15s;
}

.hive-cell--3 {
  /* 60° - Haut-droite */
  --angle: 60deg;
  transform: translate(calc(-50% + var(--radius) * sin(var(--angle))),
      calc(-50% + var(--radius) * cos(var(--angle)) * -1));
  animation-delay: 0.2s;
}

.hive-cell--4 {
  /* 240° - Bas-gauche */
  --angle: 240deg;
  transform: translate(calc(-50% + var(--radius) * sin(var(--angle))),
      calc(-50% + var(--radius) * cos(var(--angle)) * -1));
  animation-delay: 0.25s;
}

.hive-cell--5 {
  /* 120° - Bas-droite */
  --angle: 120deg;
  transform: translate(calc(-50% + var(--radius) * sin(var(--angle))),
      calc(-50% + var(--radius) * cos(var(--angle)) * -1));
  animation-delay: 0.3s;
}

.hive-cell--6 {
  /* 180° - Bas */
  --angle: 180deg;
  transform: translate(calc(-50% + var(--radius) * sin(var(--angle))),
      calc(-50% + var(--radius) * cos(var(--angle)) * -1));
  animation-delay: 0.35s;
}

/* Hover states */
.hive-cell:not(.hive-cell--center):hover {
  transform: translate(calc(-50% + var(--radius) * sin(var(--angle)) * 1.1),
      calc(-50% + var(--radius) * cos(var(--angle)) * -1.1)) scale(1.05);
}

@keyframes hiveReveal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hiveCenterReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3) rotate(-10deg);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0);
  }
}

.hive-cluster:hover .hive-cell:not(:hover) {
  opacity: 0.7;
}

/* Contenu texte */
.culture-content {
  padding: var(--space-lg);
}

.culture-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-xs) var(--space-md);
  border-radius: 50px;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

/* Rounded box style for culture-label (losange removed) */
.culture-label::before {
  display: none;
}

.culture-label--green {
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.15) 0%, rgba(217, 154, 29, 0.15) 100%);
  color: var(--color-honey-dark);
  border: 1.5px solid rgba(247, 179, 43, 0.4);
}

.culture-label--blue {
  background: linear-gradient(135deg, rgba(45, 108, 181, 0.15) 0%, rgba(30, 73, 118, 0.15) 100%);
  color: var(--color-blue-accent);
  border: 1.5px solid rgba(45, 108, 181, 0.4);
}

/* Rounded encadré style for Notre ADN section-label */
.section-culture .section-label {
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.12) 0%, rgba(217, 154, 29, 0.12) 100%);
  border: 1.5px solid rgba(247, 179, 43, 0.35);
  border-radius: 50px;
  padding: var(--space-xs) var(--space-md);
  color: var(--color-honey-dark);
}

.section-culture .section-label::before,
.section-culture .section-label::after {
  display: none;
}

.culture-subtitle {
  font-size: var(--text-2xl);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.culture-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.culture-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  color: var(--color-text-medium);
  line-height: 1.6;
}

.culture-list li::before {
  content: '⬡';
  position: absolute;
  left: 0;
  color: var(--color-honey);
  font-size: 0.8em;
}

.culture-list li strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.culture-description {
  font-size: var(--text-base);
  color: var(--color-text-medium);
  line-height: 1.8;
  margin: 0;
}


/* ========================================
   CITATION CEO - Style Premium
   ======================================== */

.ceo-quote {
  position: relative;
  max-width: 950px;
  margin: var(--space-3xl) auto 0;
  padding: var(--space-2xl) var(--space-3xl);
  background: var(--color-white);
  border-radius: 4px;
  box-shadow:
    0 20px 60px rgba(10, 25, 41, 0.08),
    0 1px 3px rgba(10, 25, 41, 0.05);
  overflow: hidden;
}

/* Barre latérale dorée */
.ceo-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gradient-honey);
}

/* Décoration hexagonale */
.ceo-quote__decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  color: var(--color-honey);
  opacity: 0.15;
  animation: floatHex 8s ease-in-out infinite;
}

@keyframes floatHex {

  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  50% {
    transform: rotate(5deg) translateY(-10px);
  }
}

.ceo-quote blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text-medium);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.ceo-quote blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--color-honey);
  opacity: 0.3;
  line-height: 1;
}

/* Info CEO */
.ceo-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.ceo-avatar {
  width: 56px;
  height: 56px;
  background: var(--gradient-honey);
  color: var(--color-navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(247, 179, 43, 0.3);
}

.ceo-details {
  display: flex;
  flex-direction: column;
}

.ceo-details cite {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-style: normal;
  font-weight: 600;
  color: var(--color-navy-deep);
}

.ceo-details span {
  font-size: var(--text-sm);
  color: var(--color-honey-dark);
}

/* ========================================
   SECTION ENGAGEMENTS
   ======================================== */

/* Pattern hexagonal subtil en fond */
.section-engagements {
  background-color: #F8FAFC;
  /* Fond très léger gris-bleuté */
  position: relative;
  overflow: hidden;
}

.section-engagements::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L93.3 25V75L50 100L6.7 75V25L50 0Z' fill='none' stroke='%23F7B32B' stroke-width='0.8' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 120% 100% at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 120% 100% at center, black 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Fond décoratif enrichi */
.engagement-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.eng-hex {
  position: absolute;
}

.eng-hex--1 {
  width: 180px;
  top: 8%;
  left: 5%;
  animation: engHexFloat 16s ease-in-out infinite;
}

.eng-hex--2 {
  width: 140px;
  top: 5%;
  right: 8%;
  animation: engHexFloat 14s ease-in-out infinite 1s reverse;
}

.eng-hex--3 {
  width: 100px;
  top: 50%;
  left: 3%;
  animation: engHexFloat 18s ease-in-out infinite 2s;
}

.eng-hex--4 {
  width: 220px;
  bottom: 10%;
  right: 5%;
  animation: engHexFloat 20s ease-in-out infinite 0.5s;
}

.eng-hex--5 {
  width: 90px;
  bottom: 20%;
  left: 10%;
  animation: engHexFloat 12s ease-in-out infinite 3s;
}

.eng-hex--6 {
  width: 160px;
  top: 35%;
  right: 3%;
  animation: engHexFloat 15s ease-in-out infinite 1.5s reverse;
}

.eng-connection-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Particules engagements */
.eng-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-honey);
}

.eng-particle--1 {
  width: 6px;
  height: 6px;
  top: 15%;
  left: 15%;
  opacity: 0.4;
  animation: engParticleFloat 13s ease-in-out infinite;
}

.eng-particle--2 {
  width: 4px;
  height: 4px;
  top: 25%;
  right: 20%;
  opacity: 0.5;
  background: var(--color-blue-accent);
  animation: engParticleFloat 11s ease-in-out infinite 1s;
}

.eng-particle--3 {
  width: 7px;
  height: 7px;
  bottom: 30%;
  left: 8%;
  opacity: 0.35;
  animation: engParticleFloat 15s ease-in-out infinite 2s;
}

.eng-particle--4 {
  width: 5px;
  height: 5px;
  top: 60%;
  right: 12%;
  opacity: 0.45;
  animation: engParticleFloat 12s ease-in-out infinite 0.5s;
}

.eng-particle--5 {
  width: 4px;
  height: 4px;
  top: 10%;
  left: 40%;
  opacity: 0.4;
  background: var(--color-blue-accent);
  animation: engParticleFloat 10s ease-in-out infinite 1.5s;
}

.eng-particle--6 {
  width: 6px;
  height: 6px;
  bottom: 15%;
  right: 25%;
  opacity: 0.35;
  animation: engParticleFloat 14s ease-in-out infinite 3s;
}

.eng-particle--7 {
  width: 5px;
  height: 5px;
  top: 45%;
  left: 25%;
  opacity: 0.4;
  animation: engParticleFloat 16s ease-in-out infinite 2.5s;
}

.eng-particle--8 {
  width: 4px;
  height: 4px;
  bottom: 40%;
  right: 35%;
  opacity: 0.5;
  background: var(--color-blue-accent);
  animation: engParticleFloat 11s ease-in-out infinite 1s;
}

@keyframes engHexFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
    opacity: 1;
  }
}

@keyframes engParticleFloat {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.35;
  }

  33% {
    transform: translate(12px, -18px);
    opacity: 0.6;
  }

  66% {
    transform: translate(-8px, -12px);
    opacity: 0.45;
  }
}

/* Masquer sur mobile */
@media (max-width: 768px) {
  .engagement-bg-decor {
    display: none;
  }
}

.engagements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.engagement-card {
  background: var(--color-white);
  padding: var(--space-3xl) var(--space-2xl);
  border-radius: 16px;
  /* Arrondi moderne */
  border: 1px solid rgba(247, 179, 43, 0.1);
  /* Bordure dorée très subtile */
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  /* Ombre douce par défaut */
  position: relative;
  z-index: 2;
}

/* Décorations flottantes */
.engagement-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.engagement-deco--left {
  top: 10%;
  left: -5%;
  width: 300px;
  opacity: 0.6;
}

.engagement-deco--right {
  bottom: 0;
  right: -2%;
  width: 200px;
  opacity: 0.8;
}

.floating-hex {
  animation: float 8s ease-in-out infinite;
}

.floating-hex-sm {
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.engagement-card:hover {
  border-color: var(--color-honey);
  box-shadow: 0 20px 50px rgba(247, 179, 43, 0.1);
  transform: translateY(-5px);
}

.engagement-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  color: var(--color-honey);
}

.engagement-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

.engagement-card p {
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
}

.engagement-card .btn {
  margin-top: var(--space-md);
}

/* Particules volantes */
.flying-bees {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bee-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-honey);
  border-radius: 50%;
  opacity: 0.3;
  animation: flyPath 20s linear infinite;
}

.bee-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.bee-particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: -5s;
  animation-duration: 30s;
}

.bee-particle:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-delay: -10s;
  animation-duration: 22s;
}

.bee-particle:nth-child(4) {
  top: 40%;
  left: 60%;
  animation-delay: -15s;
  animation-duration: 28s;
}

.bee-particle:nth-child(5) {
  top: 10%;
  left: 50%;
  animation-delay: -8s;
  animation-duration: 35s;
}

@keyframes flyPath {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translate(100px, -50px) scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: translate(50px, 100px) scale(1.2);
    opacity: 0.2;
  }

  75% {
    transform: translate(-80px, 30px) scale(0.9);
    opacity: 0.4;
  }
}

/* ========================================
   SECTION CONTACT
   ======================================== */



.section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-honey), transparent);
  opacity: 0.5;
}

.section-contact .section-label {
  color: var(--color-honey);
}

.section-contact .section-label::before,
.section-contact .section-label::after {
  color: var(--color-honey);
}

.section-contact h2 {
  color: var(--color-text-light);
}

.section-contact p {
  color: var(--color-text-light-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info {
  padding-right: var(--space-xl);
}

.contact-info h2 {
  margin-bottom: var(--space-lg);
}

.contact-info>p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-item__label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.contact-item__value {
  font-size: var(--text-sm);
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.contact-item__value:hover {
  color: var(--color-accent-hover);
}

/* Formulaire de contact */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: var(--space-xl);
  right: var(--space-xl);
  height: 3px;
  background: var(--color-accent);
}

.section-contact {
  background-color: var(--color-navy-deep);
  color: var(--color-text-light);
  position: relative;
  min-height: auto;
  /* Surcharge pour supprimer le 100vh */
  padding-bottom: var(--space-xl);
  /* Espacement plus raisonnable */
}

/* ... (Le reste de section-contact::before et autres styles reste inchangé, je ne modifie que le bloc .section-contact initial si possible, mais ici je vais cibler le formulaire pour condenser) */
/* Je vais modifier le formulaire plus bas */

/* MODE CONDENSÉ DU FORMULAIRE */
.form-group {
  margin-bottom: 20px;
  /* Réduit de space-md */
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  /* Plus petit */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  /* Padding réduit */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  /* Font légèrement plus petite */
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(212, 165, 116, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  /* Hauteur réduite */
}

.form-submit {
  width: 100%;
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

/* ========================================
   FOOTER
   ======================================== */

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--color-navy-deep);
  padding: var(--space-xl) 0 var(--space-lg);
  /* Réduit de 3xl à xl */
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  /* Séparation subtile */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  /* Navigation plus large pour 2 colonnes */
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  /* Réduit de 2xl à lg */
  border-bottom: 1px solid rgba(247, 179, 43, 0.15);
}

/* Brand - Compact Mode (Logo + Texte horizontal) */
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  max-width: 100%;
}

.footer-logo {
  width: 100px;
  /* Taille ajustée */
  height: auto;
  max-height: 60px;
  object-fit: contain;
  /* Prevent stretching */
  margin-bottom: 0;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--color-text-light-muted);
  line-height: 1.5;
  margin: 0;
}

/* Titles */
.footer-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-honey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

/* Links - 2 Colonnes pour la navigation */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 colonnes */
  gap: 8px 20px;
}

.footer-contact .footer-links {
  display: flex;
  /* Retour à flex pour la colonne contact */
  flex-direction: column;
}

.footer-links a,
.footer-links span {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-honey);
}

.footer-icon {
  font-size: 0.9em;
  opacity: 0.7;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

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

.footer-separator {
  color: rgba(255, 255, 255, 0.2);
}

.footer-signature {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-hex {
  color: var(--color-honey);
  animation: hexPulse 3s ease-in-out infinite;
}

/* Decoration */
.footer-decoration {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 230px;
  background: rgba(247, 179, 43, 0.03);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto var(--space-md);
    display: block;
    max-width: 120px;
    height: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Global container padding on mobile */
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Section spacing mobile */
  .section {
    padding: var(--space-2xl) 0;
  }

  /* Footer navigation links - single column on mobile */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer-nav,
  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links li {
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .footer-separator {
    display: none;
  }
}

/* ========================================
   HEXAGONE DÉCORATIF
   ======================================== */

.hexagon-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 35px, var(--color-accent) 35px, var(--color-accent) 36px),
    repeating-linear-gradient(60deg, transparent, transparent 35px, var(--color-accent) 35px, var(--color-accent) 36px),
    repeating-linear-gradient(120deg, transparent, transparent 35px, var(--color-accent) 35px, var(--color-accent) 36px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  :root {
    --text-4xl: 3.5rem;
    --text-3xl: 2.5rem;
  }

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

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

  .hero-tagline {
    align-items: center;
  }

  .hero-tagline__sub {
    padding-left: 0;
  }

  .hero-tagline__sub::before {
    display: none;
  }

  .hero-images.hero-images--epure {
    max-width: 420px;
    height: 440px;
    margin: 0 auto var(--space-xl);
    order: -1;
  }

  .hero-images {
    max-width: 380px;
    height: 400px;
    order: -1;
    margin: 0 auto;
  }

  .hero-main-image img {
    width: 280px;
    height: 310px;
  }

  .hero-main-image::before {
    width: 295px;
    height: 325px;
  }

  .hero-main-image::after {
    width: 340px;
    height: 380px;
  }

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

  .culture-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .culture-row {
    gap: var(--space-2xl);
  }

  .hive-cluster {
    transform: scale(0.75);
  }

  .culture-subtitle {
    font-size: var(--text-xl);
  }

  .ceo-quote {
    padding: var(--space-xl);
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-width: 140px;
    --text-4xl: 2.5rem;
    --text-3xl: 2rem;
    --text-2xl: 1.75rem;
  }

  .nav-logo {
    width: 120px;
  }

  .section {
    padding: var(--space-2xl) var(--space-md);
  }

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

  .hero-description {
    font-size: var(--text-md);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-images.hero-images--epure {
    max-width: 320px;
    height: 360px;
  }

  .culture-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
    margin-bottom: var(--space-2xl);
  }

  .culture-row--reverse {
    direction: ltr;
  }

  .culture-illustration {
    min-height: 280px;
    order: -1;
  }

  .hive-cluster {
    width: 310px;
    height: 310px;
    max-width: 100%;
    --radius: 85px;
    transform: none;
  }

  .hive-cell {
    width: 90px;
    height: 78px;
    padding: 6px 4px;
  }

  .hive-cell--center {
    width: 100px;
    height: 87px;
  }

  .hive-cell__text {
    font-size: 0.6rem;
  }

  .hive-cell--center .hive-cell__text {
    font-size: 0.75rem;
  }

  .hive-cell__sub {
    font-size: 0.5rem;
    margin-top: 2px;
  }

  .culture-content {
    padding: 0 var(--space-sm);
  }

  .culture-label {
    font-size: 0.7rem;
  }

  .culture-subtitle {
    font-size: 1.1rem;
  }

  .culture-description {
    font-size: 0.9rem;
  }

  /* Hide decorative background on mobile */
  .culture-bg-pattern {
    display: none;
  }

  .ceo-quote {
    padding: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .ceo-quote blockquote {
    font-size: var(--text-base);
  }

  .ceo-quote__decoration {
    display: none;
    justify-content: center;
  }

  .hero-images {
    max-width: 100%;
    width: 300px;
    height: 340px;
  }

  .hero-main-image img {
    width: 220px;
    height: 245px;
    max-width: 90%;
  }

  .hero-main-image::before {
    width: 235px;
    height: 260px;
    max-width: 95%;
  }

  .hero-main-image::after {
    width: 280px;
    height: 310px;
    max-width: 100%;
  }

  .honeycomb-cluster {
    transform: scale(0.8);
  }

}

@media (max-width: 480px) {
  :root {
    --nav-width: 100px;
    --text-4xl: 2rem;
  }

  .nav-logo {
    width: 85px;
  }

  .nav-menu {
    gap: var(--space-lg);
  }

  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-xs);
  }

  .honeycomb-cluster {
    transform: scale(0.6);
  }

  /* Culture section - very small screens */
  .hive-cluster {
    width: 270px;
    height: 270px;
    --radius: 72px;
  }

  .hive-cell {
    width: 75px;
    height: 65px;
    padding: 4px 2px;
  }

  .hive-cell--center {
    width: 85px;
    height: 74px;
  }

  .hive-cell__text {
    font-size: 0.55rem;
  }

  .hive-cell--center .hive-cell__text {
    font-size: 0.65rem;
  }

  .hive-cell__sub {
    display: none;
  }

  .culture-illustration {
    min-height: 240px;
  }

  /* Engagements section */
  .engagements-grid {
    gap: var(--space-md);
  }

  .engagement-card {
    padding: var(--space-md);
  }

  .engagement-icon {
    width: 48px;
    height: 48px;
  }

  .engagement-card h3 {
    font-size: 1rem;
  }

  .engagement-card p {
    font-size: 0.85rem;
  }
}

/* ========================================
   UTILITAIRES
   ======================================== */

.text-accent {
  color: var(--color-accent);
}

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

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

/* ========================================
   HERO THINKERS & BUILDERS
   Style inspiré OCTO + Photos hexagonales
   ======================================== */

.hero-thinkers {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-thinkers #honeycomb-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.85;
  pointer-events: auto;
}

/* Pattern hexagonal statique en arrière-plan */
.hero-hex-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-32l14-8V14L28 6 14 14v12l14 8z' fill='%23F7B32B' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-thinkers .container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--space-3xl) var(--space-xl);
  pointer-events: none;
}

.hero-thinkers .container * {
  pointer-events: auto;
}

/* Composition hexagonale centrale (aérée) */
.hero-hex-composition {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 450px;
  margin-bottom: var(--space-2xl);
}

/* === Trajectoire d'abeille === */
.bee-trajectory {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bee-path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bee-path--main {
  animation: pathDraw 3s ease-out forwards, pathPulse 4s ease-in-out 3s infinite;
  stroke-dashoffset: 1000;
}

.bee-path--secondary {
  animation: pathDraw 2.5s ease-out 0.5s forwards;
  stroke-dashoffset: 800;
}

.bee-path--loop {
  animation: pathDraw 4s ease-out 0.3s forwards;
  stroke-dashoffset: 1500;
}

@keyframes pathDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pathPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.9;
  }
}

.bee-dot {
  animation: dotGlow 2s ease-in-out infinite;
}

.bee-dot:nth-child(1) {
  animation-delay: 0s;
}

.bee-dot:nth-child(2) {
  animation-delay: 0.5s;
}

.bee-dot:nth-child(3) {
  animation-delay: 1s;
}

.bee-dot:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes dotGlow {

  0%,
  100% {
    opacity: 0.4;
    r: 3;
  }

  50% {
    opacity: 1;
    r: 5;
  }
}

/* === Photos Hexagonales (aérées) === */
.hex-photo {
  position: absolute;
  z-index: 5;
}

.hex-photo__frame {
  position: relative;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform var(--transition-base);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hex-photo__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--color-honey);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 2;
  pointer-events: none;
}

.hex-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hex-photo:hover .hex-photo__frame {
  transform: scale(1.02);
}

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

/* Photo gauche - plus espacée */
.hex-photo--left {
  left: 5%;
  top: 55%;
  transform: translateY(-50%);
  animation: hexPhotoReveal 0.8s ease-out 0.2s backwards;
}

.hex-photo--left .hex-photo__frame {
  width: 160px;
  height: 185px;
}

/* Photo centre (plus grande) */
.hex-photo--center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: hexPhotoReveal 0.8s ease-out 0s backwards;
}

.hex-photo--center .hex-photo__frame {
  width: 210px;
  height: 242px;
}

.hex-photo--center .hex-photo__frame::before {
  border-width: 4px;
}

/* Photo droite - plus espacée */
.hex-photo--right {
  right: 5%;
  top: 45%;
  transform: translateY(-50%);
  animation: hexPhotoReveal 0.8s ease-out 0.3s backwards;
}

.hex-photo--right .hex-photo__frame {
  width: 150px;
  height: 173px;
}

@keyframes hexPhotoReveal {
  from {
    opacity: 0;
    transform: translateY(-30%) scale(0.8);
  }

  to {
    opacity: 1;
  }
}

.hex-photo--center {
  animation-name: hexPhotoCenterReveal;
}

@keyframes hexPhotoCenterReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* === Labels THINKERS / BUILDERS (grands hexagones) === */
.hex-label {
  position: absolute;
  z-index: 15;
  width: 130px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.12) 0%, rgba(10, 25, 41, 0.85) 100%);
  animation: hexLabelReveal 0.8s ease-out backwards;
}

.hex-label::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 2px solid var(--color-honey);
  pointer-events: none;
}

.hex-label span {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-honey);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* THINKERS - en haut à droite, plus éloigné */
.hex-label--thinkers {
  right: 0;
  top: 0;
  animation-delay: 0.5s;
}

/* BUILDERS - en bas à gauche, plus éloigné */
.hex-label--builders {
  left: 0;
  bottom: 5%;
  animation-delay: 0.6s;
}

@keyframes hexLabelReveal {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === Contenu texte en bas === */
.hero-bottom-content {
  text-align: center;
  animation: bottomContentReveal 0.8s ease-out 0.4s backwards;
}

@keyframes bottomContentReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Signature ligne */
.hero-signature-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.hero-signature__name {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.hero-signature__divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-honey), transparent);
}

.hero-signature__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-honey);
  font-style: italic;
}

.dot-accent {
  color: var(--color-honey);
  font-weight: 700;
}

/* Sous-titre */
.hero-subtitle {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-text-light-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

/* Actions centrées */
.hero-actions-centered {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Bouton style honey - unifié avec charte commune */
.btn-honey {
  background: var(--color-honey);
  color: var(--color-navy-deep);
}

.btn-honey:hover {
  background: var(--color-honey-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 179, 43, 0.35);
}

/* Bouton outline light - unifié avec charte commune */
.btn-outline-light {
  background: transparent;
  color: var(--color-honey);
  border: 1.5px solid var(--color-honey);
}

.btn-outline-light:hover {
  background: rgba(247, 179, 43, 0.1);
  border-color: var(--color-honey-light);
  transform: translateY(-2px);
}

/* Indicateur de scroll */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: scrollIndicatorReveal 0.6s ease-out 0.8s backwards;
}

.scroll-text {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-honey), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}

@keyframes scrollIndicatorReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scrollLinePulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* === Responsive Hero Thinkers === */
@media (max-width: 1024px) {
  .hero-hex-composition {
    max-width: 700px;
    height: 400px;
  }

  .hex-photo--left .hex-photo__frame {
    width: 140px;
    height: 162px;
  }

  .hex-photo--center .hex-photo__frame {
    width: 180px;
    height: 208px;
  }

  .hex-photo--right .hex-photo__frame {
    width: 130px;
    height: 150px;
  }

  .hex-label {
    width: 110px;
    height: 127px;
  }

  .hex-label span {
    font-size: 0.65rem;
  }

  .bee-trajectory {
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .hero-hex-composition {
    max-width: 100%;
    height: 320px;
    margin-bottom: var(--space-xl);
  }

  .hex-photo--left {
    left: 3%;
  }

  .hex-photo--left .hex-photo__frame {
    width: 100px;
    height: 115px;
  }

  .hex-photo--center .hex-photo__frame {
    width: 140px;
    height: 162px;
  }

  .hex-photo--right {
    right: 3%;
  }

  .hex-photo--right .hex-photo__frame {
    width: 95px;
    height: 110px;
  }

  .hex-label {
    width: 90px;
    height: 104px;
  }

  .hex-label--thinkers {
    right: 0;
    top: 0;
  }

  .hex-label--builders {
    left: 0;
    bottom: 5%;
  }

  .hex-label span {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .bee-trajectory {
    display: none;
  }

  .hero-signature-line {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .hero-signature__divider {
    width: 30px;
    display: none;
  }

  .hero-signature__name {
    font-size: var(--text-2xl);
  }

  .hero-signature__tagline {
    font-size: var(--text-xl);
  }

  .hero-subtitle {
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
  }

  .hero-actions-centered {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .btn-honey,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-hex-composition {
    height: 280px;
  }

  .hex-photo--left,
  .hex-photo--right {
    display: none;
  }

  .hex-photo--center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
  }

  .hex-photo--center .hex-photo__frame {
    width: 180px;
    height: 208px;
  }

  .hex-label {
    width: 80px;
    height: 92px;
  }

  .hex-label--thinkers {
    right: auto;
    left: 5%;
    top: 25%;
  }

  .hex-label--builders {
    left: auto;
    right: 5%;
    bottom: auto;
    top: 45%;
  }

  .hex-label span {
    font-size: 0.5rem;
  }

  .hero-signature__name {
    font-size: var(--text-xl);
  }

  .hero-signature__tagline {
    font-size: var(--text-lg);
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ========================================
   ANIMATIONS SUBTILES - SCROLL REVEAL
   ======================================== */

/* États initiaux - éléments invisibles avant animation */
.anim-fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-fade-down {
  opacity: 0;
  transform: translateY(-25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.anim-blur-in {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.6s ease-out, filter 0.6s ease-out;
}

/* État visible après animation */
.anim-fade-up.visible,
.anim-fade-down.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale-in.visible,
.anim-blur-in.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

/* Délais pour effet staggered */
.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}

.anim-delay-5 {
  transition-delay: 0.5s;
}

.anim-delay-6 {
  transition-delay: 0.6s;
}

/* ========================================
   SECTION CULTURE - Animations spécifiques
   ======================================== */

.section-culture .culture-row {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

.section-culture .culture-row.visible {
  opacity: 1;
}

/* Animation slide subtile sur le contenu texte uniquement */
.culture-content {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.culture-row--reverse .culture-content {
  transform: translateX(-30px);
}

.culture-row.visible .culture-content {
  opacity: 1;
  transform: translateX(0);
}

/* Animation des cellules du hive cluster - opacity uniquement pour préserver le positionnement */
.hive-cluster .hive-cell {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.culture-row.visible .hive-cell--center {
  opacity: 1;
  transition-delay: 0.1s;
}

.culture-row.visible .hive-cell--1 {
  opacity: 1;
  transition-delay: 0.2s;
}

.culture-row.visible .hive-cell--2 {
  opacity: 1;
  transition-delay: 0.25s;
}

.culture-row.visible .hive-cell--3 {
  opacity: 1;
  transition-delay: 0.3s;
}

.culture-row.visible .hive-cell--4 {
  opacity: 1;
  transition-delay: 0.35s;
}

.culture-row.visible .hive-cell--5 {
  opacity: 1;
  transition-delay: 0.4s;
}

.culture-row.visible .hive-cell--6 {
  opacity: 1;
  transition-delay: 0.45s;
}

/* ========================================
   SECTION ENGAGEMENTS - Animations
   ======================================== */

.engagement-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.engagement-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.engagement-card:nth-child(1) {
  transition-delay: 0.1s;
}

.engagement-card:nth-child(2) {
  transition-delay: 0.25s;
}

/* Animation de l'icône au reveal */
.engagement-card.visible .engagement-icon {
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}

@keyframes iconPop {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* ========================================
   SECTION BLOG - Animations
   ======================================== */

.blog-card {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.blog-grid.visible .blog-card,
.blog-listing.visible .blog-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.blog-grid.visible .blog-card:nth-child(1),
.blog-listing.visible .blog-card:nth-child(1) {
  transition-delay: 0.1s;
}

.blog-grid.visible .blog-card:nth-child(2),
.blog-listing.visible .blog-card:nth-child(2) {
  transition-delay: 0.2s;
}

.blog-grid.visible .blog-card:nth-child(3),
.blog-listing.visible .blog-card:nth-child(3) {
  transition-delay: 0.3s;
}

.blog-listing.visible .blog-card:nth-child(4) {
  transition-delay: 0.4s;
}

.blog-listing.visible .blog-card:nth-child(5) {
  transition-delay: 0.5s;
}

.blog-listing.visible .blog-card:nth-child(6) {
  transition-delay: 0.6s;
}

/* Subtile animation de l'image au hover (déjà existante, on l'améliore) */
.blog-card.visible .blog-card__image img {
  animation: subtleZoom 0.8s ease-out 0.4s backwards;
}

@keyframes subtleZoom {
  from {
    transform: scale(1.1);
    opacity: 0.8;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========================================
   SECTION CONTACT - Animations
   ======================================== */

.contact-info {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-form {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.15s;
}

.contact-info.visible,
.contact-form.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Animation des champs du formulaire */
.contact-form.visible .form-group {
  animation: formFieldSlide 0.4s ease-out backwards;
}

.contact-form.visible .form-group:nth-child(1) {
  animation-delay: 0.2s;
}

.contact-form.visible .form-group:nth-child(2) {
  animation-delay: 0.3s;
}

.contact-form.visible .form-group:nth-child(3) {
  animation-delay: 0.4s;
}

.contact-form.visible .form-group:nth-child(4) {
  animation-delay: 0.5s;
}

.contact-form.visible .form-submit {
  animation: formFieldSlide 0.4s ease-out 0.6s backwards;
}

@keyframes formFieldSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

/* Animation des items de contact */
.contact-info.visible .contact-item {
  animation: contactItemReveal 0.4s ease-out backwards;
}

.contact-info.visible .contact-item:nth-child(1) {
  animation-delay: 0.3s;
}

.contact-info.visible .contact-item:nth-child(2) {
  animation-delay: 0.4s;
}

.contact-info.visible .contact-item:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes contactItemReveal {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   SECTION HEADER - Animation universelle
   ======================================== */

.section-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header.visible .section-label {
  animation: labelReveal 0.5s ease-out 0.1s backwards;
}

.section-header.visible .section-title {
  animation: titleReveal 0.6s ease-out 0.2s backwards;
}

.section-header.visible .section-subtitle {
  animation: subtitleReveal 0.5s ease-out 0.35s backwards;
}

@keyframes labelReveal {
  from {
    opacity: 0;
    letter-spacing: 0.3em;
  }

  to {
    opacity: 1;
    letter-spacing: 0.2em;
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

@keyframes subtitleReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ========================================
   MOBILE UX ENHANCEMENTS
   ======================================== */

@media (max-width: 768px) {

  /* Better touch targets */
  .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }

  /* Improve tap states */
  .btn:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
  }

  .btn-primary:active,
  .btn-accent:active {
    background: var(--color-honey-dark);
  }

  /* Better link touch areas */
  .nav-link,
  .footer-links a {
    padding: 0.75rem 0;
  }

  /* Mobile-optimized section padding */
  .section {
    padding: var(--space-2xl) var(--space-md);
  }

  /* Better card interactions */
  .blog-card:active,
  .engagement-card:active {
    transform: scale(0.98);
    transition-duration: 0.15s;
  }

  /* Optimize footer for mobile */
  .footer {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* fix Notre ADN lozenge alignment */
  .page-hero__label {
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  .page-hero__label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: rgba(247, 179, 43, 0.15);
    /* Orange lozenge */
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-top: -2px;
    /* Fine-tune vertical position */
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    /* Stack links vertically */
    align-items: center;
    gap: var(--space-md);
    /* Increased gap for touch targets */
  }

  /* Mobile section headers */
  .section-header {
    padding: 0 var(--space-sm);
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .section-title {
    font-size: var(--text-2xl);
    line-height: 1.2;
  }

  /* Canvas animation optimization for mobile */
  #honeycomb-canvas {
    opacity: 0.7;
  }
}

@media (max-width: 480px) {

  /* Smaller screen optimizations */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .section {
    padding: var(--space-xl) var(--space-sm);
  }

  .section-title {
    font-size: var(--text-xl);
  }

  .section-label::before,
  .section-label::after {
    display: none;
  }

  /* Optimize spacing */
  .container {
    padding: 0 var(--space-md);
  }

  /* Better footer mobile */
  .footer {
    padding: var(--space-xl) var(--space-sm);
  }

  .footer-brand {
    margin-bottom: var(--space-lg);
  }

  .footer-brand img {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: 150px;
    /* Prevent stretching */
  }
}

/* Safe area insets for notched devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(var(--space-2xl) + env(safe-area-inset-bottom));
  }

  .nav-vertical {
    padding-bottom: env(safe-area-inset-bottom);
  }

  @media (max-width: 768px) {
    .mobile-header {
      padding-left: max(1rem, env(safe-area-inset-left));
      padding-right: max(1rem, env(safe-area-inset-right));
    }
  }
}

/* ========================================
   RÉDUCTION DES ANIMATIONS - Accessibilité
   ======================================== */

@media (prefers-reduced-motion: reduce) {

  .anim-fade-up,
  .anim-fade-down,
  .anim-fade-left,
  .anim-fade-right,
  .anim-scale-in,
  .anim-blur-in,
  .culture-row,
  .engagement-card,
  .blog-card,
  .contact-info,
  .contact-form,
  .section-header {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hive-cluster .hive-cell {
    opacity: 1;
    transition: none;
  }
}

/* ========================================
   MOBILE RESPONSIVENESS FIXES
   ======================================== */

@media (max-width: 768px) {

  /* Global Spacing Reductions */
  :root {
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --text-hero: 3rem;
  }

  .section {
    padding: var(--space-xl) var(--space-md);
  }

  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  /* Typography Adjustments */
  h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  /* Footer Mobile Layout */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-brand {
    align-items: center;
    margin-bottom: var(--space-lg);
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* ========================================
   MOBILE FIXES - 414x896 (iPhone XR/11/12/13/14)
   ======================================== */

@media (max-width: 480px) {

  /* === GLOBAL OVERFLOW FIX === */
  html,
  body {
    overflow-x: hidden;
  }

  .main-container {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* === EXPERTISE HONEYCOMB - Single Column === */
  .expertise-honeycomb {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
  }

  .expertise-cell {
    width: 85%;
    max-width: 240px;
    margin: 0 auto;
    min-height: 180px;
    max-height: 220px;
  }

  .expertise-cell__icon {
    width: 36px;
    height: 36px;
    margin-bottom: var(--space-sm);
  }

  .expertise-cell__title {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
  }

  .expertise-cell__desc {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
    line-height: 1.4;
  }

  /* Hide decorative pseudo-elements causing overflow */
  .expertise-honeycomb::before,
  .expertise-honeycomb::after {
    display: none;
  }

  /* === CULTURE SECTION FIX === */
  .section-culture {
    padding: var(--space-lg) var(--space-sm);
  }

  .culture-row {
    margin-bottom: var(--space-xl) !important;
    gap: var(--space-lg);
  }

  .culture-row:last-of-type {
    margin-bottom: 0 !important;
  }

  .culture-content-2 {
    margin-top: 0;
  }

  .culture-content {
    padding: var(--space-md);
  }

  .culture-subtitle {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .culture-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .culture-list li {
    font-size: 0.9rem;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
  }

  /* === HIVE CLUSTER - Improved Mobile Layout === */
  .culture-illustration {
    min-height: 300px;
    padding: var(--space-md);
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;
    width: 100% !important;
  }

  .hive-cluster {
    width: 310px !important;
    height: 310px !important;
    --radius: 85px;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hive-cell {
    width: 85px;
    height: 74px;
    padding: 6px 4px;
  }

  .hive-cell--center {
    width: 95px;
    height: 82px;
  }

  .hive-cell__text {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .hive-cell--center .hive-cell__text {
    font-size: 0.72rem;
  }

  .hive-cell__sub {
    font-size: 0.5rem;
    margin-top: 2px;
  }

  /* === SECTION SERVICES === */
  .section-services {
    padding: var(--space-lg) var(--space-sm);
    min-height: auto;
    max-height: none;
  }

  .section-services .section-title {
    font-size: 1.4rem;
    padding: 0 var(--space-xs);
    line-height: 1.25;
  }

  /* === ENGAGEMENTS SECTION === */
  .section-engagements {
    padding: var(--space-lg) var(--space-sm);
  }

  .engagements-grid {
    gap: var(--space-lg);
  }

  .engagement-card {
    padding: var(--space-lg);
  }

  .engagement-card h3 {
    font-size: 1.1rem;
  }

  .engagement-card p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* === CEO QUOTE === */
  .ceo-quote {
    padding: var(--space-lg);
    margin: var(--space-xl) var(--space-sm);
  }

  .quote-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* === FOOTER === */
  .footer {
    padding: var(--space-xl) var(--space-md);
  }

  /* === HERO SECTION === */
  .hero-tagline__main {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-tagline__sub {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* === SECTION HEADERS === */
  .section-header {
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-sm);
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  /* === CRITICAL MOBILE FIXES === */

  /* Expertise grid - SINGLE COLUMN */
  .expertise-honeycomb {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
    padding: var(--space-lg) var(--space-md) !important;
  }

  .expertise-cell {
    width: 100% !important;
    max-width: 280px !important;
    min-height: 200px !important;
    max-height: 250px !important;
    margin: 0 auto !important;
  }

  .expertise-cell__title {
    font-size: 1rem !important;
  }

  .expertise-cell__desc {
    font-size: 0.85rem !important;
    -webkit-line-clamp: 4 !important;
  }

  /* Culture section - Hide hive cluster on very small screens, show simplified version */
  .culture-row {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--space-xl) !important;
    margin-bottom: var(--space-2xl) !important;
  }

  .culture-row--reverse {
    direction: ltr !important;
  }

  .culture-row:last-of-type {
    margin-bottom: var(--space-lg) !important;
  }

  .culture-content-2 {
    margin-top: 0 !important;
  }

  /* Hide hive clusters on very small screens - too complex */
  .culture-illustration {
    min-height: auto !important;
    max-height: 280px !important;
    overflow: hidden !important;
  }

  .hive-cluster {
    transform: none !important;
    margin: 0 auto !important;
  }

  .hive-cell__sub {
    display: none !important;
  }
}

/* ========================================
   BLOCK COMPONENTS — STYLES MANQUANTS
   Classes utilisées par les composants React
   qui n'avaient pas de règles CSS.
   ======================================== */

/* ---- Hero eyebrow (used by HeroBlock) ---- */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-honey);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease both;
}

/* Hero without image: collapse to single column */
.hero-grid:has(.hero-image-wrapper:empty) {
  grid-template-columns: 1fr;
  max-width: 700px;
}

/* ---- Shared intro wrapper ---- */
.section-intro-wrapper {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-intro-wrapper h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: var(--space-md) auto var(--space-xl);
  line-height: 1.7;
}

/* ---- Expertise Preview (home) ---- */
.expertise-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.expertise-preview-card {
  background: var(--color-white);
  border: 1px solid rgba(247, 179, 43, 0.12);
  border-radius: 12px;
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(10, 25, 41, 0.04);
}

.expertise-preview-card:hover {
  border-color: var(--color-honey);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(247, 179, 43, 0.12);
}

.expertise-preview-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-dark);
  margin: var(--space-md) 0 var(--space-xs);
}

.expertise-preview-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.expertise-preview-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--color-honey);
}

/* ---- Section CTA shared ---- */
.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ---- Buttons missing ---- */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  background: transparent;
  color: var(--color-navy-deep);
  border: 1.5px solid var(--color-navy-medium);
}

.btn-secondary:hover {
  background: var(--color-navy-deep);
  color: var(--color-text-light);
  border-color: var(--color-navy-deep);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-navy-deep);
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-white:hover {
  background: var(--color-honey);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 179, 43, 0.3);
}

/* ---- Culture Preview (home) ---- */
.culture-text {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.culture-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.culture-value-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-honey-dark);
  background: rgba(247, 179, 43, 0.08);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: var(--space-sm);
}

.value-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-honey);
  margin-right: var(--space-xs);
  vertical-align: middle;
}

/* ---- Engagement Preview (home) ---- */
.section-engagement-preview {
  background: var(--color-light-bg);
  position: relative;
}

.section-engagement-preview .section-intro-wrapper {
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.section-engagement-preview h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

/* ---- Blog Preview (home) ---- */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

/* ---- Contact CTA (home) ---- */
.section-contact-cta {
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy-medium) 100%);
  position: relative;
}

.section-contact-cta h2 {
  color: var(--color-text-light);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.section-contact-cta p {
  color: var(--color-text-light-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 560px;
}


/* ---- Expertise Detail sections ---- */
.expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.expertise-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}

.expertise-card__description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-honey);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

/* ---- Engagement Detail sections ---- */
.engagement-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.engagement-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.engagement-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Talents section ---- */
.section-talents {
  background: var(--color-light-bg);
}

.section-talents h2 {
  color: var(--color-text-dark);
}

/* ---- Culture Values section ---- */
.section-culture-values {
  background: var(--color-white);
}

.section-culture-values .section-header h2 {
  color: var(--color-text-dark);
}

.culture-value-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.culture-value-card {
  background: var(--color-light-bg);
  border: 1px solid var(--color-light-border);
  border-radius: 12px;
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.culture-value-card:hover {
  border-color: var(--color-honey);
  box-shadow: 0 8px 24px rgba(247, 179, 43, 0.08);
  transform: translateY(-2px);
}

.culture-value-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- Culture Forces section ---- */
.section-culture-forces {
  background: var(--color-light-bg);
}

.section-culture-forces .section-header h2 {
  color: var(--color-text-dark);
}

.culture-forces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.culture-force-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: 12px;
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.culture-force-card:hover {
  border-color: var(--color-honey);
  box-shadow: 0 8px 24px rgba(247, 179, 43, 0.08);
  transform: translateY(-2px);
}

.culture-force-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.culture-force-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- Citation / Quote section ---- */
.section-quote {
  background: var(--color-navy-deep);
  padding: var(--space-3xl) var(--space-2xl);
}

.culture-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.culture-quote__text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

.culture-quote__text::before {
  content: '\201C';
  font-size: 4em;
  color: var(--color-honey);
  opacity: 0.3;
  position: absolute;
  top: -0.3em;
  left: -0.2em;
  line-height: 1;
}

/* ---- Contact Details section ---- */
.section-contact-details {
  background: var(--color-white);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-details__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: 0;
  margin: var(--space-xl) 0 0;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-light-border);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-item__label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  font-weight: 600;
}

.contact-detail-item__value {
  font-size: var(--text-base);
  color: var(--color-honey-dark);
  font-weight: 500;
}

/* ---- CTA Section (expertises / engagements / culture) ---- */
.cta-section {
  position: relative;
}

.section-padding {
  padding: var(--space-3xl) var(--space-2xl);
}

.bg-primary {
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy-medium) 100%);
}

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

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.cta-description {
  font-size: var(--text-lg);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* ---- Newsletter CTA (blog) ---- */
.section-newsletter {
  background: var(--color-light-bg);
}

.newsletter-cta {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-cta h2 {
  font-size: var(--text-2xl);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.newsletter-cta p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* ---- Responsive overrides ---- */
@media (max-width: 1024px) {
  .expertise-grid-preview {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .expertise-grid-preview {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-cards {
    grid-template-columns: 1fr;
  }

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

  .culture-forces-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .section-contact-cta .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .expertise-grid-preview {
    grid-template-columns: 1fr;
  }

  .culture-values-grid {
    grid-template-columns: 1fr;
  }

  .culture-forces-grid {
    grid-template-columns: 1fr;
  }
}