/* Final homepage closer — full-width, bold */

.home-final-cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  padding: 0;
  color: #fff;
  background: #000 !important;
  background-image: none !important;
  border: none !important;
  font-family: var(--ayenyx-font, 'Outfit', Verdana, sans-serif);
}

.home-final-cta__bar {
  display: block;
  width: 100%;
  height: 6px;
  background: var(--ayenyx-gradient-brand, linear-gradient(135deg, #c3002f 0%, #fbaa25 100%));
}

.home-final-cta__inner {
  width: min(var(--ayenyx-container, 1120px), calc(100% - (2 * var(--ayenyx-gutter))));
  margin: 0 auto;
  padding: clamp(5.5rem, 12vw, 9rem) 0;
  text-align: center;
}

.home-final-cta__title {
  margin: 0 auto 1.25rem;
  max-width: 14ch;
  color: #fff !important;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.home-final-cta__text {
  margin: 0 auto 2.1rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}

.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.home-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.85rem;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-final-cta__btn--primary {
  background: #c3002f;
  border: 1px solid #c3002f;
  color: #fff;
}

.home-final-cta__btn--primary:hover {
  background: #a60028;
  border-color: #a60028;
  color: #fff;
}

.home-final-cta__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.home-final-cta__btn--ghost:hover {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

@media (max-width: 575px) {
  .home-final-cta__title {
    max-width: none;
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .home-final-cta__text {
    font-size: 16px;
    margin-bottom: 1.65rem;
  }

  .home-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-final-cta__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-final-cta__btn {
    transition: none;
  }
}
