/* static/css/screens/become_tutor.css */

/* Hero */
.bt-hero {
  /* тёмным концом стоял токен navy-900, которого в дизайн-системе нет, из-за чего ВЕСЬ
     градиент отбрасывался как невалидный: тёмный герой оставался без фона, а
     белый текст на нём — на светлой бумаге. --ink-900 = тот же тёмный конец,
     что и в .about-stats. */
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--navy-700) 100%);
  padding: 72px 28px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bt-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bt-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 16px 0 18px;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.bt-hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin: 0 0 32px;
}

.bt-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Benefits band */
.bt-benefits {
  padding: 60px 28px;
  background: var(--bg-page);   /* --bg-base не существует */
}

.bt-benefits-inner { max-width: 1100px; margin: 0 auto; }

.bt-benefits-title {
  text-align: center;
  margin-bottom: 36px;
}

.bt-benefits-title h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 8px;
}

.bt-benefits-title p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.bt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bt-benefit-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.bt-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--navy-50, #f0f4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--navy-600);
}

.bt-benefit-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 8px;
}

.bt-benefit-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Steps section */
.bt-steps {
  padding: 60px 28px;
  background: var(--bg-inset);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bt-steps-inner { max-width: 800px; margin: 0 auto; }

.bt-steps h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-strong);
  text-align: center;
  margin: 0 0 40px;
}

.bt-step-list { display: flex; flex-direction: column; gap: 0; }

.bt-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.bt-step:last-child { border-bottom: none; }

.bt-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-600);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bt-step-body h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 8px 0 6px;
}

.bt-step-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Stats band */
.bt-stats {
  padding: 52px 28px;
  background: var(--ink-900);   /* --navy-900 не существует → полоса теряла фон */
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.bt-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
}

.bt-stat-lbl {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
}

/* FAQ */
.bt-faq {
  padding: 60px 28px;
  background: var(--bg-page);   /* --bg-base не существует */
}

.bt-faq-inner { max-width: 720px; margin: 0 auto; }

.bt-faq h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-strong);
  text-align: center;
  margin: 0 0 32px;
}

.bt-faq-list { display: flex; flex-direction: column; gap: 8px; }

/* Final CTA */
.bt-cta-final {
  padding: 72px 28px;
  text-align: center;
  background: var(--bg-inset);
  border-top: 1px solid var(--border-subtle);
}

.bt-cta-final h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 12px;
}

.bt-cta-final p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.bt-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 768px) {
  .bt-hero { padding: 48px 20px 56px; }
  .bt-benefits-grid { grid-template-columns: 1fr; }
  .bt-stats { gap: 36px; }
}

@media (max-width: 480px) {
  .bt-step { flex-direction: column; gap: 12px; }
}
