.thank-you-page {
  background: #f5f5f6;
}

.thank-you-hero {
  min-height: 690px;
  margin-top: 18px;
  padding: 80px 28px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(7, 8, 29, .94), rgba(7, 8, 29, .72)),
    url("assets/quote-bg.jpg") center / cover;
  color: #fff;
  text-align: center;
}

.thank-you-card {
  width: min(760px, 100%);
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 18px;
  background: rgba(15, 16, 61, .82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c72734;
  font-size: 34px;
  font-weight: 800;
}

.thank-you-kicker {
  color: #f2c14e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.thank-you-card h1 {
  margin: 14px 0 20px;
  font: 800 clamp(42px, 5vw, 68px) / 1.02 Raleway, sans-serif;
  letter-spacing: -.04em;
}

.thank-you-card p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.75;
}

.thank-you-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 560px) {
  .thank-you-hero {
    min-height: 600px;
    margin-top: 10px;
    padding: 38px 14px;
  }

  .thank-you-card {
    padding: 38px 22px;
  }

  .thank-you-card h1 {
    font-size: 38px;
  }

  .thank-you-card p {
    font-size: 17px;
  }

  .thank-you-actions {
    flex-direction: column;
  }
}
