 /* ---------------- FOOTER ---------------- */
.footer{
  padding: 70px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(0,200,255,0.10), transparent 32%),
    #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer .container{
  max-width: var(--maxw);
  margin: auto;
  padding: 0 20px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 42px;
}

.footer-brand p{
  color: #aaa;
  line-height: 1.7;
  max-width: 350px;
  font-size: 15px;
}

.footer-brand,
.footer-summary p{
  color: #aaa;
  line-height: 1.7;
  font-size: 15px;
}

.footer-col h4{
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-col a{
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 11px;
  transition: all .2s ease;
}

.footer-col a:hover{
  color: var(--brand-2);
  transform: translateX(4px);
}

.footer-schedule{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-schedule b{
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-schedule span{
  display: block;
  color: #aaa;
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-summary{
  padding: 24px 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
  text-align: center;
}

.footer-summary p{
  margin: 0;
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: #777;
  font-size: 13px;
}

.footer-legal{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a{
  color: #888;
  text-decoration: none;
}

.footer-legal a:hover{
  color: var(--brand-2);
}

.footer-logo{
  height: auto;
  max-width: 350px;
  opacity: .8; 
}