/* Step Section Styles */
.cs_step_section {
  background-color: #0e0e2c;
  position: relative;
  overflow: hidden;
}

.cs_step_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(99, 102, 241, 0.1) 2px, transparent 2px);
  background-size: 30px 30px;
  z-index: 0;
}

.cs_step_card {
  background-color: rgba(30, 30, 60, 0.5);
  border-radius: 15px;
  padding: 30px 20px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cs_step_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.cs_step_icon_wrap {
  margin-bottom: 25px;
  position: relative;
}

.cs_step_icon {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cs_step_icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
  font-weight: bold;
  transform: scale(1.1);
}

.cs_step_title {
  margin-bottom: 10px;
  font-weight: 700;
}

.cs_step_subtitle {
  margin-bottom: 15px;
  font-weight: 600;
}

.cs_accent_color {
  color: #ffc107;
}

.cs_purple_color {
  color: #8b5cf6;
}

.cs_step_text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

/* Connecting lines between steps - REMOVED */

/* Square shape for icons */
.cs_step_icon::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: transparent;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 15px;
}