.footer{
  background: var(--color-bg-glass);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4xl) 0 var(--space-2xl);
}
.footer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer__logo{
  max-width: 180px;
}
.footer__logo img{
  width: 100%;
  height: auto;
  display: block;
}
.footer__social{
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.footer__social a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-surface-elevated);
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
}
.footer__social a:hover{
  background: var(--color-primary);
  color: var(--color-text);
}
.footer__social img{
  width: 20px;
  height: 20px;
  object-fit: contain;
  
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all var(--transition-base);
}
.footer__social a:hover img{
  opacity: 1;
  transform: scale(1.1);
}
.footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  
}
.footer__bottom p{
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}