:root{
  --bg: #EAF6FF;
  --surface: #ffffff;
  --text:rgba(255,255,255,0.9);
  /* --text: #0f172a; */
  --muted: hsl(221, 46%, 71%);
  --primary: #2c8cff;
  --primary-ink: #0b254a;
  --line: #e6ecf2;
  --nav: #e9f3ff; /* lichtblauwe achtergrond voor menu */
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --header-h: 64px;
  --card-offset: 16px;
  --card-bg:#EAF6FF;
}
@media (prefers-color-scheme: dark){
  :root{
    --bg:#EAF6FF; --surface:#ffffff; --text:#0B1B2B; --muted:#a5b4cf; --line:#202a4a;
    --nav:rgba(255,255,255,0.35); --primary:#6aa8ff; --primary-ink:#daf;
  }
}


    /* Niks fancy: zichtbaar op álles */
html,body{margin:0}
body{
  background:#EAF6FF;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6; 
}
/*HEADER EN MENU*/
.site-header{
  position: fixed; top:0; left:0; right:0; z-index:9999;
  background: transparent;
  border-bottom: none;
  backdrop-filter: saturate(1.2) blur(6px);
 
}
body.subpage .nav a {
  color: #0f172a; /* donker op lichte achtergrond */
}

/*RijLayout*/
.nav-row{ display:flex; align-items:center; gap:10px; min-height:64px; padding:0 20px; }
.brand{ font-family: "Poppins", system-ui, sans-serif; display:flex; align-items:center; gap:10px; font-weight:600; }
.brand img{ border-radius:50%; }

/* Menu (desktop) */
.nav{ margin-left:auto; }
.nav ul{ list-style:none; display:flex; gap:10px; margin:0; padding:0; }
.nav a{ font-family: "Poppins", system-ui, sans-serif; font-weight:300;font-size: 0.8rem;  display:block; padding:10px 8px; border-radius:10px; position : relative; text-decoration:none; color:#fff; }
.nav a::after { 
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;                   /* lijntje onder tekst */
  width: 0%;
  height: 2px;                 /* dikte van de lijn */
  background: currentColor;            /* kleur van het lijntje */
  transition: width 0.25s ease;
}
.nav a:hover::after, .nav a.active::after{ background:currentColor; width:100% }
/*Kleur na scroll*/
.site-header.scrolled .nav a {
  color: #333;                /* donkergrijs */
}

/* Dropdown */
.nav .dropdown {
  position: relative;
}
.nav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 5px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 9999;
}
.nav .dropdown-content li {
  list-style: none;
    width: 100%;
     margin: 0;
  padding: 0;
}
.nav .dropdown-content a,
.nav .dropdown-content .disabled {
  display: block;
  font-size: 0.8rem;       /* kleiner font */
  padding: 8px 15px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  white-space: nowrap;     /* voorkomt afbreken naar 2 lijnen */
}
.nav .dropdown-content a:hover {
  background: #fff7f0;
  color: #ff6600;
}

.nav .dropdown-content .disabled {
  color: #aaa;
  cursor: not-allowed;
  font-style: italic;
}
.nav .dropdown:hover .dropdown-content {
  display: block;
}



