html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background: var(--grad-section);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--glass-border-accent);
  padding: 0.3rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: var(--text-base);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1rem;
  }
}
