/* ========================================
   DEVELOPMENT PROCESS
======================================== */

.dev-process {
  position: relative;
  overflow: hidden;
}

.dev-process::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -300px;
  top: -250px;
  background: rgba(139, 92, 246, 0.12);
  filter: blur(180px);
  pointer-events: none;
}

.dev-process::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -250px;
  bottom: -250px;
  background: rgba(6, 182, 212, 0.1);
  filter: blur(180px);
  pointer-events: none;
}

.process-header {
  margin-bottom: 80px;
}

.process-badge {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================================
   SCROLL CONTAINER
======================================== */

.process-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 20px;
}

.process-slider::-webkit-scrollbar {
  display: none;
}

/* ========================================
   PIPELINE
======================================== */

.process-pipeline {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 30px 150px;
}

/* ========================================
   CARD
======================================== */

.process-step {
  flex-shrink: 0;

  min-width: 260px;
  max-width: 260px;

  position: relative;
  z-index: 2;

  text-align: center;

  padding: 35px 25px;

  border-radius: 24px;

  background: rgba(22, 27, 34, 0.8);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-12px);

  border-color: rgba(139, 92, 246, 0.5);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(139, 92, 246, 0.18);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
  letter-spacing: 1px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 24px;
  border-radius: 22px;
  background: var(--gradient-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.9rem;
  color: #fff;

  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.35);
}

.process-step h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.process-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========================================
   CONNECTOR
======================================== */

.process-connector {
  flex-shrink: 0;

  min-width: 90px;
  height: 4px;

  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );

  opacity: 0.8;

  position: relative;
  z-index: 1;
}

.process-connector::after {
  content: "";
  position: absolute;

  right: -2px;
  top: 50%;

  transform: translateY(-50%);

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: var(--secondary);

  box-shadow: 0 0 15px var(--secondary);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 992px) {

  .process-pipeline {
    padding: 20px 80px;
  }

  .process-step {
    min-width: 240px;
    max-width: 240px;
  }

  .process-connector {
    min-width: 60px;
  }
}

@media (max-width: 768px) {

  .process-header {
    margin-bottom: 50px;
  }

  .process-pipeline {
    padding: 20px 40px;
  }

  .process-step {
    min-width: 220px;
    max-width: 220px;
    padding: 28px 20px;
  }

  .step-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }

  .process-step h3 {
    font-size: 1.1rem;
  }

  .process-step p {
    font-size: 0.9rem;
  }

  .process-connector {
    min-width: 40px;
  }
}