/* ─────────────────────────────── CTA SECTION ─────────────────────────────── */
.cta-section {
  border-top: 1px solid var(--border);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(230,57,70,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-inner { 
  position: relative; 
  z-index: 1; 
  max-width: 540px; 
  margin: 0 auto;
  animation: slideUp 0.6s ease-out;
}
.cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.cta-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-btns {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .cta-section { padding: 5rem 1.5rem; }
}

@media (max-width: 768px) {
  .cta-section { padding: 4rem 1.25rem; }
  .cta-inner { max-width: 100%; }
  .cta-title { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; }
  .cta-eyebrow { font-size: 0.62rem; margin-bottom: 1rem; }
  .cta-desc { font-size: 0.85rem; margin-bottom: 2rem; }
  .cta-btns { gap: 0.5rem; }
}

@media (max-width: 640px) {
  .cta-section { 
    padding: 3rem 1rem;
    border-top: none;
  }
  .cta-section::before {
    width: 400px;
    height: 300px;
    bottom: -30%;
  }
  .cta-title { font-size: clamp(1.25rem, 3.5vw, 2rem); margin-bottom: 0.75rem; }
  .cta-eyebrow { font-size: 0.58rem; margin-bottom: 0.75rem; }
  .cta-desc { font-size: 0.8rem; line-height: 1.6; margin-bottom: 1.5rem; }
  .cta-btns { gap: 0.4rem; }
}

@media (max-width: 480px) {
  .cta-section { padding: 2.5rem 0.75rem; }
  .cta-section::before {
    width: 300px;
    height: 250px;
    bottom: -40%;
  }
  .cta-title { font-size: clamp(1rem, 2.5vw, 1.5rem); }
  .cta-desc { font-size: 0.75rem; margin-bottom: 1.25rem; }
  .cta-btns { 
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 360px) {
  .cta-section { padding: 2rem 0.5rem; }
  .cta-section::before {
    width: 250px;
    height: 200px;
  }
  .cta-title { font-size: 1rem; }
  .cta-desc { font-size: 0.7rem; }
}
