.thank-you-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  background-color: var(--color-surface);
}

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thank-you-card h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

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

.thank-you-text {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
}

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

  .thank-you-actions {
    flex-direction: row;
  }
}
