/* ========================================
CTA
======================================== */
.cta-section{ background:#111; color:#fff; text-align:center; }
.cta-title{ font-size:52px; line-height:1.3; margin-bottom:24px; }
.cta-desc{ font-size:18px; line-height:1.9; color:rgba(255,255,255,.8); margin-bottom:40px; }
.cta-buttons{ display:flex; justify-content:center; gap:20px; flex-wrap:wrap; }
.cta-btn, .cta-line-btn{ display:inline-flex; align-items:center; justify-content:center; min-width:260px; height:64px; border-radius:999px; font-size:18px; font-weight:700; transition:.3s; }
.cta-btn{ background:#fff; color:#111; }
.cta-line-btn{ background:#06C755; color:#fff; }
.cta-btn:hover, .cta-line-btn:hover{ transform:translateY(-3px); opacity:.9; }
@media(max-width:768px){
  .cta-title{ font-size:36px; }
  .cta-desc{ font-size:16px; }
  .cta-buttons{ flex-direction:column; }
  .cta-btn, .cta-line-btn{ width:100%; min-width:auto; }
}
