:root{
  --bg:#0e0e0e;
  --panel:rgba(15, 15, 15, 0.98);
  --ink:#ffffff;
  --muted:#e0e0e0;
  --accent:#00ffc3;
  --accent-2:#04d1a3;
  --danger:#ff545c;
  --card-bg:rgba(12, 12, 12, 0.95);
  --card-border:rgba(0, 255, 195, 0.3);
  --glow-shadow:0 0 20px rgba(0, 255, 195, 0.4);
}
/* Reset */
*,*:before,*:after{box-sizing:border-box}
html,body{margin:0;padding:0}
img{max-width:100%;display:block;height:auto}

/* Base */
body{
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
a{
  color:var(--accent);
  text-decoration:none;
  font-weight: 600;
}
a:hover{
  color:var(--accent-2);
  text-shadow: var(--glow-shadow);
}
.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:2rem;
  position: relative;
  z-index: 2;
  background: rgb(0 0 0 / 50%);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* Trust */
.trust{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.trust .kpi{
  background:var(--card-bg);
  border:2px solid var(--card-border);
  border-radius:15px;
  padding:2rem;
  text-align:center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.trust .kpi::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 195, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.trust .kpi:hover::before{
  opacity: 1;
}
.trust .kpi:hover{
  transform: translateY(-8px);
  border-color: var(--accent);
  z-index: 10;
}
.trust .kpi h3{
  margin:.25rem 0 0 0;
  font-size:1.8rem;
  color:var(--accent);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* Services */
.section{padding:4rem 0;position:relative;z-index:1}
.section h2{
  text-align:center;
  text-transform:uppercase;
  color: #00ffc3;
  margin:0 0 1rem 0;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Specifieke styling voor Diensten sectie */
#diensten h2{
  color: #00ffc3 !important;
}

/* Specifieke styling voor Techniek sectie */
.section:nth-of-type(2) h2{
  color: #00ffc3 !important;
}
.lead{
  color: #ffffff;
  text-align:center;
  margin:0 auto 3rem auto;
  max-width:800px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.card{
  background:var(--card-bg);
  border:2px solid var(--card-border);
  border-radius:20px;
  padding:2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 255, 195, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover::before{
  opacity: 1;
}
.card:hover{
  transform: translateY(-10px);
  border-color: var(--accent);
  z-index: 10;
}
.card h3{
  margin:.25rem 0 .75rem 0;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.card p{
  color:#ffffff;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.card ul{margin:.75rem 0 0 1.5rem;padding:0}
.card li{
  margin:.5rem 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Pricing */
.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.pricing h2{
  color: #00ffc3 !important;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.pricing .lead{
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.priceBox{
  background:linear-gradient(180deg, var(--card-bg), rgba(15, 15, 15, 0.9));
  border:2px solid var(--card-border);
  border-radius:15px;
  padding:2rem;
  position:relative;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  z-index: 1;
}
.priceBox:hover{
  transform: translateY(-6px);
  border-color: var(--accent);
  z-index: 10;
}
.price{
  font-size:2.5rem;
  font-weight:800;
  color:var(--accent);
}
.tag{
  position:absolute;
  top:12px;
  right:12px;
  border:1px solid var(--card-border);
  padding:.5rem .75rem;
  border-radius:999px;
  font-size:.8rem;
  color:#0e0e0e;
  background:var(--accent);
}

/* Portfolio */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;position:relative;z-index:1}
#portfolio h2{
  color: #00ffc3 !important;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.portfolio .lead{
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.tile{
  border-radius:15px;
  overflow:hidden;
  border:2px solid #333333;
  background:#000000;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  z-index: 5;
  position: relative;
}
.tile:hover{
  transform: translateY(-6px);
  border-color: var(--accent);
  z-index: 99999;
}
.tile .ph{
  aspect-ratio:16/10;
  background:linear-gradient(90deg, #000000, #111111);
}

/* FAQ */
.faq{max-width:940px;margin:0 auto}
#faq h2{
  color: #00ffc3 !important;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.fold{
  border:2px solid var(--accent);
  border-radius:15px;
  background:#000000;
  margin:1rem 0;
  overflow:hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}
.fold:hover{
  transform: translateY(-2px);
  border-color: var(--accent);
  z-index: 10;
}
.fold summary{
  list-style:none;
  cursor:pointer;
  padding:1.5rem 2rem;
  font-weight:700;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: #ffffff;
}
.fold summary::-webkit-details-marker{display:none}
.fold[open] summary{
  border-bottom:1px solid var(--accent);
}
.fold .body{
  padding:1.5rem 2rem;
  color:#ffffff;
  font-weight: 500;
}

/* Tech Accordion */
.tech-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.tech-item {
  border: 2px solid var(--card-border);
  border-radius: 15px;
  background: var(--card-bg);
  margin: 1rem 0;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.tech-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  z-index: 10;
}

.tech-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 2rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, transparent, rgba(0, 255, 195, 0.05), transparent);
  transition: all 0.3s ease;
}

.tech-item summary:hover {
  background: linear-gradient(135deg, transparent, rgba(0, 255, 195, 0.1), transparent);
}

.tech-item summary::-webkit-details-marker {
  display: none;
}

.tech-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 800;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.tech-item summary::before {
  content: '';
  display: none;
}

.tech-item[open] summary::after {
  transform: rotate(45deg);
}

.tech-item[open] summary {
  border-bottom: 1px solid var(--accent);
}

.tech-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.tech-benefit {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  background: rgba(0, 255, 195, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 195, 0.3);
  min-width: 140px;
  max-width: 180px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
  margin-left: 1rem;
}

.tech-content {
  padding: 1.5rem 2rem;
  color: #ffffff;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
}

.tech-content p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: #ffffff;
}

.tech-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-content li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #ffffff;
}

.tech-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Contact */
.contact{display:grid;grid-template-columns:1.3fr .7fr;gap:2rem}
#contact h2{
  color: #00ffc3 !important;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.contact .lead{
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.form input,.form textarea, .form select{
  width:100%;
  padding:1rem 1.25rem;
  background:#000000;
  border:2px solid #333333;
  border-radius:12px;
  color:#ffffff;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  font-weight: 500;
}
.form input:focus,.form textarea:focus, .form select:focus{
  outline: none;
  border-color: var(--accent);
  background: #111111;
}
.form label{
  display:block;
  margin:.75rem 0 .25rem 0;
  font-weight:600;
  color: #ffffff;
}
.note{
  font-size:.9rem;
  color:#ffffff;
  font-weight: 500;
}

/* Footer */
.footer{
  padding:3rem 0;
  border-top:2px solid var(--card-border);
  color:var(--muted);
  font-size:.95rem;
  position:relative;
  z-index:1;
  background:#000000;
  font-weight: 500;
}

/* Responsive */
@media (max-width:900px){
  .cards,.pricing,.grid,.contact,.trust{grid-template-columns:1fr 1fr}
  .section h2{font-size: 2rem}
  .tech-benefit {
    min-width: 120px;
    max-width: 160px;
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }
}
@media (max-width:600px){
  .cards,.pricing,.grid,.contact,.trust{grid-template-columns:1fr}
  .wrap{padding:1.25rem}
  .section h2{font-size: 1.8rem}
  .card, .priceBox, .tile{padding: 1.5rem}
  .tech-benefit {
    min-width: 100px;
    max-width: 140px;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }
  .tech-item summary {
    padding: 1rem 1.5rem;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }
  .tech-title {
    font-size: 1.1rem;
  }
  .tech-item summary::before {
    content: 'Lees meer';
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-right: auto;
  }
  .tech-item summary::after {
    margin-left: 0;
    order: 2;
  }
  .tech-benefit {
    order: 1;
    margin-right: auto;
  }
}

/* Hero + Sterrenhemel */
.hero{position:relative;min-height:72vh;display:flex;align-items:center;overflow:hidden}
.hero .wrap{position:relative;z-index:1}
#sterrenCanvas{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:0;pointer-events:none;display:block}
