/* =========================
   Beleggingspand renovatie (kort & duidelijk)
   Past bij styles.css variabelen / buttons
   ========================= */

.bp { padding-top: 80px; }

/* Hero */
.bp-hero{
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 92px 0 46px;
  background: var(--dark);
  color: #fff;
}

.bp-hero__bg{
  position: absolute;
  inset: 0;
  /* Gebruik een eigen afbeelding als je wilt (bijv. homepagepics/optie2.png of project after) */
  background-image: url('Conceptafbeeldingenverkleind/beleggingspandconcept.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.bp-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75));
}

.bp-hero__inner{
  position: relative;
  z-index: 2;
}

.bp-back{
  display: inline-block;
  margin: 0 0 14px;
  text-decoration: none;
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.bp-back:hover{ color:#fff; }

.bp-hero h1{
  margin: 0 0 12px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 900;
}

.bp-lead{
  margin: 0 0 18px;
  max-width: 820px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
}

.bp-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.bp-chip{
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
}

/* Section spacing */
.bp-section{ padding-top: 78px; }

/* Steps (kleine tweaks voor kortere pagina) */
.bp-steps .step p{
  max-width: 320px;
}

/* Actions: 3 knoppen onderaan */
.bp-actions{
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 760px){
  .bp-actions{
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.bp-btn{
  width: 100%;
  justify-content: center;
}

/* Extra noot */
.bp-note{
  margin-top: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}