/* ─── PROCESS WIDGET ─── */
.da-process-section {
  background: var(--dark);
  padding: 80px 0;
}
.da-process-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.da-process-section .text-center {
  text-align: center;
}
.da-process-section .process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.da-process-section .process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  z-index: 0;
}
.da-process-section .process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.da-process-section .step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}
.da-process-section .process-step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #ffffff;
}
.da-process-section .process-step p {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .da-process-section .process-steps {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px;
  }
  .da-process-section .process-steps::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .da-process-section .process-steps {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .da-process-section .process-steps {
    grid-template-columns: 1fr !important;
  }
}

/* Elementor Editor Viewport Compatibility */
.elementor-editor-active .da-process-section .fade-up {
  opacity: 1 !important;
  transform: none !important;
}
