a:hover {
  color: #fff !important;
}

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}

.thankyou-main {
  min-height: calc(100vh - var(--header-height-desktop));
  display: flex;
  flex-direction: column;
}

.thankyou-hero {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-20);
  padding-inline: var(--space-4);
  background-image: linear-gradient(135deg, rgba(249, 168, 212, 0.32), rgba(251, 113, 133, 0.18));
}

.thankyou-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(252, 231, 243, 0.8));
  opacity: 0.9;
}

.thankyou-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-sm);
  margin-inline: auto;
}

.thankyou-card {
  padding: var(--space-8);
  text-align: center;
}

.thankyou-kicker {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.thankyou-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: var(--space-4);
}

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

.thankyou-next {
  font-size: var(--text-base);
  color: var(--color-text-soft);
  margin-bottom: var(--space-6);
}

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

.thankyou-cta-main,
.thankyou-cta-secondary {
  min-width: 11rem;
}

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

@media (max-width: 1023.98px) {
  .thankyou-main {
    min-height: calc(100vh - var(--header-height-mobile));
  }
}

@media (max-width: 767.98px) {
  .thankyou-hero {
    padding-block: var(--space-16);
  }

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

  .thankyou-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .thankyou-cta-main,
  .thankyou-cta-secondary {
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .thankyou-card {
    padding: var(--space-5);
  }
}
