/* ============================================
   PROCESSO DI SVILUPPO SECTION
   ============================================ */
.step-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .step-visual {
    flex-direction: column;
    gap: 0;
  }
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(100, 150, 255, 0.25) 0%, rgba(41, 54, 131, 0.15) 70%);
  border: 3px solid rgba(100, 150, 255, 0.5);
  padding-bottom: 10px;
  color: #4da6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 0 40px rgba(100, 150, 255, 0.4);
  z-index: 10;
}

.step-connector {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgba(100, 150, 255, 0.5) 0%, transparent 100%);
  margin-top: 0;
}
@media (min-width: 768px) {
  .step-connector {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(100, 150, 255, 0.5) 0%, transparent 100%);
    margin-top: 20px;
  }
}

.step-content {
  flex: 1;
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.step-content:hover {
  background: rgba(100, 150, 255, 0.06);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.15);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.step-description {
  line-height: 1.8;
  color: #c7cdd8;
  margin: 0 0 20px 0;
  opacity: 1;
  transform: none;
}

.step-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .step-deliverables {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.step-deliverables li {
  color: #a0a8b8;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border-left: 3px solid rgba(100, 150, 255, 0.4);
}

.step-duration {
  background: rgba(100, 150, 255, 0.15);
  border: 1px solid rgba(100, 150, 255, 0.3);
  color: #4da6ff;
}