/* Load Inter (the LN homepage's brand font) so the footer matches the homepage
   even on themes that don't otherwise import it (e.g. the pricing theme only
   loads Saira). @import must precede all rules. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================================
   Site Footer (Global) — replicates the live leadnitro.ai homepage footer.
   Self-contained + heavy !important on text props so it renders identically in
   any theme (pricing or LN) regardless of theme-level resets/overrides.
   ============================================================================ */
.ln-gfooter {
  width: 100%;
  box-sizing: border-box;
  /* Pin Inter everywhere; !important on the text elements below defeats any
     theme h*/a/p font-family overrides that would otherwise bleed in. */
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}
.ln-gfooter * {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}
.ln-gfooter *,
.ln-gfooter *::before,
.ln-gfooter *::after {
  box-sizing: border-box;
}

.ln-gfooter__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
}

.ln-gfooter__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem 3rem;
}

/* ── Brand column ──────────────────────────────────────── */
.ln-gfooter__brand {
  flex: 1 1 16rem;
  max-width: 24rem;
}
.ln-gfooter__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}
.ln-gfooter__logo-img {
  height: 2rem;
  width: auto;
  display: block;
}
.ln-gfooter__logo-text {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}
.ln-gfooter__tagline {
  margin: 0.9rem 0 1.35rem !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

.ln-gfooter__social {
  display: flex;
  gap: 0.65rem;
}
.ln-gfooter__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none !important;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.ln-gfooter__social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  display: block;
}
.ln-gfooter__social-link:hover,
.ln-gfooter__social-link:focus {
  color: #1daf8d !important;
  border-color: #1daf8d;
  background-color: rgba(29, 175, 141, 0.12);
}

/* ── Link columns ──────────────────────────────────────── */
.ln-gfooter__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}
.ln-gfooter__col {
  min-width: 8rem;
}
.ln-gfooter__col-title {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin: 0 0 1rem !important;
  line-height: 1.2 !important;
}
.ln-gfooter__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.ln-gfooter__list li {
  margin: 0 !important;
  padding: 0 !important;
}
.ln-gfooter__link {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  transition: color 0.15s ease;
}
.ln-gfooter__link:hover,
.ln-gfooter__link:focus {
  color: #1daf8d !important;
  text-decoration: none !important;
}

/* ── Bottom bar ────────────────────────────────────────── */
.ln-gfooter__bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ln-gfooter__copy {
  margin: 0 !important;
  font-size: 0.825rem !important;
  line-height: 1.5 !important;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .ln-gfooter__container { padding: 2.5rem 1.25rem 1.75rem; }
  .ln-gfooter__top { flex-direction: column; gap: 2rem; }
  .ln-gfooter__cols { gap: 2rem 2.5rem; }
}
