/* GUYZ - About Page */
.about-page { padding-top: 80px; }

.about-hero {
  text-align: center; padding: var(--space-12) 0 var(--space-16);
}
.about-hero .hero-title {
  font-family: var(--font-display); font-size: var(--text-5xl);
  font-weight: var(--font-bold); margin-bottom: var(--space-6);
  line-height: var(--leading-tight);
}
.about-hero .hero-desc {
  font-size: var(--text-xl); color: var(--color-text-secondary);
  max-width: 650px; margin: 0 auto; line-height: var(--leading-relaxed);
}

/* Flow Steps */
.flow-section { padding: var(--space-12) 0 var(--space-section); }
.flow-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8);
  position: relative;
}
.flow-steps::before {
  content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(to right, transparent, var(--color-border-accent), transparent);
}
.flow-step {
  text-align: center; position: relative;
}
.flow-step .step-num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto var(--space-6);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--font-bold);
  color: var(--color-secondary); background: var(--color-surface);
  border: 2px solid var(--color-border-accent); position: relative; z-index: 2;
}
.flow-step .step-title {
  font-size: var(--text-xl); font-weight: var(--font-semibold); margin-bottom: var(--space-3);
}
.flow-step .step-desc {
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-relaxed);
  max-width: 280px; margin: 0 auto;
}

/* Kakao Section */
.kakao-section {
  text-align: center; padding: var(--space-section) 0;
  background: var(--color-bg-alt); border-radius: var(--radius-2xl);
}
.kakao-qr {
  width: 200px; height: 200px; margin: var(--space-8) auto;
  background: #fff; border-radius: var(--radius-xl); padding: var(--space-4);
  display: flex; align-items: center; justify-content: center;
}
.kakao-qr img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 768px) {
  .flow-steps { grid-template-columns: 1fr; gap: var(--space-12); }
  .flow-steps::before { display: none; }
}
