.thanks-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(43, 153, 123, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(22, 57, 93, 0.08),
      transparent 30%
    ),
    #f7f9fb;
}

.thanks-hero {
  min-height: calc(100vh - 220px);
  padding: 100px 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.thanks-card {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 56px 64px;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
}

.thanks-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #2b997b 0%, #16395d 100%);
}

.thanks-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(43, 153, 123, 0.08);
}

.thanks-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(43, 153, 123, 0.1);
  color: #2b997b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.thanks-title {
  margin: 0 0 22px;
  font-size: 42px;
  line-height: 1.4;
  font-weight: 700;
  color: #16395d;
  letter-spacing: 0.03em;
}

.thanks-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 2;
  color: #334a62;
}

.thanks-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.thanks-btn:hover {
  transform: translateY(-2px);
}

.thanks-btn--primary {
  background: #16395d;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(22, 57, 93, 0.18);
}

.thanks-btn--primary:hover {
  opacity: 0.96;
}

.thanks-btn--secondary {
  background: #2b997b;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(43, 153, 123, 0.2);
}

.thanks-btn--secondary:hover {
  opacity: 0.96;
}

@media screen and (max-width: 768px) {
  .thanks-hero {
    min-height: auto;
    padding: 72px 16px 88px;
  }

  .thanks-card {
    padding: 54px 24px 48px;
  }

  .thanks-title {
    font-size: 30px;
  }

  .thanks-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .thanks-actions {
    gap: 12px;
    margin-top: 32px;
  }

  .thanks-btn {
    width: 100%;
    min-width: 0;
  }
}
