/* ── THANK-YOU PAGE ───────────────────────────────────────────── */
.thankyou-page {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
}

.thankyou-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.ty-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 43, 42,0.05) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ty-blob-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(193, 118, 67,0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  pointer-events: none;
}

.ty-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.ty-check {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  box-shadow: 0 8px 24px rgba(43, 43, 42,0.3);
}

.ty-check svg {
  width: 40px;
  height: 40px;
  color: var(--color-white);
}

.ty-inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-text);
  text-wrap: balance;
  margin-bottom: var(--space-md);
  letter-spacing: -0.025em;
}

.ty-inner .ty-sub {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}

.ty-steps {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  text-align: left;
  box-shadow: var(--shadow);
}

.ty-steps h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.ty-steps h2 svg { width: 18px; height: 18px; color: var(--color-secondary); }

.ty-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.ty-step:last-child { margin-bottom: 0; }

.ty-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ty-step-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.ty-step-body p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0;
}

.ty-btns {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .ty-btns { flex-direction: column; }
}
