/* =========================================================
Template Name: Blueframe
Author: <a href="https://www.linkedin.com/company/studio-boukje">Boukje Bakker | Studio Boukje</a>
Author URI: https://www.linkedin.com/company/studio-boukje
Design & Development: Studio Boukje
Gebruik van deze template zonder toestemming is niet toegestaan. 
   ========================================================= */

/* ---------------------------
   1) Thema-variabelen
   --------------------------- */
:root{
  --brand:#1ea0d1;          /* Mulder blauw */
  --accent:#E3B261;         /* warme goudtint */
  --ink:#0f172a;            /* tekst donker */
  --muted:#64748b;          /* secundaire tekst */
  --muted-2:#94a3b8;        /* subtiele tekst */
  --bg:#ffffff;             /* achtergrond */
  --soft:#F6F8FB;           /* zachte vlakken */

  --radius:18px;
  --shadow-sm:0 2px 10px rgba(0,0,0,.06);
  --shadow-md:0 15px 35px -10px rgba(27,61,115,.25);
  --shadow-lg:0 30px 80px -20px rgba(27,61,115,.35);

  --container:1200px;
  --sp-1:8px; --sp-2:12px; --sp-3:16px; --sp-4:20px; --sp-5:24px;
  --sp-6:28px; --sp-8:36px; --sp-10:48px;
}

/* ---------------------------
   2) Basis & typografie
   --------------------------- */
*{ box-sizing:border-box }
html,body{
  margin:0; padding:0; background:var(--bg); color:var(--ink);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
}
img{ max-width:100%; display:block }
a{ color:#000; text-decoration:none }
a:hover{ text-decoration:underline; color: var(--brand) }
.muted{ color:var(--muted) }
small, .text-small{ font-size:13px; color:var(--muted-2) }

h1{ font-size:clamp(28px,4vw,44px); line-height:1.15; margin:0 0 var(--sp-2) }
h2{ font-size:clamp(22px,3vw,32px); margin:0 0 var(--sp-1) }
h3{ font-size:clamp(18px,2.4vw,22px); margin:0 0 var(--sp-1) }

/* Focus (toegankelijkheid) */
:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
  border-radius:8px;
}

/* ---------------------------
   3) Layout helpers
   --------------------------- */
.container{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 40px); /* zo plak je nooit aan de rand */
}
/* iOS safe-area voor notch e.d. */
@supports (padding: max(0px)) {
  .container{
    padding-left: max(env(safe-area-inset-left), clamp(16px,5vw,40px));
    padding-right:max(env(safe-area-inset-right),clamp(16px,5vw,40px));
  }
}

section{ padding-block: clamp(32px, 7vw, 64px); }

/* Grids */
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap: clamp(16px, 3vw, 24px) }
@media (max-width:640px){
  .grid-2{ grid-template-columns: 1fr; }
}
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap: clamp(14px, 2.5vw, 22px) }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap: clamp(14px, 2.5vw, 22px) }

/* ---------------------------
   4) Header & navigatie
   --------------------------- */
.topbar{ background:var(--soft); font-size:14px }
.topbar .row{
  display:flex; gap:var(--sp-4); align-items:center; justify-content:space-between;
  padding:10px 0;
  padding-inline: clamp(16px, 5vw, 40px);
}

