
   :root {
      --c-journey-1: #008764;
      --c-journey-2: #245e57;
      --c-journey-3: #9ec40c;
      --bg-journey-body: #f4f7f6;
      --text-journey-main: #2c3e50;
      --line-journey-color: #5abcb9;
   }

   .gva-journey-wrapper.timeline-pro-style {
      background-color: var(--bg-journey-body);
      padding: 40px 20px;
   }


   .chart-container {
      display: grid;
      grid-template-columns: 22% 56% 22%;
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      position: relative;
      gap: 0;
   }

   .timeline-track {
      position: absolute;
      top: 150px;
      left: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, var(--c-journey-2) 0%, var(--c-journey-1) 50%, var(--c-journey-3) 100%);
      border-radius: 4px;
      z-index: 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
   }

   .phase {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 0 10px;
   }

   .phase:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: -20px;
      bottom: 0;
      border-right: 2px dashed #ccc;
      opacity: 0.5;
   }

   .chevron {
      color: white;
      padding: 18px 25px 18px 20px;
      margin-bottom: 50px;
      position: relative;
      filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
   }

   .chevron-shape {
      background-color: #333;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
      border-radius: 4px 0 0 4px;
   }

   .bg-j-1 { background: linear-gradient(135deg, var(--c-journey-1), #006b50); }
   .bg-j-2 { background: linear-gradient(135deg, var(--c-journey-2), #1a4540); }
   .bg-j-3 { background: linear-gradient(135deg, var(--c-journey-3), #86a80a); }

   .chevron-content {
      display: flex;
      align-items: center;
      font-size: 0.9rem;
      line-height: 1.2;
   }

   .chevron-content .num {
      font-size: 2rem;
      font-weight: 700;
      margin-right: 15px;
      opacity: 0.8;
   }

   .steps-container {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      position: relative;
      z-index: 2;
   }

   .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
   }

   .circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: var(--c-journey-2);
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
      box-shadow: 0 0 0 5px var(--bg-journey-body), 0 5px 15px rgba(0,0,0,0.2);
      position: relative;
   }

   .icon {
      font-size: 2.2rem;
      margin-bottom: 12px;
      height: 40px;
      display: flex;
      align-items: center;
      color: var(--c-journey-1);
   }

   .step-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-journey-main);
      padding: 0 5px;
      line-height: 1.6;
      min-height: 67px;
   }

   .details-area {
      margin-top: 25px;
      position: relative;
      font-size: 0.8rem;
      color: var(--c-journey-1);
   }

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

   .details-list li {
      margin-bottom: 8px;
      padding-left: 15px;
      position: relative;
   }

   .details-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 14px;
      width: 8px;
      height: 2px;
      background-color: var(--c-journey-1);
   }

   @media (max-width: 900px) {
      .chart-container { 
         grid-template-columns: 1fr; 
         gap: 40px; 
      }
      .timeline-track { display: none; }
      .phase::after { display: none; }
   }
/* ========================================
   ANIMATIONS
   ======================================== */

/* États initiaux (cachés) */
.anim-fade-up {
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phase {
   /* Les styles existants sont conservés */
   /* On AJOUTE juste les propriétés d'animation : */
   opacity: 0;
   transform: translateX(-30px);
   transition: all 0.7s ease-out;
}

.step {
   /* Les styles existants sont conservés */
   /* On AJOUTE juste les propriétés d'animation : */
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.5s ease;
}

.details-area .info-tag,
.details-list li {
   opacity: 0;
   transform: translateX(-10px);
   transition: all 0.3s ease;
}

/* États visibles */
.anim-fade-up.visible {
   opacity: 1;
   transform: translateY(0);
}

.phase.visible {
   opacity: 1;
   transform: translateX(0);
}

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

.details-area .info-tag.visible,
.details-list li.visible {
   opacity: 1;
   transform: translateX(0);
}

/* Accessibilité : désactiver animations si demandé */
@media (prefers-reduced-motion: reduce) {
   .anim-fade-up,
   .phase,
   .step,
   .info-tag,
   .details-list li {
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
   }
}
/* -------------------------------- */
      /* RTL support */
/* -------------------------------- */
[dir="rtl"] .details-list li {
    padding-right: 15px;
    padding-left: 0px;
}
[dir="rtl"] .details-list li::before {
    right: 0;
    left: 0;
}
/* RTL (Arabe): Pointe vers la GAUCHE ← */
[dir="rtl"] .chevron-shape {
   clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 8% 100%, 0% 50%);
   border-radius: 0 4px 4px 0;
   left: auto;
   right: 0;
}
[dir="rtl"] .phase:not(:last-child)::after {
    left: 0;
    right: unset;
}
[dir="rtl"] .chevron-content .num {
    margin-left: 15px;
    margin-right: 0;

}