.pickupGuide {
  background-color: var(--dark);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.pickupGuideLineTrack {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border);
  transform: translateY(-50%);
  z-index: 0;
}

.pickupGuideLineFill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--yellow);
}

.pickupGuideSteps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.pickupStep {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
}

.pickupStep:nth-child(even) {
  flex-direction: row-reverse;
}

.pickupStepNumberBg {
  position: absolute;
  font-family: var(--font-display);
  font-size: 240px;
  color: var(--yellow);
  opacity: 0.03;
  line-height: 0.8;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}

.pickupStep:nth-child(add) .pickupStepNumberBg { left: 0; }
.pickupStep:nth-child(even) .pickupStepNumberBg { right: 0; }

.pickupStepIconContainer {
  width: 100px;
  height: 100px;
  background-color: var(--dark-2);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: var(--yellow);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.pickupStep.isActive .pickupStepIconContainer {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(245,192,0,0.15);
}

.pickupStepContent {
  flex: 1;
  background: var(--dark-2);
  padding: 40px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  position: relative;
}

.pickupStepTitle {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  margin-bottom: 24px;
}

.pickupStepMeet {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 16px;
}

.pickupStepList {
  list-style: none;
}

.pickupStepList li {
  position: relative;
  padding-left: 24px;
  color: var(--text-sub);
  margin-bottom: 12px;
  font-size: 16px;
}

.pickupStepList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--yellow);
  border-radius: 50%;
}
