/* Import belle police moderne */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* Process Section */
.process-section {
  position: relative;
  padding: 6rem 0;
  background: #f8fafc;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.process-eyebrow {
  display: inline-flex;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
  color: #0f172a;
  font-weight: 700;
}

.process-description {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
}

.circular-cycle {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  justify-items: center;
  align-items: start;
}

.connection-dots {
  display: none;
}

.cycle-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 240px;
  height: 240px;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  animation: fadeInScale 0.6s ease backwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Pas de décalage - disposition en grille simple */

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cycle-step:nth-child(1) { 
  animation-delay: 0.1s;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.cycle-step:nth-child(2) { 
  animation-delay: 0.2s;
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}
.cycle-step:nth-child(3) { 
  animation-delay: 0.3s;
  background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
}
.cycle-step:nth-child(4) { 
  animation-delay: 0.4s;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.cycle-step:nth-child(5) { 
  animation-delay: 0.5s;
  background: linear-gradient(135deg, #fed7aa, #fdba74);
}
.cycle-step:nth-child(6) { 
  animation-delay: 0.6s;
  background: linear-gradient(135deg, #fecaca, #fca5a5);
}

.cycle-step:hover {
  transform: scale(1.1) rotate(5deg);
  z-index: 10;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
}

.arc-circle {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  margin-bottom: 0.8rem;
}

.step-icon {
  font-size: 36px;
}

.step-number-svg {
  fill: white;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.step-card {
  width: 100%;
}

.step-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.step-card p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1024px) {
  .circular-cycle {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .cycle-step {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .circular-cycle {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0.5rem;
  }

  .cycle-step {
    width: 160px;
    height: 160px;
    padding: 1.5rem 1rem;
  }

  .arc-circle {
    width: 45px;
    height: 45px;
    margin-bottom: 0.5rem;
  }

  .step-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    line-height: 1.1;
  }

  .step-card p {
    font-size: 0.65rem;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .circular-cycle {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1.5rem 0.5rem;
  }

  .cycle-step {
    width: 150px;
    height: 150px;
    padding: 1.2rem 0.8rem;
  }

  .arc-circle {
    width: 40px;
    height: 40px;
    margin-bottom: 0.4rem;
  }

  .step-icon {
    font-size: 28px;
  }

  .step-card h3 {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    line-height: 1.1;
  }

  .step-card p {
    font-size: 0.6rem;
    line-height: 1.15;
  }
}
