#site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  margin-top: 80px;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.footer-h {
  color: var(--text-bright);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 25px 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li { margin-bottom: 12px; }

.footer-nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-nav-list a:hover { color: var(--text-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copy { font-size: 13px; line-height: 1.5; }

.footer-note {
  opacity: 0.5;
  margin-top: 5px;
}

.footer-follow-text {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

.footer-btns {
  display: flex;
  gap: 12px;
}

.f-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-bright);
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}

.f-btn:hover {
  background: #23272d;
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Адаптивность без "кривизны" */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom { flex-direction: column-reverse; align-items: flex-start; }
  .footer-btns { width: 100%; }
  .f-btn { flex: 1; text-align: center; }
}
