/* Onboarding page styles */

.onboard-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Hero */
.onboard-hero {
  text-align: center;
  margin-bottom: 56px;
}

.onboard-hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.onboard-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.onboard-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 1.1rem;
  text-decoration: none;
}

/* 3-step guide */
.steps-guide {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.step-card {
  flex: 0 0 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: #FFF0E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
}

.step-icon--ai {
  background: #E8F0FF;
  color: #3B82F6;
}

.step-icon--publish {
  background: #E8FFF0;
  color: #22c55e;
}

.step-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.step-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 28px;
}

/* Trust badges */
.onboard-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 28px;
  background: #FFFBF8;
  border-radius: var(--radius-lg);
  border: 1px solid #FED7AA;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blue-dark);
}

.badge-icon {
  font-size: 1.2rem;
}

/* Listing types */
.listing-types {
  margin-bottom: 48px;
}

.listing-types h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 24px;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
}

.type-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.type-label {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 4px;
}

.type-label--general  { background: #EFF6FF; color: #1D4ED8; }
.type-label--auction  { background: #F3E8FF; color: #7C3AED; }
.type-label--early    { background: #FEF3C7; color: #D97706; }
.type-label--last     { background: #FEE2E2; color: #DC2626; }
.type-label--free     { background: #DCFCE7; color: #16A34A; }

/* Footer CTA */
.onboard-footer-cta {
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.onboard-footer-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 700px) {
  .steps-guide {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .step-card {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .onboard-badges {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}