/**
 * Process Timeline Widget
 * From: .process__timeline in how-we-work.html
 * Prefix: .nw-proc-
 */

.nw-proc-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.nw-proc-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 2px;
  background: linear-gradient(to bottom, #11b5e4, #11b5e414);
}

.nw-proc-step {
  position: relative;
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  text-align: left;
}

.nw-proc-step:last-child {
  padding-bottom: 0;
}

.nw-proc-step__marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11B5E4;
  color: #0a0f1a;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(17, 181, 228, 0.3);
}

.nw-proc-step__content {
  flex: 1;
  padding-top: 8px;
}

.nw-proc-step__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 0;
}

.nw-proc-step__description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  margin-top: 0;
}

.nw-proc-step__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nw-proc-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nw-proc-detail:hover {
  border-color: rgba(17, 181, 228, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nw-proc-detail__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #11B5E4;
  margin-top: 2px;
}

.nw-proc-detail__icon svg {
  width: 100%;
  height: 100%;
}

.nw-proc-detail__text {
  font-size: 16px;
  line-height: 1.6;
  color: #64625a;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .nw-proc-timeline::before {
    left: 24px;
  }
  
  .nw-proc-step {
    gap: 16px;
  }
  
  .nw-proc-step__marker {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .nw-proc-step__title {
    font-size: 20px;
  }
  
  .nw-proc-step__description {
    font-size: 16px;
  }
  
  .nw-proc-detail {
    padding: 12px;
  }
  
  .nw-proc-detail__text {
    font-size: 14px;
  }
}
