.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 6%;
    gap: 60px;
    min-height: 80vh;
    background: #fff;
  }
  
  .hero-text {
    flex: 1;
    animation: fadeUp 2s ease forwards;
    opacity: 0;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1F2A44;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 500px;
  }
  
  .hero-btn {
    display: inline-block;
    background: #FFD34D;
    color: #1F2A44;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  
  /* IMAGE */
  .hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(8px);
    transform: scale(1.05);
    transition: filter 2s ease, transform 2s ease;
  }
  
  /* Quand visible → image nette */
  .hero-image.visible img {
    filter: blur(0);
    transform: scale(1);
  }
  
  /* Animation texte */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text p {
      margin-left: auto;
      margin-right: auto;
    }
  }

  



/** anim steps **/

.step-img {
  animation: fadeUp 2s ease forwards;
  opacity: 0;
}