.vm-footer {
  background: #0b0b0f;
  color: #eaeaea;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 28px;
}

.vm-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.vm-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vm-footer__logo {
  width: 28px;
  height: 28px;
  display: block;
}

.vm-footer__name {
  font-size: 1.1rem;
}

.vm-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
}

.vm-footer__nav a {
  color: #eaeaea;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.vm-footer__nav a:hover,
.vm-footer__nav a:focus {
  color: var(--vm-accent, #b000ff);
}

.vm-footer__sns {
  display: flex;
  gap: 14px;
}

.vm-footer__sns-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #eaeaea;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vm-footer__sns-link svg {
  width: 18px;
  height: 18px;
}

.vm-footer__sns-link:hover,
.vm-footer__sns-link:focus {
  color: var(--vm-accent, #b000ff);
  border-color: var(--vm-accent, #b000ff);
  transform: translateY(-1px);
}

.vm-footer__copy {
  text-align: center;
  font-size: 0.85rem;
  color: #a8a8a8;
  margin-top: 26px;
}

.vm-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--vm-accent, #b000ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, bottom 0.2s ease;
  z-index: 1200;
  cursor: pointer;
}

.vm-to-top svg {
  width: 22px;
  height: 22px;
}

.vm-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


@media (max-width: 640px) {
  .vm-footer {
    padding: 44px 0 24px;
  }

  .vm-footer__nav {
    gap: 10px 16px;
  }

  .vm-to-top {
    width: 44px;
    height: 44px;
    right: 18px;
    bottom: 18px;
  }

}
