/* =========================================================
   LeadSprint – Footer (CLEAN / modern / responsive)
========================================================= */



.ls-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.88);

  background: radial-gradient(
      120% 140% at 20% 0%,
      rgba(252,106,0,.18),
      rgba(0,0,0,0) 55%
    ),
    radial-gradient(
      120% 140% at 90% 20%,
      rgba(255,255,255,.06),
      rgba(0,0,0,0) 55%
    ),
    linear-gradient(
      180deg,
      #0b0d10,
      #06070a
    );
}

/* =========================================================
   Grid
========================================================= */

.ls-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

/* responsive */
@media (max-width: 900px) {
  .ls-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

/* =========================================================
   Brand
========================================================= */

.ls-footer__brand img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 14px;
  opacity: .95;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
}

.ls-footer__tagline {
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* =========================================================
   Columns
========================================================= */

.ls-footer__heading {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

.ls-footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ls-footer__links a,
.ls-footer__contact a {
  color: rgba(255,255,255,.70);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color .2s ease, transform .2s ease;
}

.ls-footer__links a:hover,
.ls-footer__contact a:hover {
  color: rgba(255,255,255,.98);
  transform: translateX(2px);
}

.ls-footer__contact p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.72);
}

.ls-footer__contact p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Bottom / Legal bar
========================================================= */

.ls-footer__bottom {
  margin-top: clamp(48px, 6vw, 72px);
  padding: 0;


  margin-top: 28px; /* veel kleiner */
  min-height: 44px; /* strakker */
  display: flex;
  align-items: center;

  border-top: 1px solid rgba(255,255,255,.08);

  font-size: 0.75rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.55);
}

  

.ls-footer__bottom-inner {
  width: 100%;
  min-height: var(--ls-footer-legal-height);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ls-footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ls-footer__legal a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .25s ease;
}

.ls-footer__legal a:hover {
  color: rgba(255,255,255,.95);
}

.ls-footer__sep {
  opacity: .35;
}
.ls-footer.section-lg {
  padding-top: 80px !important;
  padding-bottom: 50px !important;
}