:root{
  --bg: #0b1726;
  --bg-2:#0e2a45;
  --text:#0b1220;
  --muted:#5b6b82;
  --brand:#00b2ff;
  --brand-2:#57e6ff;
  --paper:#f6f8fc;
  --white:#ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(3,15,38,.15);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:var(--paper);
  line-height:1.6;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* HEADER / NAV */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.logo{display:flex;align-items:center;gap:10px;font-weight:700}
.logo img{height:36px;width:auto}
.nav ul{display:flex;gap:22px;list-style:none;margin:0;padding:0}
.nav a{font-weight:600;color:#0b1220;opacity:.85}
.nav a:hover{opacity:1}
.menu-btn{display:none;border:0;background:transparent;font-size:22px}
@media (max-width:900px){
  .nav ul{display:none;flex-direction:column;position:absolute;right:20px;top:56px;background:#fff;border-radius:14px;box-shadow:var(--shadow);padding:12px 16px}
  .menu-btn{display:block}
}

/* HERO */
.hero-wrap{
  position:relative;
  background: radial-gradient(1200px 500px at 80% -20%, rgba(0,178,255,.25), transparent),
              linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 90%);
  color:var(--white);
}
.hero{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
  padding:90px 0;
}
.hero h1{
  font-size:clamp(50px,4.2vw,56px);
  line-height:1.1;
  margin:0 0 14px;
}
.hero p.lead{
  font-size:clamp(20px,2vw,20px);
  opacity:.92;
  margin:0 0 26px;
}
.badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 28px;
}
.badge{
  background:#ffffff;                 /* echte witte achtergrond */
  border:1px solid rgba(0,0,0,0.08);  /* subtiele lijn zoals modern design */
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#0a1a2b;                      /* DONKERE tekst */
}

.cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  border:0;
  border-radius:12px;
  padding:14px 18px;
  font-weight:700;
  cursor:pointer;
  transition:.2s transform,.2s box-shadow,.2s background,.2s color;
}
.btn-primary{
  background:var(--brand);
  color:#041018;
  box-shadow: 0 10px 30px rgba(0,178,255,.35);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,178,255,.45);
}
.btn-ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover{
  transform:translateY(-2px);
}

.hero-card .btn-ghost{
  background:#f3f6fc;                     /* licht grijs/blauw vlak */
  color:#0b1220;                           /* donkere tekst */
  border:1px solid #d1d9e8;               /* subtiele rand */
  box-shadow:none;
}

.hero-card .btn-ghost:hover{
  background:#e4ecfb;
  transform:translateY(-2px);
}

.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
  color:var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:20px;
}
.hero-card .card-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.hero-card .title{font-weight:800}
.product-shot{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
}
.price{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin:16px 0 6px;
}
.price .now{
  font-size:28px;
  font-weight:800;
  color:#0b1220;
}
.price .inc{
  font-size:13px;
  color:#556;
}
.mini{font-size:13px;color:#6a768a}
.card-cta{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}

.hero-wave{
  position:absolute;
  left:0;right:0;bottom:-1px;
  height:40px;
  background: radial-gradient(200px 20px at 10% 0%, rgba(255,255,255,.5), transparent),
              radial-gradient(200px 20px at 40% 0%, rgba(255,255,255,.5), transparent),
              radial-gradient(200px 20px at 70% 0%, rgba(255,255,255,.5), transparent),
              radial-gradient(200px 20px at 90% 0%, rgba(255,255,255,.5), transparent);
  opacity:.4;
}

/* SECTIONS */
.section{padding:80px 0}
.section .head{margin-bottom:26px}
.section h2{
  font-size:clamp(26px,3vw,36px);
  margin:0 0 8px;
}
.muted{color:var(--muted);max-width:640px}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.icon{
  width:36px;height:36px;
  border-radius:9px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#001020;
  font-weight:800;
  margin-bottom:10px;
}

/* DIENSTEN – golvende services-road */
.services-section{
  background:radial-gradient(900px 380px at 100% 0%, rgba(0,178,255,.05), transparent);
}

.services-header{
  max-width:700px;
  margin-bottom:26px;
}

.services-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  padding:4px 11px;
  border-radius:999px;
  background:rgba(0,178,255,.08);
  color:#045173;
  font-weight:600;
  margin-bottom:8px;
}

/* “Road” layout */
.services-road{
  position:relative;
  padding-top:10px;
  padding-bottom:10px;
  margin-top:8px;
}

.services-road::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(to bottom, rgba(0,178,255,.45), rgba(87,230,255,.1));
  transform:translateX(-50%);
  opacity:.8;
}

.service-item{
  position:relative;
  margin-bottom:16px;
}

/* Kaarjes links/rechts van de lijn */
.service-badge{
  position:relative;
  max-width:360px;
  background:#ffffff;
  border-radius:18px;
  padding:12px 16px;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 14px 32px rgba(3,15,38,.18);
  display:flex;
  align-items:flex-start;
  gap:10px;
  transition:transform .18s ease, box-shadow .18s ease;
}
.service-badge:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(3,15,38,.26);
}

.service-emoji{
  font-size:22px;
  margin-top:2px;
}
.service-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  background:rgba(0,178,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#045173; /* bepaalt de kleur van de stroke via currentColor */
  flex-shrink:0;
}
.service-icon svg{
  width:22px;
  height:22px;
  display:block;
}

.service-copy h3{
  margin:0 0 4px;
  font-size:16px;
}
.service-copy p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

/* Links/rechts + mini offsets */
.service-item-1 .service-badge,
.service-item-3 .service-badge,
.service-item-5 .service-badge,
.service-item-7 .service-badge,
.service-item-9 .service-badge{
  margin-left:calc(50% - 360px - 18px);
}