/* Mobiel (submenu zichtbaar onder elkaar) */
@media(max-width: 920px) {
   .nav .dropdown-content {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .nav .dropdown-content a,
  .nav .dropdown-content .disabled {
    padding: 10px 20px;
    font-size: 0.95rem; /* mobiel iets groter voor klikbaarheid */
  }
}


/* Hamburger: op desktop verborgen, maar *niet* als balk */
.site-header .hamburger{
  appearance:none; -webkit-appearance:none;
  background:transparent; 
  border:0; 
  padding:0; 
  margin-left:auto;
  display:none; /*niet zichtbaar op desktop*/
  flex-direction: column;                          
  align-items:center; 
  justify-content:center;
  gap : 6px;
  width:44px; height:44px; 
  color:"fff"; 
  cursor:pointer;
}
.site-header .hamburger span{
  display:block; 
  width:22px; 
  height:2px;  
  background:currentColor;
}

@media (max-width: 820px){
  /* toon de hamburger */
  .site-header .hamburger{ display:inline-flex; }

  /* menu is dicht */
  .site-header .nav{
    position: fixed;
    inset: 64px 0 auto;                  /* onder de headerbalk */
    background: #fff;
    border-bottom: 1px solid #e6ecf2;
    transform: translateY(-120%);
    transition: transform .22s ease;
    z-index: 9999;
  }
  .site-header .nav ul{ flex-direction:column; padding:12px; }
  .site-header .nav a{ color:#0f172a; padding:12px; border-radius:12px; }


/*toegevoegd voor leerstof
.nav .dropdown-content {
    position: static;
    box-shadow: none;
    border-radius: 0;
}*/
  /* open staat via class op header */
  .site-header.is-open .nav{ transform: translateY(0); }

  .hamburger span:nth-child(1){ background:#fff; }
  .hamburger span:nth-child(2){ background:#fff; }
  .hamburger span:nth-child(3){ background:#fff; }

  /* hamburger → kruisje in open staat */
  .site-header.is-open .hamburger span:nth-child(2){ opacity:0; }
  .site-header.is-open .hamburger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
  .site-header.is-open .hamburger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
}



/*HERO BLOCK*/
   .hero{
      position:relative; 
      isolation: isolate;
      min-height:100vh;
      display:flex;
      align-items:center; 
      padding: 0 20px;
      overflow:hidden;
      
    }
    .hero picture, .hero img{
      position:absolute; 
      /* opacity: 0.85 ; */
      inset:0;
      width:100%; 
      height:100%;
      object-fit:cover; 
      object-position:0% 40%;
      display:block;
      z-index: 0;
      opacity: 1; 
    }

    .hero::before {  /* meert contrast door donkere laag op achtergrond aan te passen met waarde bij background  */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);  /* maakt tekst beter leesbaar */
  z-index: 1;
  pointer-events: none;   /* kliks gaan door */
}

/* Gridcontent boven de achtergrond */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  max-width: 1200px;
  margin: 0 auto;
  margin-top : 80px;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 2;   /* boven de overlay */
}

.hero-text {
  color: #fff;
  max-width: 600px;
  text-align:left;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0 20px;
  font-weight: 500;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 14px 28px;              /* meer body */
  border-radius: 0px;              /* lichte afronding */
  font-weight: 400;                /* bold maar niet te zwaar */
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}

/* Primaire knop */
.btn-primary {
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  border: none;
  background-image: linear-gradient(90deg, #ff7a00, #ff9e42); /* oranje */
  box-shadow: 0 12px 24px rgba(255,122,0,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
}

/* Secundaire knop */
.btn-secondary {
  background: #fff;
  color: #0f172a;
  border: 2px solid #ddd;
}
.btn-secondary:hover {
  border-color: #2c8cff;
  color: #2c8cff;
  transform: translateY(-2px);
}

.hero-text,
.hero-text h1,
.hero-text p,
.hero-buttons .btn {
  font-family: "Poppins", system-ui, sans-serif;
}



    @media (max-width: 600px) {
  .hero img {
    object-position: 50% 50%;
  } 
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-buttons {
    display:flex; flex-direction:column; gap:12px; align-items:stretch;
  }

.hero .hero-buttons .btn { 
  width: 50%;
}

.hero .hero-trust { 
  font-size: .80rem; 
  font-style: italic; 
}

.hero .hero-trust .stars { 
  font-style: normal; 
  letter-spacing: .08em; 
  margin-right: .35rem; 
}

 
    }
    .hero .content{ position:relative; z-index:1; color:#fff; font:600 24px/1.2 system-ui; text-shadow:0 2px 10px rgba(0,0,0,.4); }

/* Trust-regel */
.hero .hero-trust{ 
  margin:10px 0 0; 
  font-size:.75rem; 
  opacity:.8 }
.hero .hero-trust .stars{
  display:inline-block; 
  letter-spacing:.08em; 
  margin-right:.35rem }




/* SCROLL MARGIN zodat de browser er automatisch boven stopt
section[id], div[id], h2[id], #aanpak, #verloop{
  scroll-margin-top: calc(var(--header-h) + 16px);
} */

/*top-padding zodat niets onder de header valt bij gewone scroll:*/
main, .page, .content{
  padding-top: var(--header-h);
}

    

/* Zorg dat de hele sectie wit is */
#aanpak {
  background: #ffffff;      /* witte achtergrond */
  padding: 60px 20px;       /* 60px boven/onder, 20px links/rechts */
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 400;   /* normaal voor lopende tekst */
  font-size: 0.8rem;    /* standaard 16px */
  line-height: 1.6;
}

/* Binnenste container iets smaller maken dan full width */
#aanpak .container {
  max-width: 1100px;        /* bijvoorbeeld, aanpassen naar wens */
  margin: 0 auto;           /* centreert de container */
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 400;   /* normaal voor lopende tekst */
  font-size: 0.8rem;    /* standaard 16px */
  line-height: 1.6;
}

/* Extra witruimte boven de titel */
#aanpak .aanpak-tekst h2 {
  margin-top: 40px;         /* vergroot van 0 naar bv. 40px */
  font-weight: 500;
}

.aanpak-grid{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,520px); /* tekst | foto */
  gap: 28px 40px;
  align-items: start;
}

.aanpak-tekst{
  max-width: 72ch;     /* prettige regellengte */
}

.aanpak-bullets{
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.aanpak-figure{
  margin:0;
  position: sticky;    /* blijft mooi in beeld bij langere tekst, optioneel */
  top: 96px;           /* hoogte ≈ je sticky header */
}

.aanpak-figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 16px;         /* ronde hoeken */
  box-shadow: 0 12px 30px rgba(15,23,42,.12);
  object-fit: cover;
}

/* #aanpak { outline: 3px solid lime; } */

/* Responsive: op mobiel onder elkaar */
@media (max-width: 900px){
  .aanpak-grid{
    grid-template-columns: 1fr;
  }
  .aanpak-figure{
    position: static;
    margin-top: 8px;
  }
}



/*SECTIE VERLOOP*/
#verloop .container {
  max-width: 1100px;        /* bijvoorbeeld, aanpassen naar wens */
  margin: 0 auto;   
  padding : 60px 20px;        
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 400;   /* normaal voor lopende tekst */
  font-size: 0.8rem;    /* standaard 16px */
  line-height: 1.6;
}

/* Extra witruimte boven de titel */
#verloop .verloop-tekst h2 {
  margin-top: 24px;         /* vergroot van 0 naar bv. 40px */
  font-weight: 500;
}

