/* === DJI-ish Footer blocks === */

.xcp_footer{
  background:#111;
  color:rgba(255,255,255,.75);
  border-top:1px solid rgba(255,255,255,.08);
}

.xcp_footer__inner{
  max-width:1240px;
  margin:0 auto;
  padding:72px 24px 28px;
}

/* TOP AREA (brand left + columns right) */
.xcp_footer__top{
  display:grid;
  grid-template-columns: 1.2fr 2.2fr;
  gap:48px;
  align-items:flex-start;
}

/* Brand block */
.xcp_footer__brand{
  max-width:420px;
}

.xcp_footer__brand .custom-logo{
  max-height:34px;
  width:auto;
  filter:brightness(1.15);
  margin-bottom:14px;
}

.xcp_footer__name{
  font-weight:900;
  color:#fff;
  font-size:18px;
  margin-bottom:10px;
}

.xcp_footer__desc{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.65);
}

/* Columns wrapper */
.xcp_footer__cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap:36px;
}

.xcp_footer__col{
  min-width:0;
}

.xcp_footer__title{
  color:#fff;
  font-weight:800;
  font-size:12px;
  letter-spacing:.35px;
  text-transform:uppercase;
  margin:0 0 14px;
}

.xcp_footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.xcp_footer__links a{
  color:rgba(255,255,255,.68);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:opacity .18s ease;
}

.xcp_footer__links a:hover{
  opacity:.78;
}

/* Bottom bar */
.xcp_footer__bottom{
  margin-top:44px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-size:13px;
  color:rgba(255,255,255,.55);
}

.xcp_footer__legal{
  display:flex;
  align-items:center;
  gap:10px;
}

.xcp_footer__legal a{
  color:rgba(255,255,255,.65);
  font-weight:700;
  text-decoration:none;
}

.xcp_footer__legal a:hover{ opacity:.8; }

.xcp_footer__dot{
  opacity:.45;
}

/* Responsive */
@media (max-width: 980px){
  .xcp_footer__top{
    grid-template-columns: 1fr;
    gap:34px;
  }

  .xcp_footer__cols{
    grid-template-columns: 1fr;
    gap:26px;
  }

  .xcp_footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}