.footer {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  margin: 8px 0;
  color: #94a3b8;
  font-size: 14px;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  background: rgba(2,6,23,0.45);
  border: 1px solid #1f2937;
  padding: 8px 10px;
  border-radius: 999px;
}

.social a:hover {
  background: rgba(2,6,23,0.65);
}