.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height-mobile) - 160px);
}

@media (min-width: 768px) {
  .thank-you-wrapper {
    min-height: calc(100vh - var(--header-height-desktop) - 200px);
  }
}

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.12), transparent 60%),
              var(--color-surface);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  text-align: center;
}

@media (min-width: 768px) {
  .thank-you-card {
    padding: var(--space-10) var(--space-8);
  }
}

.thank-you-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  margin-bottom: var(--space-4);
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(22, 163, 74, 0.12);
  color: var(--color-success);
  border: 1px solid rgba(22, 163, 74, 0.45);
}

.thank-you-title {
  margin-bottom: var(--space-3);
}

.thank-you-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
  margin-bottom: var(--space-4);
}

.thank-you-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--space-4);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
}

.thank-you-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.thank-you-note .link::after {
  bottom: -0.1rem;
}
