/* ========== CTA / Contact ========== */
.cta-section {
  background: var(--gradient-hero);
  color: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.cta-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.cta-socials a:hover {
  background: var(--gradient-1);
  color: #fff;
  transform: translateY(-3px);
}

.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--gradient-1);
  opacity: 0.3;
  filter: blur(40px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}
