.thank-you-section {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 160px);
}

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

.thank-you-card {
  max-width: 720px;
  width: 100%;
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(200, 164, 90, 0.16), transparent 55%),
              radial-gradient(circle at bottom right, rgba(30, 94, 79, 0.22), transparent 55%),
              rgba(18, 18, 18, 0.96);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(200, 164, 90, 0.25);
  text-align: center;
}

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

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

.thank-you-text,
.thank-you-next {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

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

@media (max-width: 768px) {
  .thank-you-card {
    padding: var(--space-8) var(--space-4);
  }

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