/* =========================
   WebSterk-look (tweak hier)
   ========================= */
:root{
  /* WebSterk exacte kleuren uit screenshot */
  --ws-blue: #264059;
  --ws-red:  #C6303C;
  --ws-green:#3E9F27;
  --ws-bg:   #F4F4F4;

  /* Mapping voor je pagina */
  --brand:   var(--ws-green); /* primaire CTA (zoals 'Neem contact op') */
  --brand-2: var(--ws-blue);  /* header/topbar/hero */
  --accent:  var(--ws-red);   /* rood accent */
  --text:    #0f172a;
  --textw:    #ffffff;

  --bg:      var(--ws-bg);
  --card:    #ffffff;
  --muted:   #5b677a;
  --border:  rgba(15,23,42,.12);

  --radius: 16px;
  --shadow: 0 12px 30px rgba(15, 23, 42, .10);
  --container: 1100px;
}
h21{
  color:var(--textw);
}
/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:0 18px}

/* Topbar */
.topbar{
  background: var(--ws-blue);
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.topbar__inner{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar__link{color:#fff;text-decoration:underline;text-underline-offset:2px}
.topbar__sep{opacity:.7}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--accent); /* WebSterk rode lijn */
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand__logo{
  width:135px;
  height:42px;
  object-fit:contain;
}
.brand__name{font-weight:800;letter-spacing:.2px}
.brand__tag{display:block;font-size:12px;color:var(--muted);margin-top:1px}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav__link{
  font-weight:600;
  color: rgba(15,23,42,.82);
  padding:10px 10px;
  border-radius:12px;
}
.nav__link:hover{background: rgba(31,99,198,.08)}
.nav__cta{
  margin-left:6px;
  background: var(--brand);
  color:#fff;
  font-weight:800;
  padding:11px 14px;
  border-radius:999px;
  box-shadow: 0 10px 18px rgba(31,99,198,.22);
}
.nav__cta:hover{filter:brightness(.95)}

/* Mobile nav */
.nav-toggle{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px;
}
.nav-toggle span{
  display:block;
  height:2px;
  background: rgba(15,23,42,.70);
  margin:6px 0;
  border-radius:99px;
}
.mobile-nav{
  border-top:1px solid var(--border);
  background:#fff;
}
.mobile-nav__inner{
  display:grid;
  gap:10px;
  padding:14px 0;
}
.mobile-nav__link{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  font-weight:700;
}
.mobile-nav__cta{
  text-align:center;
  padding:12px 12px;
  border-radius:999px;
  background: var(--brand);
  color:#fff;
  font-weight:900;
}

/* Hero */
.hero{
  padding: 42px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items:start;
}
.hero h1{
  font-size: clamp(28px, 3.4vw, 55px);
  color: var(--brand-2);
  line-height:1.08;
  margin: 0 0 14px;
}
.lead{
  margin: 10px 0;
  font-size: 18px;
  color: rgba(15,23,42,.86);
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.trust{
  margin: 18px 0 0;
  padding: 0;
  list-style:none;
  display:flex;
  gap:10px 18px;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight:700;
  font-size: 14px;
}
.trust li{
  position:relative;
  padding-left:18px;
}
.trust li::before{
  content:"✓";
  position:absolute;
  left:0;top:0;
  color: var(--brand);
}

/* Media cards */
.hero__media{
  display:grid;
  gap:14px;
}
.media-card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.media-card img{
  width:100%;
  height: 320px;
  object-fit: cover;
}
.media-card--small img{height: 194px}

/* Sections */
.section{
  padding: 34px 0;
}
.section--alt{
  background: #26425B;              /* WebSterk blauw */
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.section--alt,
.section--alt h2,
.section--alt h3,
.section--alt p,
.section--alt li,
.section--alt a,
.section--alt summary{
  color: #fff;
}

.section--alt .section__sub{
  color: rgba(255,255,255,.85);
}

.section--alt .checklist{
  color: rgba(255,255,255,.92);
}

.section--alt .checklist li::marker{
  color: #fff;
}

.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  font-size: clamp(22px, 2.2vw, 30px);
  margin:0 0 8px;
}
.section__sub{
  margin:0;
  color: var(--muted);
  font-size: 16px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px}
.card p{margin:0;color: rgba(15,23,42,.82)}

/* Two-col */
.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
.highlight{
  background: rgba(31,99,198,.06);
  border: 1px solid rgba(255,255,255,255);
  border-radius: var(--radius);
  padding: 18px;
}
.checklist{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,.86);
  font-weight:600;
}
.highlight__img{
  margin-top: 14px;
  border-radius: 14px;
  overflow:hidden;
  border:1px solid var(--border);
}
.highlight__img img{height: 255px; object-fit: cover}

/* FAQ */
.faq{
  display:grid;
  gap:10px;
  margin-top: 12px;
}
.faq__item{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.faq__item summary{
  cursor:pointer;
  font-weight:900;
}
.faq__item p{
  margin:10px 0 0;
  color: rgba(15,23,42,.82);
}

/* Final CTA */
.final-cta{
  margin-top: 22px;
  background: linear-gradient(0deg, rgba(31,99,198,.10), rgba(31,99,198,.04));
  border:1px solid rgba(31,99,198,.18);
  border-radius: calc(var(--radius) + 6px);
  padding: 20px;
  text-align:center;
}
.final-cta h2{
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 28px);
}
.final-cta p{margin:0 0 14px;color: rgba(15,23,42,.82)}
.fineprint{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .06s ease, filter .15s ease, background .15s ease;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: var(--brand);
  color:#fff;
  box-shadow: 0 12px 20px rgba(31,99,198,.22);
}
.btn--primary:hover{filter:brightness(.96)}
.btn--ghost{
  background: #fff;
  border-color: var(--border);
  color: rgba(15,23,42,.86);
}
.btn--ghost:hover{background: rgba(31,99,198,.06)}
.btn--large{padding: 14px 18px; font-size: 16px}

.btn--primary{ background: var(--ws-green); color:#fff; }
.btn--primary:hover{ filter:brightness(.96); }

.btn--danger{ background: var(--ws-red); color:#fff; }
.btn--danger:hover{ filter:brightness(.96); }

/* Section CTA */
.section__cta{
  margin-top: 16px;
  display:flex;
  justify-content:flex-start;
}

/* Footer */
.footer{
  background: var(--brand-2);
  color: rgba(255,255,255,.92);
  margin-top: 20px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
  padding: 26px 0;
}
.footer__logo{
  width:135px;height:42px;
  object-fit:contain;
  background-color: white;
  padding: 2px;
  margin-bottom: 10px;
}
.footer__col h3{margin:0 0 10px}
.footer__col ul{margin:0;padding-left:18px}
.footer a{color:#fff;text-decoration:underline;text-underline-offset:2px}
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.18);
}
.footer__bottom-inner{
  display:flex;
  gap:10px;
  justify-content:center;
  padding: 12px 0;
  flex-wrap:wrap;
  font-size: 14px;
  opacity: .95;
}
.footer__sep{opacity:.7}

/* Responsive */
@media (max-width: 980px){

  /* algemene responsive dingen die je al had */
  .hero__grid{grid-template-columns: 1fr; }
  .media-card img{height: 260px}
  .cards{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .brand{min-width: 0}

  /* =========================
     Mobile header upgrade
  ========================= */
@media (max-width: 980px){
  /* extra lucht in de header */
  .header .container{
    padding-left: 22px;
    padding-right: 22px;
  }

  /* zorg dat header-inner niet “plakt” */
  .header__inner{
    padding: 12px 0;
  }
}
  /* Topbar: 1 regel, compact en scrollbaar */
  .topbar{
    position: sticky;
    top: 0;
    z-index: 60;
  }
  .topbar__inner{
    justify-content: flex-start;
    gap: 14px;
    padding: 10px 12px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap; /* belangrijk: voorkomt die lelijke regeleindes */
  }
  .topbar__sep{
    display: none; /* die puntjes weg op mobiel */
  }

  /* Header: strakkere balk */
  .header{
    z-index: 70;
    background: #fff;
    backdrop-filter: none;  /* op mobiel vaak net iets strakker */
  }
  .header__inner{
    padding: 12px 0;
    gap: 10px;
  }

  /* Logo: jij gebruikt een breed logo, dus lager maken en laten schalen */
  .brand__logo{
    width: 120px;
    height: 34px;
  }

  /* Als je brand__text gebruikt, zou ik die op mobiel verbergen */
  .brand__text{
    display: none;
  }

  /* Hamburger: strak en clickable */
  @media (max-width: 980px){
  .nav-toggle{
    display: inline-flex;
    flex-direction: column;      /* BELANGRIJK: streepjes onder elkaar */
    align-items: center;
    justify-content: center;
    gap: 6px;                    /* nette ruimte tussen streepjes */
    width: 52px;
    height: 52px;                /* genoeg hoogte zodat niets overlapt */
    padding: 0;                  /* margins/gap regelen spacing, niet padding */
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.15);
    background: #fff;
  }

  .nav-toggle span{
    display: block;
    width: 26px;
    height: 3px;
    margin: 0;                   /* weg met margin, gap doet het werk */
    background: rgba(15,23,42,.70);
    border-radius: 99px;
  }

  /* extra ruimte links/rechts in header */
  .header .container{
    padding-left: 22px;
    padding-right: 22px;
  }
}

  /* Mobile menu: als nette drawer */
  .mobile-nav{
    border-top: 1px solid rgba(15,23,42,.10);
    background: #fff;
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
  }
  .mobile-nav__inner{
    padding: 14px 0 18px;
    gap: 10px;
  }
  .mobile-nav__link{
    padding: 14px 14px;
    border-radius: 14px;
    font-weight: 800;
  }
  .mobile-nav__cta{
    padding: 14px 14px;
    font-weight: 900;
  }
}
@media (max-width: 980px){
  .topbar{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important}
}
/* =========================
   Footer: mobiel beter leesbaar
========================= */
@media (max-width: 980px){
  .footer__grid{
    grid-template-columns: 1fr;   /* alles onder elkaar */
    gap: 22px;
    padding: 22px 0;
  }

  /* meer ruimte aan de zijkanten (container heeft al padding, maar dit helpt net wat extra in de footer) */
  .footer .container{
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer__brand p{
    margin-top: 8px;
    line-height: 1.7;
  }

  .footer__col h3{
    margin-bottom: 12px;
  }

  .footer__col ul{
    padding-left: 18px;
    margin: 0;
  }

  .footer__col li{
    margin: 8px 0;              /* meer lucht tussen regels */
    line-height: 1.7;
  }

  .footer__bottom-inner{
    justify-content: center;
    gap: 10px 14px;
    padding: 14px 0;
    text-align: center;
  }

  /* optioneel: scheidingspuntjes iets subtieler op mobiel */
  .footer__sep{
    opacity: .55;
  }
}

