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

.thank-you-wrapper {
  max-width: var(--container-sm);
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-modal);
  background: radial-gradient(circle at 0 0, rgba(244, 114, 182, 0.08), transparent 55%), radial-gradient(circle at 100% 100%, rgba(34, 211, 238, 0.12), transparent 55%), var(--color-surface-soft);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-elevated);
  text-align: center;
  backdrop-filter: blur(var(--blur-soft));
  -webkit-backdrop-filter: blur(var(--blur-soft));
}

.thank-you-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.08);
  color: var(--color-success);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.thank-you-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

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

.thank-you-text {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-soft);
}

.thank-you-text + .thank-you-text {
  margin-top: var(--space-xs);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

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

.thank-you-note a {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .section-thank-you {
    min-height: calc(100vh - var(--header-height-mobile) - 120px);
  }
  .thank-you-wrapper {
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-lg);
  }
  .thank-you-title {
    font-size: var(--text-2xl);
  }
  .thank-you-lead {
    font-size: var(--text-base);
  }
}

@media (min-width: 1024px) {
  .section-thank-you {
    min-height: calc(100vh - var(--header-height-desktop) - 160px);
  }
  .thank-you-title {
    font-size: var(--text-4xl);
  }
}
