/* forms-cta.css — CTA sections, buttons, pricing */

.cta-section {
  position: relative;
  padding: clamp(80px, 12vw, 200px) 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(28, 81, 221, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(208, 173, 92, 0.12);
  border: 1px solid rgba(208, 173, 92, 0.3);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--dme-gold);
  margin-bottom: 32px;
}

.cta-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--dme-offwhite);
  margin-bottom: 20px;
}

.cta-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(244, 244, 244, 0.7);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}

.cta-note {
  margin-top: 24px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(244, 244, 244, 0.55);
}

.btn-sport {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--dme-blue);
  color: var(--dme-offwhite);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.btn-sport:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.program-cta {
  margin-top: 40px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.pricing-item__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.62);
}

.pricing-item__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--dme-offwhite);
  line-height: 1.0;
}

.pricing-item--secondary .pricing-item__amount {
  font-size: clamp(24px, 3vw, 36px);
  color: rgba(244, 244, 244, 0.6);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .cta-buttons {
    max-width: 100%;
  }
}
