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

.thankyou-card {
  max-width: 720px;
  margin-inline: auto;
}

.thankyou-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.thankyou-kicker {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

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

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

.thankyou-body {
  margin-bottom: var(--space-12);
}

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

.thankyou-note {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .thankyou-card {
    padding: var(--space-14);
  }

  .thankyou-actions {
    flex-direction: column;
  }
}
