/* LeadSpark Brand CSS - Extracted from inline styles (Wave M380) */
/* Nav, footer, breadcrumb shared across all articles and pages */

/* --- Sticky Nav --- */
.brand-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.brand-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-nav-logo img {
  height: 32px;
  width: auto;
  border-radius: 4px;
}
.brand-nav-logo .brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}
.brand-nav-logo .brand-name .accent {
  color: #16a34a;
}
.brand-nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.brand-nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.brand-nav-link:hover {
  color: #e2e8f0;
}

/* --- Breadcrumb Bar --- */
.brand-breadcrumb {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 24px;
  font-size: 0.8rem;
  color: #64748b;
}
.brand-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.brand-breadcrumb a:hover {
  color: #16a34a;
}
.brand-breadcrumb .sep {
  margin: 0 6px;
  color: #334155;
}
.brand-breadcrumb .current {
  color: #94a3b8;
}

/* --- Footer --- */
.brand-footer {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 24px 24px;
  margin-top: 3rem;
}
.brand-footer-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.brand-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.brand-footer-logo img {
  height: 24px;
  width: auto;
  border-radius: 3px;
}
.brand-footer-logo .brand-name {
  font-weight: 700;
  color: #e2e8f0;
  font-size: 1rem;
}
.brand-footer-logo .brand-name .accent {
  color: #16a34a;
}
.brand-footer-tagline {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}
.brand-footer-col h4 {
  color: #94a3b8;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}
.brand-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brand-footer-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.brand-footer-link:hover {
  color: #16a34a;
}
.brand-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 32px;
  padding-top: 16px;
  text-align: center;
}
.brand-footer-bottom p {
  color: #475569;
  font-size: 0.75rem;
  margin: 0;
}
