:root{
  --green:#2f6b53;
  --green-dark:#234e3d;
  --bg:#ffffff;
  --soft:#f6f7f7;
  --text:#0f1412;
  --muted:#5b6460;
  --radius:22px;
  --max:1120px;
  --shadow:0 14px 45px rgba(0,0,0,0.10);
  --shadow-soft:0 10px 30px rgba(0,0,0,0.07);
}

*{box-sizing:border-box;}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}

img{display:block;max-width:100%;}

a{color:inherit;}

.container{
  max-width:var(--max);
  margin:auto;
  padding:0 20px;
}

.narrow{
  max-width:820px;
}

.section{
  padding:92px 0;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 44px auto;
}

.section-head p{
  margin:14px 0 0 0;
  color:var(--muted);
  line-height:1.7;
  font-size:1.05rem;
}

h1,h2,h3{
  letter-spacing:-0.02em;
  margin:0;
}

h1{
  font-size:clamp(2.2rem, 4.6vw, 3.3rem);
  line-height:1.05;
}

h2{
  font-size:clamp(1.8rem, 3.2vw, 2.4rem);
  line-height:1.1;
}

h3{
  font-size:1.15rem;
  margin-top:14px;
  margin-bottom:8px;
}

p{
  color:var(--muted);
  line-height:1.75;
  font-size:1.05rem;
}

strong{
  color:var(--text);
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.86);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.header-inner{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:850;
  letter-spacing:0.2px;
}

.logo-mark{
  width:12px;
  height:12px;
  border-radius:999px;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(47,107,83,0.14);
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav a{
  text-decoration:none;
  color:#1a1f1c;
  font-weight:600;
  opacity:0.85;
}

.nav a:hover{
  opacity:1;
}

.header-cta{
  text-decoration:none;
  font-weight:700;
  background:var(--green);
  color:white;
  padding:11px 16px;
  border-radius:999px;
  box-shadow:var(--shadow-soft);
}

.header-cta:hover{
  background:var(--green-dark);
}

/* HERO */
.hero{
  padding:72px 0 30px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:46px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(47,107,83,0.10);
  color:var(--green-dark);
  font-weight:700;
  margin-bottom:16px;
  width:fit-content;
}

.hero-lead{
  margin:18px 0 0 0;
  font-size:1.12rem;
}

.hero-highlights{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  padding:10px 14px;
  border-radius:999px;
  background:var(--soft);
  border:1px solid rgba(0,0,0,0.06);
  font-weight:650;
  color:#1d2320;
}

.hero-actions{
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-callout{
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}


.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:750;
  border:1px solid transparent;
  transition:transform 0.08s ease, background 0.15s ease, border 0.15s ease;
}

.button:active{
  transform:translateY(1px);
}

.button.primary{
  background:var(--green);
  color:white;
  box-shadow:var(--shadow-soft);
}

.button.primary:hover{
  background:var(--green-dark);
}

.button.ghost{
  background:transparent;
  border:1px solid rgba(0,0,0,0.10);
  color:#1a1f1c;
}

.button.ghost:hover{
  background:var(--soft);
}

.hero-note{
  margin-top:14px;
  font-size:0.98rem;
  color:var(--muted);
}

.hero-note a{
  color:var(--green-dark);
  font-weight:750;
  text-decoration:none;
}

.hero-media{
  position:relative;
}

.hero-media img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  height:520px;
  object-fit:cover;
}

.hero-card{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:14px 16px;
  box-shadow:var(--shadow-soft);
}

.hero-card p{
  margin:6px 0 0 0;
  font-size:0.98rem;
}

/* TRUST */
.trust{
  padding:22px 0 72px 0;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.trust-item{
  background:var(--soft);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:18px 18px;
}

.trust-item strong{
  display:block;
  font-size:1.05rem;
}

.trust-item span{
  display:block;
  margin-top:6px;
  color:var(--muted);
}

/* SOFT SECTION */
.section-soft{
  background:var(--soft);
  border-top:1px solid rgba(0,0,0,0.04);
  border-bottom:1px solid rgba(0,0,0,0.04);
}

.quote{
  margin-top:26px;
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:18px 18px;
  color:#1b201d;
  font-weight:650;
  box-shadow:var(--shadow-soft);
}

/* DIENSTEN */
.diensten-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.dienst{
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:var(--radius);
  padding:22px 20px;
  box-shadow:var(--shadow-soft);
  transition:transform 0.10s ease;
}

.dienst:hover{
  transform:translateY(-2px);
}

.dienst-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(47,107,83,0.12);
  color:var(--green-dark);
  font-size:20px;
  font-weight:800;
}

.dienst p{
  margin:0;
  font-size:1.02rem;
}

.diensten-extra{
  margin-top:26px;
  padding:18px 18px;
  border-radius:18px;
  background:var(--soft);
  border:1px solid rgba(0,0,0,0.06);
  text-align:center;
}

/* TARIEVEN */
.section-dark{
  background:linear-gradient(180deg, var(--green) 0%, #214738 100%);
  color:white;
}

.section-dark .section-head.light p{
  color:rgba(255,255,255,0.86);
}

.section-dark h2{
  color:white;
}

.pricing{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
}

.price-card{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:var(--radius);
  padding:24px 22px;
}

.price-card h3{
  color:white;
  margin-top:0;
}

.price{
  font-size:2.2rem;
  font-weight:900;
  margin:10px 0 6px 0;
}

.price-card p{
  margin:0;
  color:rgba(255,255,255,0.86);
}

.price-card .mini{
  margin-top:10px;
  font-size:0.98rem;
  color:rgba(255,255,255,0.85);
}

.price-card.featured{
  background:white;
  color:var(--text);
  border:none;
  box-shadow:0 18px 55px rgba(0,0,0,0.22);
}

.price-card.featured h3{
  color:var(--text);
}

.price-card.featured p,
.price-card.featured .mini{
  color:var(--muted);
}

.tarief-note{
  margin-top:22px;
  padding:18px 18px;
  border-radius:18px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  color:rgba(255,255,255,0.92);
}

/* CONTACT */
.contact-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:20px;
}

.button.full{
  width:100%;
}

.form{
  background:var(--soft);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:var(--radius);
  padding:20px;
}

.form label{
  display:block;
  margin-bottom:14px;
}

.form span{
  display:block;
  font-weight:700;
  margin-bottom:7px;
  color:#1a1f1c;
}

.form input,
.form textarea{
  width:100%;
  padding:13px 14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.10);
  background:white;
  font-size:1rem;
  outline:none;
}

.form input:focus,
.form textarea:focus{
  border-color:rgba(47,107,83,0.55);
  box-shadow:0 0 0 5px rgba(47,107,83,0.12);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.form-note{
  margin-top:14px;
  font-size:0.95rem;
}

/* FOOTER */
.footer{
  background:var(--soft);
  border-top:1px solid rgba(0,0,0,0.06);
  padding:38px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  display:block;
  text-decoration:none;
  color:#2a322e;
  opacity:0.85;
  margin-bottom:7px;
  font-weight:650;
}

.footer-links a:hover{
  opacity:1;
}

.footer-muted{
  color:var(--muted);
}

/* MOBILE */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-media img{
    height:420px;
  }

  .trust-grid{
    grid-template-columns:1fr;
  }

  .diensten-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .pricing{
    grid-template-columns:1fr;
  }

  .contact-actions{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .nav{
    display:none;
  }

  .header-cta{
    padding:10px 14px;
  }

  .diensten-grid{
    grid-template-columns:1fr;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:70px 0;
  }
}
