/* ============================
   FOOTER CORRETTO
============================ */

/* Footer OK, resta dark */
footer {
  width: 100%;
  background: var(--black-deep) !important;
  color: var(--light);
  padding: 20px var(--pad-mobile);
}

.vd-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vd-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  align-items: start;
}

.vd-footer-brand {
  display: grid;
  gap: 12px;
}

.vd-footer-text {
  opacity: 0.7;
  font-size: 0.95rem;
}

.vd-footer-nav {
  display: grid;
  gap: 12px;
}

.vd-footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.vd-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.vd-footer-social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.vd-footer-social-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vd-footer-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.vd-footer-link:hover {
  color: var(--accent);
}

.vd-footer-bottom {
  max-width: 1400px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (min-width: 900px) {
  .vd-footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
    justify-content: space-between;
  }

  .vd-footer-nav {
    justify-items: end;
  }

  .vd-footer-social {
    justify-content: flex-end;
  }
}
