/* ===== 高效落地流程 ===== */
.xgm-process-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.xgm-process-section .xgm-process-title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 1rem;
}

.xgm-process-section .xgm-process-subtitle {
  text-align: center;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: #6b7280;
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  padding: 0 1rem;
}

.xgm-process-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1rem 0.5rem;
}

.xgm-process-scroll::-webkit-scrollbar {
  display: none;
}

.xgm-process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 900px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 0.25rem;
}

.xgm-process-timeline::before {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 19px;
  height: 2px;
  background: #93c5fd;
  z-index: 0;
}

.xgm-process-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.xgm-process-bubble {
  background: #dbeafe;
  border-radius: 10px;
  padding: 0.875rem 0.5rem 0.75rem;
  text-align: center;
  width: 100%;
  max-width: 118px;
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.xgm-process-bubble::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #dbeafe;
}

.xgm-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 0.5rem;
  color: #2563eb;
}

.xgm-process-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.xgm-process-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e3a5f;
  line-height: 1.35;
}

.xgm-process-node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #2563eb;
  flex-shrink: 0;
}

.xgm-process-node.is-done {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.xgm-process-node.is-done svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

@media (min-width: 1024px) {
  .xgm-process-scroll {
    overflow: visible;
    padding: 0 1.5rem;
  }

  .xgm-process-timeline {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .xgm-process-section {
    padding: 3rem 0;
  }

  .xgm-process-section .xgm-process-subtitle {
    margin-bottom: 2rem;
  }
}
