/* ===== UTILITY CLASSES ===== */

/* Text sizes */
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }

/* Text colors */
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-light); }
.text-error { color: var(--color-error); }

/* Spacing utilities */
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-16 { margin-bottom: var(--space-16); }

/* Section header left-aligned variant */
.section-header--left {
  text-align: left;
  max-width: 100%;
}

.section-header--left p {
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}

/* Two-col tight variant */
.two-col--tight {
  gap: var(--space-12);
}

/* Tech stack cards */
.tech-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.tech-card {
  padding: var(--space-6);
}

.card__title--sm {
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
}

/* CTA text */
.cta-text {
  max-width: 560px;
  margin: 0 auto var(--space-8);
}

/* Submit button full width */
.btn--submit {
  width: 100%;
}

/* Small button */
.btn--sm {
  padding: 8px 20px;
  font-size: var(--text-sm);
  min-height: 40px;
}

@media (max-width: 640px) {
  .two-col--tight {
    gap: var(--space-8);
  }
}
