/* ─────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────── */
.cta-surface-wrap {
  display: flex;
  align-items: stretch;
  max-width: 1440px;
}

.cta {
  background: #020617;
  border: 1px solid var(--color-lime);
  border-top: none;
  border-left: none;
  border-bottom: none;
  width: 430px;
  min-height: 553px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-2xl);
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-lime);
  color: var(--color-lime-dark);
  font-size: 20px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.05em;
  width: 193px;
  height: 68px;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

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

.cta__availability {
  font-size: 10px;
  color: var(--color-grey-mid);
  letter-spacing: 0.1em;
  text-align: center;
}
