.thank-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #eef0f4 0%, #f5f6f8 40%, #fff 100%);
}

.thank-top {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.thank-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.thank-logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.thank-logo span {
  color: var(--accent);
}

.thank-phone {
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
}

.thank-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 0 80px;
}

.thank-card {
  width: min(560px, 100%);
  padding: 48px 40px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.thank-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(154, 214, 0, 0.15);
  color: #5a8f00;
  font-size: 2.5rem;
  font-weight: 900;
}

.thank-card h1 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
}

.thank-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

.thank-card__note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.thank-actions .btn--outline {
  background: #fff;
  color: #111;
  border: 2px solid rgba(0, 0, 0, 0.12);
}

.thank-footer {
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

@media (max-width: 600px) {
  .thank-card {
    padding: 36px 24px;
  }

  .thank-top__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
