/* ---------------- CTA band ---------------- */
.cta-band { padding: 1rem 0 4.5rem; }
.cta-band__inner {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  border-radius: 24px; padding: 3rem 3rem; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band__inner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); border-radius: 50%;
}
.cta-band__inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .4rem; }
.cta-band__inner p { color: #d5ece1; margin: 0; }
.cta-band .btn-light { color: var(--brand-dark); font-weight: 700; }

