.site-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, #101010 0%, #171717 100%);
  color: #f4f4f5;
  border-top: 4px solid var(--orange);
}

.footer-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 30px 0 22px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.55fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  width: 92px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.footer-brand h3 {
  margin: 0 0 8px 0;
  color: #ffffff;
  font-size: 1.2rem;
}

.footer-brand p {
  margin: 4px 0;
  color: #d6d6db;
  line-height: 1.55;
}

.footer-links-block,
.footer-socials-block {
  display: flex;
  flex-direction: column;
}

.footer-links-title {
  margin: 0 0 12px 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.footer-links a {
  color: #d6d6db;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s ease;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}

.footer-social-link:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 16px;
}

.footer-note {
  color: #bcbcc4;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.footer-legal-links {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: #bcbcc4;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 30px;
  }

  .footer-inner {
    width: min(100%, 94%);
    padding: 22px 0 18px 0;
  }

  .footer-top {
    gap: 18px;
    padding-bottom: 16px;
  }

  .footer-brand {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-brand > div {
    max-width: calc(100% - 76px);
  }

  .footer-logo {
    width: 60px;
  }

  .footer-brand h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .footer-brand p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .footer-links-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links a {
    font-size: 0.94rem;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-bottom {
    padding-top: 14px;
  }

  .footer-note {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }
}