.process-section {
  padding: 120px 24px;
  background: radial-gradient(circle at top, #0b132b, #020617);
  color: #fff;
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.process-header .tag {
  color: #ff8a2a;
  font-size: 25px;
  letter-spacing: 1.5px;
}

.process-header h2 {
  font-size: 62px;
  margin: 10px 0;
}

.process-header p {
  color: #cbd5e1;
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ff8a2a;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  position: relative;
  margin-bottom: 80px;
}

.timeline-item.left {
  justify-content: flex-start;
}

.timeline-item.right {
  justify-content: flex-end;
}

.step {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #ff8a2a;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card {
  width: 420px;
  background: linear-gradient(135deg, #1e3a8a, #020617);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

.process-card .icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.process-card h3 {
  margin-bottom: 8px;
}

.process-card p {
  color: #cbd5e1;
  font-size: 15px;
}

/* Card colors */
.purple { background: linear-gradient(135deg, #4c1d95, #020617); }
.green  { background: linear-gradient(135deg, #065f46, #020617); }
.red    { background: linear-gradient(135deg, #7f1d1d, #020617); }

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    justify-content: flex-start !important;
    padding-left: 40px;
  }

  .step {
    left: 18px;
    transform: none;
  }

  .process-card {
    width: 100%;
  }
  .process-header h2 {
    font-size: 40px;
  }
}
/* Marketing card color */
.orange {
  background: linear-gradient(135deg, #c2410c, #020617);
}

/* ===== PROCESS CTA ===== */
.process-cta {
  margin-top: 100px;
  text-align: center;
  padding: 60px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.process-cta h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.process-cta p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 16px;
}

.process-cta .contact-btn {
  padding: 14px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #5B6CFF, #8F9BFF);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.process-cta .contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(91,108,255,0.35);
}
