
.pv-footer{
  --pv-footer-bg: #0b0d11;
  --pv-footer-panel: #11151b;
  --pv-footer-panel-2: rgba(255,255,255,0.03);
  --pv-footer-text: rgba(255,255,255,0.94);
  --pv-footer-muted: rgba(255,255,255,0.66);
  --pv-footer-muted-2: rgba(255,255,255,0.48);
  --pv-footer-line: rgba(255,255,255,0.08);
  --pv-footer-line-2: rgba(255,255,255,0.06);
  --pv-footer-accent: #ff8a00;
  --pv-footer-accent-2: #ffb454;
  --pv-footer-shadow: 0 20px 50px rgba(0,0,0,.28);

  background:
    radial-gradient(circle at top left, rgba(255,138,0,.08), transparent 20%),
    linear-gradient(180deg, #0b0d11 0%, #0c1015 100%);
  border-top: 1px solid var(--pv-footer-line);
  color: var(--pv-footer-text);
}

.pv-footer *{
  box-sizing: border-box;
}

.pv-footer__container{
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 34px 20px 24px;
}

.pv-footer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--pv-footer-line);
}

.pv-footer__brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--pv-footer-text);
  text-decoration: none;
}

.pv-footer__brandIcon{
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 32px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.22));
}

.pv-footer__brandText{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pv-footer__brandName{
  display: block;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--pv-footer-text);
}

.pv-footer__brandSub{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .12em;
  color: var(--pv-footer-muted);
  text-transform: uppercase;
}

.pv-footer__social{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pv-footer__iconBtn{
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.pv-footer__iconBtn:hover{
  transform: translateY(-1px);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  opacity: .82;
}

.pv-footer__icon{
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: .95;
}

.pv-footer__groups{
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 24px 28px;
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--pv-footer-line);
}

.pv-footer__group{
  min-width: 0;
}

.pv-footer__groupTitle{
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pv-footer-text);
}

.pv-footer__links{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pv-footer__link{
  color: var(--pv-footer-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color .16s ease, transform .12s ease;
}

.pv-footer__link:hover{
  color: var(--pv-footer-text);
  transform: translateX(1px);
}

.pv-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
}

.pv-footer__bottomLeft{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
  color: var(--pv-footer-muted);
  font-size: 13px;
}

.pv-footer__dot,
.pv-footer__mid{
  color: var(--pv-footer-muted-2);
}

.pv-footer__bottomLink{
  color: var(--pv-footer-muted);
  text-decoration: none;
  transition: color .16s ease;
}

.pv-footer__bottomLink:hover{
  color: var(--pv-footer-text);
}

.pv-footer__bottomRight{
  color: var(--pv-footer-muted);
  font-size: 13px;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 1100px){
  .pv-footer__groups{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 760px){
  .pv-footer__container{
    padding: 26px 14px 22px;
  }

  .pv-footer__top{
    align-items: flex-start;
    flex-direction: column;
  }

  .pv-footer__groups{
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }

  .pv-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .pv-footer__bottomRight{
    white-space: normal;
    text-align: left;
  }
}

@media (max-width: 520px){
  .pv-footer__groups{
    grid-template-columns: 1fr;
  }

  .pv-footer__brandSub{
    letter-spacing: .08em;
    font-size: 11px;
  }
}