.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer {
  display: block;
  width: 100%;
  margin: 0;
  padding: 72px 0 28px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #211d1e;
  color: #fffdf9;
  direction: ltr;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: left;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-shell {
  width: min(calc(100% - 80px), 1440px);
  margin-inline: auto;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(0, 3fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: start;
}

.site-footer .footer-intro .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fffdf9;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-footer .footer-intro .brand img {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.site-footer .footer-intro p {
  max-width: 360px;
  margin: 18px 0 24px;
  color: #c9c1c2;
  font-size: 15px;
  line-height: 1.6;
}

.site-footer .footer-app-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #fffdf9;
  font-size: 14px;
  font-weight: 750;
}

.site-footer .footer-app-link::after {
  content: "\2197";
}

.site-footer .footer-app-link:hover {
  border-color: #ef4773;
  color: #ff9bb6;
}

.site-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 40px;
  margin: 0;
}

.site-footer .footer-link-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer .footer-link-group h2 {
  margin: 0 0 6px;
  color: #8f8587;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer .footer-link-group a {
  color: #ded8d9;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer .footer-link-group a:hover {
  color: #ff9bb6;
}

.site-footer .footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #938a8b;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 52px;
  }

  .site-footer .footer-shell {
    width: min(calc(100% - 40px), 1440px);
  }

  .site-footer .footer-main {
    gap: 44px;
  }

  .site-footer .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }

  .site-footer .footer-meta {
    flex-direction: column;
    gap: 8px;
    margin-top: 44px;
  }
}
