  /* ========================================
     SOFTSKILL DETAIL - STORY SCROLL
     Design immersif avec sections verticales
     ======================================== */

  html {
    scroll-behavior: smooth;
  }

  .logo__plateforme,
  .logo__orientation {
    color: #ffffff;
  }

  /* Bannière Hero - Style métiers */
  #banPom {
    min-height: 280px;
    height: auto;
    padding: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 70px;
    padding-bottom: 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  #banPom::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -120px;
    width: 600px;
    height: 800px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
  }

  .banPomBoxed {
    width: 1200px;
    max-width: calc(100vw - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
  }

  .ban-icon {
    font-size: 3em;
    margin-bottom: 10px;
    display: block;
    animation: floatIcon 3s ease-in-out infinite;
  }

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

  .ban-surtitre {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }

  .ban-titre-softskill {
    font-size: 2.8em;
    font-weight: bold;
    background: linear-gradient(135deg, #268eff 0%, #26b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
  }

  .ban-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1em;
    max-width: 700px;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding: 0 20px;
  }

  .ban-description::before {
    content: '\201C';
    font-size: 2em;
    position: absolute;
    left: 0;
    top: -5px;
    color: rgba(38, 142, 255, 0.6);
    font-family: Georgia, serif;
  }

  .ban-description::after {
    content: '\201D';
    font-size: 2em;
    position: absolute;
    right: 0;
    bottom: -15px;
    color: rgba(38, 142, 255, 0.6);
    font-family: Georgia, serif;
  }

  .scroll-indicator {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75em;
    animation: bounceSimple 2s infinite;
  }

  .scroll-indicator svg {
    margin-top: 5px;
  }

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

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
  }

  /* ========================================
     NAVIGATION STICKY
     ======================================== */
  .story-nav {
    position: sticky;
    top: 70px;
    background: white;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .story-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  .story-nav-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1.1em;
  }

  .story-nav-title span {
    font-size: 1.4em;
  }

  .story-nav-links {
    display: flex;
    gap: 8px;
  }

  .story-nav-link {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .story-nav-link:hover {
    color: #268eff;
    background: #f0f7ff;
  }

  .story-nav-link.active {
    background: #268eff;
    color: white;
  }

  /* Progress bar */
  .story-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #268eff, #26b3ff);
    width: 0%;
    transition: width 0.1s ease;
  }

  /* ========================================
     SECTIONS STORY
     ======================================== */
  .story-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .story-section {
    padding: 40px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }

  .story-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #268eff 0%, #26b3ff 100%);
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #268eff, #26b3ff);
    border-radius: 2px;
  }

  .section-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
  }

  .section-content p {
    margin-bottom: 20px;
  }

  /* Section Métiers */
  .jobs-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 50px 0;
    margin-top: 30px;
  }

  .jobs-section .section-number {
    background: white;
    color: #268eff;
  }

  .jobs-section .section-title {
    color: white;
  }

  .jobs-section .section-title::after {
    background: white;
  }

  .jobs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .job-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .job-tag:hover {
    background: white;
    color: #1a1a2e;
    transform: translateY(-3px);
  }

  /* Bouton retour */
  .back-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #268eff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(38, 142, 255, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }

  .back-button.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .back-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(38, 142, 255, 0.5);
  }

  /* ========================================
     RESPONSIVE
     ======================================== */
  @media (max-width: 768px) {
    #banPom {
      min-height: auto;
      padding-top: 100px;
      padding-bottom: 80px;
    }

    #banPom::after {
      display: none;
    }

    .ban-icon {
      font-size: 3em;
    }

    .ban-titre-softskill {
      font-size: 2.2em;
    }

    .ban-description {
      font-size: 1em;
      padding: 0 15px;
    }

    .ban-description::before,
    .ban-description::after {
      font-size: 1.5em;
    }

    .story-nav-inner {
      flex-direction: column;
      gap: 15px;
    }

    .story-nav-links {
      flex-wrap: wrap;
      justify-content: center;
    }

    .story-nav-link {
      padding: 6px 12px;
      font-size: 0.8em;
    }

    .story-section {
      padding: 50px 0;
    }

    .section-title {
      font-size: 1.6em;
    }

    .section-content {
      font-size: 1em;
    }

    .jobs-section {
      padding: 40px 20px;
    }

    .back-button {
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
    }
  }

  /* Breadcrumb dans la bannière */
  .ban-breadcrumb {
    position: absolute;
    top: 35px;
    left: 20px;
    z-index: 10;
  }

  .ban-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }

  .ban-breadcrumb a:hover {
    color: white;
  }
