.thank-you-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-section {
  width: 100%;
  padding-block: var(--space-20);
}

.thank-you-container {
  display: flex;
  justify-content: center;
}

.thank-you-card {
  max-width: 640px;
  width: 100%;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(197, 139, 59, 0.2), transparent 55%),
              radial-gradient(circle at bottom right, rgba(16, 26, 44, 0.9), transparent 55%),
              var(--color-surface);
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--color-border-subtle);
  text-align: left;
}

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

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

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

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

@media (max-width: 768px) {
  .thank-you-section {
    padding-block: var(--space-16);
  }

  .thank-you-card {
    padding: var(--space-6);
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thank-you-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
