.apple-footer {
  width: 100%;
  background: #000;
  color: #fff;
  margin-top: 80px;
}

.apple-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px 30px;
}

/* TOP GRID */
.apple-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* BRAND */
.apple-footer-brand h2 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;

  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

.apple-footer-brand p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;

  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

/* LINKS */
.apple-footer-links h3,
.apple-footer-contact h3 {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 600;

  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

.apple-footer-links a,
.apple-footer-contact a {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: 0.25s ease;

  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

.apple-footer-links a:hover,
.apple-footer-contact a:hover {
  color: #fff;
}

/* CONTACT TEXT */
.apple-footer-contact p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;

  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

/* SOCIALS */
.apple-footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* BOTTOM */
.apple-footer-bottom {
  padding-top: 28px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;

  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

.wa-icon {
  display: flex;
  align-items: center;
}

/* =========================
   FOOTER RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 1024px){

  .apple-footer-top{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .apple-footer-container{
    padding: 60px 20px 30px;
  }

}

/* MOBILE */
@media (max-width: 768px){

  .apple-footer-top{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .apple-footer-container{
    padding: 50px 18px 25px;
  }

  .apple-footer-brand h2{
    font-size: 26px;
  }

  .apple-footer-brand p{
    font-size: 15px;
    max-width: 100%;
  }

  .apple-footer-links h3,
  .apple-footer-contact h3{
    font-size: 16px;
    margin-bottom: 16px;
  }

  .apple-footer-links a,
  .apple-footer-contact a{
    font-size: 15px;
    margin-bottom: 12px;
  }

  .apple-footer-bottom{
    text-align:center;
    font-size: 13px;
  }

}

/* SMALL MOBILE */
@media (max-width: 480px){

  .apple-footer-container{
    padding: 40px 16px 20px;
  }

  .apple-footer-brand h2{
    font-size: 22px;
  }

}