/* ===================== SECTION POWER PLATFORM (THEME MICROSOFT POWER PURPLE) ===================== */

#tab-power {
    /* Fond Clair légèrement teinté pour douceur */
    background: #F8F9FA; 
    background-image: radial-gradient(circle at 90% 10%, rgba(92, 45, 145, 0.05) 0%, transparent 40%);
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #tab-power .slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header centré et stylé */
  #tab-power .section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
  }
  
  #tab-power h2 {
    /* Violet Power Platform */
    color: #5C2D91 !important; 
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
  
  #tab-power p.section-desc {
    color: #605E5C !important;
    font-size: 1.2rem;
  }
  
  /* Grille Power Platform */
  #tab-power .two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    width: 100%;
  }
  
  .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cartes Power Platform (Liste stylisée) */
  .check-list li {
    background: #FFFFFF;
    border: 1px solid #E1DFDD;
    /* Bordure gauche Violette pour marquer l'identité */
    border-left: 4px solid #5C2D91;
    padding: 20px 24px;
    border-radius: 4px; /* Style plus "Business App" */
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    color: #323130;
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  }
  
  /* Icône Check Violette */
  .check-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #5C2D91; /* Violet */
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    background: rgba(92, 45, 145, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  .check-list li:hover {
    /*transform: translateX(5px);*/
    background: #FFFFFF;
    border-color: #5C2D91; /* Bordure complète violette au survol */
    /*box-shadow: 0 8px 16px rgba(92, 45, 145, 0.15);*/
  }
  
  .check-list li strong {
    color: #5C2D91;
    font-weight: 600;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    #tab-power {
      padding: 60px 15px;
    }
  
    #tab-power .two-columns {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .check-list li {
      padding: 16px;
      font-size: 0.95rem;
    }
  }
  