/* ============================================================
   WayGo — Final CTA
   Intense gradient background, powerful call to action
   ============================================================ */

.cta-final {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) var(--container-padding);
}

/* Background decoration */
.cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.cta-final-orb--teal {
  width: 500px;
  height: 500px;
  top: -30%;
  left: 50%;
  background: rgba(13, 148, 136, 0.1);
  transform: translateX(-50%);
}

.cta-final-orb--cyan {
  width: 400px;
  height: 400px;
  bottom: -20%;
  right: -10%;
  background: rgba(6, 182, 212, 0.06);
}

.cta-final-orb--gold {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -10%;
  background: rgba(245, 158, 11, 0.04);
}

/* Content */
.cta-final-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-final-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-final-content h2 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-final-content > p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Buttons row */
.cta-final-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Note */
.cta-final-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .cta-final-content h2 {
    font-size: 1.75rem;
  }

  .cta-final-content > p {
    font-size: 1rem;
  }

  .store-badge {
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}
