.site-footer {
  background:
    linear-gradient(180deg, #eef2f6 0%, #edf3f8 100%);
}

.site-footer__top {
  padding: 6rem 0 2.75rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 2.4rem;
  align-items: start;
}

.site-footer__brand p {
  margin-top: 1.25rem;
  max-width: 440px;
  line-height: 1.8;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-footer__logo img {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

.site-footer__logo:hover img {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.02);
}

.site-footer h4 {
  margin-bottom: 1.15rem;
  font-size: 1.12rem;
}

.site-footer__links,
.site-footer__contact {
  display: grid;
  gap: 0.9rem;
}

.site-footer__links a,
.site-footer__bottom p,
.site-footer__contact li,
.site-footer__contact a {
  color: var(--color-text);
}

.site-footer__links a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer__links a:hover {
  color: var(--color-primary-dark);
  transform: translateX(2px);
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.75;
}

.site-footer__contact i {
  width: 18px;
  margin-top: 0.2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.site-footer__socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 45, 105, 0.06);
  border: 1px solid rgba(10, 45, 105, 0.08);
  color: var(--color-primary-dark);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.site-footer__socials a i {
  font-size: 1rem;
  transition: color 0.28s ease, transform 0.28s ease;
}

.site-footer__socials a:hover {
  transform: translateY(-3px);
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(72, 197, 243, 0.22);
}

.site-footer__socials a:hover i {
  color: var(--color-white);
  transform: scale(1.02);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: 7rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 45, 105, 0.08);
}

.site-footer__bottom p {
  line-height: 1.7;
}

.site-footer__developed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.site-footer__developed img {
  display: block;
  max-width: 190px;
  width: 100%;
  height: auto;
}

.site-footer__developed:hover {
  filter: brightness(0.82);
  opacity: 0.96;
  transform: translateY(-1px);
}