/* cta.css */

.cta-section {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(77, 200, 240, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--surface), rgba(13, 20, 35, 0.9));
  border: 1px solid rgba(77, 200, 240, 0.2);
  border-radius: var(--radius-lg);
  padding: 80px;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

/* Top glowing line */
.cta-box::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .cta-box { padding: 48px 24px; }
}
