/**
 * Module CSS: 33-cta.css
 * Trích nguyên văn dòng 1614-1638 của pctech-homepage.css gốc.
 * Không đổi nội dung — chỉ tách file theo đúng marker sẵn có trong code gốc.
 */
    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-dark) 100%);
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
    }
    .cta-section .section-title { color: var(--white); }
    .cta-section .section-desc { color: rgba(255,255,255,0.85); margin: 0 auto 32px; }
    .cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
    .cta-hotline {
      margin-top: 24px;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--orange);
    }

