:root {
  --bg1: #03040c;
  --bg2: #0a0f1d;
  --neon1: #00ff95;
  --neon2: #a855f7;
  /* --text: #e2e8f0; */
  --muted: #94a3b8;
  --max-width: 1630px;
}

footer.site-footer {
  font-family: var(--main-font);
  position: relative;
  overflow: hidden;
  padding: 60px 25px 40px;
  background: radial-gradient(circle at 20% 30%, var(--bg), transparent 70%),
    linear-gradient(145deg, var(--bg), var(--bg2));
	z-index: 0;
}
footer .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
footer .particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.8;
  background: linear-gradient(90deg, var(--neon1), var(--neon2));
  will-change: transform, filter;
}
footer .inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}
footer .brand {
  flex: 1 0 auto;
  min-width: 240px;
  text-align: center;
  order: 1;
}
footer .brand img.logo {
  max-width: 240px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 30px var(--neon1)) drop-shadow(0 0 20px var(--neon2));
  animation: glow 3s infinite alternate ease-in-out;
}
@keyframes glow {
  0% {
    filter: drop-shadow(0 0 15px var(--neon1))
      drop-shadow(0 0 10px var(--neon2));
  }
  100% {
    filter: drop-shadow(0 0 50px var(--neon1))
      drop-shadow(0 0 35px var(--neon2));
  }
}
footer .brand p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
}

footer .footer-cols {
  flex: 1 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  order: 2;
  min-width: 630px;
  -webkit-font-feature-settings: "ss02";
  font-feature-settings: "ss02";
}
footer .footer-col {
  flex: 1 0 auto;
  min-width: 160px;
}
footer .footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 8px;
}
footer .footer-col h4::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #0197fe52;
}
footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .footer-col li {
  margin: 8px 0;
}
footer .footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
}

footer .footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--neon1), 0 0 25px var(--neon2);
}
footer .footer-col a:hover::before {
  transform: scaleX(1);
}
footer .contact p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: var(--muted);
}
footer .contact strong {
  color: #fff;
}

footer .trust {
  flex: 1 0 auto;
  min-width: 350px;
  text-align: center;
  order: 3;
  color: #fff;
}

footer .trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  background: rgb(139 139 139 / 20%);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
footer .trust-badges .block-trust {
  width: 60px;
  height: 81px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
footer .trust-badges .block-trust:hover {
  transform: scale(1.12) rotate(-2deg);
  box-shadow: 0 0 20px var(--neon1), 0 0 35px var(--neon2);
}
footer .trust-badges .block-trust img {
  width: 100%;
}
footer .footer-bottom {
  max-width: var(--max-width);
  margin: 60px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-cols,
  .brand,
  .trust {
    text-align: center;
    width: 100%;
  }
  .trust-badges {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .trust-badges img {
    flex: 0 0 auto;
  }
  .footer-cols {
    flex-direction: column;
    gap: 20px;
    flex-direction: row;
  }
}

footer .contact p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .subBlock-contact {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
footer .footer-col ul {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
footer .footer-col .fasele {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 767px) {
  footer .footer-cols {
    min-width: 100%;
  }
  footer .trust {
    min-width: fit-content;
  }
}
