/* ================================
   FINAL CTA – NEON ORANGE IFN
================================ */
.final-cta-neon {
  padding: 120px 0;
  background: radial-gradient(circle at top, #101a33, #050914);
  position: relative;
  overflow: hidden;
}

/* TITLE */
.cta-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #fff;
}

.cta-title span {
  background: linear-gradient(90deg,#ff7a00,#ffb347,#ff3d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.cta-subtitle {
  max-width: 760px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: #fcd34d;
  line-height: 1.7;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
  transition: .35s ease;
  text-decoration: none;
}

/* PRIMARY */
.cta-btn.primary {
  background: linear-gradient(135deg,#ff7a00,#ffb347);
  color: #000;
  box-shadow: 0 0 35px rgba(255,140,0,.65);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(255,140,0,.9);
}

/* SECONDARY */
.cta-btn.secondary {
  background: rgba(255,140,0,.15);
  border: 2px solid rgba(255,140,0,.45);
  color: #ffb347;
}

.cta-btn.secondary:hover {
  background: rgba(255,140,0,.3);
  transform: translateY(-3px);
}

/* OUTLINE */
.cta-btn.outline {
  background: transparent;
  border: 2px solid #ff7a00;
  color: #ff7a00;
}

.cta-btn.outline:hover {
  background: #ff7a00;
  color: #000;
  transform: translateY(-3px);
}

/* TRUST LINE */
.cta-trust {
  margin-top: 3rem;
  font-size: .95rem;
  color: #ffb347;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  opacity: .9;
}

/* ORBS */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,.35), transparent);
  filter: blur(60px);
  animation: orbFloat 12s ease-in-out infinite;
}

.cta-orb.orb-left {
  width: 280px;
  height: 280px;
  top: 10%;
  left: -120px;
}

.cta-orb.orb-right {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: -80px;
  animation-delay: 5s;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.9rem;
  }

  .cta-actions {
    gap: 1rem;
  }
}
