/* ========================================
   Section 11: Final CTA — Cinematic
   ======================================== */

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 94, 0, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #060e1a 0%, #0c1a2e 40%, #162740 70%, #0c1a2e 100%);
  z-index: 0;
}

/* Grid pattern */
.final-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Accent glow */
.final-cta-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 94, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.final-cta-content p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 44px;
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 18px 44px;
  font-size: var(--fs-lg);
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta { padding: 56px 0; }
  .final-cta-content h2 { font-size: var(--fs-3xl); margin-bottom: 12px; }
  .final-cta-content p { font-size: var(--fs-sm); margin-bottom: 28px; }
  .final-cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .final-cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .btn-lg { padding: 14px 32px; font-size: var(--fs-base); }
}
