/* ============================================
   SECTION HEADERS - Polish
   Icons + titles unified style
   ============================================ */

.section-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--container-padding) var(--space-md);
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.section-icon i {
  width: 22px;
  height: 22px;
}

.section-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Hero - keep existing */
.hero__content {
  max-width: 900px;
}

/* Projects - update header to use new class */
.projects__header {
  display: none;
}

.projects__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.projects__subtitle {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}