  /* ========================================
     SOFTSKILL - BENTO GRID
     Design moderne style Apple/Notion
     ======================================== */

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

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

  #banPom::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
  }

  #banPom::after {
    content: '';
    position: absolute;
    top: 5%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
  }

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

  .ban-layout-responsive {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 25px;
    z-index: 2;
    padding: 10px 0;
  }

  .ban-text-section {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    position: relative;
    max-width: 80%;
  }

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

  .ban-titre-page {
    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: 10px;
  }

  .ban-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    max-width: 600px;
    line-height: 1.5;
  }

  /* ========================================
     BENTO GRID - Liste des Softskills
     ======================================== */

  .bento-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
  }

  /* Tailles des cartes Bento */
  .bento-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
  }

  .bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
  }

  /* Taille large (2 colonnes) */
  .bento-card.bento-wide {
    grid-column: span 2;
  }

  /* Taille haute (2 lignes) */
  .bento-card.bento-tall {
    grid-row: span 2;
  }

  /* Taille featured (2x2) */
  .bento-card.bento-featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #268eff 0%, #1a5dc7 100%);
  }

  .bento-card.bento-featured .bento-icon,
  .bento-card.bento-featured .bento-title,
  .bento-card.bento-featured .bento-description,
  .bento-card.bento-featured .bento-meta {
    color: white;
  }

  /* Couleurs alternées pour les cartes */
  .bento-card:nth-child(5n+1):not(.bento-featured) {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  }

  .bento-card:nth-child(5n+2):not(.bento-featured) {
    background: linear-gradient(135deg, #fff8f8 0%, #ffe8f0 100%);
  }

  .bento-card:nth-child(5n+3):not(.bento-featured) {
    background: linear-gradient(135deg, #f8fff8 0%, #e8ffe8 100%);
  }

  .bento-card:nth-child(5n+4):not(.bento-featured) {
    background: linear-gradient(135deg, #fffff8 0%, #fff8e8 100%);
  }

  .bento-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
  }

  .bento-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .bento-description {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
  }

  .bento-card.bento-featured .bento-description,
  .bento-card.bento-tall .bento-description,
  .bento-card.bento-wide .bento-description {
    -webkit-line-clamp: 5;
  }

  .bento-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .bento-card.bento-featured .bento-meta {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .bento-jobs-count {
    font-size: 0.85em;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .bento-jobs-count svg {
    width: 16px;
    height: 16px;
  }

  .bento-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .bento-card:hover .bento-arrow {
    background: #268eff;
    transform: translateX(5px);
  }

  .bento-card:hover .bento-arrow svg {
    stroke: white;
  }

  .bento-card.bento-featured .bento-arrow {
    background: rgba(255, 255, 255, 0.2);
  }

  .bento-card.bento-featured .bento-arrow svg {
    stroke: white;
  }

  /* Effet de brillance au survol */
  .bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent
    );
    transition: left 0.5s ease;
  }

  .bento-card:hover::before {
    left: 100%;
  }

  /* ========================================
     RESPONSIVE - Tablette
     ======================================== */
  @media (max-width: 1024px) {
    .bento-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.bento-featured {
      grid-column: span 2;
      grid-row: span 1;
    }
  }

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

    #banPom::before,
    #banPom::after {
      display: none;
    }

    .banPomBoxed {
      padding: 20px;
    }

    .ban-text-section {
      max-width: 100%;
      min-height: auto;
    }

    .ban-titre-page {
      font-size: 2em;
    }

    .ban-description {
      font-size: 1em;
    }

    .bento-container {
      padding: 20px 15px;
    }

    .bento-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .bento-card,
    .bento-card.bento-wide,
    .bento-card.bento-tall,
    .bento-card.bento-featured {
      grid-column: span 1;
      grid-row: span 1;
    }

    .bento-card {
      padding: 20px;
    }

    .bento-icon {
      font-size: 2em;
    }

    .bento-title {
      font-size: 1.2em;
    }

    .bento-description {
      -webkit-line-clamp: 2;
    }
  }

  /* ========================================
     ANIMATIONS
     ======================================== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .bento-card {
    animation: fadeInUp 0.6s ease forwards;
  }

  .bento-card:nth-child(1) { animation-delay: 0.1s; }
  .bento-card:nth-child(2) { animation-delay: 0.15s; }
  .bento-card:nth-child(3) { animation-delay: 0.2s; }
  .bento-card:nth-child(4) { animation-delay: 0.25s; }
  .bento-card:nth-child(5) { animation-delay: 0.3s; }
  .bento-card:nth-child(6) { animation-delay: 0.35s; }
  .bento-card:nth-child(7) { animation-delay: 0.4s; }
  .bento-card:nth-child(8) { animation-delay: 0.45s; }

  /* Breadcrumb */
  .page-header {
    padding: 20px 0;
  }
