:root { --bg-dark: #121212; --bg-card: #1e1e1e; --text-main: #f0f0f0; --text-muted: #a0a0a0; --primary-green: #2ecc71; --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-stack); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Buttons */
.btn { display: inline-block; background-color: var(--primary-green); color: #fff; padding: 12px 30px; border-radius: 6px; font-weight: 600; border: 2px solid var(--primary-green); margin-top: 20px; cursor: pointer; }
.btn:hover { background-color: transparent; color: var(--primary-green); }
.btn-outline { background-color: transparent; border: 2px solid #444; color: var(--text-muted); padding: 12px 30px; border-radius: 6px; font-weight: 600; margin-top: 20px; display: inline-block; margin-left: 10px; }
.btn-outline:hover { border-color: var(--text-main); color: var(--text-main); }

.text-green { color: var(--primary-green); }

/* Header */
header { padding: 20px 0; border-bottom: 1px solid #333; background: rgba(18,18,18,0.95); position: sticky; top: 0; z-index: 1000;}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--primary-green); }
.nav-links { display: flex; gap: 30px; }
.nav-links a:hover { color: var(--primary-green); }

/* De Hero Sectie - Full Screen "Apple" Stijl */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
}

/* De container zelf hoeft nu alleen de breedte te beperken */
.hero .container {
  max-width: 900px; /* Iets smaller dan de rest van de site voor betere leesbaarheid */
}

.hero h1 {
  font-size: 4rem; /* We kunnen dit nu iets groter maken omdat er zoveel ruimte is */
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: -1px; /* Apple stijl: letters iets dichter op elkaar voor een strakke look */
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Content */
.content-section { padding: 80px 0; }
.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

/* Service Cards */
.service-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #333;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--primary-green); }
.service-card.highlight { border-color: var(--primary-green); background: linear-gradient(145deg, #1e1e1e, #252525); }
.service-icon { font-size: 2rem; margin-bottom: 15px; }
.service-link { margin-top: 20px; font-weight: bold; color: var(--primary-green); display: flex; align-items: center; }
.service-link:after { content: "→"; margin-left: 5px; transition: margin-left 0.2s; }

/* Vibe Guard Banner */
.vibe-banner { background: #1a1a1a; border: 1px solid #333; border-radius: 16px; padding: 40px; margin-top: 40px; text-align: left; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.vibe-tag { background: var(--primary-green); color: #000; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin-bottom: 10px; display: inline-block; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .vibe-banner { text-align: center; justify-content: center; }
  .nav-links { display: none; }
}

footer { border-top: 1px solid #333; padding: 40px 0; text-align: center; color: var(--text-muted); margin-top: 60px; }
