/* Mobile-only footer (separate markup from desktop footer) */

.mobile-footer { display: none; }

@media (max-width: 900px) {
  .site-footer { display: none !important; }
  .mobile-footer { display: block; }
}

.mobile-footer {
  background: #070b16;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 26px 0;
}

.mobile-footer__top {
  display: grid;
  gap: 12px;
}

.mobile-footer__logo {
  height: 54px;
  width: auto;
}

.mobile-footer__blurb {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 14px;
}

.mobile-footer__cta {
  display: grid;
  gap: 10px;
}

.mobile-footer__cta .btn { width: 100%; }

.mobile-footer__sections {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.mobile-footer__section {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.mobile-footer__summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 12px;
  font-weight: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-footer__summary::-webkit-details-marker { display: none; }

.mobile-footer__summary::after {
  content: '›';
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 160ms ease;
  color: rgba(255, 255, 255, 0.70);
  font-size: 20px;
  line-height: 1;
}

.mobile-footer__section[open] .mobile-footer__summary::after {
  transform: rotate(-90deg);
}

.mobile-footer__content {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.mobile-footer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-footer__link:hover {
  background: rgba(0, 0, 0, 0.30);
}

.mobile-footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
