/* ========================================
   PAGES CSS - Styles pour les pages dédiées
   Version 4.0 - Refonte complète
   ======================================== */

/* ========================================
   PAGE HERO - Nouveau design avec illustration
   ======================================== */

/* ========================================
   PAGE HERO - Enhanced Professional Design
   ======================================== */

.page-hero {
  position: relative;
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0f2035 100%);
  overflow: hidden;
}

/* Canvas honeycomb background */
.page-hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.page-hero .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem 0 3rem;
}

.page-hero__content {
  max-width: 550px;
  animation: heroContentSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #F7B32B;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
}

/* Orange lozenge decoration behind label */
.page-hero__label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1.5rem);
  height: 160%;
  background: rgba(247, 179, 43, 0.35);
  z-index: -1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  pointer-events: none;
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.page-hero__title .text-accent {
  color: #F7B32B;
  position: relative;
  display: inline-block;
}

/* Micro-animation on hover */
.page-hero__title .text-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #F7B32B;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-hero__title:hover .text-accent::after {
  width: 100%;
}

.page-hero__description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Illustration Hero - Entrance animation only */
.page-hero__illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: illustrationAppear 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.page-hero__illustration svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* SVG Micro-animations on hover */
.page-hero__illustration svg g {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-hero__illustration svg g:hover {
  transform: scale(1.05);
}

.page-hero__illustration svg g:hover polygon {
  filter: drop-shadow(0 0 8px rgba(247, 179, 43, 0.6));
}

/* Professional Keyframe Animations */
@keyframes heroContentSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

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

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

@keyframes illustrationAppear {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }

  60% {
    transform: scale(1.02) translateY(-5px);
  }

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

/* Remove old floating animation */
@keyframes heroIllustrationIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

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

/* Ancien décoration (fallback) */
.page-hero__decoration {
  display: none;
}

/* ========================================
   FORM STYLES
   ======================================== */

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2d4a;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #1a2d4a;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #F7B32B;
  box-shadow: 0 0 0 3px rgba(247, 179, 43, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2d4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form h2 {
  font-size: 1.35rem;
  color: #1a2d4a;
  margin-bottom: 1.25rem;
}

/* ========================================
   SECTIONS - Espacement réduit
   ======================================== */

.section {
  padding: 3rem 0;
}

/* Padding latéral pour éloigner du menu vertical */
.section .container,
.section-expertise-detail .container,
.section-cta .container {
  padding-left: 3rem;
  padding-right: 2rem;
}

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

/* ========================================
   EXPERTISE DETAIL SECTIONS
   ======================================== */

.section-expertise-detail {
  padding: 2.5rem 0;
  background: #f8fafc;
}

.section-expertise-detail--alt {
  background: #ffffff;
}

.expertise-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.expertise-detail--reverse {
  direction: rtl;
}

.expertise-detail--reverse>* {
  direction: ltr;
}

.expertise-detail__number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #F7B32B;
  opacity: 0.3;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.expertise-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2d4a;
  margin-bottom: 0.75rem;
}

.expertise-detail__intro {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* ========================================
   LISTES À PUCES AMÉLIORÉES - Style Cards
   ======================================== */

.expertise-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.expertise-detail__list li {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  color: #1a2d4a;
  line-height: 1.5;
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.05) 0%, rgba(247, 179, 43, 0.02) 100%);
  border-radius: 8px;
  border-left: 3px solid #F7B32B;
  transition: all 0.2s ease;
}

.expertise-detail__list li:hover {
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.1) 0%, rgba(247, 179, 43, 0.05) 100%);
  transform: translateX(4px);
}

.expertise-detail__list li::before {
  content: '⬡';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #F7B32B;
  font-size: 0.75rem;
}

.expertise-detail__list li strong {
  color: #1a2d4a;
  font-weight: 600;
}

.expertise-detail__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.expertise-hex {
  width: 200px;
  height: 230px;
  background: linear-gradient(135deg, #F7B32B 0%, #e5a321 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px -10px rgba(247, 179, 43, 0.4);
}

.expertise-hex svg {
  width: 65px;
  height: 65px;
  color: #0a1628;
}

/* ========================================
   CTA SECTION
   ======================================== */

/* Section CTA complète (avec section.section-cta) */
section.section-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0f2035 100%);
  margin-top: 0;
}

/* Supprimer la bande blanche entre section et CTA */
.section-expertise-resources+section.section-cta,
.section+section.section-cta {
  margin-top: -1rem;
}

.section-expertise-resources {
  padding-bottom: 2rem;
}

/* CTA inline dans les sections (div.section-cta) */
div.section-cta {
  text-align: center;
  padding: 2rem 0;
  margin-top: 1rem;
}

