/* ============================================
   Sell Page Styles
   ============================================ */

/* ================================================================
   HERO - SHORT VERSION
   ================================================================ */
.hero--short {
  min-height: 60vh;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}

@media (max-width: 768px) {
  .hero--short {
    min-height: 50vh;
  }
}


/* ================================================================
   PROCESS TIMELINE
   ================================================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
  position: relative;
}

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

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--bg-section-alt);
  border-radius: 50%;
  z-index: 0;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: var(--fw-regular);
  color: var(--accent);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

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

.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.process-step p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  max-width: 220px;
  margin-inline: auto;
}

/* Connection line between steps */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) calc(100% / 5),
    transparent calc(100% / 5),
    transparent calc(200% / 5),
    var(--accent) calc(200% / 5),
    var(--accent) calc(300% / 5),
    transparent calc(300% / 5),
    transparent calc(400% / 5),
    var(--accent) calc(400% / 5),
    var(--accent) 100%
  );
  z-index: 0;
}

@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(5, 1fr);
  }

  .process-step p {
    font-size: var(--fs-xs);
  }

  .process-step__number {
    font-size: 2.5rem;
  }

  .process-step::before {
    width: 70px;
    height: 70px;
  }

  .process-step__number {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .process-timeline::before {
    display: none;
  }

  .process-step::before {
    width: 60px;
    height: 60px;
  }

  .process-step__number {
    font-size: 2rem;
    height: 60px;
  }

  .process-step p {
    max-width: none;
  }
}


/* ================================================================
   RESULT STATS
   ================================================================ */
.result-stat {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.result-stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: var(--fw-regular);
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-md);
  position: relative;
}

.result-stat__percent {
  font-size: 0.6em;
  position: absolute;
  right: -1.5rem;
  top: 0;
}

.result-stat__label {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
}

@media (max-width: 768px) {
  .result-stat {
    padding: var(--space-xl) var(--space-lg);
  }

  .result-stat__number {
    font-size: 2.5rem;
  }

  .result-stat__percent {
    right: -1rem;
  }
}