.service-item-2 .service-badge,
.service-item-4 .service-badge,
.service-item-6 .service-badge,
.service-item-8 .service-badge{
  margin-left:calc(50% + 18px);
}

/* extra kleine variatie in X en Y voor speels effect */
.service-item-2 .service-badge{ transform:translateY(4px); }
.service-item-3 .service-badge{ transform:translateY(-2px); }
.service-item-4 .service-badge{ transform:translateY(3px); }
.service-item-5 .service-badge{ transform:translateY(-1px); }
.service-item-6 .service-badge{ transform:translateY(2px); }
.service-item-7 .service-badge{ transform:translateY(-2px); }
.service-item-8 .service-badge{ transform:translateY(3px); }

/* Hover moet de offset niet slopen, dus we corrigeren bij hover */
.service-item-2 .service-badge:hover,
.service-item-3 .service-badge:hover,
.service-item-4 .service-badge:hover,
.service-item-5 .service-badge:hover,
.service-item-6 .service-badge:hover,
.service-item-7 .service-badge:hover,
.service-item-8 .service-badge:hover{
  transform:translateY(-4px);
}

/* Mobiel: kaarten gewoon onder elkaar, allemaal recht */
/* DIENSTEN – STRAKKE VERTICALE LAYOUT OP MOBIEL */
@media (max-width: 768px){
  /* lijn iets naar links en ruimte boven */
  .services-road::before{
    left:24px;
  }

  .service-item{
    position: relative;
    margin: 0 0 18px 0;
  }

  .service-badge{
    max-width: none;
    width: calc(100% - 64px);        /* overal dezelfde breedte */
    margin: 16px 16px 18px 48px;     /* zelfde marge voor alle kaarten */
    transform: none !important;      /* geen zigzag meer */
  }

  /* alle “om en om” varianten ook forceren */
  .service-item-1 .service-badge,
  .service-item-2 .service-badge,
  .service-item-3 .service-badge,
  .service-item-4 .service-badge,
  .service-item-5 .service-badge,
  .service-item-6 .service-badge,
  .service-item-7 .service-badge,
  .service-item-8 .service-badge,
  .service-item-9 .service-badge{
    max-width: none !important;
    width: calc(100% - 64px) !important;
    margin: 16px 16px 18px 48px !important;
    transform: none !important;
  }
}



/* STATS – orbit layout */
/* STATS – cards layout (desktop + mobiel) */
.stats-section{
  background:radial-gradient(900px 380px at 0% 0%, rgba(0,178,255,.06), transparent),
             radial-gradient(900px 380px at 100% 100%, rgba(11,23,38,.06), transparent);
}

.stats-header{
  max-width:700px;
  margin-bottom:32px;
}

.stats-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  padding:4px 11px;
  border-radius:999px;
  background:rgba(11,23,38,.08);
  color:#0b1726;
  font-weight:600;
  margin-bottom:8px;
}

/* Nieuwe layout: gewoon nette kaarten onder elkaar / naast elkaar */
.stats-orbit{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:stretch;
}

/* De losse “pill”-kaarten */
.stat-pill{
  position:static;                 /* geen absolute meer */
  background:#ffffff;
  border-radius:20px;
  padding:14px 18px;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 14px 32px rgba(3,15,38,.12);
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-width:220px;
  flex:1 1 240px;                  /* mooie responsive breedte */
}

.stat-value{
  font-size:22px;
  font-weight:800;
  color:#0b1220;
  white-space:nowrap;
}

.stat-text{
  font-size:14px;
  color:var(--muted);
  line-height:1.4;
}
.stat-text span{
  font-size:13px;
}

/* De oude posities zijn niet meer nodig – dit maakt ze neutraal */
.stat-pill-1,
.stat-pill-2,
.stat-pill-3,
.stat-pill-4{
  top:auto;
  left:auto;
  right:auto;
  bottom:auto;
  transform:none;
}

/* Mobiel: gewoon onder elkaar, volle breedte */
@media (max-width: 640px){
  .stats-orbit{
    flex-direction:column;
  }
  .stat-pill{
    flex:1 1 auto;
    width:100%;
  }
}


/* CONTACT */
.contact-card{
  display:grid;
  grid-template-columns:0.9fr 1.3fr;
  gap:24px;
  align-items:flex-start;
}
.contact-info p{margin:0}
.contact-form .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.contact-form label{
  font-size:14px;
  color:var(--text);
}
.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #dde3ee;
  font:inherit;
  resize:vertical;
}
.contact-form .full{grid-column:1/-1}

/* PRODUCT DETAIL LAYOUT */
.product-layout{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:24px;
  align-items:flex-start;
}
.product-main-image{
  border-radius:16px;
  box-shadow:var(--shadow);
  margin-bottom:18px;
}
.product-info ul{
  padding-left:20px;
  margin-bottom:18px;
}
.order-card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.05);
  padding:22px;
}
.order-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.order-form label{
  font-size:14px;
}
.order-form input,
.order-form textarea{
  width:100%;
  margin-top:4px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #dde3ee;
  font:inherit;
}
.order-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

/* FOOTER */
footer{
  padding:40px 0;
  color:#5b6b82;
  font-size:14px;
}
footer .row{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}
footer a{opacity:.85}
footer a:hover{opacity:1}

