/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--yellow); padding: 80px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'TRAIN HARD'; position: absolute;
  font-family: 'Barlow', sans-serif; font-size: 18vw; color: rgba(0,0,0,0.06);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none;
}
.cta-band h2 {
  font-family: 'Barlow', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--black); letter-spacing: 0.05em; margin-bottom: 16px; position: relative;
}
.cta-band p {
  font-size: 1rem; font-weight: 400; color: rgba(0,0,0,0.6);
  margin-bottom: 36px; position: relative;
}

/* ─── Responsive ─── */
@media (max-width: 760px) {
  .cta-band { padding: 60px 6%; }
  .cta-band::before { font-size: 26vw; }
  .cta-band .btn-dark { width: 100%; }
}
