.thank-you-main {
  min-height: calc(100vh - var(--header-height-desktop));
  display: flex;
  align-items: center;
}

.thank-you-section {
  width: 100%;
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}

.thank-you-inner {
  position: relative;
  z-index: 1;
}

.thank-you-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.thank-you-title {
  font-size: clamp(2rem, 1.8rem + 0.6vw, 2.4rem);
  margin-bottom: var(--space-lg);
}

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

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

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

.thank-you-primary-cta {
  min-width: 230px;
}

.thank-you-secondary-cta {
  min-width: 210px;
}

@media (max-width: 767.98px) {
  .thank-you-main {
    min-height: calc(100vh - var(--header-height-mobile));
  }
  .thank-you-section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
  .thank-you-card {
    padding: var(--space-2xl) var(--space-xl);
  }
  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .thank-you-primary-cta,
  .thank-you-secondary-cta {
    width: 100%;
    min-width: 0;
  }
}
