/* ===== PROCESS SECTION ===== */
.process {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.process__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at bottom right, rgba(255,16,123,0.55), transparent 28%),
    linear-gradient(135deg, #1a0437 0%, #5d0b64 58%, #ff0f7b 100%);
  z-index: 0;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff4da0;
}

.process__title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.process__steps {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step__circle {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 1.5px solid var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.step__circle svg {
  width: 36px;
  height: 36px;
  stroke: var(--pink-light);
  fill: none;
  stroke-width: 1.5;
}

.step__title {
  margin-top: 1.75rem;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
}

.step__text {
  margin: 0.75rem auto 0;
  max-width: 16rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.step__arrow {
  display: none;
  position: absolute;
  top: 3.5rem;
  left: 62%;
  width: 75%;
  transform: translateY(-50%);
  color: var(--pink-light);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .step__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
