.vf-footer{
  background:var(--color-header-footer-bg);
  color:#fff;
  padding:2rem 0;
}

.vf-footer a{
  color:#fff;
}

.vf-footer-inner{
  display:flex;
  flex-direction:column;
  gap:2rem;
}

.vf-top{
  display:grid;
  grid-template-columns:1.5fr 0.7fr 1fr 1.1fr;
  gap:2rem;
  color: #fff !important;
}

.vf-footer-brand{
  display:inline-flex;
  align-items:center;
  gap:0.75rem;
  margin-bottom:var(--space-2);
  color:#fff;
  font-size:1.25rem;
  font-weight:700;
  text-decoration:none;
}

.vf-footer-brand img{
  width:38px;
  height:38px;
  object-fit:contain;
}

.vf-column-title{
  margin-bottom:var(--space-2);
  color:#fff;
  font-size:var(--text-base);
}

.vf-brand-meta{
  font-size:var(--text-sm);
  font-weight:600;
  opacity:0.72;
}

.vf-top ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}

.vf-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-2);
  font-size:0.875rem;
}

.vf-guidance{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:var(--space-2);
}

.vf-guidance-card{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  gap:var(--space-2);
  padding:var(--space-3);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:10px;
  background:rgba(255,255,255,0.035);
}

.vf-guidance-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:10px;
  background:rgba(11,107,87,0.28);
  color:#fff;
  font-size:var(--text-sm);
  font-weight:700;
}

.vf-guidance-card h3{
  margin-bottom:var(--space-1);
  color:#fff;
  font-size:var(--text-base);
}

.vf-guidance-card p{
  margin:0;
  color:rgba(255,255,255,0.72);
  font-size:var(--text-sm);
}

.vf-guidance-card a,
.vf-guidance-card a:visited{
  color:#fff;
  font-weight:600;
  text-decoration:underline;
}

.vf-notice{
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  gap:var(--space-2);
  align-items:start;
  padding:var(--space-3);
  border:1px solid rgba(224,157,43,0.32);
  border-radius:10px;
  background:rgba(224,157,43,0.06);
}

.vf-notice-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--color-warning);
  color:var(--color-header-footer-bg);
  font-weight:700;
}

.vf-notice p{
  margin:0;
  color:rgba(255,255,255,0.76);
  font-size:var(--text-sm);
}

.vf-notice a,
.vf-notice a:visited{
  color:#fff;
  font-weight:600;
  text-decoration:underline;
  text-decoration-color:var(--color-warning);
  text-underline-offset:0.2em;
}

.vf-services{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:0.75rem;
  padding:1.5rem 0;
  border-top:1px solid rgba(255,255,255,0.14);
  border-bottom:1px solid rgba(255,255,255,0.14);
}

.vf-service-card{
  display:flex;
  align-items:center;
  justify-content:center;
  width:112px;
  height:64px;
  padding:0.65rem;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:8px;
  background:rgba(255,255,255,0.04);
  transition:border-color 0.2s ease,background 0.2s ease,transform 0.2s ease;
}

.vf-service-card-wide{
  width:132px;
}

a.vf-service-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,0.3);
  background:rgba(255,255,255,0.08);
}

.vf-service-card img{
  width:100%;
  max-height:42px;
  object-fit:contain;
}



.vf-consent{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:var(--color-surface-bg);
  border-top:var(--border-default);
  padding:1rem;
  z-index:1200;
}

.vf-consent[hidden]{
  display:none !important;
}

.vf-consent-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  align-items:center;
  justify-content:space-between;
}

.vf-age-modal{
  position:fixed;
  inset:0;
  background:var(--color-overlay);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.vf-age-modal[hidden]{
  display:none !important;
}

.vf-age-content{
  background:#fff;
  padding:2rem;
  max-width:420px;
  width:100%;
  border-radius:6px;
}

.vf-age-actions{
  margin-top:1rem;
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}

@media (max-width:900px){
  .vf-top{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .vf-services{
    justify-content:flex-start;
  }
}

@media (max-width:700px){
  .vf-top,
  .vf-guidance{
    grid-template-columns:1fr;
  }

  .vf-bottom{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:480px){
  .vf-service-card,
  .vf-service-card-wide{
    width:calc(50% - 0.375rem);
  }
}

.vf-info p,.vf-brand p{
  color: #fff !important;
}


.vf-bottom p{
  margin:0;
  color:rgba(255,255,255,0.72) !important;
}
