/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.final-cta-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #06b6d4;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.final-cta-title {
  font-size: 48px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: -1px !important;
  margin-bottom: 20px !important;
  color: #ffffff !important;
}

.final-cta-description {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 700px !important;
  margin: 0 auto 40px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.final-cta-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.final-stat-item {
  text-align: center;
}

.final-stat-number {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.final-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-cta-btn {
  padding: 16px 40px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.final-cta-btn-primary {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: white;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.final-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5);
}

.final-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.final-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-3px);
}

.final-cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.final-cta-note svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* Animated background elements */
.final-cta-bg-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.final-cta-bg-element-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.final-cta-bg-element-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -150px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .final-cta-section {
    padding: 70px 0;
  }

  .final-cta-title {
    font-size: 42px !important;
  }

  .final-cta-description {
    font-size: 17px !important;
  }

  .final-stat-number {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 60px 0;
  }

  .final-cta-title {
    font-size: 36px !important;
  }

  .final-cta-description {
    font-size: 16px !important;
    margin-bottom: 32px !important;
  }

  .final-cta-stats {
    gap: 32px;
    margin-bottom: 40px;
  }

  .final-stat-number {
    font-size: 34px;
  }

  .final-stat-label {
    font-size: 13px;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .final-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .final-cta-section {
    padding: 50px 0;
  }

  .final-cta-title {
    font-size: 32px !important;
  }

  .final-cta-description {
    font-size: 15px !important;
  }

  .final-cta-stats {
    gap: 24px;
  }

  .final-stat-number {
    font-size: 30px;
  }

  .final-stat-label {
    font-size: 12px;
  }
}
