/* ===== SPLIT HERO SECTION ===== */
.process-hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 10%;
  background: linear-gradient(135deg, #f6f3ff, #ffffff);
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 480px;
  padding-right: 40px;
}
.hero-text h1 {
  font-size: 2.6rem;
  color: #3e2f80;
  margin-bottom: 15px;
}
.hero-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}
.hero-text .btn {
  background: linear-gradient(135deg, #7c5cff, #a078ff);
  color: white;
  border-radius: 30px;
  padding: 12px 26px;
  font-weight: 600;
  transition: 0.3s;
}
.hero-text .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(124,92,255,0.3);
}

.hero-image {
  flex: 1 1 420px;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(124,92,255,0.2);
}

/* ===== TIMELINE ===== */
.process-timeline {
  max-width: 950px;
  margin: 100px auto;
  padding: 0 20px;
  position: relative;
}
.process-timeline h2 {
  text-align: center;
  color: #3e2f80;
  margin-bottom: 60px;
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 50px 0;
  position: relative;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg,#7c5cff,#a078ff);
  border-radius: 2px;
}
.timeline-step .icon {
  background: white;
  border: 3px solid #7c5cff;
  color: #7c5cff;
  font-size: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(124,92,255,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step .icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(124,92,255,0.5);
}
.timeline-step .content {
  background: #fffafc;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.timeline-step .content:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(124,92,255,0.2);
}
.timeline-step[data-anim="right"] {
  flex-direction: row-reverse;
}
.timeline-step[data-anim="right"]::before {
  left: auto;
  right: 35px;
}
.timeline-step h3 { color: #3e2f80; margin-bottom: 10px; }
.timeline-step p { color: #555; line-height: 1.6; }

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, #d5cef17f);
  color: rgb(62, 60, 60);
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin: 100px 10px;
}
.cta h2 { font-size: 2rem; margin-bottom: 15px; }
.cta p { margin-bottom: 25px; font-size: 1.1rem; }
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.btn.alt {
  background: transparent;
  border: 2px solid white;
  color: white;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 900px){
  .process-hero-split { flex-direction: column; text-align: center; }
  .hero-text { padding-right: 0; }
  .hero-image img { margin-top: 20px; max-width: 400px; }
  .timeline-step { flex-direction: column !important; text-align: center; }
  .timeline-step::before { display: none; }
  .timeline-step .icon { margin: 0 auto 10px; }
}
