html{
  scroll-behavior:smooth;
}

:root{
  --container-max:1300px;
  --container-padding:clamp(16px,3vw,32px);
  --container-padding-mobile:16px;
  --section-space:clamp(48px,6vw,88px);
  --section-space-tablet:40px;
  --section-space-mobile:32px;
  --content-gap:clamp(24px,3vw,40px);
  --content-gap-tablet:28px;
  --content-gap-mobile:20px;
  --text-gap:16px;
  --card-padding:clamp(20px,2.4vw,32px);
  --button-space:16px;
  --image-bottom-space:8px;
  --radius-card:14px;
  --radius-image:10px;
}

body{
  margin:0;
  font-family:Arial,sans-serif;
  background:#ffffff;
}

img{
  max-width:100%;
  height:auto;
}

#montageprijs{
  scroll-margin-top:60px;
}

.section{
  padding:var(--section-space) var(--container-padding);
  background:#ffffff;
  box-sizing:border-box;
}

.section > *{
  max-width:var(--container-max);
  margin:0 auto;
}

.btn{
  width:fit-content;
  min-height:44px;
  padding:10px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-sizing:border-box;
  background:#43a047;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-size:14px;
  font-weight:600;
  font-family:Arial,sans-serif;
  text-decoration:none;
  appearance:none;
  -webkit-appearance:none;
  transition:background 0.2s ease, transform 0.2s ease;
}

.btn:hover{
  background:#388e3c;
  transform:translateY(-1px);
}

@media (max-width:768px){
  .section{
    padding:var(--section-space-mobile) var(--container-padding-mobile);
  }

  .btn{
    min-height:44px;
    font-size:14px;
  }
}

.top-blokken-section{
  background:#f7f8fa;
  padding:40px 0;
}

.top-blokken{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);
  gap:var(--content-gap);
  width:100%;
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 var(--container-padding);
  align-items:stretch;
  box-sizing:border-box;
}

.top-blok{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:32px 40px;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
  box-sizing:border-box;
}

.top-blokken .top-blok:last-child{
  padding-top:60px;
}

.top-blok .highlight{
  font-size:32px;
  font-weight:700;
  line-height:1.25;
  margin-bottom:18px;
  color:#111827;
}

.top-blok p{
  font-size:17px;
  line-height:1.7;
  color:#4b5563;
}

.stap{
  display:grid;
  grid-template-columns:32px 1fr;
  align-items:center;
  column-gap:12px;
  margin-bottom:20px;
}

.stap div:last-child{
  font-size:16px;
  line-height:1.5;
  color:#374151;
}

.stap-nummer{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#1976d2;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:14px;
}

@media (max-width:1100px){
  .top-blokken{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .top-blokken-section{
    padding-bottom:0;
  }
}



.benefits-section{
  padding-bottom:var(--section-space);
}

.about-section{
  padding-top:var(--section-space);
  padding-bottom:var(--section-space);
}

.content-blok{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:var(--content-gap);
  align-items:stretch;
}

.content-blok-section{
  padding-top:var(--section-space);
  padding-bottom:var(--section-space);
}

.content-text{
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:var(--text-gap);
  height:100%;
}

.content-text-rechts{
  padding-left:0;
}

.content-text p{
  font-size:20px;
  line-height:1.7;
  margin:0;
  color:#333;
}

.content-text .highlight{
  font-size:34px;
  font-weight:700;
  line-height:1.25;
  margin:0;
}

.content-text .btn{
  width:320px;
  min-height:52px;
  margin:var(--button-space) auto 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.content-image{
  width:100%;
  margin:0;
  border-radius:10px;
  overflow:hidden;
  aspect-ratio:16 / 10;
}

.content-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center top;
}

.about{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:var(--content-gap);
  align-items:stretch;
}

.about-text{
  order:1;
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:var(--text-gap);
  height:100%;
}

.about-image{
  order:2;
  border-radius:10px;
  min-height:clamp(320px,38vw,460px);
  overflow:hidden;
  display:flex;
  margin:0;
  align-self:stretch;
}

.about-text p{
  font-size:20px;
  line-height:1.7;
  margin:0;
  color:#333;
}

.about-text .highlight{
  font-size:34px;
  font-weight:700;
  line-height:1.25;
  margin:0;
}

.about-text .btn{
  width:320px;
  min-height:52px;
  margin:var(--button-space) auto 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.map-card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  border:1px solid #eee;
  width:100%;
  height:100%;
  align-self:stretch;
}

#google-map{
  width:100%;
  height:100%;
  min-height:460px;
}

