/* CTA Final Section — matches reference #cta-final */

.ctaFinalSection {
  position: relative;
  padding: 7.5rem 0;
  overflow: hidden;
  background: var(--navy, #060f1e);
}

.ctaFinalSection__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.ctaFinalSection__title {
  font-family: var(--serif, "Playfair Display", Georgia, serif);
  font-size: clamp(2.125rem, 4vw, 3.375rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white, #fff);
  margin: 0 0 2.25rem;
}

.ctaFinalSection__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.375rem;
  background: var(--blue, #2563eb);
  color: var(--white, #fff);
  font-family: var(--fontParagraphs, "Inter", system-ui, sans-serif);
  font-size: 0.6563rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.ctaFinalSection__btnArrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.ctaFinalSection__btnArrow svg {
  width: 12px;
  height: 12px;
  display: block;
}

.ctaFinalSection__btn:hover {
  background: var(--blue2, #3b82f6);
  color: var(--white, #fff);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.ctaFinalSection__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}

.ctaFinalSection__dot {
  color: var(--blue, #2563eb);
  font-size: 0.375rem;
  line-height: 1;
}

.ctaFinalSection .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ctaFinalSection .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .ctaFinalSection {
    padding: 5.5rem 0;
  }

  .ctaFinalSection__inner {
    padding: 0 1.5rem;
  }

  .ctaFinalSection__tagline {
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ctaFinalSection .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