/* Layout voor 'Hoe verloopt een online bijles?' */
.verloop-grid{
  display:grid;
  grid-template-columns: minmax(300px,520px) minmax(0,1fr); /* foto | tekst */
  gap: 28px 40px;
  align-items: start;
}

.verloop-tekst{
  max-width: 72ch;
}

.verloop-figure{
  margin:0;
  position: sticky;
  top: calc(var(--header-h) + 16px); /* i.p.v. vaste 96px */
  align-self: start; /* voorkomt rare uitlijning */
}

.verloop-figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15,23,42,.12);
  object-fit: cover;
}

/* Responsief: onder elkaar op mobiel */
@media (max-width: 900px){
  .verloop-grid{
    grid-template-columns: 1fr;
  }
  .verloop-figure{
    order:-1; /* foto boven de tekst */
    margin-bottom: 16px;
    position : static;/*plakken van image uitschakelen*/
   }
}


/* SECTIE PRIJS*/

/* laat anchors mooi onder je vaste header landen */
#prijs { 
  scroll-margin-top: calc(var(--header-h, 64px) + 16px); 
  background: #fff; 
  padding: clamp(16px, 2.5vw, 32px) 20px; 
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 400;   /* normaal voor lopende tekst */
  font-size: 0.8rem;    /* standaard 16px */
  line-height: 1.6;
}

#prijs .container{
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;         /* consistent leesbaar */
  line-height: 1.7;
}

.price-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px; /* ruimte naar bullets */
}


.price-grid{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,420px); /* tekst | kaart */
  gap: 28px 40px;
  align-items: start;
}

.price-text h2{
  margin: 0 0 12px 0;
  font-weight: 500;
  line-height: 1.2;
  color: #0f172a;            /* donkere kop op wit */
}

.price-text p{ 
  margin: 0 0 14px 0; 
  color: #0b254a; 
}