#google-map img,
#google-map .gm-style img{
  max-width:none !important;
  height:auto !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

.faq-section{
  margin-top:0;
  padding-top:var(--section-space);
  padding-bottom:var(--section-space);
}

.faq-wrapper{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:var(--content-gap);
  align-items:stretch;
}

.faq-content{
  order:2;
  margin:0;
}

.faq-image{
  order:1;
  height:auto;
  align-self:stretch;
  overflow:hidden;
  border-radius:10px;
}

.faq-content h2{
  margin-top:0;
}

.faq-cta-section{
  padding:0 var(--container-padding) var(--section-space) var(--container-padding);
  background:white;
  box-sizing:border-box;
}

.faq-cta-wrap{
  max-width:var(--container-max);
  margin:0 auto;
  display:flex;
  justify-content:center;
}

.faq-cta-wrap .btn{
  width:320px;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-sizing:border-box;
}

.faq-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:10px;
}

.faq{
  margin-top:40px;
}

.faq-section h2{
  text-align:left;
}

.section h2{
  margin-bottom:25px;
  font-size:32px;
  text-align:center;
}

.faq details{
  background:#fff;
  border-radius:14px;
  margin-bottom:18px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  border:1px solid #eee;
  padding:20px 24px;
}

.faq summary{
  font-weight:600;
  font-size:17px;
  list-style:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
}

.faq summary::-webkit-details-marker{
  display:none;
}

.faq summary::after{
  content:"›";
  font-size:20px;
  transform:rotate(90deg);
  transition:transform 0.3s ease;
}

.faq details[open] summary::after{
  transform:rotate(-90deg);
}

.faq p{
  margin-top:15px;
  font-size:15px;
  line-height:1.6;
  color:#444;
}

@media (max-width:1100px){
  .intro-tekst ul{
    columns:1;
  }

  .top-blokken{
    grid-template-columns:1fr;
  }

  .content-blok,
  .about,
  .faq-wrapper{
    grid-template-columns:1fr;
    gap:32px;
  }

  .content-text,
  .about-text{
    max-width:none;
    margin-top:0;
    padding-left:0;
  }

  .content-text-rechts{
    padding-left:0;
  }

  .about-text{
    order:1;
  }

  .about-image{
    order:2;
  }

  .content-image{
    min-height:0;
  }

  .about-image,
  .faq-image{
    min-height:0;
  }

  #google-map{
    min-height:320px;
  }
}



.intro-blok{
  display:flex;
  gap:clamp(20px,3vw,30px);
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 var(--container-padding);
  align-items:flex-start;
  box-sizing:border-box;
}

.intro-tekst{
  flex:1;
  line-height:1.5;
}

.intro-tekst h1{
  font-size:26px;
  line-height:1.2;
  margin-bottom:15px;
}

.intro-afbeelding{
  flex:1;
  margin-top:0;
}

.intro-afbeelding img{
  width:100%;
  height:auto;
  border-radius:10px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.intro-tekst ul{
  margin-left:18px;
  column-gap:40px;
}

/* HERO LAYOUT SYSTEEM */



.hero{
  padding:0;
  background:#ffffff;
}

.hero-inner{
  max-width:1300px;
  margin:0 auto;
  padding:0;
  box-sizing:border-box;
  min-height:520px;
  display:flex;
  align-items:center;
  background-image:url('/afbeeldingen/paxkast.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-content{
  max-width:600px;
  padding:60px;
  color:#ffffff;
}

.hero h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
  color:#ffffff;
  text-shadow:0 3px 10px rgba(0,0,0,0.6);
}

.hero p{
  font-size:20px;
  line-height:1.6;
  color:#ffffff;
  margin-bottom:30px;
  text-shadow:0 3px 10px rgba(0,0,0,0.6);
}

@media (max-width:768px){

  .hero{
    padding:0;
  }

  .hero-inner{
    min-height:420px;
    padding:0;
    background-position:center;
  }

  .hero-content{
    padding:32px 20px;
    max-width:100%;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:16px;
  }

}