/* Единый футер: лендинг, /app, /pricing, /settings — одинаковый вид (как на лендинге) */
/* Прижать футер к низу экрана, чтобы под ним не было белой области */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* На лендинге футер внутри main — растягиваем main и прижимаем футер вниз */
body > main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.site-footer {
  margin-top: auto;
  background: #0f172a;   /* slate-900 */
  color: #94a3b8;        /* slate-400 */
  padding: 3rem 0;        /* py-12 */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.site-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .site-footer-inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .site-footer-inner {
    padding: 0 2rem;
  }
}
.site-footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .site-footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;  /* slate-300 */
  font-weight: 600;
}
.site-footer-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #4f46e5;  /* indigo-600 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}
.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.site-footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer-nav a:hover {
  color: #fff;
}
.site-footer-copy {
  margin-top: 2rem;
  color: #64748b;  /* slate-500 */
  font-size: 0.875rem;
}
.site-footer-contact {
  margin-top: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}
.site-footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer-contact a:hover {
  color: #fff;
}
