/* ================= CTA ================= */
.cta-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at top right, #d4d7e0 0%, transparent 40%),
    radial-gradient(circle at bottom left, #fff4e9 0%, transparent 45%),
    #f8fbff;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.cta-tag {
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #5B6CFF;
}

.cta-left h2 {
  font-size: 44px;
  color: #0f172a;
  margin: 14px 0;
}

.cta-left p {
  font-size: 18px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-link {
  font-weight: 600;
  color: #5B6CFF;
  text-decoration: none;
}

/* RIGHT */
.cta-right {
  display: grid;
  gap: 22px;
}

.cta-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  padding: 26px 28px;
  border-radius: 22px;

  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;

  opacity: 0;
  transform: translateY(20px);
}

.cta-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 6px;
}

.cta-card p {
  font-size: 15px;
  color: #475569;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(91,108,255,0.22);
}

/* Reveal animation */
.cta-section.active .cta-card {
  opacity: 1;
  transform: translateY(0);
}

.cta-section.active .cta-card:nth-child(1) { transition-delay: 0.2s; }
.cta-section.active .cta-card:nth-child(2) { transition-delay: 0.35s; }

/* MOBILE */
@media (max-width: 768px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .cta-left h2 {
    font-size: 30px;
  }

  .cta-actions {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }
}