header.sticky{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(8px);
  background:rgba(255,255,255,.85);
  border-bottom:1px solid rgba(2,6,23,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:var(--sp-3);
  padding-inline: clamp(16px, 5vw, 40px);
}
.brand{ display:flex; align-items:center; gap:12px }
.logo{
  width:44px; height:44px; border-radius:14px;
  background:var(--brand); color:#fff; display:grid; place-items:center;
  font-weight:800; box-shadow:var(--shadow-sm);
}
.brand small{ display:block; margin-top:-4px; color:#475569 }

.menu{ display:flex; gap:28px; font-size:15px }
.menu a{ padding:6px 6px; border-radius:10px }
.menu a:hover{ background:#f1f5f9; text-decoration:none }

/* Menu-links netjes uitlijnen */
.menu a {
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
}

/* Submenu pijltje */
.menu .has-sub > a::after {
  content: " ▾";
  font-size: 0.75em;
  margin-left: 4px;
  position: relative;
  top: 1px;
}

/* Zorg dat niets het submenu afknipt */
header, .nav, .menu { overflow: visible; position: relative; z-index: 10; }

/* Submenu positie */
.menu .has-sub { position: relative; }
.menu .submenu{
  display: none;
  position: absolute;
  top: calc(100% + 8px);  /* ik geef je 8px lucht onder parent */
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
  padding: 8px 0;
  z-index: 9999;
}
/* Hover-‘brug’ zodat je niet per ongeluk sluit */
.menu .submenu::before{
  content:"";
  position:absolute;
  top: -8px; left: 0; right: 0;
  height: 8px;
  background: transparent;
}

/* Open bij hover én toetsenbord */
.menu .has-sub:hover > .submenu,
.menu .has-sub:focus-within > .submenu{ display: block; }

/* (behoud je extra dropdown-definities) */
.menu li{ position:relative; list-style:none }
.menu > ul{ display:flex; gap:28px; margin:0; padding:0 }
.submenu{
  display:none; position:absolute; top:100%; left:0; min-width:200px;
  background:#fff; border:1px solid #e2e8f0; border-radius:12px;
  box-shadow:0 12px 24px rgba(0,0,0,.08); padding:8px 0; z-index:100;
}
.submenu a{ display:block; padding:10px 14px; white-space:nowrap }
.menu .has-sub:hover > .submenu{ display:block }

/* ---------------------------
   5) Buttons & chips
   --------------------------- */
.cta, .btn{
  padding:12px 18px; border-radius:12px; border:0; cursor:pointer;
  background:var(--brand); color:#fff; box-shadow:var(--shadow-sm);
  transition: all .25s ease;
  display:inline-block;
}
.btn:hover, .cta:hover{ transform: scale(1.05); box-shadow:0 6px 18px rgba(0,0,0,.12) }
.btn:active, .cta:active{ transform: scale(0.98) }

/* Links in knoppen */
.btn a, .cta a{ color:#fff; text-decoration:none }
.btn a:hover, .cta a:hover{ text-decoration:underline; color:#fff }

.cta.ghost, .btn.outline{
  background:#fff; color:var(--ink); border:2px solid #e2e8f0;
}

/* Anchor-knop varianten (je gebruikt <a class="btn ...">) */
a.btn.primary{
  background-color: var(--brand);
  color:#fff;
  text-decoration:none;
  padding:.75rem 1.5rem;
  border-radius:8px;
  font-weight:600;
  transition: transform .2s ease, text-decoration .2s ease;
}
a.btn.primary:hover{ transform:scale(1.05); text-decoration:underline; color:#fff }

a.btn.outline{
  padding:12px 18px; border-radius:12px;
  border:2px solid var(--brand);
  background:#ffffffcc; /* cc ≈ 80% dekking */
  color:var(--brand);
  text-decoration:none; font-weight:600; transition: all .2s ease;
}
a.btn.outline:hover{ background:var(--brand); color:#fff; transform:scale(1.05); text-decoration:underline }

.chip{ display:inline-flex; align-items:center; gap:8px; font-size:14px; color:var(--ink) }

/* ---------------------------
   6) Hero (homepage)
   --------------------------- */
.hero{
  position:relative;
  background:url("img/hero/hero-1.png") center/cover no-repeat; /* jij gebruikt hero-1 hier */
  color:#fff;
  min-height:520px;
  padding:140px 0;
  overflow:hidden;
}
/* Donkere overlay voor leesbaarheid */
.hero::before{
  content:""; position:absolute; inset:0; z-index:0;
  background:rgba(0,0,0,.45);
}
/* Decoratieve merk-gradients */
.hero::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(227,178,97,.15), transparent 75%),
    radial-gradient(800px 400px at -10% 30%, rgba(27,61,115,.12), transparent 75%);
}
/* Content boven overlay */
.hero .container{
  position:relative; z-index:2;
  padding-inline: clamp(20px, 6vw, 56px);
}
/* Tekstbreedte */
.hero .headline, .hero p{ max-width: 60ch }
.hero .headline span{ color: var(--brand); text-shadow:0 1px 2px rgba(0,0,0,.25) }
.hero .muted{ color:#fff !important }

/* Badge/chips in hero */
.hero-badge{ position:relative; z-index:2; color:#fff !important }
.hero-badge .chip{ color:#fff !important }

/* Responsief hero */
@media (max-width:1024px){
  .hero{ padding:110px 0; min-height:460px }
  .hero::before{ background:rgba(0,0,0,.50) }
}
@media (max-width:640px){
  .hero{ padding:90px 0; min-height:420px }
  .hero::before{ background:rgba(0,0,0,.55) }
}

/* ---------------------------
   6b) Page-hero (subpagina’s)
   --------------------------- */
/* standaard met foto */
.page-hero {
  position: relative;
  background: url('img/hero/hero-1.png') center/cover no-repeat; /* jij kunt hier hero-2 zetten als je wilt */
  height: 240px;              /* pas dit gerust aan */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);   /* donkere laag */
  backdrop-filter: blur(2px);     /* lichte blur voor zachtheid */
  border-radius: inherit;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.5rem; margin: 0; }

/* als jij geen foto wilt (gradient-variant behouden) */
.page-hero.no-photo{
  background: linear-gradient(120deg, rgba(30,160,209,.08), transparent), var(--soft);
  padding: 32px 0;
  border-bottom:1px solid #e2e8f0;
  color: var(--ink);
}
.page-hero.no-photo .overlay{ display:none }

/* ---------------------------
   7) Cards, diensten, team
   --------------------------- */
.card{
  border-radius:20px; background:#fff;
  border:1px solid rgba(2,6,23,.06); box-shadow:var(--shadow-sm);
}
.card .body{ padding:18px }

.icon{
  width:44px; height:44px; border-radius:12px;
  background:var(--brand); color:#fff; display:grid; place-items:center; font-weight:700;
}
.services{ background:linear-gradient(180deg, #ffffff, #f8fafc 60%) }
.step{ box-shadow:var(--shadow-sm) }

.team .tile{
  position:relative; overflow:hidden; border-radius:20px; box-shadow:var(--shadow-md);
}
.team .tile img{ height:260px; object-fit:cover; transition:transform .6s }
.team .tile:hover img{ transform:scale(1.03) }
.team .cap{
  position:absolute; inset-inline:0; bottom:0; padding:12px 14px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.65)); color:#fff;
}

/* Service-cards met full hover */
.service-card{
  border-radius:20px; background:#fff;
  border:1px solid rgba(2,6,23,.06); box-shadow:var(--shadow-sm);
  padding:24px; text-align:left; transition: all .3s ease; cursor:pointer;
}
.service-card h3, .service-card p, .service-card li, .service-card a, .service-card .icon{ transition: color .3s ease }
.service-card:hover{
  background: var(--brand); color:#fff;
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover li,
.service-card:hover a,
.service-card:hover .icon{ color:#fff }

/* Team-foto’s (3) */
.team-photos{ padding:64px 0 }
.photo-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px }
.photo-card{
  position:relative; overflow:hidden; border-radius:20px;
  box-shadow:var(--shadow-md); transform: translateY(0); transition: all .4s ease;
}
.photo-card img{ width:100%; height:280px; object-fit:cover; transition: transform .5s ease }
.photo-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg) }
.photo-card:hover img{ transform: scale(1.05) }
@media (max-width:1024px){ .photo-grid{ grid-template-columns:1fr 1fr } }
@media (max-width:640px){ .photo-grid{ grid-template-columns:1fr } }

/* Container & grid */
.werken-row{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

/* vanaf desktop: 7/5 verdeling zoals foto 1 */
@media (min-width: 1024px){
  .werken-row{
    grid-template-columns: 7fr 5fr;
  }
}

/* Linkerpaneel */
.werken-panel h2{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a; /* slate-900 */
}

.werken-panel .muted{
  color: #475569;  /* slate-600 */
  max-width: 60ch;
}

/* Kaarten-grid */
.perks{
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px){
  .perks{ grid-template-columns: 1fr 1fr; }
}

/* Kaartje */
.perk{
  background: #fff;
  border: 1px solid #e5e7eb;   /* slate-200 */
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: transform .15s ease, box-shadow .15s ease;
}
.perk strong{
  display:block;
  color:#0f172a;
  font-weight:700;
}
.perk .muted{
  display:block;
  margin-top: 6px;
  color:#475569;
}
.perk.hoverable:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* Rechterkolom: afbeelding */
.werken-img{
  position: relative;
  width: 100%;
  /* hoogte op mobiel */
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9; /* fallback */
}
@media (min-width: 1024px){
  .werken-img{
    /* op desktop mag hij hoger */
    min-height: 480px;
    aspect-ratio: auto;
  }
}
.werken-img img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* belangrijk voor ‘foto 1’ look */
  display:block;
}


/* ---------------------------
   8) Full-bleed CTA band
   --------------------------- */
.cta-band{
  width:100%;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(227,178,97,.12), transparent 60%),
    radial-gradient(80% 100% at 0% 100%, rgba(27,61,115,.10), transparent 55%),
    var(--brand);
  color:#fff;
  padding:28px 0;
  box-shadow: 0 18px 40px -20px rgba(27,61,115,.35) inset,
              0 -1px 0 rgba(255,255,255,.1) inset;
}
.cta-band__inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.cta-band__title{ margin:0 0 6px; color:#fff }
.cta-band .muted{ color:rgba(255,255,255,.85) }
/* knoppen op donkere achtergrond */
.cta-band .btn{ background:#fff; color:var(--ink) }
.cta-band .btn.outline{ background:transparent; color:#fff; border-color:#fff }
.cta-band .btn:hover{ text-decoration:none }
@media (max-width:860px){
  .cta-band__inner{ flex-direction:column; text-align:center }
  .btnrow{ justify-content:center }
}

/* ---------------------------
   9) FAQ (accordion)
   --------------------------- */
.faq .item{ border-bottom:1px solid #e2e8f0 }
.faq button{
  width:100%; text-align:left; padding:16px 0;
  background:none; border:0; font:inherit; cursor:pointer;
}
.faq .answer{ max-height:0; overflow:hidden; transition:max-height .35s ease }
.faq .answer.open{ max-height:260px }

/* FAQ: buttons altijd netjes zwart */
#faq .faq button {
  color: var(--ink);       /* donker zwart-blauw uit je thema */
  background: none;        /* achtergrond verwijderen */
  border: none;            /* standaard rand weg */
  font: inherit;           /* lettertype zoals tekst */
  padding: 16px 0;
  text-align: left;
  cursor: pointer;
}

/* ---------------------------
   10) Reviews
   --------------------------- */
.review-section{ background: var(--soft); padding-block: clamp(40px, 8vw, 64px) }
.review-section .container{ padding-inline: clamp(20px, 5.5vw, 48px) }
.review-grid{
  display:grid; grid-template-columns: repeat(4,1fr);
  gap: clamp(16px, 3vw, 32px);
}
.review-card{
  background:#fff; border-radius:16px; padding:20px;
  box-shadow:0 2px 8px rgba(0,0,0,.05); border:1px solid rgba(2,6,23,.06);
  border-top:4px solid transparent; transition:all .3s ease; position:relative;
}
.review-card::before{
  content:"“"; position:absolute; top:10px; left:16px;
  font-size:40px; color:var(--muted-2); opacity:.2;
}
.review-card:hover{ transform:translateY(-6px); box-shadow:0 12px 24px rgba(27,61,115,.15); border-top-color:var(--brand) }
.review-card p{ font-style:italic; margin:0 0 12px }
.review-card .author{ font-weight:600; color:var(--ink) }

@media (max-width:1024px){ .review-grid{ grid-template-columns: repeat(2,1fr) } }
@media (max-width:640px){ .review-grid{ grid-template-columns: 1fr } }

/* ---------------------------
   11) Contactpagina
   --------------------------- */
.hero-top{ padding:36px 0 12px }
.map-wrap{
  border-radius:20px; overflow:hidden; box-shadow:var(--shadow-md);
  border:1px solid rgba(2,6,23,.06);
}
.map{ width:100%; height:420px; border:0 }

.form-grid{ display:grid; gap:12px }
input, select, textarea{
  width:100%; padding:12px 14px; border-radius:10px; border:1px solid #e2e8f0; font:inherit;
}
textarea{ resize:vertical }
.consent{ display:flex; align-items:flex-start; gap:10px; font-size:14px }
.consent input{ margin-top:3px }
/* Honeypot voor anti-spam */
.sr-only{
  position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden;
}

/* --- Fix consent checkboxregel op mobiel --- */

#contactForm .consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;      /* tekst mag doorlopen onder de checkbox */
  max-width: 100%;
}

#contactForm .consent input[type="checkbox"] {
  flex: 0 0 auto;        /* checkbox blijft klein */
  margin-top: 3px;       /* optisch centreren */
}

#contactForm .consent p {
  margin: 0;
  flex: 1 1 0;           /* tekst neemt ruimte in */
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* ---------------------------
   12) Footer (zwart)
   --------------------------- */
footer{ border-top:1px solid #e2e8f0 }
.foot-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px }

/* jij wilt hier expliciet zwart, ik respecteer je !important */
footer, footer p, footer ul, footer li, footer small, footer em, footer { color:#000 !important }

@media (max-width:1024px){ .foot-grid{ grid-template-columns:repeat(2,1fr) } }
@media (max-width:640px){ .foot-grid{ grid-template-columns:1fr } }

/* Footer container met veilige padding */
footer .container{
  padding: 40px clamp(20px, 6vw, 40px);
}

@media (max-width:640px){
  footer .container{ padding: 32px 20px; }
  .foot-grid{ grid-template-columns: 1fr; gap: 24px; }
}

/* Footer basis/accordion (je had beide varianten; ik behoud ze) */
.site-footer .container{ padding:40px clamp(20px,6vw,40px); }
.site-footer{ border-top:1px solid #e2e8f0; }
.foot-accordion{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.foot-col h4{ font-weight:600; margin:0 0 8px; }
.foot-body{ font-size:14px; line-height:1.5; }
.foot-legal{
  border-top:1px solid #e2e8f0; margin-top:24px; padding-top:14px;
  font-size:12px; color:#94a3b8; text-align:center;
}

/* Mobiel gedrag voor accordion */
@media (max-width: 860px){
  .foot-accordion{ grid-template-columns:1fr; gap:14px; }
  .foot-col{
    border:1px solid #e2e8f0; border-radius:12px; overflow:hidden;
  }
  .foot-col h4{
    margin:0; padding:14px 16px;
    background:#f8fafc;
    cursor:pointer;
    position:relative;
  }
  .foot-col h4::after{
    content:"▾";
    position:absolute; right:16px; top:50%; transform:translateY(-50%);
    transition:transform .2s ease;
  }
  /* standaard dicht */
  .foot-col .foot-body{ display:none; padding:12px 16px; }
  /* open-state via class (je togglet .open in JS) */
  .foot-col.open .foot-body{ display:block; }
  .foot-col.open h4::after{ transform:translateY(-50%) rotate(180deg); }
}

/* ---------------------------
   13) Secties & varianten
   --------------------------- */
.sec{ padding: clamp(32px,7vw,64px) 0; }
.sec.alt{ background: linear-gradient(180deg,#fff,#f8fafc 60%); }

/* Grid varianten voor inhoudspagina’s */
.rg-grid{ display:grid; grid-template-columns: 1.4fr .9fr; gap:24px; align-items:start; }
.fam-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; align-items:start; }
.biz-grid{ display:grid; grid-template-columns: 1.3fr .9fr; gap:24px; align-items:start; }
.estate-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; align-items:start; }

@media (max-width:1024px){
  .rg-grid,.fam-grid,.biz-grid,.estate-grid{ grid-template-columns:1fr; }
}

/* Timeline (Registergoed) */
.timeline{ list-style:none; margin:18px 0 8px; padding:0; position:relative; }
.timeline li{ position:relative; padding-left:26px; margin:16px 0; }
.timeline li::before{
  content:""; position:absolute; left:10px; top:0; bottom:0; width:2px; background:#e2e8f0;
}
.timeline li h3{ margin:0 0 4px; }
.timeline li::after{
  content:""; position:absolute; left:6px; top:.3em; width:10px; height:10px; border-radius:50%;
  background: var(--brand); box-shadow: 0 0 0 3px #fff;
}

/* Panel/aside varianten */
.panel{
  border:1px solid #e2e8f0; border-radius:16px; background:#fff; box-shadow: var(--shadow-sm);
  padding:18px;
}
.panel.highlight{ background: #0ea5e90d; border-color:#0ea5e933; }
.panel .stat{ margin-top:12px; padding:12px; border-radius:12px; background:#fff; border:1px solid #e2e8f0; }
.panel .stat .num{ font-size:28px; font-weight:700; color:var(--brand); line-height:1; }
.panel .stat .cap{ font-size:12px; color:var(--muted); margin-top:4px; }

/* Sticky side (bijv. Familierecht) */
.panel.sticky{ position: sticky; top: 100px; }

/* Chips (Familierecht) */
.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px; }
.chips .chip{ background:#eef6fb; border:1px solid #d6e9f5; padding:6px 10px; border-radius:999px; }

/* Stepper (Ondernemingsrecht) */
.stepper{ border-left:2px solid #e2e8f0; margin:14px 0 10px; }
.step{ display:flex; gap:12px; padding:12px 0 12px 12px; position:relative; }
.step .dot{
  width:28px; height:28px; border-radius:50%; background:var(--brand); color:#fff;
  display:grid; place-items:center; font-weight:700; flex:0 0 28px; box-shadow: var(--shadow-sm);
}
.step h3{ margin:0 0 4px; }

/* Compare card */
.panel.compare .compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.panel.compare h4{ margin:0 0 6px; }
.panel.compare .note{ margin-top:8px; font-size:13px; }

/* Estate: myths vs facts */
.myths{
  display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:14px 0 18px;
}
.myth,.fact{
  border:1px solid #e2e8f0; border-radius:14px; padding:14px; background:#fff; box-shadow:var(--shadow-sm);
}
.myth .tag, .fact .tag{
  display:inline-block; font-size:12px; padding:4px 8px; border-radius:999px; margin-bottom:6px;
  background:#f1f5f9; color:#0f172a;
}
.fact .tag.ok{ background:#e6ffe9; color:#14532d; }
@media (max-width:640px){
  .myths{ grid-template-columns:1fr; }
}

/* Mini FAQ (details) */
.faq.mini details{ border-bottom:1px solid #e2e8f0; padding:8px 0; }
.faq.mini summary{ cursor:pointer; font-weight:600; }
.faq.mini p{ margin:8px 0 0; }

/* ---------------------------
   13b) Werken bij (layout varianten)
   --------------------------- */
.werken-row{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
  align-items:stretch;
}
@media (max-width:860px){
  .werken-row{ grid-template-columns:1fr; }
}

.werken-panel{
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:24px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.werken-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
  box-shadow:var(--shadow-sm);
}

/* Perk hover (die jij vroeg) */
.perk.hoverable{ transition: all .3s ease; }
.perk.hoverable:hover{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}
.perk.hoverable:hover strong,
.perk.hoverable:hover .muted{
  color:#fff !important;
}

/* ---------------------------
   14) Responsief gedrag (menu/cta)
   --------------------------- */
/* Desktop standaard */
.menu { display:flex; gap:20px; align-items:center }
.nav-toggle { display:none }

/* Mobiel */
@media (max-width:640px){
  .nav { display:flex; align-items:center; justify-content:space-between; gap:12px }
  .nav-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:40px; height:40px; border:0; border-radius:10px; cursor:pointer;
    background:#fff; box-shadow:var(--shadow-sm)
  }

  /* Menu standaard dicht; jij zet .open via JS */
  .menu{
    display:none; position:absolute; left:16px; right:16px; top:64px;
    flex-direction:column; gap:4px; padding:8px;
    background:#fff; border-radius:12px; box-shadow:var(--shadow-lg); z-index:1000
  }
  .menu.open{ display:flex }
  .menu a{ padding:12px; border-radius:8px }

  /* Optioneel: primaire CTA naast hamburger verbergen */
  .cta{ display:none }
}

/* Tablet grids */
@media (max-width:1024px){
  .grid-4{ grid-template-columns:repeat(2,1fr) }
  .grid-3{ grid-template-columns:repeat(2,1fr) }
}

/* ---------------------------
   15) Bewegingsvoorkeur
   --------------------------- */
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important }
}

