.thankyou-section {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.thankyou-card {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-32) var(--space-24);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(243, 168, 187, 0.18), transparent 60%),
              var(--color-surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-align: center;
}

@media (min-width: 768px) {
  .thankyou-card {
    padding: var(--space-40) var(--space-40);
  }
}

.thankyou-title {
  margin-bottom: var(--space-16);
}

.thankyou-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-24);
}

.thankyou-text {
  margin-bottom: var(--space-16);
}

.thankyou-actions {
  margin-top: var(--space-32);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-16);
}

.thankyou-actions .btn-primary {
  min-width: 200px;
}

.thankyou-actions .btn-ghost {
  min-width: 200px;
}
