.text-hero {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}

.text-heading-1 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-secondary);
}

.text-heading-2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-secondary);
}

.text-heading-3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  color: var(--color-secondary);
}

.text-heading-4 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: 1.4;
  color: var(--color-secondary);
}

.text-body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.text-body-lg {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.text-small {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.text-muted {
  color: var(--color-text-muted);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto var(--space-16);
}

@media (max-width: 768px) {
  .text-hero {
    font-size: var(--text-3xl);
  }
  .text-heading-1 {
    font-size: var(--text-2xl);
  }
  .text-heading-2 {
    font-size: var(--text-xl);
  }
  .section-subtitle {
    margin-bottom: var(--space-10);
  }
}
