/* ==========================================================
   THANK YOU — Stripe success_url landing page
   ========================================================== */
.thank-you { padding: 80px 44px 20px; text-align: center; }

.thank-you-wrap { max-width: 720px; margin: 0 auto; }

.check-circle {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(112, 71, 235, 0.5);
}

.thank-you h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 20px;
}

.ty-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 48px;
}

.ty-lead strong { color: var(--text-dark); }

.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 20px;
}

.ty-step {
  background: var(--card-gray);
  border-radius: 16px;
  padding: 22px;
}

.ty-num {
  display: inline-block;
  background: var(--text-dark);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.ty-step.done .ty-num { background: var(--purple); }

.ty-step h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 6px; }
.ty-step p { font-size: 13.5px; line-height: 1.55; color: var(--text-body); font-weight: 500; }

.thank-you-footer-note {
  max-width: 620px;
  margin: 0 auto;
  padding: 20px 44px 90px;
  text-align: center;
}

.thank-you-footer-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 500;
}

.thank-you-footer-note a { color: var(--purple); font-weight: 600; text-decoration: none; }
.thank-you-footer-note a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .ty-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .thank-you { padding: 56px 20px 10px; }
  .thank-you-footer-note { padding: 16px 20px 70px; }
}
