:root{
  --bg:#070b12;
  --bg2:#0b1220;
  --card:rgba(255,255,255,.05);
  --card2:rgba(255,255,255,.035);
  --border:rgba(255,255,255,.09);
  --text:#eaf1ff;
  --muted:#aab5c8;
  --accent:#4fc3ff;
  --accent2:#7aa8ff;
  --shadow:0 20px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(79,195,255,.18), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(122,168,255,.14), transparent 55%),
    radial-gradient(900px 600px at 50% 100%, rgba(79,195,255,.10), transparent 60%),
    var(--bg);
  overflow-x:hidden;
}

/* star canvas */
#stars{
  position:fixed; inset:0;
  width:100%; height:100%;
  z-index:-2;
  opacity:.55;
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(18px);
  background:rgba(7,11,18,.65);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:1200px;
  margin:auto;
  padding:16px 22px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{
  font-weight:900;
  letter-spacing:.5px;
  text-decoration:none;
  color:var(--text);
}
.nav-links a{
  color:var(--muted);
  text-decoration:none;
  margin-left:18px;
  font-weight:500;
}
.nav-links a:hover{color:var(--text)}

/* HERO */
.hero{
  position:relative;
  padding:120px 20px 80px;
}
.hero-inner{
  max-width:980px; margin:auto;
}
.hero h1{
  font-size:60px;
  line-height:1.05;
  margin:14px 0;
  letter-spacing:-1px;
}
.hero p{
  max-width:680px;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
}
.tag{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--accent);
  font-weight:600;
}
.hero-actions{margin-top:30px; display:flex; gap:12px; flex-wrap:wrap}

.hero-bg{position:absolute; inset:0; z-index:-1; overflow:hidden}
.blob{
  position:absolute;
  width:520px; height:520px;
  border-radius:50%;
  filter: blur(40px);
  opacity:.35;
  transform: translateZ(0);
  animation: float 9s ease-in-out infinite;
}
.blob.b1{left:-120px; top:-120px; background:rgba(79,195,255,.55)}
.blob.b2{right:-160px; top:40px; background:rgba(122,168,255,.45); animation-delay:1.5s}
.gridfade{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(7,11,18,0) 0%, rgba(7,11,18,.85) 75%, rgba(7,11,18,1) 100%),
    radial-gradient(circle at center, rgba(255,255,255,.05), transparent 55%);
}

/* STATS */
.stats{
  margin-top:38px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.stat{
  padding:16px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
}
.stat b{display:block; margin-bottom:6px}
.stat span{color:var(--muted); font-size:13px}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 22px;
  border-radius:12px;
  background:linear-gradient(180deg, var(--accent), #2fb0f2);
  color:#031224;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 18px 60px rgba(79,195,255,.18);
}
.btn:hover{transform: translateY(-1px)}
.btn.ghost{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  color:var(--text);
  box-shadow:none;
}
.btn.small{padding:10px 14px; border-radius:10px}
.btn.full{width:100%}

/* SECTIONS */
.section{
  max-width:1200px;
  margin:auto;
  padding:110px 22px;
}
.section.dark{
  position:relative;
  border-radius:28px;
  margin:80px auto;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.035),
      rgba(255,255,255,.015)
    );
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 40px 120px rgba(0,0,0,.55);
}

/* zachte lichtvlek */
.section.dark::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    radial-gradient(
      600px 300px at 10% 0%,
      rgba(95,211,255,.14),
      transparent 60%
    );
  pointer-events:none;
}

/* layout */
.section.dark .split{
  gap:42px;
  align-items:center;
}

/* TITEL */
.section.dark h2{
  font-size:42px;
  line-height:1.1;
  letter-spacing:-1px;
  margin-bottom:14px;
}

/* SUBTITLE */
.section.dark .subtitle{
  font-size:17px;
  max-width:520px;
  margin-bottom:28px;
  color:var(--muted);
}

/* LIST LINKS */
.section.dark .list{
  list-style:none;
  padding:0;
  margin:0;
}

.section.dark .list li{
  position:relative;
  padding-left:34px;
  margin-bottom:16px;
  color:var(--muted);
  line-height:1.6;
}

.section.dark .list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:2px;
  color:var(--accent);
  font-weight:900;
}

.section.dark .list b{
  color:var(--text);
  font-weight:800;
}

.section.dark .panel{
  border-radius:26px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.07),
      rgba(255,255,255,.035)
    );
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 35px 90px rgba(0,0,0,.6);
  overflow:hidden;
}

/* panel rows */
.section.dark .panel-row{
  padding:18px 22px;
  font-size:15px;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:background .15s ease;
}

.section.dark .panel-row:last-child{
  border-bottom:none;
}

.section.dark .panel-row:hover{
  background:rgba(95,211,255,.05);
}

