.services {
    padding: 120px 6%;
    text-align: center;
    background: #f9f9f9;
  }
  
  .services-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  
  /* ÉTAT AVANT ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  
  /* ÉTAT VISIBLE */
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  