.v-footer {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 68px 0 24px;
  border-top: 3px solid #ff9500;
  background: linear-gradient(135deg, #101827 0%, #080d18 58%, #050812 100%);
  color: #fff;
}

.v-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.v-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.v-footer-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr .9fr;
  gap: 70px;
  align-items: start;
}

.v-footer-about { display: none; }

.v-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.v-footer-logo-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 13px;
  background: #fff url('voltify-mark.webp') center/contain no-repeat;
}

.v-footer-logo-name {
  font-family: "Space Grotesk", "Plus Jakarta Sans", "DM Sans", sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.v-footer-logo-name span { color: #ff9500; }

.v-footer-about > p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #a9b6cb;
  font-size: .82rem;
  line-height: 1.75;
}

.v-footer-kicker {
  display: block;
  margin-top: 18px;
  color: #ffb347;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.v-footer-title {
  margin: 4px 0 20px;
  color: #fff;
  font-family: "Space Grotesk", "Plus Jakarta Sans", "DM Sans", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v-footer-links {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v-footer-links a,
.v-footer-contact a {
  color: #a9b6cb;
  font-size: .76rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.v-footer-links a:hover,
.v-footer-contact a:hover { color: #fff; }

.v-footer-contact {
  display: grid;
  gap: 11px;
}

.v-contact-link {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.v-contact-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: #ffad32;
}

.v-contact-icon svg { width: 17px; height: 17px; }

.v-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.v-social-link {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.v-social-link:hover {
  transform: translateY(-3px);
  border-color: #ff9500;
  background: rgba(255, 149, 0, .15);
}

.v-social-link svg { width: 19px; height: 19px; }

.v-social-handle { display: none; }

.v-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #73839d;
  font-size: .67rem;
}

.v-footer-bottom span:last-child { display: none; }

@media (max-width: 900px) {
  .v-footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 54px; }
}

@media (max-width: 600px) {
  .v-footer { padding: 44px 0 20px; }
  .v-footer-inner { width: calc(100% - 32px); }
  .v-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .v-footer-about > p { max-width: 100%; font-size: .76rem; }
  .v-footer-logo-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .v-footer-logo-name { font-size: 1.12rem; }
  .v-footer-contact { grid-column: 1 / -1; }
  .v-footer-follow { grid-column: 1 / -1; }
  .v-footer-title { margin-bottom: 15px; font-size: .72rem; }
  .v-footer-links a, .v-footer-contact a { font-size: .72rem; }
  .v-footer-bottom { display: block; margin-top: 36px; text-align: center; line-height: 1.8; }
  .v-footer-bottom span { display: block; }
}
