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

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--primary) 30%, transparent));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step-circle:hover {
  background: var(--primary);
  transform: scale(1.08);
}

.step-circle i,
.step-circle svg {
  color: var(--primary);
  fill: var(--primary);
  font-size: 1.2rem;
  transition: color 0.3s, fill 0.3s;
}

.step-circle:hover i,
.step-circle:hover svg {
  color: var(--secondary);
  fill: var(--secondary);
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