/* RESPONSIVE */
@media(max-width:960px){
  .hero{grid-template-columns:1fr;margin-top:0;padding:64px 0}
  .product-layout{grid-template-columns:1fr}
  .contact-card{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .stats-grid{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:1fr}
}


/* CERTIFICATEN – band met overlappende badges */
.cert-section{
  background:radial-gradient(900px 400px at 10% 0%, rgba(0,178,255,.08), transparent),
             radial-gradient(700px 300px at 90% 100%, rgba(87,230,255,.09), transparent);
}

.cert-layout{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:32px;
  align-items:center;
}

.cert-text h2{
  margin-bottom:8px;
}

.cert-list{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
}
.cert-list li{
  margin-bottom:6px;
}

.cert-badges{
  display:flex;
  flex-direction:column;   /* onder elkaar */
  align-items:flex-end;
  gap:18px;                /* meer ruimte tussen de twee */
  position:relative;
}

.cert-badge{
  background:#ffffff;
  border-radius:999px;
  padding:14px 20px;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 12px 28px rgba(3,15,38,.18);
  display:flex;
  align-items:center;
  gap:14px;
  width:280px;              /* ★ vaste breedte voor beide kaarten */
  min-height:72px;          /* ★ zorgt dat ze even hoog zijn */
  box-sizing:border-box;
}

.cert-badge-secondary{
  width:280px;              /* ★ zelfde breedte */
  min-height:72px;          /* ★ zelfde hoogte */
}


.cert-ring{
  width:52px;
  height:52px;
  border-radius:999px;
  background:conic-gradient(from 160deg, var(--brand), var(--brand-2), var(--brand));
  padding:3px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cert-ring img{
  width:100%;
  height:100%;
  border-radius:999px;
  object-fit:contain;
  background:#fff;
}

.cert-badge figcaption{
  font-size:14px;
  font-weight:600;
  color:#0b1220;
}

@media (max-width:960px){
  .cert-badges{
    align-items:flex-start;
  }
}


/* Responsive tweaks */
@media(max-width:960px){
  .cert-layout{
    grid-template-columns:1fr;
  }
  .cert-badges{
    justify-content:flex-start;
    min-height:auto;
    padding-top:10px;
  }
  .cert-badge,
  .cert-badge-secondary{
    position:relative;
    right:auto;
    bottom:auto;
    transform:rotate(0deg);
    margin-right:10px;
  }
}



/* WAAROM MF – nieuwe layout */
.why-section{
  background:radial-gradient(900px 400px at 0% 10%, rgba(0,178,255,.06), transparent),
             radial-gradient(800px 320px at 100% 100%, rgba(11,23,38,.06), transparent);
}

.why-header{
  max-width:680px;
  margin-bottom:30px;
}

.why-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(0,178,255,.08);
  color:#045173;
  font-weight:600;
  margin-bottom:10px;
}

.why-columns{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  gap:24px;
  align-items:flex-start;
}

/* Linker highlight-kaart */
.why-highlight{
  background:#ffffff;
  border-radius:22px;
  padding:22px 22px 20px;
  box-shadow:0 18px 42px rgba(3,15,38,.18);
  border:1px solid rgba(0,0,0,.04);
}
.why-highlight h3{
  margin-top:0;
  margin-bottom:8px;
}
.why-highlight ul{
  margin:14px 0 0;
  padding-left:18px;
  font-size:14px;
  color:var(--muted);
}
.why-highlight li{
  margin-bottom:5px;
}

/* Rechter “lijn” met stappen */
.why-steps{
  position:relative;
  padding-left:28px;
  margin-top:6px;
}
.why-steps::before{
  content:"";
  position:absolute;
  left:10px;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(to bottom, rgba(0,178,255,.6), rgba(87,230,255,.1));
}

.why-step{
  position:relative;
  margin-bottom:20px;
}
.why-dot{
  position:absolute;
  left:-2px;
  top:4px;
  width:14px;
  height:14px;
  border-radius:999px;
  background:#fff;
  border:3px solid var(--brand);
  box-shadow:0 0 0 3px rgba(0,178,255,.18);
}
.why-content{
  background:#ffffff;
  border-radius:16px;
  padding:14px 16px 12px;
  border:1px solid rgba(0,0,0,.03);
  box-shadow:0 10px 26px rgba(3,15,38,.12);
}
.why-content h3{
  margin:0 0 4px;
  font-size:16px;
}
.why-content p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

@media (max-width: 960px){
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-box,
  .offerte-box{
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }
}


/* Responsive */
@media(max-width:960px){
  .why-columns{
    grid-template-columns:1fr;
  }
  .why-steps{
    margin-top:10px;
  }
}

/* CONTACT / OFFERTE SECTION */
.contact-section{
  background:radial-gradient(900px 400px at 20% 0%, rgba(0,178,255,.07), transparent),
             radial-gradient(900px 400px at 100% 100%, rgba(11,23,38,.07), transparent);
  padding-bottom:80px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 28px;
  align-items: flex-start;
}



.contact-tag,
.offerte-tag{
  display:inline-block;
  background:rgba(0,178,255,.12);
  padding:4px 12px;
  border-radius:999px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  margin-bottom:8px;
  color:#005e82;
  font-weight:600;
}

.contact-box{
  background:#ffffff;
  padding:24px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 18px 40px rgba(3,15,38,.2);
}

.contact-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}
.contact-list li{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.contact-list a{
  color:#0b1220;
  font-weight:600;
}
.contact-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  background:rgba(0,178,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#045173;
}

/* Offerte box */
.offerte-box{
  background:#ffffff;
  padding:26px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.04);
  position:relative;
  box-shadow:0 18px 40px rgba(3,15,38,.18);
}

.offerte-btn{
  margin-top:20px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 20px;
  background:var(--brand);
  color:#fff;
  font-weight:600;
  border-radius:12px;
  transition:all .2s ease;
}
.offerte-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 22px rgba(3,15,38,.22);
}

/* Offerte badges */
/* ---------- Snel geregeld / Transparant badges ---------- */

.offerte-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

/* Strakke, lage kaarten met check-icoon links */
.offerte-badges .badge{
  position: relative;
  flex: 1 1 220px;
  padding: 12px 16px 12px 48px;   /* ruimte voor icon links */
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 12px 28px rgba(3,15,38,.14);
}

