/* ============================================================
   Stade Bouw BV — huisstijl
   Kleuren: donkerblauw #0A1930, accent oranje #F37E13
   ============================================================ */
:root {
  --navy: #0A1930;
  --navy-2: #10233F;
  --navy-3: #182C4E;
  --accent: #F37E13;
  --accent-dark: #D96A08;
  --bg: #F5F7FB;
  --white: #FFFFFF;
  --text: #1C2A3D;
  --muted: #5A6B82;
  --border: #E5EAF2;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(10, 25, 48, .08);
  --shadow-lg: 0 18px 50px rgba(10, 25, 48, .16);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); }

.container { width: min(1180px, 92%); margin-inline: auto; }
.container--narrow { width: min(820px, 92%); }

.text-accent { color: var(--accent); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700; font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(243, 126, 19, .35); }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--outline { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--outline:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-3); color: #fff; }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.02rem; }

/* ---------- Eyebrow / sectiekoppen ---------- */
.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .9rem;
}
.eyebrow--light {
  border: 1px solid rgba(243, 126, 19, .5);
  border-radius: 999px; padding: .35rem .95rem;
}

.section { padding: 5.5rem 0; }
.section--alt { background: var(--bg); }
.section--dark { background: var(--navy); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #B7C2D6; }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section__head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .9rem; }
.section__head p { color: var(--muted); font-size: 1.06rem; }
.section--dark .section__head p { color: #B7C2D6; }
.section__more { text-align: center; margin-top: 2.6rem; font-weight: 700; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: 0 4px 24px rgba(10, 25, 48, .1); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.header__logo img { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav__link { color: var(--navy); font-weight: 600; font-size: .97rem; }
.nav__link:hover { color: var(--accent); }
.nav__cta { margin-left: .6rem; }

.header__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.header__toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .25s; }
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(115deg, var(--navy) 42%, rgba(10, 25, 48, .55) 75%, rgba(10, 25, 48, .25)),
              var(--navy);
  padding: 9.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.hero__title { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 1.1rem 0 1.3rem; }
.hero__text { color: #C7D0E0; font-size: 1.1rem; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 2.2rem; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.6rem; color: #C7D0E0; font-size: .95rem; font-weight: 600; }
.hero__badges li { display: flex; align-items: center; gap: .5rem; color: #C7D0E0; }
.hero__badges svg { color: var(--accent); flex: none; }
.hero__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

/* ---------- Kernbeloftes ---------- */
.promises { background: var(--white); padding: 2.2rem 0; border-bottom: 1px solid var(--border); }
.promises__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.promise { display: flex; align-items: center; gap: .9rem; color: var(--navy); }
.promise svg { color: var(--accent); flex: none; }
.promise strong { display: block; font-size: .98rem; }
.promise span { color: var(--muted); font-size: .87rem; }

/* ---------- Diensten: kaarten ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__img { height: 180px; object-fit: cover; width: 100%; }
.card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.card__body h3 { font-size: 1.18rem; display: flex; align-items: center; gap: .6rem; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(243, 126, 19, .12); font-size: 1.15rem; flex: none;
}
.card__body p { color: var(--muted); font-size: .97rem; }

.tags { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .4rem; }
.tags li {
  background: #EEF2F9; color: var(--navy-3);
  font-size: .8rem; font-weight: 700;
  padding: .32rem .8rem; border-radius: 999px;
}

/* ---------- Partner-blok ---------- */
.partner {
  display: flex; align-items: center; gap: 2.2rem;
  margin-top: 1.8rem; padding: 1.8rem 2.2rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.partner:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.partner img { width: 210px; height: auto; flex: none; }
.partner__text h3 { font-size: 1.25rem; margin-bottom: .5rem; color: var(--navy); }
.partner__text p { color: var(--muted); margin-bottom: .8rem; }
.partner__badge {
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  background: #EEF2F9; color: var(--muted); border-radius: 999px; padding: .25rem .7rem;
  vertical-align: middle; margin-left: .4rem;
}

/* ---------- Projecten ---------- */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.project {
  position: relative; border: 0; padding: 0; cursor: pointer;
  border-radius: var(--radius); overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  text-align: left; font: inherit;
}
.project:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project img { width: 100%; height: 340px; object-fit: cover; object-position: center; transition: transform .35s ease; }
.project:hover img { transform: scale(1.04); }
.project__label {
  position: absolute; inset: 0 0 auto 0;
  padding: 1.2rem 1.3rem 2.4rem;
  background: linear-gradient(rgba(10, 25, 48, .92), transparent);
  color: #fff; display: flex; flex-direction: column; gap: .45rem; align-items: flex-start;
}
.project__label strong { font-family: var(--font-head); font-size: 1.02rem; }
.chip {
  background: rgba(243, 126, 19, .92); color: #fff;
  font-size: .74rem; font-weight: 800; padding: .25rem .7rem; border-radius: 999px;
}

/* ---------- Over ons ---------- */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.about__content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.1rem; }
.about__content p { color: var(--muted); margin-bottom: 1rem; }
.checklist { list-style: none; margin: 1.4rem 0 1.8rem; display: grid; gap: .7rem; }
.checklist li { position: relative; padding-left: 2rem; font-weight: 600; color: var(--navy); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .18rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: rgba(243, 126, 19, .15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F37E13' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / .8rem no-repeat;
}

/* ---------- Werkwijze ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: step; }
.step {
  position: relative;
  background: var(--navy-2); border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius); padding: 2rem 1.6rem 1.8rem;
}
.step__num {
  position: absolute; top: 1.1rem; left: 1.4rem;
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  color: rgba(255, 255, 255, .07);
}
.step__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(243, 126, 19, .16); color: var(--accent);
  margin-bottom: 1.1rem; position: relative;
}
.step h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.step p { font-size: .93rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .9rem; }
.faq__item {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.15rem 1.4rem; box-shadow: var(--shadow);
}
.faq__item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  flex: none; width: 10px; height: 10px;
  border-right: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg); transition: transform .2s ease; margin-right: .3rem;
}
.faq__item[open] .faq__chev { transform: rotate(225deg); }
.faq__item p { color: var(--muted); padding-top: .8rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.25fr; gap: 1.8rem; align-items: start; }
.contact__info { display: grid; gap: 1.1rem; }
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow);
}
.info-card--dark { background: var(--navy); border-color: var(--navy); }
.info-card--dark h3 { color: #fff; }
.info-card--dark p { color: #B7C2D6; }
.info-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: rgba(243, 126, 19, .13); color: var(--accent);
}
.info-card h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.info-card p { color: var(--muted); font-size: .96rem; }

.form {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  display: grid; gap: 1.15rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form__field { display: grid; gap: .4rem; }
.form__field label { font-weight: 700; font-size: .93rem; color: var(--navy); }
.form__field input, .form__field textarea {
  font: inherit; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: .85rem 1rem; background: #FBFCFE;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.form__field input:focus, .form__field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 126, 19, .15);
}
.form__field textarea { resize: vertical; min-height: 130px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { justify-content: center; border: 0; }
.form__submit[disabled] { opacity: .6; cursor: wait; transform: none; }
.form__status { font-weight: 700; font-size: .95rem; min-height: 1.4em; }
.form__status.is-ok { color: #15803D; }
.form__status.is-error { color: #B91C1C; }
.form__privacy { color: var(--muted); font-size: .85rem; }

.map { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map iframe { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #B7C2D6; padding-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__col h3 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer__col a { color: #B7C2D6; display: block; padding: .22rem 0; }
.footer__col a:hover { color: var(--accent); }
.footer__col--brand img { height: 40px; width: auto; margin-bottom: 1rem; background: #fff; border-radius: 10px; padding: .35rem .6rem; }
.footer__col--brand p { font-size: .95rem; max-width: 24rem; }
.footer__line { display: flex; align-items: center; gap: .55rem; padding: .25rem 0; font-size: .95rem; }
.footer__line svg { color: var(--accent); flex: none; }
.footer__line a { display: inline; padding: 0; }
.footer__muted { font-size: .9rem; color: #8FA0BC; margin-top: .6rem; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding: 1.4rem 0; font-size: .88rem; color: #8FA0BC; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(6, 14, 28, .88); }
.lightbox__box {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  width: min(520px, 92vw); box-shadow: var(--shadow-lg);
}
.lightbox__box img { width: 100%; max-height: 68vh; object-fit: cover; }
.lightbox__box figcaption { padding: 1.2rem 1.4rem 1.4rem; display: grid; gap: .35rem; justify-items: start; }
.lightbox__box figcaption strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); }
.lightbox__box figcaption span:last-child { color: var(--muted); font-size: .95rem; }
.lightbox__btn {
  position: absolute; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(10, 25, 48, .65); color: #fff; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.lightbox__btn:hover { background: var(--accent); }
.lightbox__btn--prev { left: 12px; top: 38%; }
.lightbox__btn--next { right: 12px; top: 38%; }
.lightbox__btn--close { right: 12px; top: 12px; font-size: 1.6rem; }

/* ---------- WhatsApp-knop ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Animaties ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero { padding-top: 8rem; }
  .cards, .projects { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .promises__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(10, 25, 48, .12);
    padding: .6rem 5% 1.2rem;
    transform: translateY(-115%); transition: transform .28s ease;
  }
  .nav.is-open { transform: none; }
  .nav__link { padding: .85rem .2rem; border-bottom: 1px solid var(--border); }
  .nav__cta { margin: .9rem 0 0; justify-content: center; }
  .header__toggle { display: flex; }

  .section { padding: 4rem 0; }
  .hero { padding: 7.5rem 0 4rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cards, .projects, .steps, .promises__grid, .footer__grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 2.2rem; }
  .partner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .form { padding: 1.5rem; }
  .project img { height: 260px; }
  .lightbox__btn--prev, .lightbox__btn--next { top: auto; bottom: 118px; }
}

/* ---------- Voor & na vergelijkingsschuif ---------- */
.compare {
  display: grid; grid-template-columns: minmax(0, 400px) 1fr;
  gap: 2.5rem; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.8rem; margin-bottom: 2.4rem;
}
.compare__frame {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 3 / 4; box-shadow: var(--shadow);
  user-select: none; -webkit-user-select: none;
}
.compare__img, .compare__before img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; pointer-events: none;
}
.compare__before {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.compare__tag {
  position: absolute; top: 14px; z-index: 2;
  background: rgba(10, 25, 48, .78); color: #fff;
  font-size: .78rem; font-weight: 800; letter-spacing: .05em;
  padding: .3rem .8rem; border-radius: 999px; pointer-events: none;
}
.compare__tag--voor { left: 14px; }
.compare__tag--na { right: 14px; background: rgba(243, 126, 19, .92); }
.compare__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 3px; margin-left: -1.5px;
  background: #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
  pointer-events: none; z-index: 2;
}
.compare__handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}
.compare__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0; z-index: 3;
}
.compare__text h3 { font-size: 1.35rem; margin: .8rem 0 .7rem; }
.compare__text p { color: var(--muted); }

@media (max-width: 900px) {
  .compare { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.3rem; }
}

/* ---------- Kadastraal splitsen / brandwerendheid ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split__content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.1rem; }
.split__content p { color: var(--muted); margin-bottom: 1rem; }

.sgallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.sgallery__item {
  border: 0; padding: 0; cursor: pointer;
  border-radius: 14px; overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sgallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sgallery__item img { width: 100%; height: 215px; object-fit: cover; display: block; }
.sgallery__item--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .sgallery__item img { height: 150px; }
  .sgallery__item--wide img { height: 180px; }
}

/* ---------- Woning aankopen ---------- */
.checklist--light li { color: #fff; }
.section--dark .checklist li::before {
  background: rgba(243, 126, 19, .22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F37E13' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / .8rem no-repeat;
}
.aankoop__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%; max-height: 520px; object-fit: cover;
}

/* ---------- Linkbanner (doorverwijzing naar voor-en-na pagina) ---------- */
.linkbanner {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  background: var(--bg-card, #fff);
  border: 1px solid rgba(15, 35, 63, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.5rem;
  margin-bottom: 2.2rem;
  text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.linkbanner:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.linkbanner__text { display: flex; flex-direction: column; gap: .15rem; }
.linkbanner__text strong { font-size: 1.05rem; }
.linkbanner__text small { color: var(--muted); }
.linkbanner__cta { margin-left: auto; color: var(--accent); font-weight: 800; white-space: nowrap; }
@media (max-width: 640px) {
  .linkbanner__cta { margin-left: 0; width: 100%; }
  .card__img { height: 160px; }
}

/* ---------- Compacte splitsen-kaart ---------- */
.splitcard {
  background: var(--bg-card, #fff);
  border: 1px solid rgba(15, 35, 63, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 2.2rem;
}
.splitcard__list { margin-bottom: 1.6rem; }
.splitcard__actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.linkbtn {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--accent); font: inherit; font-weight: 800;
  text-decoration: none;
}
.linkbtn:hover { text-decoration: underline; }

/* ---------- Voor & na pagina ---------- */
.voorna { padding-top: 8.5rem; }
.voorna__frame { max-width: 460px; width: 100%; margin: 0 auto 3rem; }
.voorna__hint { text-align: center; color: var(--muted); margin: -1.8rem auto 3rem; max-width: 460px; }
.voorna__resultaat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  max-width: 980px; margin: 0 auto;
}
.voorna__resultaat img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block;
}
.voorna__resultaat figcaption { color: var(--muted); margin-top: .7rem; font-size: .95rem; }
.voorna__cta h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.voorna__cta p { color: var(--muted); margin-bottom: 1.5rem; }
@media (max-width: 900px) {
  .voorna { padding-top: 6.5rem; }
  .voorna__resultaat { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Diensten-kaarten: varianten ---------- */
.card__img--logo {
  object-fit: contain;
  padding: 2.4rem 2rem;
  background: var(--white);
}
.card__link {
  display: inline-block;
  margin-top: .9rem;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}
.card__link:hover { text-decoration: underline; }

/* ---------- Over ons: portret ---------- */
.about__portret { margin: 0; }
.about__portret img { max-height: 560px; object-fit: cover; object-position: top; }
.about__portret figcaption {
  color: var(--muted);
  margin-top: .8rem;
  font-size: .95rem;
}

/* ---------- Dienstenkaart zonder foto (icoon-band) ---------- */
.card__img--icon {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  font-size: 3.2rem;
}
