/* ============================================
   Index Page Process Flow Styles - Specifys.ai
   ============================================
   Styles for "How It Works" section on index.html
   Extracted from main-compiled.css.backup.old
*/

/* Process Flow Container */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 20px 10px;
}

/* Process Step */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 140px;
}

/* Process Icon */
.process-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35, #FF8551);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.process-step:hover .process-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Process Step Heading */
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* Process Arrow */
.process-arrow {
  font-size: 1.2rem;
  color: #FF6B35;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.process-flow:hover .process-arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .process-flow:hover .process-arrow {
    transform: rotate(90deg) translateY(5px);
  }
  
  .process-step {
    max-width: 100%;
    width: 100%;
  }
  
  .process-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .process-step h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .process-step h4 {
    font-size: 1.1rem;
  }
}