/* Check-bolletje */
.offerte-badges .badge::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: conic-gradient(from 160deg, var(--brand), var(--brand-2), var(--brand));
}

/* Check teken in het bolletje */
.offerte-badges .badge::after{
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
}

/* Tekst-styling */
/* Offerte badges – nieuwe strakke stijl */
.offerte-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}

.offerte-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 10px 24px rgba(3,15,38,.15);
  min-width:230px;
}

.offerte-icon{
  width:26px;
  height:26px;
  border-radius:999px;
  background:rgba(0,178,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:700;
  color:#00b2ff;
}

.offerte-copy{
  display:flex;
  flex-direction:column;
}

.offerte-copy strong{
  font-size:14px;
  font-weight:700;
  color:#0b1220;
  margin-bottom:1px;
}

.offerte-copy span{
  font-size:12px;
  color:#5b6b82;
}

/* Mobiel: volle breedte onder elkaar */
@media (max-width: 640px){
  .offerte-badges{
    flex-direction:column;
    align-items:stretch;
  }

  .offerte-pill{
    width:100%;
    box-shadow:0 8px 18px rgba(3,15,38,.12);
  }
}




.offerte-form{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.offerte-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.offerte-fields label{
  font-size:14px;
  color:var(--text);
}

.offerte-fields input,
.offerte-fields textarea{
  width:100%;
  margin-top:6px;
  padding:9px 11px;
  border-radius:10px;
  border:1px solid #dde3ee;
  font:inherit;
  resize:vertical;
}

.offerte-full{
  grid-column:1 / -1;
}

.offerte-btn{
  margin-top:6px; /* stond er al, maar dit mag blijven */
}
@media(max-width:960px){
  .offerte-fields{
    grid-template-columns:1fr;
  }
}

/* ========= WHATSAPP FLOATING BUTTON ========= */

/* WHATSAPP BUTTON – ALTIJD RECHTS */
.floating-whatsapp{
  position: fixed;
  right: 24px;     
  bottom: 24px;
  width: 62px;
  height: 62px;
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner bubble */
.wa-inner{
  background: #25D366;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.25),
    0 0 0 4px rgba(255,255,255,0.25);
  transition: all .25s ease;
}

/* Icon */
.wa-icon{
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

/* Hover (desktop) */
.floating-whatsapp:hover .wa-inner{
  transform: translateY(-4px);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.40),
    0 0 0 6px rgba(255,255,255,0.35);
}

/* Mobiel – kleiner, MAAR OOK RECHTS */
@media (max-width: 480px){
  .floating-whatsapp{
    right: 18px;   /* blijf rechts, alleen dichter naar binnen */
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
  .wa-icon{
    width: 26px;
    height: 26px;
  }
}



/* 🏠 "Thuis positie" wanneer je bij de contactsectie bent */

.hero-badge{
  color:#0a1a2b !important;
}

.hero-badge span,
.hero-badge p{
  color:#0a1a2b !important;
}




/* Logo standaard grootte overal */
.header .logo img{
  height: 100px;        /* ★ Maak hem groter (pas aan zoals jij wil) */
  width: auto;
  object-fit: contain;
}

/* Als de header krimpt op scroll, kun je deze gebruiken: */
.header.scrolled .logo img{
  height: 48px;        /* iets kleiner bij scroll */
}

/* Desktop navbar spacing fix */
/* Desktop navbar spacing fix */
@media (min-width: 769px){
  header .nav{
    display:flex;
    align-items:center;
    gap:36px;
  }
}

header .nav a{
  padding:8px 0;
  font-size:15px;
  letter-spacing:0.2px;
  color:#0b1220;
}


header .nav a:hover{
  color:var(--brand);
  transition:0.2s;
}


/* ============ MOBIEL (<= 640px) ============ */
@media (max-width: 640px){
  .section{
    padding:40px 0;
  }

  .hero{
    padding-top:32px;
  }

  .hero p{
    font-size:14px;
  }

  /* Badges & buttons beter leesbaar en vaak volledige breedte */
  .badges{
    gap:8px;
  }
  .badge{
    font-size:13px;
  }

  .cta .btn{
    width:100%;
    justify-content:center;
  }

  .card-cta .btn{
    flex:1 1 100%;
    justify-content:center;
  }

  /* Diensten-kaarten voll. breedte */
  .service-badge{
    margin-left:34px;
    border-radius:16px;
  }

  /* Formulieren */
  .offerte-send input,
  .offerte-send textarea,
  .contact-form input,
  .contact-form textarea{
    font-size:14px;
  }


  /* Header spacing iets compacter */
  .header{
    padding:10px 18px;
  }
  .nav{
    gap:10px;
  }
  .nav a{
    font-size:13px;
  }
}


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

.brand-text{
  font-weight:600;
  color:#0b1220;
}

/* hamburger basis, standaard verborgen (alleen mobiel tonen) */
/* HAMBURGER BASIS */
.nav-toggle{
  display:none;                 /* desktop: verborgen */
  flex-direction:column;
  gap:4px;
  background:none;
  border:0;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  width:22px;
  height:2px;
  border-radius:999px;
  background:#0b1220;
}

/* MOBIEL MENU (<= 768px) */
@media (max-width: 768px){
  .brand-text{
    display:none;               /* tekst weg op mobiel */
  }

  .nav-toggle{
    display:flex;               /* hamburger zichtbaar */
  }

  .nav{
    position:absolute;
    top:70px;
    right:16px;
    left:16px;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    padding:12px 16px;
    display:none;               /* ★ standaard dicht op mobiel */
    flex-direction:column;
    gap:10px;
    z-index:900;
  }

  .nav a{
    padding:8px 0;
    font-size:14px;
    color:#0b1220;
  }

  /* ★ alleen open als JS nav--open toevoegt */
  .nav.nav--open{
    display:flex;
  }
}

/* ============ MOBIEL HERO FIX (<= 640px) ============ */
@media (max-width: 640px){

  /* Hero in 1 kolom */
  .hero{
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
  }

  /* Alleen de content links krijgt padding, niet de achtergrond */
  .hero .left{
    padding: 0 22px 24px;
  }

  .hero h1{
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.15;
  }

  .hero p.lead{
    font-size: 14px;
  }

  .badges{
    gap: 8px;
  }

  .badge{
    font-size: 13px;
  }

  .cta .btn{
    width: 100%;
    justify-content: center;
  }
}

/* HEADER / NAV BASIS */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 10px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}

.logo img{
  height: 48px;
  width:auto;
  object-fit:contain;
}

.brand-text{
  font-weight:600;
  color:#0b1220;
}

/* Desktop nav */
.nav{
  display:flex;
  align-items:center;
  gap:32px;
}

.nav a{
  font-weight:600;
  color:#0b1220;
  opacity:.85;
  padding: 8px 0;
}

.nav a:hover{
  opacity:1;
  color: var(--brand);
}

/* HAMBURGER BASIS – standaard verborgen */
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:4px;
  background:none;
  border:0;
  cursor:pointer;
  padding:6px;
}

.nav-toggle span{
  width:22px;
  height:2px;
  border-radius:999px;
  background:#0b1220;
}

/* MOBIEL MENU (<= 768px) */
@media (max-width: 768px){
  .brand-text{
    display:none;
  }

  .nav-toggle{
    display:flex;
  }

  .nav{
    position:absolute;
    top:70px;
    right:16px;
    left:16px;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    padding:12px 16px;
    display:none;
    flex-direction:column;
    gap:10px;
    z-index:900;
  }

  .nav a{
    padding:8px 0;
    font-size:14px;
    color:#0b1220;
  }

  .nav.nav--open{
    display:flex;
  }
}


/* POLICY MODAL */
.policy-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1200;
}

.policy-modal.is-open{
  display:flex;
}

.policy-backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,16,24,.55);
  backdrop-filter: blur(6px);
}

