*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent-hover: #d63851;
  --text: #333;
  --text-light: #666;
  --bg: #fff;
  --bg-alt: #f8f9fa;
  --border: #e0e0e0;
  --radius: 12px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
nav .logo { font-size: 1.4rem; font-weight: 800; color: var(--primary); text-decoration: none; }
nav .logo span { color: var(--accent); }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a { text-decoration: none; color: var(--text); font-weight: 500; transition: color 0.2s; }
nav ul a:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  margin-top: 60px;
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  color: #fff;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; }
.hero .cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.hero .cta:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; }
section:nth-child(even) { background: var(--bg-alt); }
.section-title { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: var(--primary); }
.section-sub { text-align: center; color: var(--text-light); max-width: 600px; margin: 0 auto 3rem; }

/* ─── DIENSTEN GRID ─── */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.dienst-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dienst-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.dienst-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.dienst-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--primary); }
.dienst-card p { color: var(--text-light); }

/* ─── WERKWIJZE ─── */
.werkwijze {
  display: flex; flex-wrap: wrap; gap: 2rem;
  max-width: 900px; margin: 0 auto;
  counter-reset: stap;
}
.werkwijze-stap {
  flex: 1 1 250px;
  text-align: center;
  padding: 2rem;
}
.werkwijze-stap::before {
  counter-increment: stap;
  content: counter(stap);
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.werkwijze-stap h3 { margin-bottom: 0.5rem; color: var(--primary); }
.werkwijze-stap p { color: var(--text-light); font-size: 0.95rem; }

/* ─── CONTACT ─── */
.contact-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrap a {
  display: inline-block;
  margin: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s;
}
.contact-wrap a:hover { background: var(--accent-hover); }
.contact-wrap a.secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.contact-wrap a.secondary:hover { background: var(--accent); color: #fff; }

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .hero { padding: 4rem 1.5rem; }
  section { padding: 3rem 1.5rem; }
}
