/* =============================================
   PROCESS TIMELINE
   ============================================= */
.da-smm-process-bg {
  background: var(--gray-50);
}

.da-smm-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.da-smm-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.da-smm-timeline-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.da-smm-step-num {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--primary);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.da-smm-timeline-step:hover .da-smm-step-num {
  background: var(--primary);
  color: var(--secondary);
}

.da-smm-step-title {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.da-smm-step-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .da-smm-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
  
  .da-smm-timeline::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .da-smm-timeline {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
}