/* check icon rechts */
.section.dark .panel-row span:last-child{
  color:var(--accent);
  font-weight:900;
  font-size:16px;
}

@media(max-width:980px){
  .section.dark{
    border-radius:22px;
  }

  .section.dark .split{
    gap:28px;
  }

  .section.dark h2{
    font-size:34px;
  }
}

.head h2{font-size:40px; margin:0}
.subtitle{
  color:var(--muted);
  margin-top:10px;
  margin-bottom:44px;
  line-height:1.6;
}

/* CARDS (diensten) */
.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.service{
  padding:26px;
  border-radius:18px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, var(--card), var(--card2));
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.service:before{
  content:"";
  position:absolute; inset:-2px;
  background:radial-gradient(circle at 20% 10%, rgba(79,195,255,.18), transparent 45%);
  opacity:.8;
}
.service > *{position:relative}
.service h3{margin:0 0 8px}
.service p{margin:0 0 16px; color:var(--muted); line-height:1.55}
.chips{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px}
.chips span{
  font-size:12px;
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.link{color:var(--accent); text-decoration:none; font-weight:700}
.link:hover{text-decoration:underline}

/* SPLIT + PANEL */
.split{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:22px;
  align-items:start;
}
.list{padding-left:18px; color:var(--muted); line-height:1.75}
.panel{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panel-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.panel-row:last-child{border-bottom:none}

/* PORTFOLIO */
.filters{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}
.pill{
  cursor:pointer;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
}
.pill.active{color:var(--text); border-color:rgba(79,195,255,.35); box-shadow:0 0 0 2px rgba(79,195,255,.10) inset}
.portfolio{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.work{
  cursor:pointer;
  padding:22px;
  border-radius:18px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, var(--card), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  transition:transform .2s ease, border-color .2s ease;
}
.work:hover{transform:translateY(-2px); border-color:rgba(79,195,255,.25)}
.work-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--accent);
  font-size:12px;
  font-weight:800;
}
.work h3{margin:12px 0 8px}
.work p{margin:0; color:var(--muted); line-height:1.6}
.work-bottom{
  margin-top:16px;
  display:flex; justify-content:space-between; align-items:center;
}
.mini-chips{display:flex; gap:8px}
.mini-chips span{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  background:rgba(255,255,255,.03);
}
.work-more{color:var(--accent); font-weight:800}

/* PRICING */
.pricing{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.price{
  padding:26px;
  border-radius:18px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, var(--card), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
}
.price ul{margin:14px 0 18px; padding-left:18px; color:var(--muted); line-height:1.8}
.price-tag{color:var(--muted); margin:8px 0 0}
.featured{
  border-color:rgba(79,195,255,.35);
  position:relative;
}
.ribbon{
  position:absolute;
  top:16px; right:16px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(79,195,255,.12);
  border:1px solid rgba(79,195,255,.25);
  color:var(--accent);
  font-weight:900;
  font-size:12px;
}

/* Reviews + FAQ */
.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.quote{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.03));
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow);
  margin-bottom:12px;
}
.quote p{margin:0 0 10px; color:var(--text); line-height:1.6}
.quote span{color:var(--muted)}
.faq details{
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  padding:14px 16px;
  margin-bottom:10px;
}
.faq summary{cursor:pointer; font-weight:800}
.faq p{color:var(--muted); line-height:1.6}

/* CONTACT */
.notice{
  max-width:900px;
  margin:0 auto 18px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--border);
}
.notice.ok{border-color:rgba(79,195,255,.25); background:rgba(79,195,255,.06)}
.notice.bad{border-color:rgba(255,120,120,.25); background:rgba(255,120,120,.06)}

.contact-wrap{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
  align-items:start;
  max-width:1000px;
  margin:0 auto;
}
.form{
  border:1px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.03));
  padding:18px;
  box-shadow:var(--shadow);
}
.row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
input,textarea{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:#0a1220;
  color:var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
input:focus,textarea:focus{border-color:rgba(79,195,255,.35); box-shadow:0 0 0 2px rgba(79,195,255,.10)}
.hp{position:absolute; left:-9999px; opacity:0}

.contact-mini{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:12px;
  color:var(--muted);
}
.contact-mini a{color:var(--accent); text-decoration:none; font-weight:800}
.contact-mini a:hover{text-decoration:underline}

.contact-card{
  border:1px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.03));
  padding:18px;
  box-shadow:var(--shadow);
}
.contact-card h3{margin:0 0 8px}
.contact-card p{margin:0 0 10px; color:var(--muted)}
.contact-card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.8}


/* =====================================================
   CONTACT – PREMIUM, LOSSE CARDS
   ===================================================== */

#contact.section.dark{
  border:none;
  box-shadow:none;
  background:none;
}

