/* ===========================
   FOOTER — DoubleGGSubs Neon
=========================== */

:root {
  --footer-bg: #050a1f;
  --footer-panel: #0a1030;
  --footer-stroke: rgba(255,255,255,.14);
  --footer-muted: #9ea9c9;
  --footer-white: #ffffff;

  --accent-cyan: #4df3ff;
  --accent-orange: #ff622e;
}

.site-footer {
  background: linear-gradient(180deg, #050a1f, #080e2e);
  padding: 70px 0 32px;
  color: var(--footer-white);
  font-family: Manrope, system-ui, sans-serif;

  border-top: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 -20px 60px rgba(0,0,0,.7);
}


/* ===========================
   GRID
=========================== */
.footer-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 40px;
}


/* ===========================
   LOGO + SOCIAL
=========================== */

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main .logo img {
  max-width: 190px;
  height: auto;
  filter: brightness(1);
}

.footer-social {
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social a {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);

  color: var(--footer-white);
  text-decoration: none;

  background: linear-gradient(180deg, #070d23, #0e1433);

  transition: .28s ease;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,.6);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.35),
    0 18px 40px rgba(0,0,0,.65);
  transform: translateY(-2px);
}


/* ===========================
   CONTACTS
=========================== */

.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.footer-contacts a,
.footer-contacts address {
  color: var(--footer-muted);
  text-decoration: none;
  transition: .22s ease;
}

.footer-contacts a:hover {
  color: var(--accent-cyan);
}

.footer-contacts address {
  font-style: normal;
}


/* ===========================
   LINKS
=========================== */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.footer-links a {
  color: var(--footer-muted);
  text-decoration: none;
  transition: .22s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
}


/* ===========================
   BOTTOM
=========================== */

.footer-bottom {
  text-align: center;
  padding-top: 22px;
  font-size: 14px;
  color: var(--footer-muted);
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer-bottom span {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width: 900px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media(max-width: 640px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
  }

  .footer-main {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contacts,
  .footer-links {
    align-items: center;
  }
}
