.cta {
  padding: var(--section-padding-y) 0;
  background-color: var(--bg-dark);
}

.cta__banner {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

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

.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 56px 48px;
}

.cta__title {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: var(--font-body-weight);
  line-height: 1.15;
  color: var(--text-primary);
}

.cta__text {
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--font-body-weight);
  line-height: 1.4;
  color: var(--text-primary);
}

.cta__btn {
  color: var(--text-primary);
  background-color: var(--accent);
}

.cta__btn:hover {
  background-color: #ff9619;
  color: var(--text-primary);
}

.cta__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(52%, 640px);
  height: 100%;
  pointer-events: none;
}

.cta__visual img {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 100%;
  height: auto;
  max-height: 115%;
  object-fit: contain;
  object-position: right bottom;
  transform: translateX(-60px);
}
