.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-sm);
}

.footer-brand img.nav-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 0;
  filter: none;
}

.footer-brand img.footer-favicon {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.broker-logo {
  height: 28px;
  width: auto;
  margin-top: var(--space-sm);
  opacity: 1;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
  margin-top: var(--space-sm);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.footer-social a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
