.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

.site-footer {
    padding: 2.5rem 1.5rem 2rem;
    border-top: 1px solid #ececec;
  }

.site-footer__shell {
    max-width: 1300px;
    margin: 0 auto;
  }

.site-footer__card {
    overflow: hidden;
  }

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(3, minmax(0, 0.7fr));
    gap: 2rem;
    padding: 0 0 2rem;
  }

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

.site-footer__logo {
    display: inline-flex;
    align-items: center;
  }

.site-footer__logo-img {
    width: 5.5rem;
    height: 5.5rem;
    object-fit: contain;
  }

.site-footer__brand-desc {
    margin: 0;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.9;
    max-width: 18rem;
  }

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #f7f7f8;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

.site-footer__social-link svg {
    width: 1.15rem;
    height: 1.15rem;
  }

.site-footer__social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

.site-footer__social-link--instagram {
    color: #fff;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  }

.site-footer__social-link--telegram {
    color: #fff;
    background: #26a5e4;
  }

.site-footer__social-link--linkedin {
    color: #fff;
    background: #0a66c2;
  }

.site-footer__social-link--x {
    color: #fff;
    background: #000;
  }

.site-footer__nav-title {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    position: relative;
    padding-bottom: 0.65rem;
  }

.site-footer__nav-title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 2rem;
    height: 2px;
    border-radius: 999px;
    background: #111;
  }

.site-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

.site-footer__nav-list a {
    color: #666;
    font-size: 0.92rem;
    transition: color 0.15s ease;
  }

.site-footer__nav-list a:hover {
    color: #111;
  }

.site-footer__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }

.site-footer__feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
  }

.site-footer__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #f5f5f7;
    color: #111;
    border: 1px solid #ececec;
  }

.site-footer__feature-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

.site-footer__feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
  }

.site-footer__feature-text strong {
    font-size: 0.92rem;
    color: #111;
  }

.site-footer__feature-text span {
    font-size: 0.82rem;
    color: #777;
  }

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0 0;
    color: #777;
    font-size: 0.86rem;
  }

.site-footer__copyright {
    margin: 0;
  }

.site-footer__copyright-brand {
    color: #111;
    font-weight: 700;
  }

.site-footer__legal {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
  }

.site-footer__legal a {
    color: #666;
    transition: color 0.15s ease;
  }

.site-footer__legal a:hover {
    color: #111;
  }

.site-footer__legal-sep {
    color: #ccc;
  }

  @media (max-width: 1100px) {
.site-footer__top {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
.site-footer {
      padding: 1.5rem 1rem 1.25rem;
    }

.site-footer__top {
      grid-template-columns: 1fr;
      padding: 0 0 1.25rem;
      gap: 1.5rem;
    }

.site-footer__brand {
      gap: 1.1rem;
    }

.site-footer__logo-img {
      width: 5rem;
      height: 5rem;
    }

.site-footer__brand-desc {
      max-width: none;
      font-size: 0.88rem;
      line-height: 1.85;
    }

.site-footer__social {
      gap: 0.75rem;
    }

.site-footer__nav {
      padding-bottom: 1.25rem;
      border-bottom: 1px solid #f0f0f0;
    }

.site-footer__nav:last-of-type {
      border-bottom: 0;
      padding-bottom: 0;
    }

.site-footer__nav-title {
      margin-bottom: 0.85rem;
      font-size: 0.95rem;
    }

.site-footer__nav-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.65rem 0.85rem;
    }

.site-footer__nav-list li {
      min-width: 0;
    }

    .site-footer__nav-list a {
      display: block;
      font-size: 0.84rem;
      line-height: 1.5;
    }

.site-footer__features {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      padding: 1.25rem 0;
      gap: 1.25rem 0.75rem;
    }

.site-footer__feature {
      gap: 0.65rem;
    }

.site-footer__feature-icon {
      width: 2.5rem;
      height: 2.5rem;
    }

.site-footer__feature-icon svg {
      width: 1.15rem;
      height: 1.15rem;
    }

.site-footer__feature-text strong {
      font-size: 0.82rem;
    }

.site-footer__feature-text span {
      font-size: 0.74rem;
    }

.site-footer__bottom {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem 0 0;
    }
  }
