/*
  ===============================================================================
  == STYLES POUR LE COMPOSANT "PROCESSUS EN ÉTAPES"                             ==
  ===============================================================================
  Les styles sont encapsulés pour ne s'appliquer qu'aux éléments de ce conteneur.
*/

/* --- Structure et Conteneur Principal --- */
.process-container {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding: 100px 0;
}

.process-step {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* --- Apparence des Cercles --- */
.step-circle {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  padding: 70px;
  box-sizing: border-box;
  color: white;
  text-align: center;
  border-radius: 50%;
}

/* Variations de couleur */
.step-1,
.step-3 {
  background-color: #30535b;
}

.step-2,
.step-4 {
  background-color: #ce6f3f;
}

/* --- Typographie à l'intérieur des Cercles --- */
.step-number {
  margin-bottom: 16px;
  font-family: "Inconsolata", sans-serif;
  font-size: 56px;
  font-weight: bold;
  line-height: 1;
}

.step-title {
  /*
    ACTION REQUISE :
    Remplacez "Lora" ci-dessous par le nom exact
    de la police de titre de votre site Webflow (ex: "Montserrat", "Lato", etc.).
    Le ", sans-serif" est une police de secours.
  */
  margin-bottom: 20px;
  font-family: "Lora", sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
}

.step-text {
  max-width: 280px;
  font-family: "Inconsolata", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* --- État d'Animation --- */
.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/*
  ===============================================================================
  == STYLES RESPONSIVES                                                        ==
  ===============================================================================
*/

/* --- Pour tablettes et écrans plus petits --- */
@media (max-width: 768px) {
  .process-container {
    max-width: 360px;
  }

  .step-circle {
    width: 360px;
    height: 360px;
    padding: 60px;
  }

  .step-number {
    font-size: 48px;
  }

  .step-title {
    font-size: 26px;
  }

  .step-text {
    font-size: 15px;
  }
}

/* --- Pour mobiles --- */
@media (max-width: 480px) {
  .process-container {
    max-width: 330px;
  }

  .step-circle {
    width: 330px;
    height: 330px;
    padding: 60px;
  }

  .step-number {
    font-size: 40px;
  }

  .step-title {
    font-size: 22px;
  }

  .step-text {
    max-width: 220px;
    font-size: 14px;
  }
}