.site-footer {
  margin-top: 0;
  background: #0f172a;
  color: #94a3b8;
}

.site-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px max(28px, env(safe-area-inset-bottom));
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.site-footer-brand-block {
  max-width: 320px;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer-brand-logo {
  display: block;
  width: calc(136px * var(--domig-runtime-footer-logo-scale, 1));
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer-brand-logo--custom {
  filter: none;
}

.site-footer-description {
  margin: 16px 0 0;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.site-footer-icons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.site-footer-icon-link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.site-footer-icon-link svg {
  width: 20px;
  height: 20px;
}

.site-footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

.site-footer-links,
.site-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer-icon-link:hover {
  color: #ffffff;
}

.site-footer-text {
  color: #94a3b8;
  font-size: 16px;
  font-weight: 600;
}

.site-footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 900px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer-container {
    padding: 36px 16px max(24px, env(safe-area-inset-bottom));
  }

  .site-footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-footer-container {
    padding: 32px 16px max(22px, env(safe-area-inset-bottom));
  }

  .site-footer-grid {
    gap: 22px;
  }

  .site-footer-brand-block {
    max-width: none;
  }

  .site-footer-brand-logo {
    width: calc(122px * var(--domig-runtime-footer-logo-scale, 1));
  }

  .site-footer-description,
  .site-footer a,
  .site-footer-text,
  .site-footer-bottom {
    font-size: 15px;
    line-height: 1.55;
  }

  .site-footer-title {
    margin-bottom: 12px;
  }

  .site-footer-links,
  .site-footer-contacts {
    gap: 8px;
  }
}
