.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

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

.thank-you-panel {
  max-width: 720px;
  width: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(115, 143, 255, 0.25) 0, rgba(11, 15, 36, 0.98) 50%, rgba(4, 6, 18, 1) 100%);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(159, 134, 255, 0.65);
  text-align: center;
}

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

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

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

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

@media (max-width: 640px) {
  .thank-you-panel {
    padding: var(--space-4);
  }

  .thank-you-lead {
    font-size: var(--font-size-md);
  }
}
