.process-section {
  padding: 120px 0;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-header {
  margin-bottom: 80px;
}

.process-eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  opacity: .5;
}

.process-wrapper {
  position: relative;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 72px;
}

.process-step {
  opacity: .25;
  transition: opacity .4s ease;
}

.process-step.is-active {
  opacity: 1;
}

.process-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.process-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.process-content h3 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
}

.process-content p {
  font-size: 13px;
  opacity: .6;
}

.process-line {
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.08);
  transform-origin: left;
}

.process-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.process-step.is-final.is-active .process-icon {
  background: #7CFF8C;
  border-color: #7CFF8C;
  color: #0b0b0b;
}

/* MOBILE */
@media (max-width: 768px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-line {
    width: 1px;
    height: 100%;
    left: 13px;
    top: 0;
  }

  .process-line::after {
    transform-origin: top;
  }

  .process-step {
    display: flex;
    gap: 16px;
  }

  .process-content p {
    max-width: 100%;
  }
}
