/**
 * Thank You Page Styles
 * Sales Fundas Theme
 */

.page-thank-you {
  background: var(--white);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.thank-you-card {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 60px 40px;
  background: var(--off);
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

/* Success Animation */
.success-checkmark {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  position: relative;
  border-radius: 50%;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-checkmark::after {
  content: '✓';
  font-size: 48px;
  color: var(--teal);
  font-weight: 700;
}

@keyframes scaleUp {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-card h1 {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.thank-you-card h1 em {
  font-style: normal;
  color: var(--gold);
}

.thank-you-card p {
  font-size: 18px;
  color: var(--g2);
  line-height: 1.7;
  margin-bottom: 40px;
}

.next-steps {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.next-steps h3 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item::before {
  content: '•';
  color: var(--gold);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.ty-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .thank-you-card {
    padding: 40px 24px;
    border-radius: 20px;
  }
  .ty-actions .btn {
    width: 100%;
  }
}
