/* BDNHOST Brand Override — Unified Design System 2026 */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700;800&display=swap');

/* ── New Brand Nav ── */
nav.bdn-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: #0F172A !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  height: 72px;
  display: flex !important;
  align-items: center;
}
nav.bdn-nav .bdn-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
nav.bdn-nav .brand-name {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
nav.bdn-nav .brand-name .bdn { color: #0B4EA2; }
nav.bdn-nav .brand-name .host { color: #F5A623; }
nav.bdn-nav .bdn-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav.bdn-nav .bdn-links a {
  color: #CBD5E1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms ease;
  font-family: 'Heebo', sans-serif;
}
nav.bdn-nav .bdn-links a:hover { color: #fff; }
nav.bdn-nav .bdn-links a.active { color: #fff; }
nav.bdn-nav .bdn-cta {
  background: #F5A623;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  text-decoration: none;
  transition: background-color 150ms ease;
}
nav.bdn-nav .bdn-cta:hover { background: #D4891A; }
nav.bdn-nav .bdn-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
nav.bdn-nav .bdn-hamburger svg {
  width: 24px;
  height: 24px;
  stroke: #CBD5E1;
}

@media (max-width: 768px) {
  nav.bdn-nav .bdn-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: #0F172A;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid #1E293B;
  }
  nav.bdn-nav .bdn-links.open { display: flex; }
  nav.bdn-nav .bdn-hamburger { display: block; }
  nav.bdn-nav .bdn-cta { display: none; }
}

/* ── New Brand Footer ── */
footer.bdn-footer {
  background: #0F172A !important;
  color: #CBD5E1 !important;
  border-top: none !important;
  padding: 0 !important;
  text-align: right !important;
}
footer.bdn-footer .bdn-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}
footer.bdn-footer .bdn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
footer.bdn-footer .bdn-footer-brand .brand-name {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
}
footer.bdn-footer .bdn-footer-brand .brand-name .bdn { color: #0B4EA2; }
footer.bdn-footer .bdn-footer-brand .brand-name .host { color: #F5A623; }
footer.bdn-footer .bdn-footer-brand p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #94A3B8;
  max-width: 320px;
}
footer.bdn-footer .bdn-footer-brand .bdn-contact {
  margin-top: 16px;
  font-size: 13px;
  color: #94A3B8;
}
footer.bdn-footer .bdn-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Heebo', sans-serif;
}
footer.bdn-footer .bdn-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer.bdn-footer .bdn-footer-col a {
  color: #CBD5E1;
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms ease;
}
footer.bdn-footer .bdn-footer-col a:hover { color: #fff; }
footer.bdn-footer .bdn-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: #64748B;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  footer.bdn-footer .bdn-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  footer.bdn-footer .bdn-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
