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

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

.thank-you-panel {
  max-width: 720px;
  margin-inline: auto;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.2), rgba(5, 8, 21, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

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

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

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

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

.thank-you-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

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

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

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

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