.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.thankyou-wrapper {
  max-width: 40rem;
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--gradient-glass);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.thankyou-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.9rem;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-main);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

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

.thankyou-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-soft);
  margin-bottom: var(--space-3);
}

.thankyou-text {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--color-text-soft);
  margin-bottom: var(--space-6);
}

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

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

@media (max-width: 767px) {
  .thankyou-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .thankyou-wrapper {
    padding: var(--space-6) var(--space-4);
  }

  .thankyou-title {
    font-size: var(--text-3xl);
  }

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

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