.thank-you-page {
  padding: clamp(88px, 11vw, 130px) 0 clamp(72px, 9vw, 120px);
  background: linear-gradient(180deg, #f7f3ff 0%, #fafafa 55%, #ffffff 100%);
}

.thank-you-section .container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(31, 16, 40, 0.1);
  border: 1px solid rgba(106, 27, 154, 0.14);
  animation: fadeInUp 0.6s ease-out;
}

.checkmark-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e8d7f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark {
  font-size: 48px;
  color: #6a1b9a;
  font-weight: bold;
}

.thank-you-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f1028;
}

.thank-you-message {
  font-size: 1.1rem;
  color: #5b4b66;
  margin-bottom: 30px;
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  min-height: 46px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 27, 154, 0.35);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .thank-you-page {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .thank-you-card {
    padding: 28px 18px;
    border-radius: 14px;
  }

  .checkmark-circle {
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
  }

  .checkmark {
    font-size: 40px;
  }

  .thank-you-title {
    font-size: 1.95rem;
  }

  .thank-you-message {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
