.footer {
  margin-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  height: 58px;
  display: block;
  margin-bottom: 10px;
  transition: transform 0.22s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 18px 60px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: opacity 0.22s ease;
}

.footer-links a:hover {
  opacity: 0.55;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 22px;
  font-size: 14px;
  color: #777;
}

/* ==========================
   Tablet
========================== */

@media (max-width: 1024px) {

  .footer-inner {
    gap: 50px;
  }

}

/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {

  .footer {
    margin-top: 60px;
  }

.footer-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 48px 20px;
}

  .footer-logo {
    height: 46px;
    margin-left: auto;
    margin-right: auto;
  }

.footer-links {
  grid-template-columns: 1fr;
  gap: 16px;
  justify-items: center;
}

}