/* ── Footer ───────────────────────────────────────────── */
.tvg-footer {
  background: var(--tvg-color-navy, #0d1b3e);
  color: #fff;
  padding: 64px 0 32px;
}

.tvg-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tvg-footer__columns {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 48px;
  margin-bottom: 48px;
}

.tvg-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tvg-footer__brand p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
}

.tvg-footer__brand .tvg-footer__logo {
  max-width: 90px;
  height: auto;
}

.tvg-footer__links h4 {
  font-family: var(--tvg-font-heading, 'Poppins', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

.tvg-footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.tvg-footer__links a:hover {
  color: #fff;
}

.tvg-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tvg-footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.tvg-footer__bottom .tvg-footer__flowmesh {
  height: 72px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.tvg-footer__powered-by {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin: 0;
}

.tvg-footer__bottom .tvg-footer__flowmesh:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1023px) {
  .tvg-footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tvg-footer__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .tvg-footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tvg-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .tvg-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .tvg-footer__powered-by {
    font-size: 0.875rem;
  }

  .tvg-footer__bottom p {
    font-size: 0.875rem;
  }
}