/* zachte highlight */
#contact.section.dark::before{
  display:none;
}

/* HEADER */

#contact .head{
  max-width:640px;
  margin:0 auto 42px;
  text-align:center;
}

#contact .head h2{
  font-size:44px;
  letter-spacing:-1px;
}

#contact .head .subtitle{
  font-size:17px;
}

/* NOTICES */
#contact .notice{
  max-width:620px;
  margin:0 auto 28px;
  padding:16px 18px;
  border-radius:18px;
  font-weight:700;
}

#contact .notice.ok{
  background:rgba(95,211,255,.08);
  border-color:rgba(95,211,255,.35);
}

#contact .notice.bad{
  background:rgba(255,90,90,.08);
  border-color:rgba(255,90,90,.35);
}

/* =====================================================
   LAYOUT – LOSSE CARDS
   ===================================================== */

#contact .contact-wrap{
  max-width:860px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:32px;
}
/* =====================================================
   FORM CARD
   ===================================================== */

#contact .form{
  width:100%;
  border-radius:30px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.065),
      rgba(255,255,255,.03)
    );
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 45px 120px rgba(0,0,0,.65);
  padding:32px;
}

/* inputs */
#contact input,
#contact textarea{
  font-size:15px;
  padding:16px 18px;
  border-radius:18px;
}

#contact input::placeholder,
#contact textarea::placeholder{
  color:rgba(255,255,255,.45);
}

#contact input:focus,
#contact textarea:focus{
  border-color:rgba(95,211,255,.5);
  box-shadow:0 0 0 3px rgba(95,211,255,.15);
}

/* rows spacing */
#contact .row{
  gap:14px;
  margin-bottom:14px;
}

#contact textarea{
  margin-bottom:18px;
}

/* submit */
#contact .btn.full{
  margin-top:10px;
  padding:16px;
  font-size:16px;
  border-radius:18px;
}

/* mini contact */
#contact .contact-mini{
  margin-top:22px;
  padding-top:18px;
  border-top:1px dashed rgba(255,255,255,.12);
  justify-content:center;
}

/* =====================================================
   RIGHT CARD – INTAKE
   ===================================================== */

#contact .contact-card{
  width:100%;
  border-radius:26px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.02)
    );
  border:1px solid rgba(255,255,255,.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 35px 100px rgba(0,0,0,.6);
  padding:28px;
}

/* subtiele top accent */
#contact .contact-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:2px; /* dikte van de lijn */
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  opacity:.6;
}


/* intake title */
#contact .contact-card h3{
  margin:0 0 10px;
  font-size:22px;
}

/* list */
#contact .contact-card .list{
  list-style:none;
  padding:0;
  margin:16px 0 22px;
}

#contact .contact-card .list li{
  margin-bottom:12px;
  font-size:15px;
}

#contact .contact-card .list li::before{
  content:"•";
  position:absolute;
  left:10px;
  color:var(--accent);
  font-size:20px;
}

/* CTA */
#contact .contact-card .btn{
  margin-top:8px;
  padding:14px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media(max-width:980px){
  #contact.section.dark{
    border-radius:26px;
  }

  #contact .contact-wrap{
    grid-template-columns:1fr;
    gap:22px;
  }

  #contact .head h2{
    font-size:36px;
  }
}


/* FOOTER */
.footer{
  max-width:1200px;
  margin:0 auto;
  padding:40px 22px;
  color:var(--muted);
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footlinks a{color:var(--muted); margin-left:12px; text-decoration:none}
.footlinks a:hover{color:var(--text)}

/* MODAL */
.modal{position:fixed; inset:0; display:none; z-index:80}
.modal.show{display:block}
.modal-back{position:absolute; inset:0; background:rgba(0,0,0,.55)}
.modal-card{
  position:relative;
  max-width:620px;
  margin:8vh auto 0;
  border:1px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  box-shadow:0 30px 90px rgba(0,0,0,.6);
  padding:20px;
  backdrop-filter: blur(12px);
}
.modal-close{
  position:absolute; top:12px; right:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  border-radius:10px;
  padding:8px 10px;
  cursor:pointer;
}
.modal-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--accent);
  font-weight:900;
  font-size:12px;
}
.mfeatures{margin:12px 0 18px; padding-left:18px; color:var(--muted); line-height:1.8}

/* REVEAL ANIMATION */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

@keyframes float{
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(18px, -14px)}
}

/* Responsive */
@media (max-width: 980px){
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
  .pricing{grid-template-columns:1fr}
  .portfolio{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2, minmax(0,1fr))}
  .contact-wrap{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .hero h1{font-size:40px}
  .row{grid-template-columns:1fr}
}

@media(max-width:600px){
  #contact .form{
    padding:24px;
  }

  #contact .contact-card{
    padding:22px;
  }
}