/* ═══════════════════════════════════════════════
   AcquireNow — Universal Nav + Footer Styles
   Single source of truth for all pages
═══════════════════════════════════════════════ */

/* ─── NAV ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,14,46,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.35s;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 70px; filter: brightness(0) invert(1); display: block; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  color: rgba(255,255,255,0.75); font-size: 13px; font-family: 'Inter', sans-serif;
  font-weight: 400; letter-spacing: 0.01em;
  padding: 7px 14px; border-radius: 100px; transition: all 0.2s;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.1); color: #fff; }
.nav-cta {
  padding: 9px 22px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.85);
  color: #000; background: #fff; font-size: 13px; font-weight: 500;
  font-family: 'Inter', sans-serif; letter-spacing: 0.01em; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: rgba(255,255,255,0.9); }

/* ─── FOOTER ─── */
.site-footer { background: #0A0E2E; padding: 80px 48px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-brand img { height: 75px; filter: brightness(0) invert(1); margin-bottom: 24px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; font-weight: 300; }
.footer-contact-links { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; text-decoration: none; }
.footer-contact-links a:hover { color: #fff; }
.footer-col-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #9BA5C0; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; transition: color 0.2s; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .site-nav { padding: 0 20px; height: 64px; }
  .nav-logo img { height: 52px; }
  .nav-links { display: none; }
  .site-footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .site-nav { padding: 0 16px; height: 60px; }
  .nav-logo img { height: 44px; }
  .nav-cta {
    padding: 6px 14px; font-size: 12px; border-radius: 6px;
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
  }
  .site-footer { padding: 48px 16px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-bottom span { font-size: 12px; }
}
