.site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(80, 110, 160, 0.2) 0%, transparent 36%),
    linear-gradient(180deg, #202635 0%, #181e29 100%);
  color: #d3d9e7;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .container {
  padding-inline: clamp(1.4rem, 3vw, 2.8rem);
}

.footer-top {
  padding: 2.2rem 0 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand strong {
  display: block;
  color: #f4f7fc;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand span {
  display: block;
  color: #aeb8cf;
  font-size: 0.9rem;
}

.footer-summary {
  max-width: 62ch;
  color: #b9c3d9;
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.6rem 0 1.8rem;
}

.site-footer h4 {
  margin: 0 0 0.9rem;
  color: #f2f5fb;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 0.45rem 0;
  color: #b9c3d9;
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer a {
  color: #d8e3f7;
}

.site-footer a:hover {
  color: #ffffff;
}

.contact-actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  justify-content: center;
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(170, 182, 205, 0.38);
  background: rgba(255, 255, 255, 0.06);
  color: #e0e8f6;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.contact-action-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-action-icon svg {
  width: 100%;
  height: 100%;
}

.contact-action-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(205, 214, 231, 0.58);
  transform: translateY(-1px);
}

.footer-meta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-meta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
}

.footer-meta-card h5 {
  margin: 0 0 0.4rem;
  color: #f4f7fc;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-meta-card p {
  margin: 0;
  color: #b9c3d9;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 0;
}

.footer-bottom p {
  margin: 0;
  color: #adb9d3;
  font-size: 0.86rem;
}

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-top {
    padding: 1.8rem 0 1rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1rem 0 1.4rem;
  }

  .site-footer .container {
    padding-inline: 1.35rem;
  }

  .footer-meta-card,
  .site-footer li {
    font-size: 0.9rem;
  }
}
