.site-footer {
  padding: 130px 0px 60px 0px;
  width: 100%;
  background: #f1f0ee;
}

.footer-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 0px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer-logo {
  width: min(100%, 560px);
  height: auto;
  display: block;
}

.footer-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(6, 4, 0, 0.7);
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 8px;
  background: #0a0908;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-button:hover {
  transform: translateY(-1px);
  background-color: rgba(6, 4, 0, 0.9);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(6, 4, 0, 0.7);
}

.footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dc044;
  box-shadow: 0 0 0 4px rgba(45, 192, 68, 0.15);
}

@media (max-width: 750px) {
  .site-footer {
    padding: 90px 0px 40px 0px;
  }

  .footer-shell {
    padding: 0px 32px;
  }

  .footer-text {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .footer-logo {
    width: min(100%, 420px);
  }
}
