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

ul {
  list-style: none !important;
}

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

.thankyou-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height-mobile));
  padding-top: calc(var(--header-height-mobile) + 2.5rem);
  padding-bottom: var(--space-3xl);
  display: flex;
  align-items: center;
}

.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), rgba(224, 191, 165, 0.32)), radial-gradient(circle at bottom right, rgba(188, 209, 224, 0.28), rgba(247, 244, 242, 1));
  opacity: 0.98;
  z-index: -2;
}

.thankyou-container {
  display: flex;
  justify-content: center;
}

.thankyou-card {
  max-width: 640px;
  width: 100%;
  padding: var(--space-2xl) var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft-strong);
  text-align: center;
}

.thankyou-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(92, 159, 124, 0.5);
  background: rgba(92, 159, 124, 0.08);
  color: var(--color-success);
  margin-bottom: var(--space-md);
}

.thankyou-title {
  font-size: clamp(2.1rem, 1.8rem + 1.4vw, 2.8rem);
  margin-bottom: var(--space-sm);
}

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

.thankyou-text {
  font-size: var(--font-size-md);
  color: var(--color-text-soft);
  margin-bottom: var(--space-sm);
}

.thankyou-actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.thankyou-btn-main,
.thankyou-btn-alt {
  min-width: 210px;
}

@media (max-width: 768px) {
  .thankyou-hero {
    padding-top: calc(var(--header-height-mobile) + 1.75rem);
    padding-bottom: var(--space-2xl);
  }

  .thankyou-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
  }

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

  .thankyou-btn-main,
  .thankyou-btn-alt {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .thankyou-card {
    padding: var(--space-3xl) var(--space-3xl);
  }
}