.policy-dialog{
  position:relative;
  max-width:640px;
  width:90%;
  max-height:80vh;
  background:#ffffff;
  border-radius:22px;
  box-shadow:0 22px 60px rgba(3,15,38,.35);
  padding:24px 24px 18px;
  z-index:1;
  animation:policyPop .25s ease-out;
}

.policy-close{
  position:absolute;
  top:10px;
  right:12px;
  border:0;
  background:transparent;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.policy-scroll{
  margin-top:8px;
  padding-right:8px;
  max-height:54vh;
  overflow:auto;
  font-size:14px;
  color:var(--muted);
}

.policy-scroll h3{
  margin-top:14px;
  margin-bottom:4px;
  color:#0b1220;
}

.policy-actions{
  margin-top:12px;
  text-align:right;
}

.linklike{
  background:none;
  border:0;
  padding:0;
  color:var(--brand);
  cursor:pointer;
  font:inherit;
}

@keyframes policyPop{
  from{opacity:0; transform:translateY(14px) scale(.96);}
  to{opacity:1; transform:translateY(0) scale(1);}
}






/* MF in cijfers – spacing fix mobiel */
@media (max-width: 640px){

  .stats-section .stat-pill{
    padding: 10px 14px;
    gap: 8px;
  }

  .stats-section .stat-value{
    margin-bottom: 2px;
    font-size: 18px;
  }

  .stats-section .stat-text{
    font-size: 13px;
    line-height: 1.4;
  }

  /* Als je een grid gebruikt */
  .stats-grid{
    row-gap: 10px;
  }
}


/* Snel geregeld / Transparant – desktop iets strakker */
.offerte-badges .badge{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  padding:12px 14px;
  border-radius:16px;
}

/* Mobiel: volle breedte, mooi gecentreerd */
@media (max-width: 640px){
  .offerte-badges{
    flex-direction:column;
    align-items:stretch;
  }

  .offerte-badges .badge{
    width:100%;
    max-width:none;
    align-items:flex-start;
    margin:0;
  }

  .offerte-badges .badge strong{
    font-size:14px;
    margin-bottom:2px;
  }

  .offerte-badges .badge p{
    font-size:12px;
    line-height:1.45;
  }
}

/* Verwijder MF bol overal */
.stats-core {
  display: none !important;
}

/* Zorg dat orbit extra ruimte niet laat zien */
.stats-orbit {
  min-height: auto !important;
  padding-top: 0 !important;
}


/* Algemene spacing fix */
.stat-pill {
  margin: 6px auto !important;
  padding: 10px 14px !important;
  min-width: auto !important;
}

/* Waardes kleiner */
.stat-value {
  font-size: 18px !important;
  margin-bottom: 0;
}

.stat-text {
  font-size: 13px !important;
  line-height: 1.35;
}

/* Grid compact */
.stats-grid {
  row-gap: 8px !important;
}

.stats-section .stats-orbit {
  margin-top: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
}


/* OFFERT FORM – MOBIEL FIX: VELDEN ONDER ELKAAR */
@media (max-width: 640px){

  .form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-grid label {
    width: 100%;
  }

  .form-grid input,
  .form-grid textarea {
    width: 100%;
  }

}


/* Spacing tussen Direct Contact en Offerte Aanvragen op mobiel */
@media (max-width: 640px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px; /* ruimte tussen de twee blokken */
  }
}



.icon-bubble {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #E6F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-bubble svg {
  width: 32px;
  height: 32px;
}


/* Alleen RIOLERING icoon groter maken */
.service-item-4 .service-icon svg {
  width:30px !important;
  height:30px !important;
}

.service-item-4 .service-icon {
  width:48px !important;
  height:48px !important;
}

