/* ==========================================================================
   Cenematic home-c — CTA / pricing section
   ========================================================================== */

.cta {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 40px 110px;
}

.cta__title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.cta__checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 36px;
  list-style: none;
}

.cta__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink);
}

.cta-badge {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.cta__price-pre {
  font-size: clamp(17px, 1.9vw, 22px);
  color: var(--ink);
}

.cta__price {
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* The gold CTA button lives in its own reusable stylesheet: cta-button.css */

/* Closing CTA needs top breathing room (the hero CTA stays tight) */
.cta--closing { padding-top: 84px; }

/* Stacked layout */
.cta--stacked { text-align: center; }
.cta--stacked .cta__title { margin-bottom: 28px; }
.cta--stacked .cta__checks { margin-bottom: 28px; }
.cta--stacked .cta__price-pre { margin-bottom: 8px; }
.cta--stacked .cta__price { margin-bottom: 30px; }

/* Offer variant (first CTA under the hero) ---------------------------------
   Open layout, no containers: warm aurora wash with the drama carried by
   type scale and the gradient price.
   Kept after the stacked-layout rules so its margins win at equal specificity. */
.cta--offer::before {
  content: "";
  position: absolute;
  inset: -8% 0 0;
  background:
    radial-gradient(45% 60% at 16% 30%, rgba(255, 193, 7, 0.09), transparent 70%),
    radial-gradient(45% 60% at 84% 70%, rgba(255, 61, 0, 0.06), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-bold + .cta--offer {
  padding-bottom: 64px;
}

.cta--offer .cta__title {
  margin-bottom: 24px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta--offer .cta__check { font-weight: 700; }

.cta--offer .cta__price-pre {
  margin-bottom: 10px;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c2410c;
}

.cta--offer .cta__price {
  margin-bottom: 34px;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
}

.cta--offer .cta__price-amount {
  display: block;
  font-size: 2.4em;
  line-height: 1;
  background: linear-gradient(115deg, #d97706, #ea580c, #c2410c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Pulsing ring radiating from the gold button */
.cta--offer .cta-button { position: relative; }

/* Bottom inset is larger to wrap the button's 10px hard drop shadow,
   keeping the ring visually centered on the full button body */
.cta--offer .cta-button::before {
  content: "";
  position: absolute;
  inset: -6px -6px -16px;
  border: 2px solid rgba(255, 138, 0, 0.55);
  border-radius: 20px;
  animation: cta-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes cta-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(1.12); opacity: 0; }
}
