/* PROCESS TIMELINE */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #303f9f 50%, #e5e7eb 50%);
  background-size: 20px 2px;
  z-index: 1;
}

.process-timeline .process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-timeline .step-circle {
  width: 100px;
  height: 100px;
  background: white;
  border: 3px solid #303f9f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 36px;
  font-weight: 700;
  color: #1a1e2b;
  box-shadow: 0 20px 30px -10px rgba(48, 63, 159, 0.3);
  transition: 0.3s;
}

.process-timeline .process-step:hover .step-circle {
  background: #303f9f;
  color: white;
  transform: scale(1.1);
}

.process-timeline .step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-timeline .step-desc {
  color: #6b7280;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .process-timeline::before {
    display: none;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* CTA BOX */
.cta-box {
  color: #ffffff;
  padding: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #303f9f 0%, #3d50c5 45%, #303f9f 100%);
  background-size: 220% auto;
  box-shadow: -5px 5px 35px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.4rem;
  line-height: 150%;
}

.cta-box .cta-content {
  max-width: 820px;
  margin: 0 auto;
}

.cta-box .cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-box .cta-text {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}
