/* ══════════════════════════════════════════════════════════════
   QUATRE — CTA SECTION & CAROUSEL
   ═════════════════════════════════════════════════════════════ */

.cta {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--text-light);
}

.carousel {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 1;
}

.cta-center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 0 20px;
}

.cta-center h2 {
  font-size: var(--headline-xl-size);
  line-height: var(--headline-xl-lh);
}

.cta-bottom {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
}

.cta-bottom-inner {
  width: calc(100% - 64px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-timer-wrap {
  display: flex;
  gap: 6px;
}

.carousel-timer-track {
  width: 32px;
  height: 4px;
  flex: none;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.carousel-timer-fill {
  height: 100%;
  width: 0%;
  background: #ffffff;
  border-radius: 2px;
}

.carousel-timers {
  display: flex;
  gap: 6px;
}
