/* =============================
   cp-cta
============================= */
.cp-cta {
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, var(--gold-15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 80% 80%, var(--gold-06) 0%, transparent 55%);
  pointer-events: none;
}

.cp-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* label */
.cp-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 20px;
}

.cp-cta__label::before,
.cp-cta__label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* title */
.cp-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-text-sub);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* sub */
.cp-cta__sub {
  font-size: var(--fs-base);
  color: var(--white-70);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

/* buttons */
.cp-cta__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: var(--fs-base);
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.2s;
}

.cp-cta__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.cp-cta__btn--primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--color-text-sub);
  box-shadow: var(--shadow-gold);
}

.cp-cta__btn--outline {
  border: 1.5px solid var(--white-40);
  color: var(--color-text-sub);
}

.cp-cta__btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* responsive */
@media (max-width: 600px) {
  .cp-cta {
    padding: 64px 0;
  }

  .cp-cta__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cp-cta__btn {
    justify-content: center;
  }
}
