
.site-footer {
  background: #0f245a;
  color: #fff;
  padding: 50px 24px 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 60px;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.6;
  color: #dbe2ff;
  margin: 20px 0;
}

.footer-logo {
  height: 42px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-socials a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.newsletter h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.newsletter-box {
  display: flex;
  background: #1b2f6a;
  border-radius: 12px;
  padding: 8px;
  gap: 8px;
}

.newsletter-box input {
  flex: 1;
  background: transparent;
  border: 1px solid #4d5f99;
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
}

.newsletter-box button {
  background: #fff;
  color: #0f245a;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
}

.footer-col h4 {
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #dbe2ff;
  text-decoration: none;
}

.footer-brands {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-brands img {
  height: 36px;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 16px;
  text-align: center;
  font-size: 16px;
  color: #c7d1ff;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-brands {
    gap: 20px;
  }
}
#site-footer {
  margin-bottom: 0;
}
