.elementor-6522 .elementor-element.elementor-element-a62c4c3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2574f4e *//* FULL WIDTH FORCE */
.journey-premium {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 100px 40px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  text-align: center;
  overflow: hidden;
}

/* HEADER */
.journey-header span {
  font-size: 13px;
  letter-spacing: 2px;
  color: #6b7280;
}

.journey-header h2 {
  font-size: 48px;
  margin: 10px 0 80px;
  font-weight: 700;
  color: #111827;
}

/* TRACK */
.journey-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LINE BACK */
.line-bg {
  position: absolute;
  top: 40px;
  width: 100%;
  height: 3px;
  background: #e5e7eb;
  z-index: 1;
}

/* LINE ANIMATION */
.line-fill {
  position: absolute;
  top: 40px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #22c55e);
  z-index: 2;
  transition: width 1s ease;
}

/* STEP */
.step {
  position: relative;
  width: 20%;
  z-index: 3;
}

/* ICON PREMIUM */
.icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;

  box-shadow: 
    0 10px 25px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(0,0,0,0.05);

  transition: all 0.4s ease;
}

/* ACTIVE STEP */
.step.active .icon {
  transform: scale(1.1);
  box-shadow: 
    0 20px 40px rgba(99,102,241,0.25),
    inset 0 0 0 2px rgba(99,102,241,0.3);
}

/* TEXT */
.step h4 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.step p {
  font-size: 14px;
  color: #6b7280;
}

/* HOVER EFFECT */
.step:hover .icon {
  transform: translateY(-5px) scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 992px){

  .journey-track {
    flex-direction: column;
  }

  .line-bg {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
  }

  .line-fill {
    width: 3px;
    height: 0%;
  }

  .step {
    width: 100%;
    margin-bottom: 50px;
  }
}/* End custom CSS */