.cta-box {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-box p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.cta-box__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ========================================
   CULTURE PAGE - Values Grid Enhanced
   ======================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

/* Connection lines between cards */
.values-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(247, 179, 43, 0.15) 20%,
      rgba(247, 179, 43, 0.15) 80%,
      transparent 100%);
  z-index: 0;
}

.value-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  padding: 2rem 1.5rem 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
}

/* Subtle hexagonal pattern overlay */
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='30,5 55,20 55,50 30,65 5,50 5,20' fill='none' stroke='%23F7B32B' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 40px 46px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Glow effect on hover */
.value-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(247, 179, 43, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px -15px rgba(247, 179, 43, 0.2),
    0 10px 20px -10px rgba(0, 0, 0, 0.08);
  border-color: rgba(247, 179, 43, 0.4);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover::after {
  opacity: 1;
}

/* Staggered reveal animation */
.values-grid .value-card {
  opacity: 0;
  transform: translateY(30px);
  animation: valueCardReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.values-grid .value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.values-grid .value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.values-grid .value-card:nth-child(3) {
  animation-delay: 0.3s;
}

.values-grid .value-card:nth-child(4) {
  animation-delay: 0.4s;
}

.values-grid .value-card:nth-child(5) {
  animation-delay: 0.5s;
}

.values-grid .value-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes valueCardReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

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

/* Enhanced Icon Container */
.value-card__icon {
  position: relative;
  width: 70px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hexagonal background with gradient */
.value-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F7B32B 0%, #e5a321 50%, #d99a1d 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px -5px rgba(247, 179, 43, 0.4);
}

/* Outer ring on hover */
.value-card__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  background: transparent;
  border: 2px solid rgba(247, 179, 43, 0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover .value-card__icon::before {
  transform: rotate(15deg) scale(1.05);
  box-shadow: 0 12px 30px -5px rgba(247, 179, 43, 0.5);
  animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    box-shadow: 0 8px 20px -5px rgba(247, 179, 43, 0.4);
  }

  50% {
    box-shadow: 0 12px 30px -5px rgba(247, 179, 43, 0.6);
  }
}

.value-card:hover .value-card__icon::after {
  opacity: 1;
  transform: scale(1);
}

/* SVG Icon inside hexagon */
.value-card__icon svg {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  color: #0a1628;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover .value-card__icon svg {
  transform: scale(1.1);
}

/* Fallback for emoji icons */
.value-card__icon-emoji {
  position: relative;
  z-index: 2;
  font-size: 1.75rem;
  line-height: 1;
  filter: grayscale(0) brightness(1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover .value-card__icon-emoji {
  transform: scale(1.15);
}

.value-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.value-card:hover .value-card__title {
  color: #1a2d4a;
}

.value-card__description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.value-card:hover .value-card__description {
  color: #475569;
}

/* ========================================
   NOS FORCES SECTION - Alt Style with Blue Accents
   ======================================== */

.section-expertise-detail--alt .values-grid .value-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.section-expertise-detail--alt .value-card__icon::before {
  background: linear-gradient(135deg, #2D6CB5 0%, #1E4976 50%, #0A1929 100%);
  box-shadow: 0 8px 20px -5px rgba(45, 108, 181, 0.4);
}

.section-expertise-detail--alt .value-card:hover .value-card__icon::before {
  box-shadow: 0 12px 30px -5px rgba(45, 108, 181, 0.5);
  animation: iconPulseBlue 1.5s ease-in-out infinite;
}

@keyframes iconPulseBlue {

  0%,
  100% {
    box-shadow: 0 8px 20px -5px rgba(45, 108, 181, 0.4);
  }

  50% {
    box-shadow: 0 12px 30px -5px rgba(45, 108, 181, 0.6);
  }
}

.section-expertise-detail--alt .value-card__icon::after {
  border-color: rgba(45, 108, 181, 0.3);
}

.section-expertise-detail--alt .value-card__icon svg,
.section-expertise-detail--alt .value-card__icon-emoji {
  color: #ffffff;
  filter: none;
}

.section-expertise-detail--alt .value-card:hover {
  border-color: rgba(45, 108, 181, 0.3);
  box-shadow:
    0 20px 40px -15px rgba(45, 108, 181, 0.15),
    0 10px 20px -10px rgba(0, 0, 0, 0.08);
}

.section-expertise-detail--alt .value-card::after {
  background: radial-gradient(circle at center, rgba(45, 108, 181, 0.06) 0%, transparent 50%);
}

/* ========================================
   SECTION LABELS - Enhanced
   ======================================== */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #F7B32B;
  margin-bottom: 0.75rem;
}

.section-label::before,
.section-label::after {
  content: '◇';
  font-size: 0.5rem;
  opacity: 0.6;
}

/* ========================================
   VALUE CARD - Shimmer Effect
   ======================================== */

.value-card__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(247, 179, 43, 0.08) 50%,
      transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.value-card:hover .value-card__shimmer {
  left: 100%;
}

/* Value card number indicator */
.value-card__number {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(247, 179, 43, 0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.value-card:hover .value-card__number {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   BLOG PAGE
   ======================================== */

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

.blog-hero .page-hero__content {
  max-width: 700px;
  margin: 0 auto;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-filter {
  padding: 0.4rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  background: #ffffff;
  color: #64748b;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter:hover,
.blog-filter.active {
  background: #F7B32B;
  border-color: #F7B32B;
  color: #0a1628;
}

.blog-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Force blog cards to be visible - fallback if animation doesn't trigger */
.blog-listing .blog-card {
  opacity: 1 !important;
  transform: none !important;
  animation: blogCardFallbackReveal 0.5s ease-out forwards;
}

.blog-listing .blog-card:nth-child(1) {
  animation-delay: 0.1s;
}

.blog-listing .blog-card:nth-child(2) {
  animation-delay: 0.15s;
}

.blog-listing .blog-card:nth-child(3) {
  animation-delay: 0.2s;
}

.blog-listing .blog-card:nth-child(4) {
  animation-delay: 0.25s;
}

.blog-listing .blog-card:nth-child(5) {
  animation-delay: 0.3s;
}

.blog-listing .blog-card:nth-child(6) {
  animation-delay: 0.35s;
}

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

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

/* ========================================
   ARTICLE PAGE
   ======================================== */

.article-hero {
  text-align: center;
  padding-bottom: 1.5rem;
}

.article-hero .page-hero__content {
  max-width: 700px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.article-meta__category {
  background: #F7B32B;
  color: #0a1628;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-meta__date,
.article-meta__author {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.article-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

.article-content h2 {
  font-size: 1.35rem;
  color: #1a2d4a;
  margin: 1.5rem 0 0.75rem;
}

.article-content h3 {
  font-size: 1.15rem;
  color: #1a2d4a;
  margin: 1.25rem 0 0.5rem;
}

.article-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.article-content ul,
.article-content ol {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.article-content li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
  color: #64748b;
  font-size: 0.95rem;
}

.article-content blockquote {
  border-left: 3px solid #F7B32B;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #1a2d4a;
}

.article-image {
  width: 100%;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 1.5rem;
}

.article-share__label {
  font-weight: 600;
  color: #1a2d4a;
  font-size: 0.9rem;
}

.article-share__links {
  display: flex;
  gap: 0.4rem;
}

.article-share__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
}

.article-share__link:hover {
  background: #F7B32B;
  color: #0a1628;
}

/* Related Articles */
.related-articles {
  background: #f8fafc;
  padding: 2.5rem 0;
}

.related-articles__title {
  text-align: center;
  font-size: 1.35rem;
  color: #1a2d4a;
  margin-bottom: 1.5rem;
}

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

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-full {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-full h2 {
  font-size: 1.35rem;
  color: #1a2d4a;
  margin-bottom: 1.25rem;
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-method__icon {
  width: 44px;
  height: 50px;
  background: linear-gradient(135deg, #F7B32B 0%, #e5a321 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-method__content h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2d4a;
  margin-bottom: 0.2rem;
}

.contact-method__content p,
.contact-method__content a {
  font-size: 0.8rem;
  color: #64748b;
}

.contact-method__content a:hover {
  color: #F7B32B;
}

/* ========================================
   ENGAGEMENTS PAGE
   ======================================== */

.engagement-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.engagement-full--reverse {
  direction: rtl;
}

.engagement-full--reverse>* {
  direction: ltr;
}

.engagement-full__content h2 {
  font-size: 1.35rem;
  color: #1a2d4a;
  margin-bottom: 0.75rem;
}

.engagement-full__content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.engagement-full__image {
  position: relative;
}

.engagement-full__image img {
  width: 100%;
  border-radius: 10px;
}

.engagement-full__image::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, #F7B32B 0%, #e5a321 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
  opacity: 0.15;
}

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

@media (max-width: 1024px) {
  .page-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero__content {
    max-width: 600px;
    margin: 0 auto;
  }

  .page-hero__illustration {
    order: -1;
    margin-bottom: 1rem;
  }

  .page-hero__illustration svg {
    max-width: 260px;
  }

  .expertise-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expertise-detail--reverse {
    direction: ltr;
  }

  .expertise-detail__visual {
    order: -1;
  }

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .values-grid::before {
    display: none;
  }

  .value-card {
    padding: 1.5rem 1.25rem;
  }

  .value-card__icon {
    width: 60px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .value-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .value-card__title {
    font-size: 1rem;
  }

  .value-card__description {
    font-size: 0.8rem;
    line-height: 1.5;
  }

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

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

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .engagement-full {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .engagement-full--reverse {
    direction: ltr;
  }

  .engagement-full__image {
    order: -1;
  }
}

@media (max-width: 768px) {

  /* ===== PAGE HERO - MOBILE ===== */
  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .page-hero .container {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .page-hero__content {
    max-width: 100%;
    text-align: center;
  }

  .page-hero__label {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .page-hero__title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .page-hero__title br {
    display: none;
  }

  .page-hero__description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .page-hero__illustration {
    order: -1;
    margin-bottom: 0;
  }

  .page-hero__illustration svg {
    max-width: 180px;
  }

  /* ===== SECTIONS - MOBILE ===== */
  .section {
    padding: 2rem 0;
  }

  .section .container,
  .section-expertise-detail .container,
  .section-cta .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-expertise-detail {
    padding: 1.75rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
    text-align: center;
  }

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

  .section-title {
    font-size: 1.4rem;
  }

  /* ===== VALUE CARDS - MOBILE OPTIMIZED ===== */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    border-radius: 12px;
  }

  /* Disable hover transform on touch devices */
  .value-card:hover {
    transform: none;
  }

  /* Active state for touch */
  .value-card:active {
    transform: scale(0.98);
    box-shadow:
      0 8px 20px -10px rgba(247, 179, 43, 0.15),
      0 4px 10px -5px rgba(0, 0, 0, 0.06);
  }

  .value-card__icon {
    width: 56px;
    height: 65px;
    margin: 0;
    flex-shrink: 0;
  }

  .value-card__icon svg {
    width: 24px;
    height: 24px;
  }

  /* Disable icon rotation on mobile */
  .value-card:hover .value-card__icon::before,
  .value-card:active .value-card__icon::before {
    transform: none;
    animation: none;
  }

  .value-card__content {
    flex: 1;
    min-width: 0;
  }

  .value-card__title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .value-card__description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Stagger animation reduced on mobile */
  .values-grid .value-card {
    animation-duration: 0.4s;
  }

  .values-grid .value-card:nth-child(1) {
    animation-delay: 0.05s;
  }

  .values-grid .value-card:nth-child(2) {
    animation-delay: 0.1s;
  }

  .values-grid .value-card:nth-child(3) {
    animation-delay: 0.15s;
  }

  .values-grid .value-card:nth-child(4) {
    animation-delay: 0.2s;
  }

  .values-grid .value-card:nth-child(5) {
    animation-delay: 0.25s;
  }

  .values-grid .value-card:nth-child(6) {
    animation-delay: 0.3s;
  }

  /* Blue variant mobile */
  .section-expertise-detail--alt .value-card:active {
    box-shadow:
      0 8px 20px -10px rgba(45, 108, 181, 0.15),
      0 4px 10px -5px rgba(0, 0, 0, 0.06);
  }

  .blog-listing {
    grid-template-columns: 1fr;
  }

  .related-articles__grid {
    grid-template-columns: 1fr;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.4rem;
  }

  .cta-box__actions {
    flex-direction: column;
    align-items: center;
  }

  .expertise-detail__list li {
    padding: 0.6rem 0.85rem 0.6rem 2.25rem;
    font-size: 0.85rem;
  }
}

/* ========================================
   EXPERTISE SECTIONS - NEW DESIGNS
   ======================================== */

/* Common Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-number {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(247, 179, 43, 0.15);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

/* ========================================
   01 - STRATÉGIE: CARDS GRID
   ======================================== */

.section-expertise-strategy {
  background: #f8f9fa;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.expertise-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid #F7B32B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(247, 179, 43, 0.15);
  border-left-color: #2D6CB5;
}

.expertise-card:hover::before {
  opacity: 1;
}

.expertise-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F7B32B 0%, #FFD166 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.expertise-card:hover .expertise-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.expertise-card__icon svg {
  width: 28px;
  height: 28px;
}

.expertise-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.expertise-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   02 - TECHNOLOGIE: TECH GRID
   ======================================== */

.section-expertise-tech {
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
  color: white;
}

.section-expertise-tech .section-title,
.section-expertise-tech .section-intro {
  color: white;
}

.section-expertise-tech .section-intro {
  color: rgba(255, 255, 255, 0.8);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tech-block {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 179, 43, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(247, 179, 43, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-block:hover {
  transform: translateY(-4px);
  border-color: #F7B32B;
  box-shadow: 0 8px 24px rgba(247, 179, 43, 0.2);
}

.tech-block:hover::before {
  opacity: 1;
}

.tech-block__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tech-block__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F7B32B;
  margin-bottom: 1rem;
}

.tech-block__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(247, 179, 43, 0.1);
  border: 1px solid rgba(247, 179, 43, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #FFD166;
  transition: all 0.2s ease;
}

.tech-badge:hover {
  background: rgba(247, 179, 43, 0.2);
  border-color: #F7B32B;
  transform: scale(1.05);
}

/* ========================================
   03 - PERFORMANCE: TIMELINE
   ======================================== */

.section-expertise-performance {
  background: white;
}

.performance-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F7B32B 0%, #2D6CB5 100%);
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-item__number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #F7B32B 0%, #FFD166 100%);
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(247, 179, 43, 0.3);
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-item__number {
  transform: scale(1.15);
}

.timeline-item__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.timeline-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.timeline-item__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ========================================
   04 - RESSOURCES: HIVE CLUSTER LAYOUT
   ======================================== */

.section-expertise-resources {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 50%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

/* Background décoratif */
.section-expertise-resources::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(247, 179, 43, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(45, 108, 181, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(247, 179, 43, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Hexagones décoratifs flottants */
.section-expertise-resources .section-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 5%;
  width: 120px;
  height: 104px;
  background: rgba(247, 179, 43, 0.08);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: resourcesHexFloat 12s ease-in-out infinite;
}

.section-expertise-resources .section-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 3%;
  width: 80px;
  height: 69px;
  background: rgba(45, 108, 181, 0.06);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: resourcesHexFloat 15s ease-in-out infinite reverse;
}

@keyframes resourcesHexFloat {

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

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

/* Wrapper pour centrer le hive-cluster */
.resources-hive-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

/* Variante pour la section Resources - TAILLE AUGMENTÉE */
.hive-cluster--resources {
  --radius: 165px;
  width: 520px;
  height: 520px;
}

/* Taille des cellules augmentée */
.hive-cluster--resources .hive-cell {
  width: 170px;
  height: 147px;
}

.hive-cluster--resources .hive-cell--center {
  width: 190px;
  height: 165px;
}

.hive-cluster--resources .hive-cell__text {
  font-size: 1rem;
}

.hive-cluster--resources .hive-cell__sub {
  font-size: 0.8rem;
}

/* Style doré pour la cellule centrale */
.hive-cell--accent-gold {
  background: linear-gradient(135deg, #F7B32B 0%, #FFD166 100%);
  box-shadow: 0 8px 30px rgba(247, 179, 43, 0.4);
  border: none;
}

.hive-cell--accent-gold:hover {
  background: linear-gradient(135deg, #FFD166 0%, #F7B32B 100%);
  box-shadow: 0 12px 40px rgba(247, 179, 43, 0.5);
}

.hive-cell--accent-gold .hive-cell__text {
  color: var(--color-navy-deep, #0a1929);
  font-size: 1.4rem;
}

.hive-cell--accent-gold .hive-cell__sub {
  color: var(--color-navy-deep, #0a1929);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Layout 2/3 - 1/3 */
.resources-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.resources-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenu Marketing (1/3) */
.resources-content {
  padding: 2rem 0;
}

.resources-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #F7B32B;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(247, 179, 43, 0.1);
  border-radius: 30px;
}

.resources-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy-deep, #0a1929);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.resources-description {
  font-size: 1rem;
  color: #5a6474;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.resources-description strong {
  color: var(--color-navy-deep, #0a1929);
  font-weight: 600;
}

/* Highlights List */
.resources-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.resources-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: var(--color-text-dark, #1a1a2e);
}

.resources-highlights li:last-child {
  border-bottom: none;
}

.highlight-icon {
  color: #F7B32B;
  font-size: 1.2rem;
}

.resources-highlights strong {
  color: #F7B32B;
  font-weight: 700;
}

/* ========================================
   SECTION POSTULER (Culture Page)
   ======================================== */

.section-postuler {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 50%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.section-postuler::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(247, 179, 43, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(45, 108, 181, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Layout split */
.postuler-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

/* Mini Hive Cluster pour Postuler */
.hive-cluster--mini {
  --radius: 80px;
  width: 250px;
  height: 250px;
}

.hive-cluster--mini .hive-cell {
  width: 90px;
  height: 78px;
}

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

.hive-cluster--mini .hive-cell__text {
  font-size: 1.5rem;
}

/* Texte Postuler */
.postuler-text {
  max-width: 550px;
}

.postuler-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #F7B32B;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(247, 179, 43, 0.1);
  border-radius: 30px;
}

.postuler-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy-deep, #0a1929);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.postuler-description {
  font-size: 1.05rem;
  color: #5a6474;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.postuler-description strong {
  color: var(--color-navy-deep, #0a1929);
  font-weight: 600;
}

/* Highlights */
.postuler-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.postuler-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--color-text-dark, #1a1a2e);
}

.postuler-highlights strong {
  color: #F7B32B;
  font-weight: 600;
}

/* Actions */
.postuler-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================================
   ENGAGEMENT SECTIONS (Engagements Page)
   ======================================== */

.section-engagement {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.section-engagement--alt {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 50%, #f5f7fa 100%);
}

/* Layout */
.engagement-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.engagement-layout--reverse {
  direction: rtl;
}

.engagement-layout--reverse>* {
  direction: ltr;
}

/* Content */
.engagement-content {
  max-width: 550px;
}

.engagement-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #F7B32B;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(247, 179, 43, 0.1);
  border-radius: 30px;
}

.engagement-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy-deep, #0a1929);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.engagement-intro {
  font-size: 1.05rem;
  color: #5a6474;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.engagement-intro strong {
  color: var(--color-navy-deep, #0a1929);
  font-weight: 600;
}

/* Highlights Grid */
.engagement-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.engagement-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.engagement-highlight-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.engagement-highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.engagement-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.engagement-highlight-text strong {
  font-size: 0.95rem;
  color: var(--color-navy-deep, #0a1929);
  font-weight: 600;
}

.engagement-highlight-text span {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Visual */
.engagement-visual {
  position: relative;
}

.engagement-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Badge */
.engagement-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0a1929 0%, #1a3a5c 100%);
  color: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.engagement-badge__icon {
  font-size: 1.5rem;
  color: #F7B32B;
}

.engagement-badge__text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.engagement-badge--green {
  background: linear-gradient(135deg, #065f46 0%, #059669 100%);
}

.engagement-badge--green .engagement-badge__icon {
  color: #a7f3d0;
}

.engagement-badge--social {
  background: linear-gradient(135deg, #F7B32B 0%, #FFD166 100%);
}

.engagement-badge--social .engagement-badge__text {
  color: #0a1929;
}

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

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

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

  .timeline-items {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

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

  .honeycomb-title {
    font-size: 2rem;
  }

  .hex-title {
    font-size: 0.9rem;
  }

  .hex-desc {
    font-size: 0.75rem;
  }

  /* Resources 2/3-1/3 Layout Responsive */
  .resources-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .resources-illustration {
    order: 1;
  }

  .resources-content {
    order: 2;
    padding: 1rem;
  }

  .resources-highlights li {
    justify-content: center;
  }

  .hive-cluster--resources {
    --radius: 120px;
    width: 400px;
    height: 400px;
  }

  .hive-cluster--resources .hive-cell {
    width: 130px;
    height: 113px;
  }

  .hive-cluster--resources .hive-cell--center {
    width: 145px;
    height: 126px;
  }

  /* Engagement Pages - Mobile Fixes */
  .engagement-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .engagement-layout--reverse {
    direction: ltr !important;
  }

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

  .engagement-visual {
    margin-bottom: 3.5rem;
    overflow: visible;
  }

  /* Order adjustment for visual first on mobile */
  .engagement-layout .engagement-visual {
    order: -1;
  }

  .engagement-badge {
    padding: 0.75rem 1rem;
    bottom: -20px;
    right: 1.5rem;
    max-width: 90%;
  }

  .engagement-badge__text {
    font-size: 0.75rem;
  }

  /* Blog Filters - Mobile Horizontal Scroll */
  .blog-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    margin-bottom: 2rem;
  }

  .blog-filters::-webkit-scrollbar {
    display: none;
  }

  .blog-filter {
    flex-shrink: 0;
  }

  /* Culture Page - Postuler Section Mobile */
  .postuler-content {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    text-align: center;
    justify-items: center;
  }

  .postuler-text {
    max-width: 100%;
  }

  .postuler-highlights li {
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .honeycomb-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hex-cell {
    max-width: 300px;
    margin: 0 auto;
  }

  .section-number {
    font-size: 2rem;
  }

  /* ===== VALUE CARDS - SMALL MOBILE ===== */
  .section .container,
  .section-expertise-detail .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .values-grid {
    gap: 0.75rem;
  }

  .value-card {
    padding: 1.25rem;
    gap: 1rem;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .value-card__icon {
    width: 48px;
    height: 56px;
  }

  .value-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .value-card__title {
    font-size: 0.95rem;
  }

  .value-card__description {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  /* Section header mobile */
  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

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

  .section-title {
    font-size: 1.35rem;
  }
}

/* ===== REDUCED MOTION - ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

  .value-card,
  .value-card__icon::before,
  .value-card__icon::after,
  .value-card__icon svg,
  .values-grid .value-card {
    animation: none !important;
    transition: opacity 0.2s ease, box-shadow 0.2s ease !important;
  }

  .value-card:hover {
    transform: none;
  }

  .value-card:hover .value-card__icon::before {
    transform: none;
    animation: none !important;
  }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .value-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .value-card__icon {
    width: 44px;
    height: 52px;
  }

  .value-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .value-card__description {
    font-size: 0.75rem;
  }
}

/* ========================================
   PAGE HERO SVG - Professional Animations
   ======================================== */

/* Disable continuous floating animations on page hero SVGs */
.page-hero__illustration .anim-float,
.page-hero__illustration .anim-pulse,
.page-hero__illustration .anim-rotate,
.page-hero__illustration .anim-rotate-rev {
  animation: none !important;
}

/* Keep only entrance animations */
.page-hero__illustration .anim-draw {
  animation: svgDraw 1.2s ease-out 0.6s both;
}

.page-hero__illustration .anim-fade-up {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.page-hero__illustration .anim-delay-1 {
  animation-delay: 0.7s;
}

.page-hero__illustration .anim-delay-2 {
  animation-delay: 0.8s;
}

.page-hero__illustration .anim-delay-3 {
  animation-delay: 0.9s;
}

.page-hero__illustration .anim-delay-4 {
  animation-delay: 1s;
}

/* SVG Draw animation */
@keyframes svgDraw {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0;
  }

  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .page-hero__title {
    font-size: 1.35rem;
  }

  .page-hero__illustration svg {
    max-width: 160px;
  }

  .expertise-detail__number {
    font-size: 2.5rem;
  }

  .expertise-detail__title {
    font-size: 1.2rem;
  }

  .value-card {
    padding: 1.25rem 1rem;
  }

  .value-card__icon {
    width: 60px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .value-card__icon svg {
    width: 26px;
    height: 26px;
  }

  .value-card__title {
    font-size: 1rem;
  }

  .value-card__description {
    font-size: 0.8rem;
  }

  .values-grid::before {
    display: none;
  }
}

/* ========================================
   DÉCORATIONS RÉUTILISABLES - Sections
   ======================================== */

/* Container pour les décorations de section */
.section-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Assurer que le contenu passe au-dessus */
.section-expertise-detail,
.section-expertise-detail--alt,
.section[id="valeurs"],
.section[id="forces"],
.section[id="rse"],
.section[id="environnement"],
.section[id="humanitaire"],
.section[id="local"],
.section[id="articles"] {
  position: relative;
  overflow: hidden;
}

.section-expertise-detail .container,
.section-expertise-detail--alt .container,
.section[id="valeurs"] .container,
.section[id="forces"] .container,
.section[id="rse"] .container,
.section[id="environnement"] .container,
.section[id="humanitaire"] .container,
.section[id="local"] .container,
.section[id="articles"] .container {
  position: relative;
  z-index: 1;
}

/* Hexagones décoratifs */
.section-decor .decor-hex {
  position: absolute;
  aspect-ratio: 1 / 1.15;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 1.5px solid rgba(247, 179, 43, 0.15);
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.03) 0%, rgba(247, 179, 43, 0.08) 100%);
}

.section-decor .decor-hex--1 {
  width: 150px;
  top: 10%;
  right: 5%;
  animation: decorHexFloat 16s ease-in-out infinite;
}

.section-decor .decor-hex--2 {
  width: 100px;
  top: 50%;
  left: 3%;
  animation: decorHexFloat 14s ease-in-out infinite 1s reverse;
}

.section-decor .decor-hex--3 {
  width: 180px;
  bottom: 15%;
  right: 8%;
  animation: decorHexFloat 18s ease-in-out infinite 2s;
}

.section-decor .decor-hex--4 {
  width: 80px;
  bottom: 30%;
  left: 6%;
  animation: decorHexFloat 12s ease-in-out infinite 0.5s;
}

/* Particules */
.section-decor .decor-particle {
  position: absolute;
  border-radius: 50%;
  background: #F7B32B;
  box-shadow: 0 0 8px rgba(247, 179, 43, 0.3);
}

.section-decor .decor-particle--1 {
  width: 10px;
  height: 10px;
  top: 15%;
  left: 12%;
  opacity: 0.5;
  animation: decorParticleFloat 13s ease-in-out infinite;
}

.section-decor .decor-particle--2 {
  width: 8px;
  height: 8px;
  top: 35%;
  right: 15%;
  opacity: 0.55;
  background: #2D6CB5;
  box-shadow: 0 0 8px rgba(45, 108, 181, 0.3);
  animation: decorParticleFloat 11s ease-in-out infinite 1s;
}

.section-decor .decor-particle--3 {
  width: 12px;
  height: 12px;
  bottom: 25%;
  left: 8%;
  opacity: 0.45;
  animation: decorParticleFloat 15s ease-in-out infinite 2s;
}

.section-decor .decor-particle--4 {
  width: 9px;
  height: 9px;
  top: 60%;
  right: 10%;
  opacity: 0.5;
  animation: decorParticleFloat 10s ease-in-out infinite 0.5s;
}

.section-decor .decor-particle--5 {
  width: 10px;
  height: 10px;
  bottom: 40%;
  right: 25%;
  opacity: 0.45;
  background: #2D6CB5;
  box-shadow: 0 0 8px rgba(45, 108, 181, 0.3);
  animation: decorParticleFloat 14s ease-in-out infinite 1.5s;
}

@keyframes decorHexFloat {

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

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

@keyframes decorParticleFloat {

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

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

  66% {
    transform: translate(-8px, -10px);
    opacity: 0.4;
  }
}

/* Sections alternées - fond légèrement différent */
.section-expertise-detail--alt .section-decor .decor-hex {
  opacity: 0.7;
}

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

/* ========================================
   ANIMATIONS HERO - REUTILISABLES
   ======================================== */

.anim-float {
  animation: heroFloat 6s ease-in-out infinite;
}

.anim-pulse {
  animation: heroPulse 4s ease-in-out infinite;
  transform-origin: center;
}

.anim-rotate {
  animation: hexRotate 30s linear infinite;
  transform-origin: center;
}

.anim-rotate-rev {
  animation: hexRotate 40s linear infinite reverse;
  transform-origin: center;
}

.anim-draw path,
.anim-draw line,
.anim-draw rect,
.anim-draw polygon,
.anim-draw circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: heroDraw 2s ease-out forwards 0.5s;
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease-out forwards;
}

.anim-delay-1 {
  animation-delay: 0.2s;
}

.anim-delay-2 {
  animation-delay: 0.4s;
}

.anim-delay-3 {
  animation-delay: 0.6s;
}

.anim-delay-4 {
  animation-delay: 0.8s;
}

@keyframes heroFloat {

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

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

@keyframes heroPulse {

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

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

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

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

/* ========================================
   ENHANCED MOBILE STYLES FOR PAGES
   ======================================== */

@media (max-width: 768px) {

  /* Contact page mobile optimization */
  .contact-page-grid {
    gap: var(--space-xl, 2rem);
  }

  .contact-form {
    padding: var(--space-lg, 1.5rem);
  }

  .form-input,
  .form-textarea,
  .contact-form select {
    font-size: 16px;
    /* Prevent iOS zoom */
    padding: 1rem;
  }

  /* Better form feedback */
  .form-input:focus,
  .form-textarea:focus {
    box-shadow: 0 0 0 4px rgba(247, 179, 43, 0.15);
  }

  /* CTA section mobile */
  .section-cta .container {
    text-align: center;
    padding: var(--space-xl, 2rem) var(--space-md, 1rem);
  }

  .cta-box__title {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .cta-box__description {
    font-size: 0.95rem;
  }

  /* Blog listing mobile */
  .blog-listing {
    gap: var(--space-lg, 1.5rem);
  }

  .blog-card__content {
    padding: var(--space-md, 1rem);
  }

  .blog-card__title {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  /* Expertise detail mobile */
  .expertise-detail__content {
    text-align: center;
  }

  .expertise-detail__list {
    text-align: left;
  }

  .expertise-detail__visual {
    margin-bottom: var(--space-lg, 1.5rem);
  }
}

@media (max-width: 480px) {

  /* Small mobile form optimization */
  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .form-input,
  .form-textarea,
  .contact-form select {
    padding: 0.875rem;
    border-radius: 6px;
  }

  /* Contact info mobile */
  .contact-info-list {
    gap: var(--space-md, 1rem);
  }

  .contact-info-item {
    padding: var(--space-md, 1rem);
  }

  /* CTA section small mobile */
  .cta-box__title {
    font-size: 1.35rem;
  }

  .cta-box__actions {
    width: 100%;
    gap: var(--space-sm, 0.75rem);
  }

  .cta-box__actions .btn {
    width: 100%;
  }

  /* Blog cards small mobile */
  .blog-card__category {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }

  .blog-card__date {
    font-size: 0.75rem;
  }

  .blog-card__excerpt {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Expertise hex small mobile */
  .expertise-hex {
    width: 140px;
    height: 162px;
  }

  .expertise-hex svg {
    width: 50px;
    height: 50px;
  }
}

/* Safe area support for pages */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 768px) {
    .section-cta {
      padding-bottom: calc(3rem + env(safe-area-inset-bottom));
    }
  }
}

/* ========================================
   MOBILE RESPONSIVENESS FIXES
   ======================================== */

@media (max-width: 768px) {

  /* Page Hero */
  .page-hero {
    padding-top: 5rem;
    /* Account for mobile header */
    padding-bottom: 2rem;
  }

  .page-hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
    text-align: center;
  }

  .page-hero__content {
    margin: 0 auto;
    order: 2;
    /* Image first usually looks better or content first? Let's stick to content first for intro */
    order: 1;
  }

  .page-hero__illustration {
    order: 2;
    margin-top: 1rem;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  /* Expertise Detail */
  .expertise-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .expertise-detail--reverse {
    direction: ltr;
    /* Reset direction */
  }

  .expertise-detail--reverse>* {
    direction: ltr;
  }

  .expertise-detail__visual {
    order: -1;
    /* Visual first */
    margin-bottom: 1rem;
  }

  /* Culture / Values Grid */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid::before {
    display: none;
    /* Hide connector line on mobile */
  }

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

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
    margin-bottom: 2rem;
  }

  /* Section Spacing overrides */
  .section-expertise-detail .container,
  .section-cta .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}