.hero-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #b14ecd 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(177, 78, 205, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hero-icon-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(177, 78, 205, 0.4);
  }
  
  .hero-icon-wrapper i {
    font-size: 3rem;
    color: white;
  }
  
  /* Icône Benefits */
  .benefits-icon-wrapper {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(177, 78, 205, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(177, 78, 205, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin:0 auto;
  }
  
  .benefits-icon-wrapper:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(177, 78, 205, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
  }
  
  .benefits-icon-wrapper:hover:before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
  }
  
  .benefits-icon-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(177, 78, 205, 0.4);
    box-shadow: 0 15px 30px rgba(177, 78, 205, 0.2);
  }
  
  .benefits-icon-wrapper i {
    font-size: 10rem;
    background: linear-gradient(135deg, #b14ecd 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
  }
  
  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-icon-wrapper {
      width: 80px;
      height: 80px;
    }
    
    .hero-icon-wrapper i {
      font-size: 2rem;
    }
    
    .benefits-icon-wrapper {
      width: 150px;
      height: 150px;
    }
    
    .benefits-icon-wrapper i {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-icon-wrapper {
      width: 60px;
      height: 60px;
    }
    
    .hero-icon-wrapper i {
      font-size: 1.5rem;
    }
    
    .benefits-icon-wrapper {
      width: 120px;
      height: 120px;
    }
    
    .benefits-icon-wrapper i {
      font-size: 2.5rem;
    }
  }