/* Kaart met samenvatting */
.price-card{
  border-top: 4px solid var(--primary, #2c8cff);
  border: 1px solid var(--line, #e6ecf2);
  border-radius: var(--radius, 16px);
  box-shadow: var(--shadow, 0 10px 30px rgba(15,23,42,.08));
  padding: 20px 18px;
  margin-top: var(--card-offset);      /* duwt de kaart omlaag */
  background: var(--card-bg);          /* eigen achtergrondkleur */
  border-color: #e6ecf2;               /* subtiele rand */
}

.price-badge{
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  font-size: clamp(22px, 4.2vw, 30px);
  line-height: 1.1;
  color: var(--primary-ink, #0b254a);
  margin-bottom: 0;
}

.price-badge span{
  font-weight: 500;
  font-size: .6em;
  opacity: .8;
}

.price-points{
  margin: 10px 0 14px 1.2rem;
  padding: 0;
  color: #0b254a;
}
.price-points li{ 
  margin: 6px 0; 
}

.price-note{
  font-size: .9em;
  color: var(--muted, #525f7a);
  border-top: 1px dashed var(--line, #e6ecf2);
  padding-top: 10px;
}
.price-thumb{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line, #e6ecf2);
  box-shadow: var(--shadow, 0 10px 30px rgba(15,23,42,.08));
  background: #fff;
  margin-left: auto; /*image helemaal rechts*/
}

/* Responsief: onder elkaar */
@media (max-width: 900px){
  .price-grid{ grid-template-columns: 1fr; }
  .price-card{ margin-top: 8px; }
  
}

/* Visually hidden helper voor h3 in de kaart */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}



/* CTA-sectie */


/* CTA-knoppen: icon-only */
/* ===== Kennismakings-CTA ===== */
/* ===== Combi CTA + Contact (2 kolommen) ===== */
/* ===== CTA visual upgrade ===== */
#cta-plan-contact { 
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 400;   /* normaal voor lopende tekst */
  font-size: 0.8rem;    /* standaard 16px */
  line-height: 1.6;
}
/* sectieachtergrond met zachte blob + lichte gradient */
#cta-plan-contact{ scroll-margin-top: calc(var(--header-h,64px)); padding: clamp(12px,2vw,12px) 20px; background: linear-gradient(180deg,#f0f7ff,#fff); }
#cta-plan-contact .container{ max-width:1100px; margin:0 auto; }
#cta-plan-contact .two-grid{ display:grid; grid-template-columns: minmax(0,1fr) minmax(360px,520px); gap:28px 40px; align-items:start; }
#cta-plan-contact .card{ background:#fff; border:1px solid var(--line,#e6ecf2); border-radius:16px; box-shadow: var(--shadow,0 10px 30px rgba(15,23,42,.08)); padding:16px; }
#cta-plan-contact .muted{ color: var(--muted,#525f7a); }
#cta-plan-contact .cta-badges{ display:flex; gap:8px; flex-wrap:wrap; margin:6px 0 12px; padding:0; list-style:none; }
#cta-plan-contact .cta-badges li{ padding:6px 10px; border-radius:999px; background: rgba(44,140,255,.10); border:1px solid rgba(44,140,255,.20); font-weight:600; }


/* Form (floating labels) */
#cta-plan-contact .form{ display:grid; gap:12px; }
#cta-plan-contact .field-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
#cta-plan-contact .field{ position:relative; }
#cta-plan-contact .field label{ position:absolute; left:12px; top:12px; padding:0 0px; background:#fff; color: var(--muted,#6b7280); font-size:.95rem; pointer-events:none; transition:.18s; }
#cta-plan-contact input, #cta-plan-contact textarea{ width:100%; }
#cta-plan-contact input{
  height: 40px;
  line-height: 1.4;
}

/* textarea 200px hoog */
#cta-plan-contact textarea{
  height: 120px;   
  padding: 15px 5px 0px;    
  line-height: 1.5;
  resize: vertical;    /* mag groter getrokken worden */
}
#cta-plan-contact .field:focus-within label,
#cta-plan-contact .field:has(input:not(:placeholder-shown)) label,
#cta-plan-contact .field:has(textarea:not(:placeholder-shown)) label{ top:-8px; font-size:.8rem; color: var(--primary,#2c8cff); }
#cta-plan-contact input:focus, #cta-plan-contact textarea:focus{ border-color: rgba(44,140,255,.45); box-shadow: 0 0 0 4px rgba(44,140,255,.12); outline: none; }
#cta-plan-contact .hp{ position:absolute; left:-9999px; opacity:0; height:0; width:0; }

/* Oranje palette + achtergrond alleen voor de CTA-sectie */
#cta-plan-contact{
  --cta1: #ff7a00;            /* diep oranje */
  --cta2: #ff9e42;            /* lichtere oranje */
  --cta-blob: #ffb36a33;      /* transparante glow */

  /* warmere achtergrond i.p.v. blauw */
  background:
    radial-gradient(900px 420px at 85% -10%, var(--cta-blob), transparent 60%),
    linear-gradient(180deg, #fff5e6, #ffffff 60%);
}

/* Badges laten meekleuren met oranje */
#cta-plan-contact .cta-badges li{
  background: color-mix(in srgb, var(--cta1) 12%, #fff);
  border-color: color-mix(in srgb, var(--cta1) 22%, #e6ecf2);
}

/* Dot-pattern (als je die gebruikt) ook oranje maken */
#cta-plan-contact::after{
  background-image: radial-gradient(#ffc97a 1.5px, transparent 1.6px);
}

/* Knoppen blijven automatisch mee-oranje,
   omdat je eerder #cta-plan-contact .btn.btn-primary al var(--cta1/--cta2) gebruikt */

/* Icon-only channel buttons */
#cta-plan-contact .channels.icon-only{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin:10px 0 14px;
}
#cta-plan-contact .btn-circle{
  width:52px; height:52px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
#cta-plan-contact .btn-circle:hover{ transform: translateY(-1px); filter:brightness(.98); box-shadow:0 12px 24px rgba(0,0,0,.12); }
#cta-plan-contact .btn-circle:focus-visible{ outline:3px solid rgba(255,255,255,.7); outline-offset:2px; }

/* icon kleur/maat */
#cta-plan-contact .btn-circle svg{ width:22px; height:22px; fill:#fff; }

/* merk-kleuren */
#cta-plan-contact .btn-wa{ background:#25D366; }
#cta-plan-contact .btn-mail{ background:#ff8a00; } /* matcht je oranje CTA; evt. #333 met witte icon */

/* algemene stijl (als je die nog niet had) */
.trust-quote{margin:10px 0 12px;color:#0b254a;font-style:italic;opacity:.95}
.trust-quote blockquote{margin:0}
.trust-quote figcaption{font-style:normal;opacity:.75;margin-top:4px}

/* iets compacter onder de icon buttons */
.trust-quote.compact{ margin-top:8px; }

/* subtiel CTA-accent (oranje streepje links) */
#cta-plan-contact .trust-quote blockquote{
  border-left:2px solid color-mix(in srgb, var(--cta1, #ff7a00) 65%, #fff);
  padding-left:8px;
}


@media (max-width:900px){
  #cta-plan-contact .two-grid{ grid-template-columns:1fr; gap:16px; }
  #cta-plan-contact .field-row{ grid-template-columns:1fr; }
}

/* ===== Testimonial ===== */
#ervaringen{ 
  background:#EAF6FF; 
  padding: clamp(12px, 2vw, 24px) 20px;
  scroll-margin-top: calc(var(--header-h, 64px));
   }
#ervaringen .container{ max-width:1100px; margin:0 auto; }
#ervaringen h2{ margin:0 0 12px; color:#0f172a;  font-size: 0.9rem;font-weight: 600;   }

.testi-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}

.testi-card{
  background:#fff;
  border:1px solid var(--line,#e6ecf2);
  border-radius: var(--radius,16px);
  box-shadow: var(--shadow,0 10px 30px rgba(15,23,42,.08));
  padding:16px;
  font-size: 0.8rem;
}

.testi-head{ display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.avatar{
  width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center;
  background:#e5e7eb; color:#0b254a; font-weight:700;
}
.avatar.img{ object-fit:cover; }

.who .name{ font-weight:700; color:#0b254a; line-height:1.1; }
.stars{ color:#f59e0b; letter-spacing:.08em; font-size:0.95rem; }

.text{ margin:0 0 8px; color:#0b254a; font-style:italic; }
.meta{ color: var(--muted,#525f7a); font-size:.9rem; }

/* Pastel avatar-kleuren met goede contrastkleur */
#ervaringen .testi-card:nth-child(3n+1) .avatar{ 
  background:#ffe4e6; color:#9f1239;       /* roze */
}
#ervaringen .testi-card:nth-child(3n+2) .avatar{ 
  background:#dcfce7; color:#065f46;       /* groen */
}
#ervaringen .testi-card:nth-child(3n) .avatar{   
  background:#dbeafe; color:#1e40af;       /* blauw */
}

/* optioneel: subtiele ring */
#ervaringen .avatar{
  position:relative; box-shadow:0 6px 14px rgba(15,23,42,.08);
}
#ervaringen .avatar::after{
  content:""; position:absolute; inset:-2px; border-radius:50%;
  border:2px solid rgba(255,255,255,.8);
}

@media (max-width: 900px){
  .testi-grid{ grid-template-columns:1fr; }
}




/* TEAM */
#team{
  scroll-margin-top: calc(var(--header-h, 64px));
  background: #ffffff;
  padding: clamp(12px, 2vw, 24px) 20px;
  font-family: "Poppins", system-ui, sans-serif;
}

#team .container{
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  line-height: 1.7;
}
/* 2 kolommen: tekst | badge (200px) */
#team .team-grid{
  display: grid;
  grid-template-columns: minmax(0,1fr) 200px;
  gap: 28px 40px;
  align-items: start;            /* boven uitlijnen */
}

