.footer {
  background: #f9fafb; /* почти белый */
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
  padding: 20px 15px;
  font-size: 14px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.content-footer {
  margin: 0;
  color: #6b7280;
}

.content-footer span {
  font-weight: 600;
  color: #f97316; /* оранжевый */
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f97316;
}

/* Кнопка */
.footer-btn {
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #f97316 !important;
  transition: all 0.25s ease;
}

.footer-btn:hover {
  background: #f97316;
  color: #ffffff !important;
}

.footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.beta-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.15);
  color: #ffb300;
  border: 1px solid rgba(255, 193, 7, 0.35);
  letter-spacing: 0.2px;
  white-space: nowrap;
  margin-left: 3px; .more-menu__reset-btn
}


/* Мобильная версия */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}