/* CTA Banner */
.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 58vh, 620px);
  padding: 140px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 44px;
  line-height: 1.65;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  border-color: var(--color-white);
}

.cta-buttons .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-red);
}

@media (max-width: 768px) {
  .cta-banner {
    min-height: 380px;
    padding: 100px 0;
  }

  .cta-subtitle {
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .cta-banner {
    min-height: 320px;
    padding: 72px 0;
  }

  .cta-title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }
}