/* expliciet naast elkaar op rij 1 */
#team .team-text { grid-column: 1; grid-row: 1; }
#team .team-badge{ grid-column: 2; grid-row: 1; justify-self: end; align-self: start;margin-top : 60px;
  width:100px; height:100px; margin:1;
  border-radius:16px; overflow:hidden;
  border:1px solid var(--line, #a5b4cf);
  box-shadow: var(--shadow, 0 10px 30px rgba(15,23,42,.08));
  background:#fff;
}
#team .team-badge img{ width:100%; height:100%; object-fit:cover; }

/* mobiel: onder elkaar en badge iets kleiner */
@media (max-width: 900px){
  #team .team-grid{ grid-template-columns: 1fr; gap:16px; }
  #team .team-badge{ grid-column:auto; grid-row:auto; justify-self:center; width:160px; height:160px; margin-top:25px; }
}

/*FAQ*/
/* ===== FAQ sectie ===== */
#faq{
  background:#EAF6FF;
  scroll-margin-top: calc(var(--header-h, 64px));
  padding: clamp(12px, 2vw, 24px) 20px;
  font-family:"Poppins", system-ui, sans-serif;
}
#faq .container{
  max-width:1100px; margin:0 auto;
  font-size:.8rem; line-height:1.6;
}
#faq h2{
  margin:0 0 16px 0;
  font-size:1.0rem;
  font-weight:600; color:#0f172a;
}

