/* =============================
   FOOTER — Compact + Premium
============================= */

.vd-footer{
  margin-top: 28px;
  border-top: 1px solid rgba(245,247,255,.10);
  background: rgba(54,69,79,.22);
}

.vd-footer__inner{
  padding: 14px 0 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: center;
}

/* Brand (logo only) */
.vd-footer__brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.vd-footer__mark{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,247,255,.14);
  box-shadow: 0 10px 26px rgba(48,213,200,.10);
}

.vd-footer__logo{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Links row */
.vd-footer__nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.vd-footer__link{
  text-decoration: none;
  font-weight: 800;
  font-size: 13.5px;
  color: rgba(245,247,255,.72);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245,247,255,.10);
  background: rgba(255,255,255,.03);
  transition: 0.2s ease;
}

.vd-footer__link:hover{
  color: rgba(245,247,255,.92);
  background: rgba(255,255,255,.06);
  border-color: rgba(245,247,255,.16);
}

/* Bottom meta line */
.vd-footer__meta{
  grid-column: 1 / -1;
  padding-top: 8px;
  font-size: 12.5px;
  color: rgba(245,247,255,.55);
}

/* Mobile: keep it short + tidy */
@media (max-width: 820px){
  .vd-footer__inner{
    grid-template-columns: 1fr;
    padding: 12px 0 10px;
    justify-items: center;
    text-align: center;
  }

  .vd-footer__nav{
    justify-content: center;
    gap: 8px 10px;
  }

  .vd-footer__link{
    font-size: 13px;
    padding: 6px 9px;
  }

  .vd-footer__meta{
    padding-top: 6px;
  }
}

/* =========================
   FOOTER — CLEAN MINIMAL
========================= */

.vd-footer{
  background: linear-gradient(180deg,#111517,#0c0f11);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0 18px;
  font-size:14px;
}

.vd-footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

/* Logo */
.vd-footer__logo{
  width:42px;
  height:auto;
  opacity:.85;
}

/* Links */
.vd-footer__links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.vd-footer__links a{
  color:rgba(255,255,255,.6);
  text-decoration:none;
  font-weight:600;
  transition:.2s ease;
}

.vd-footer__links a:hover{
  color:#7ED6B6;
}

/* Social */
.vd-footer__social{
  display:flex;
  gap:14px;
  margin-left:20px;
}

.vd-footer__icon{
  width:18px;
  height:18px;
  fill:rgba(255,255,255,.55);
  transition:.2s ease;
}

.vd-footer__icon:hover{
  fill:#7ED6B6;
}

/* Bottom line */
.vd-footer__bottom{
  text-align:center;
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.05);
  font-size:12px;
  color:rgba(255,255,255,.45);
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

  .vd-footer__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }

  .vd-footer__links{
    gap:16px;
  }

  .vd-footer__social{
    margin-left:0;
  }
}