/* ========================================
   HOW IT WORKS CARD - ENHANCED DESIGN
   ======================================== */

.how-it-works-card {
  position: relative;
  overflow: hidden;
}

.how-it-works-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, transparent 0%, rgba(10, 37, 64, 0.05) 100%);
  pointer-events: none;
}

/* Workflow Step Hover Effect */
.workflow-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  border-color: #1E4C7A !important;
}

/* Step Badge Shine Effect */
.step-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.workflow-step:hover .step-badge::after {
  left: 100%;
}

/* Expand Button Hover */
#expandWorkflowBtn:hover {
  background: rgba(10, 37, 64, 0.1) !important;
}

#expandWorkflowBtn:hover i {
  color: #0A2540 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .how-it-works-card {
    padding: 1.5rem !important;
  }
  
  .workflow-step {
    padding: 1rem !important;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .step-badge {
    margin-right: 0 !important;
  }
}