/* lijst */
.faq-list{ display:grid; gap:12px; }

/* accordion items (zonder JS) */
.faq-item{
  border:1px solid var(--line, #e6ecf2);
  border-radius: var(--radius, 16px);
  background:#fff;
  box-shadow: var(--shadow, 0 10px 30px rgba(15,23,42,.08));
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;           /* verberg standaard marker */
  display:flex; align-items:center; gap:10px;
  padding:14px 16px;
  font-weight:600; color: var(--primary-ink, #0b254a);
  position:relative;
}
.faq-item summary::-webkit-details-marker{ display:none; }

/* chevron */
.faq-item summary::after{
  content:"";
  width:10px; height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(-45deg);
  margin-left:auto;
  opacity:.7;
  transition: transform .2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }

.faq-body{
  padding: 0 16px 14px 16px;
  color:#0b254a;
}
.faq-body p{ margin: 0; }


/* Mini-footer */
.foot-mini{
  background:#fff;
  border-top:1px solid var(--line, #e6ecf2);
  padding:10px 20px;
  font-family:"Poppins", system-ui, sans-serif;
  font-size:.78rem;
  color:var(--muted, #525f7a);
}
.foot-mini .container{
  max-width:1100px; margin:0 auto;
  display:flex; gap:8px; flex-wrap:wrap;
  align-items:center; justify-content:center;
}
.foot-mini address{ margin:0; font-style:normal; }
.foot-mini a{ color:inherit; text-decoration:none; }
.foot-mini a:hover{ text-decoration:underline; }
.foot-mini span[aria-hidden="true"]{ padding:0 6px; opacity:.65; }



/* Basisknop (geldt overal) */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.9rem 1.1rem; border-radius:12px; border:1px solid var(--line, #e6ecf2);
  font:600 0.95rem/1.1 "Poppins", system-ui, sans-serif;
  cursor:pointer; text-decoration:none; background:#fff; color:#0b254a;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn:hover{ filter:brightness(.98); }
.btn:disabled{ opacity:.6; cursor:not-allowed; }

/* Primair (sitebreed) */
.btn-primary{
  background-color: var(--primary, orange); color:#fff; border-color: transparent;
  box-shadow: 0 8px 22px rgba(44,140,255,.22);
}

.hero .btn.btn-primary{
  background: linear-gradient(90deg, #ff7a00, #ff9e42);
  border: none;
  box-shadow: 0 12px 24px rgba(255,122,0,.25);
  border-radius: 999px;
}
/* Extra mooi in de CTA-sectie (gradient + pill) */
#cta-plan-contact .btn.btn-primary{
  border-radius: 999px;
  padding: 10px 18px;
  background-image: linear-gradient(90deg, var(--cta1, #2c8cff), var(--cta2, #8b5cf6));
}
#cta-plan-contact .btn.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(.97);
}

.hero .btn.btn-secondary{
  border-radius: 999px;
  background:#fff;
  color:#ff7a00;
  border:2px solid #ff7a00;
}
.hero .btn.btn-secondary:hover{
  transform: translateY(-2px);
  border-color:#ff7a00;
  color:#ff7a00;
  filter: brightness(.97);
}
/* ===== HERO HELPBOX ===== */

.hero {
  position: relative;
  padding-bottom: 0; /* IVA 220px ruimte voor het grote invulvak */
}

.hero-helpbox {
  width: min(760px, calc(100vw - 80px));
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  padding: 15px 17px 17px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  position: absolute;
  left: max(48px, calc((100vw - 1200px) / 2));
  bottom: 35px;
  transform: none;
  z-index: 6;
}

.hero-search-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 999px;
  padding: 7px 10px 7px 14px;
  box-shadow: inset 0 0 0 1px rgba(20, 38, 65, 0.08);
}

.hero-search-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eaf3ff;
  color: #0b254a;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex: 0 0 auto;
}

.hero-search-row input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 15px;
  color: #0b254a;
  background: transparent;
  min-width: 0;
}

.hero-search-row input::placeholder {
  color: #8b95a5;
}

.hero-search-button {
  border: 0;
  border-radius: 999px;
  background: #0b254a;
  color: #ffffff;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero-search-button:hover {
  background: #071a34;
  transform: translateY(-1px);
}

.hero-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.hero-levels button {
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #0b254a;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 500;
  font-size: 12px;
  padding: 11px 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 38, 65, 0.09);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.hero-levels button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(20, 38, 65, 0.14);
}

.hero-levels button.is-selected {
  background: #0b254a;
  color: #ffffff;
}

/* Mobiel */
@media (max-width: 920px) {
  .hero {
    min-height: auto;
     padding: 90px 20px 40px;
    align-items: flex-start;
    flex-direction: column;
    overflow: visible;
  }
.hero-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero .hero-trust {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: .75rem;
  }
  .hero-helpbox {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 32px);
    margin: 32px auto 0;
    border-radius: 22px;
    padding: 18px;
  }

  .hero-search-row {
    flex-wrap: wrap;
    border-radius: 22px;
    padding: 14px;
  }

  .hero-search-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .hero-search-row input {
    flex-basis: calc(100% - 58px);
    font-size: 14px;
  }

  .hero-search-button {
    width: 100%;
    margin-top: 8px;
    padding: 14px 20px;
  }

  .hero-levels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.hero-levels button {
  width: 100%;
  min-width: 0;
  text-align: center;
  padding: 9px 6px;
  font-size: 11px;
  white-space: nowrap;
  box-sizing: border-box;
}
}