/* Hover moet de offset niet slopen... */

/* ---- Extra custom tweaks ---- */
.service-item-4 .service-icon svg {
  margin-top: 5px;
}


/* Verstopping icoon – groter & netjes in het midden */
.service-item-9 .service-icon svg{
  width: 30px;
  height: 30px;
  stroke: #045173;
  display: block;
  margin-top: 2px;
}


/* ============================================================
   HERO – right image column
   ============================================================ */
.hero{
  grid-template-columns: 1.1fr 0.9fr;
  padding: 80px 0 100px;
}

.hero .left{
  padding-right: 16px;
}

.hero h1{
  margin-bottom: 16px;
}

.hero-right{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap{
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: visible;
}

.hero-img{
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(3,15,38,.55);
}

/* Floating stats card bottom-left */
.hero-stat-card{
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 12px 36px rgba(3,15,38,.28);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0,0,0,.06);
}

.hero-stat-row{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat-num{
  font-size: 22px;
  font-weight: 800;
  color: #0b1220;
  line-height: 1;
}

.hero-stat-label{
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero-stat-divider{
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,.1);
  flex-shrink: 0;
}

/* Subtle decorative ring behind the photo */
.hero-img-wrap::before{
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 36px;
  border: 2px solid rgba(0,178,255,.18);
  z-index: -1;
}

@media (max-width: 900px){
  .hero{
    grid-template-columns: 1fr;
    padding: 60px 0 80px;
  }
  .hero .left{
    padding-right: 0;
  }
  .hero-right{
    display: none;
  }
}


/* ============================================================
   NO CURE NO PAY SECTION
   ============================================================ */
.nocure-section{
  background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
  border-top: 1px solid rgba(0,178,255,.12);
  border-bottom: 1px solid rgba(0,178,255,.12);
  padding: 48px 0;
}

.nocure-inner{
  text-align: center;
}

.nocure-headline{
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nocure-blue{
  color: #1a6fd4;
}

.nocure-orange{
  color: #e07b00;
}

.nocure-sub{
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px;
}

.nocure-details{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.nocure-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,178,255,.12);
  border-radius: 18px;
  padding: 16px 20px;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(3,15,38,.08);
}

.nocure-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nocure-item strong{
  font-size: 14px;
  color: #0b1220;
  display: block;
  margin-bottom: 3px;
}

.nocure-item p{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 640px){
  .nocure-details{
    flex-direction: column;
    align-items: center;
  }
  .nocure-item{
    max-width: 100%;
    width: 100%;
  }
}


/* ============================================================
   GALLERY – ONS WERK
   ============================================================ */
.gallery-section{
  background: var(--paper);
}

.gallery-header{
  max-width: 680px;
  margin-bottom: 32px;
}

.gallery-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(0,178,255,.08);
  color: #045173;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(3,15,38,.14);
  cursor: zoom-in;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.gallery-item:hover img{
  transform: scale(1.05);
}

.gallery-item--tall{
  grid-row: span 2;
}

.gallery-item--wide{
  grid-column: span 2;
}

.gallery-label{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(11,18,32,.72), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0 0 18px 18px;
}

@media (max-width: 768px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--wide{
    grid-column: span 2;
  }
  .gallery-item--tall{
    grid-row: span 1;
  }
}

@media (max-width: 480px){
  .gallery-grid{
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--wide,
  .gallery-item--tall{
    grid-column: span 1;
    grid-row: span 1;
  }
}


/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
.lang-toggle{
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(0,178,255,.05);
}

.lang-btn{
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  padding: 2px 4px;
  border-radius: 999px;
  transition: color .15s, background .15s;
  letter-spacing: 0.05em;
}

.lang-btn--active{
  color: var(--brand);
  background: rgba(0,178,255,.12);
}

.lang-sep{
  color: rgba(0,0,0,.18);
  font-size: 11px;
}

@media (max-width: 768px){
  .lang-toggle{
    margin-left: 0;
  }
}


/* ============================================================
   FOOTER – enhanced
   ============================================================ */
.footer{
  background: var(--bg);
  color: rgba(255,255,255,.75);
  padding: 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-logo{
  height: 52px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-brand p{
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
  color: rgba(255,255,255,.65);
}

.footer-col h4{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  margin: 0 0 14px;
}

.footer-col ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col a,
.footer-col span{
  font-size: 14px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .15s;
}

.footer-col a:hover{
  color: var(--brand);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.footer-bottom p{
  margin: 0;
}

.footer-bottom .linklike{
  color: rgba(255,255,255,.55);
}

.footer-bottom .linklike:hover{
  color: var(--brand);
}

@media (max-width: 768px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 40px 0 28px;
  }
  .footer-brand{
    grid-column: span 2;
  }
}

@media (max-width: 480px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-brand{
    grid-column: span 1;
  }
}


/* ============================================================
   RESPONSIVE OVERHAUL – MOBILE FIXES
   ============================================================ */

/* 1. SERVICES – vervang de zigzag road door een strak grid */
.services-road{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  margin-top: 16px !important;
}

/* Verberg de verticale lijn */
.services-road::before{
  display: none !important;
}

/* Service items: flex zodat badge de volledige hoogte vult */
.service-item{
  display: flex !important;
  margin-bottom: 0 !important;
}

/* Badges: geen zigzag offsets meer, volle breedte */
.service-badge{
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  flex: 1 !important;
}

/* Reset alle "links/rechts + translateY" positionering */
.service-item-1 .service-badge,
.service-item-2 .service-badge,
.service-item-3 .service-badge,
.service-item-4 .service-badge,
.service-item-5 .service-badge,
.service-item-6 .service-badge,
.service-item-7 .service-badge,
.service-item-8 .service-badge,
.service-item-9 .service-badge{
  margin: 0 !important;
  transform: none !important;
}

/* Hover werkt gewoon omhoog */
.service-item-2 .service-badge:hover,
.service-item-3 .service-badge:hover,
.service-item-4 .service-badge:hover,
.service-item-5 .service-badge:hover,
.service-item-6 .service-badge:hover,
.service-item-7 .service-badge:hover,
.service-item-8 .service-badge:hover{
  transform: translateY(-4px) !important;
}

@media (max-width: 900px){
  .services-road{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 480px){
  .services-road{
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .service-badge{
    margin: 0 !important;
  }
}


/* 2. LOGO – te groot op mobiel (100px breekt nav-dropdown positie) */
@media (max-width: 768px){
  .header .logo img{
    height: 44px !important;
  }
}


/* 3. HEADER – verwijder dubbele horizontale padding op kleine schermen */
@media (max-width: 640px){
  .header{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


/* 4. HERO – verwijder extra horizontale padding op .left (container regelt dit al) */
@media (max-width: 640px){
  .hero .left{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


/* 5. GALLERY – verwijder label-overlay stijlen (labels zijn uit HTML verwijderd) */
.gallery-label{
  display: none !important;
}


/* 6. CERT-BADGES – voorkomen overflow op smalle schermen */
@media (max-width: 480px){
  .cert-badge,
  .cert-badge-secondary{
    width: 100% !important;
    max-width: 280px !important;
    box-sizing: border-box !important;
  }
  .cert-badges{
    align-items: stretch !important;
  }
}


/* 7. CONTACT GRID – extra kleine schermen */
@media (max-width: 480px){
  .contact-box,
  .offerte-box{
    padding: 18px !important;
  }
}


/* 8. NOCURE ITEMS – fix op erg kleine schermen */
@media (max-width: 360px){
  .nocure-item{
    padding: 12px 14px !important;
  }
  .nocure-headline{
    font-size: 26px !important;
  }
}


/* ============================================================
   HERO MOBIEL – knoppen & afbeelding
   ============================================================ */
@media (max-width: 640px){

  /* Knoppen: auto-breedte, naast elkaar */
  .cta{
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }
  .cta .btn{
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 13px 22px !important;
    font-size: 14px !important;
  }

  /* Ghost knop iets beter zichtbaar op donkere achtergrond */
  .btn-ghost{
    border-color: rgba(255,255,255,.45) !important;
    background: rgba(255,255,255,.12) !important;
  }

  /* Toon hero-afbeelding op mobiel (was verstopt bij ≤900px) */
  .hero-right{
    display: flex !important;
    padding: 0 0 44px !important;
  }

  .hero-img-wrap{
    width: 100% !important;
    max-width: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .hero-img{
    height: 220px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(3,15,38,.55) !important;
  }

  /* Stat card verplaatsen zodat hij niet uitloopt */
  .hero-stat-card{
    bottom: -8px !important;
    left: 10px !important;
    padding: 10px 14px !important;
    gap: 12px !important;
    border-radius: 14px !important;
  }
  .hero-stat-num{
    font-size: 17px !important;
  }
  .hero-stat-label{
    font-size: 10px !important;
  }

  /* Decoratieve ring weg op mobiel (voorkomt overflow) */
  .hero-img-wrap::before{
    display: none !important;
  }
}

/* =====================================================
   STATS MOBIEL – clean 2-kolom dark grid
   Vervangt de curve/oval shape, geen afkapping
   ===================================================== */
@media (max-width: 640px) {

  /* Donkerblauwe sectie-achtergrond, full width */
  .stats-section {
    background: #1a2f4a !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Container: horizontale ademruimte */
  .stats-section .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Header-tekst leesbaar op donkere BG */
  .stats-section .stats-header h2 {
    color: #ffffff !important;
  }
  .stats-section .stats-header .muted {
    color: rgba(255, 255, 255, 0.65) !important;
  }
  .stats-section .stats-tag {
    background: rgba(255, 255, 255, 0.14) !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* Orbit: 2 gelijke kolommen, geen flex-direction:column meer */
  .stats-section .stats-orbit {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    flex-direction: unset !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  /* Kaart: subtiel glasmorphism op donkere BG */
  .stats-section .stat-pill {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    box-shadow: none !important;
    border-radius: 14px !important;
    padding: 14px 12px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  /* Getal: groot, wit, bold – geen afkapping */
  .stats-section .stat-value {
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin-bottom: 0 !important;
  }

  /* Label: kleiner, lichtblauw/wit 65% */
  .stats-section .stat-text {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.4 !important;
    margin-top: 6px !important;
  }
  .stats-section .stat-text span {
    font-size: 12px !important;
  }
}

/* =====================================================
   NO CURE NO PAY – witte sectie, blauwe tekststijl
   ===================================================== */

/* Herstel originele witte achtergrond */
.nocure-section {
  background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%) !important;
  border-top: 1px solid rgba(0,178,255,.12) !important;
  border-bottom: 1px solid rgba(0,178,255,.12) !important;
  padding: 48px 0 !important;
  text-align: center !important;
}

/* Titel: blauw, strak, geen italic */
.nocure-headline {
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  font-size: clamp(1.3rem, 3.5vw, 2rem) !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}
.nocure-blue {
  color: #1a6fd4 !important;
}
.nocure-orange {
  color: #1a6fd4 !important;
}

/* Asterisk */
.nocure-sub {
  font-style: italic !important;
  font-size: 13px !important;
  color: var(--muted) !important;
  margin-bottom: 28px !important;
}

/* Cards: 3 kolommen op desktop */
.nocure-details {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  justify-content: unset !important;
  flex-wrap: unset !important;
  max-width: none !important;
  margin-top: 8px !important;
}

/* Card: wit met lichte blauwe rand */
.nocure-item {
  background: #ffffff !important;
  border: 1px solid rgba(0,178,255,.14) !important;
  border-radius: 14px !important;
  padding: 20px 22px !important;
  box-shadow: 0 4px 16px rgba(3,15,38,.07) !important;
  max-width: none !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  text-align: left !important;
}

/* Checkmark: cyaan cirkel */
.nocure-icon {
  background: linear-gradient(135deg, #00b2ff, #57e6ff) !important;
  color: #ffffff !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-bottom: 12px !important;
}

/* Card titel: donkerblauw */
.nocure-item strong {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0b1726 !important;
  display: block !important;
  margin-bottom: 5px !important;
}

/* Card beschrijving */
.nocure-item p {
  font-size: 13px !important;
  color: var(--muted) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Mobiel: 1 kolom */
@media (max-width: 640px) {
  .nocure-details {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* =====================================================
   GALERIJ – aspect-ratio fix, geen zwarte balken
   ===================================================== */

/* Reset vaste rij-hoogte, uniforme gap */
.gallery-grid {
  grid-auto-rows: unset !important;
  gap: 8px !important;
}

/* Elk item: vaste verhouding zodat img altijd vult */
.gallery-item {
  aspect-ratio: 4 / 3 !important;
  height: unset !important;
}

/* Neutraliseer tall/wide spans – uniform grid */
.gallery-item--tall,
.gallery-item--wide {
  grid-row: span 1 !important;
  grid-column: span 1 !important;
}

/* Foto: volledig vullen zonder zwarte randen */
.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Desktop (≥769px): 3 kolommen, 4/3 ratio */
@media (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .gallery-item {
    aspect-ratio: 4 / 3 !important;
  }
}

/* Tablet (481px – 768px): 3 kolommen, 1/1 ratio */
@media (min-width: 481px) and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .gallery-item {
    aspect-ratio: 1 / 1 !important;
  }
}

/* Mobiel (≤480px): 2 kolommen, 4/3 ratio */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .gallery-item {
    aspect-ratio: 4 / 3 !important;
  }
}

/* =====================================================
   HERO BADGES – nowrap fix, mobiel wrappen netjes
   ===================================================== */
.hero-wrap .badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.hero-wrap .badge {
  white-space: nowrap !important;
  padding: 0.45rem 1rem !important;
  border-radius: 999px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  font-size: 0.85rem !important;
}

/* Zeer kleine schermen (<360px): iets kleiner zodat 3 passen */
@media (max-width: 359px) {
  .hero-wrap .badge {
    font-size: 0.78rem !important;
    padding: 0.4rem 0.8rem !important;
  }
}

/* =====================================================
   HERO STAT BAR – onder hero, donkerblauwe balk
   ===================================================== */
.hero-stat-bar {
  background: #0F2744;
  width: 100%;
}

.hero-stat-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-stat-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-bar-item:last-child {
  border-right: none;
}

.hero-stat-bar-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-bar-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Hero-wave weg */
.hero-wave {
  display: none !important;
}

/* Seam-lijn nocure weg */
.nocure-section {
  border-top: none !important;
}

/* =====================================================
   HERO – mobiel gecentreerd, desktop ongewijzigd
   ===================================================== */
@media (max-width: 767px) {
  .hero-wrap .left {
    text-align: center !important;
  }
  .hero-wrap .badges {
    justify-content: center !important;
  }
  .hero-wrap .cta {
    justify-content: center !important;
  }
}

/* =====================================================
   GALLERY SLIDER – mobiel swipeable, desktop grid
   ===================================================== */

/* Dots: altijd aanwezig in DOM, alleen zichtbaar op mobiel */
.gallery-dots {
  display: none;
}

/* Desktop: outer is transparante wrapper, geen eigen layout */
.gallery-slider-outer {
  position: relative;
}

/* MOBIEL */
@media (max-width: 767px) {
  .gallery-slider-outer {
    overflow: hidden;
  }

  /* Track: flex-rij die horizontaal schuift */
  .gallery-slider-outer .gallery-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    grid-template-columns: unset !important;
    grid-auto-rows: unset !important;
    transition: transform 0.35s ease !important;
    will-change: transform !important;
    align-items: stretch !important;
  }

  /* Elk item: 85% breed zodat je de volgende al half ziet */
  .gallery-slider-outer .gallery-item {
    flex: 0 0 85% !important;
    margin-right: 12px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    aspect-ratio: unset !important;
    height: unset !important;
    grid-row: unset !important;
    grid-column: unset !important;
  }

  /* Foto: vaste verhouding */
  .gallery-slider-outer .gallery-item img {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    display: block !important;
    height: unset !important;
  }

  /* Dots zichtbaar op mobiel */
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .gallery-dot--active {
    background: #00AEEF;
    width: 20px;
    border-radius: 999px;
  }
}

/* =====================================================
   FOOTER – mobiel gecentreerd en gestapeld
   ===================================================== */
@media (max-width: 767px) {
  .footer-grid {
    display: block !important;
    padding: 2.5rem 1.5rem !important;
  }

  .footer-brand,
  .footer-col {
    display: block !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
    grid-column: unset !important;
  }

  .footer-brand:last-child,
  .footer-col:last-child {
    margin-bottom: 0 !important;
  }

  .footer-logo {
    display: block !important;
    margin: 0 auto 1rem !important;
  }

  .footer-brand p {
    max-width: none !important;
    text-align: center !important;
  }

  .footer-col h4 {
    text-align: center !important;
  }

  .footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    align-items: center !important;
  }

  .footer-col a,
  .footer-col span {
    text-align: center !important;
  }

  .footer-bottom {
    text-align: center !important;
    padding: 18px 1.5rem !important;
  }

  .footer-bottom p {
    text-align: center !important;
  }
}
