/* ===========================
   UTILITIES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-primary {
  background: linear-gradient(90deg, #29B2B0, #0B64F4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent {
  background: linear-gradient(90deg, #29B2B0, #0B64F4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient {
  background: linear-gradient(90deg, #29B2B0, #0B64F4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-primary { background: linear-gradient(135deg, #29B2B0, #0B64F4); }
.gradient-dark    { background: linear-gradient(135deg, #0F172A 0%, #0B3A8A 100%); }

/* ===========================
   SECTION BASICS
=========================== */
.section { padding: 120px 0; }
.section--light { background: var(--bg-light); }
.section--white { background: #fff; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-label {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   SECTION DARK
=========================== */
.section--dark {
  background: var(--bg-dark);
}
.section-label--accent { color: var(--accent); }
.section-label--light { color: rgba(255,255,255,0.6); }
.section-title--light { color: #fff; }
.section-desc--muted { color: rgba(255,255,255,0.5); }

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: 0.2s; }
