/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
  margin-bottom: var(--spacing-xl);
}

.how-it-works__subtitle {
  width: 100%;
  text-align: center;
  color: var(--color-text-tertiary);
  font-size: var(--font-size-lg);
}

.how-it-works__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2xl);
  flex-direction: column;
  padding: var(--spacing-xl);
}

.how-it-works__flow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-md);
}

.how-it-works__step {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.how-it-works__step-icon {
  width: 8rem;
  height: 8rem;
}

.how-it-works__arrow {
  width: 8rem;
  height: 8rem;
}

.how-it-works__step-label {
  text-align: center;
  font-weight: bold;
  font-size: var(--font-size-3xl);
}

.how-it-works__server-step {
  width: 300px;
}

.how-it-works__arrow {
  font-size: 2rem;
}

.how-it-works__note {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 700px) {
  .how-it-works__flow {
    flex-direction: column !important;
    gap: var(--spacing-sm) !important;
  }

  .how-it-works__arrow[data-lucide="arrow-right"] {
    transform: rotate(90deg);
  }

  .how-it-works__server-step {
    width: auto;
  }

  .how-it-works__note {
    font-size: var(--font-size-sm);
  }
}