/* ============================================================
   NIGHT MACARON — CTA Section
   ============================================================ */

.cta {
  background: var(--bg);
  text-align: center;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
}

/* ── Radial glow behind content ── */
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(200, 169, 110, 0.07) 0%,
    rgba(124, 92, 191, 0.04) 35%,
    transparent 68%
  );
  pointer-events: none;
}

.cta .section-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Sub-headline ── */
.cta-sub-headline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 2;
  color: var(--muted-light);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

/* ── Large price ── */
.cta-price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.cta-price-unit {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── Subscription note ── */
.cta-note {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* ── CTA buttons ── */
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* ── Meta info row ── */
.cta-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cta-meta-item {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-meta-item::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ── Guarantee badge ── */
.cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2rem;
  border: 0.5px solid var(--border-gold);
  color: var(--muted-light);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.cta-guarantee-icon {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-meta {
    gap: 1rem;
  }

  .cta-glow {
    width: 400px;
    height: 400px;
  }
}
