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

    :root {
      --blue: #2563EB;
      --dark: #0F172A;
      --mid: #64748B;
      --light: #94A3B8;
      --border: #E2E8F0;
      --bg: #F8F9FC;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 6%; background: rgba(255,255,255,0.85);
      backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
      position: sticky; top: 0; z-index: 100;
    }
    .logo { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; }
    .nav-links { display: flex; gap: 36px; }
    .nav-links a { text-decoration: none; color: var(--light); font-size: 14px; transition: color 0.2s; }
    .nav-links a:hover { color: var(--dark); }
    .nav-cta {
      background: transparent; color: var(--dark); border: 1px solid var(--border);
      padding: 9px 20px; border-radius: 6px; font-size: 14px; font-weight: 500;
      cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
    }
    .nav-cta:hover { background: var(--dark); color: white; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }

    /* ─── HERO ─── */
    .hero {
      height: calc(100vh - 57px); display: flex; flex-direction: column;
      padding: 0 6%; position: relative; overflow: hidden;
    }
    canvas {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%; z-index: 0; pointer-events: none;
    }
    .hero-content {
      flex: 1; display: flex; flex-direction: column;
      justify-content: center; padding: 16px 0 16px;
      position: relative; z-index: 1; max-width: 900px;
    }
    .tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; color: var(--blue);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
    }
    .tag::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--blue); }
    h1 {
      display: flex; flex-direction: column; font-size: 76px;
      font-weight: 800; line-height: 1.0; letter-spacing: -3px;
      color: var(--dark); margin-bottom: 36px;
    }
    .line { display: block; }
    .indent { padding-left: 120px; color: var(--blue); }
    .bottom-row { display: flex; align-items: center; gap: 60px; }
    .bottom-row p { font-size: 16px; color: var(--mid); line-height: 1.75; max-width: 420px; }
    .cta {
      flex-shrink: 0; background: var(--dark); color: white; border: none;
      padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 500;
      cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s; white-space: nowrap;
    }
    .cta:hover { background: #1E293B; }

    /* ─── MARQUEE ─── */
    .marquee-wrapper {
      border-top: 1px solid var(--border); padding: 20px 0;
      overflow: hidden; position: relative; z-index: 1; flex-shrink: 0;
    }
    .marquee {
      display: flex; gap: 32px; white-space: nowrap;
      animation: scroll 25s linear infinite; width: max-content;
    }
    .marquee span { font-size: 13px; font-weight: 500; color: var(--light); letter-spacing: 0.3px; }
    .marquee .dot { color: var(--border); }
    @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── SECTION BASE ─── */
    section { padding: 100px 6%; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; color: var(--blue);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
    }
    .section-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--blue); }
    h2 { font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1.1; color: var(--dark); margin-bottom: 20px; }
    .section-intro { font-size: 17px; color: var(--mid); line-height: 1.75; max-width: 560px; margin-bottom: 64px; }

    /* ─── OVER ONS ─── */
    .about { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-image { border-radius: 16px; overflow: hidden; height: 580px; }
    .about-image img { width: 100%; height: 100%; object-fit: cover; }
    .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
    .stat { padding: 24px; background: var(--bg); border-radius: 12px; border: 1px solid var(--border); }
    .stat-number { font-size: 36px; font-weight: 800; letter-spacing: -2px; color: var(--dark); }
    .stat-number span { color: var(--blue); }
    .stat-label { font-size: 13px; color: var(--light); margin-top: 4px; font-weight: 500; }
    .about-text p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }

    /* ─── DIENSTEN ─── */
    .diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .dienst-card {
      border: 1px solid var(--border); border-radius: 16px; background: white;
      overflow: hidden; transition: all 0.3s; cursor: default;
    }
    .dienst-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(37,99,235,0.08); }
    .dienst-img { height: 200px; overflow: hidden; }
    .dienst-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .dienst-card:hover .dienst-img img { transform: scale(1.04); }
    .dienst-body { padding: 32px; }
    .dienst-icon {
      width: 40px; height: 40px; background: #EEF2FF; border-radius: 8px;
      display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    }
    .dienst-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .dienst-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
    .dienst-card p { font-size: 14px; color: var(--mid); line-height: 1.7; }

    /* ─── IT PROFIELEN ─── */
    .profielen { background: var(--dark); color: white; }
    .profielen .section-label { color: #6B8FFF; }
    .profielen .section-label::before { background: #6B8FFF; }
    .profielen h2 { color: white; }
    .profielen .section-intro { color: #94A3B8; }
    .profielen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .profiel-tag {
      padding: 14px 20px; border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; font-size: 14px; font-weight: 500; color: #CBD5E1;
      transition: all 0.2s; cursor: default;
    }
    .profiel-tag:hover { border-color: #6B8FFF; color: white; background: rgba(107,143,255,0.08); }

    /* ─── WERKWIJZE ─── */
    .werkwijze { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .stappen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .stap { padding: 0 32px 0 0; position: relative; z-index: 1; }
    .stap-header { display: flex; align-items: center; margin-bottom: 24px; }
    .stap-nummer {
      width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
      background: white; border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: var(--blue); transition: all 0.3s;
    }
    .stap:hover .stap-nummer { background: var(--blue); color: white; border-color: var(--blue); }
    .stap-lijn {
      flex: 1; height: 1px; background: var(--border); margin-left: 16px;
    }
    .stap:last-child .stap-lijn { display: none; }
    .stap h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
    .stap p { font-size: 14px; color: var(--mid); line-height: 1.7; }

    /* ─── CONTACT ─── */
    .contact { background: var(--bg); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-info p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 40px; }
    .contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
    .contact-detail { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--mid); }
    .contact-detail-icon {
      width: 36px; height: 36px; background: white; border: 1px solid var(--border);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
    }
    .contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .contact-availability {
      background: white; border: 1px solid var(--border); border-radius: 12px; padding: 24px;
    }
    .contact-availability-title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
    .contact-availability p { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 0; }
    .availability-dot { display: inline-block; width: 8px; height: 8px; background: #10B981; border-radius: 50%; margin-right: 6px; }
    .contact-form { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
    .form-group input, .form-group textarea {
      width: 100%; padding: 12px 16px; border: 1px solid var(--border);
      border-radius: 8px; font-size: 15px; font-family: 'Inter', sans-serif;
      color: var(--dark); background: var(--bg); transition: border-color 0.2s; outline: none;
    }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--blue); background: white; }
    .form-group textarea { height: 120px; resize: vertical; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit {
      width: 100%; padding: 14px; background: var(--dark); color: white;
      border: none; border-radius: 8px; font-size: 15px; font-weight: 600;
      cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s;
    }
    .form-submit:hover { background: #1E293B; }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border); padding: 32px 6%;
      display: flex; align-items: center; justify-content: space-between; background: white;
    }
    footer .logo { font-size: 16px; }
    footer p { font-size: 13px; color: var(--light); }

    /* ─── MOBILE ─── */
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }

      .hero { height: auto; min-height: calc(100vh - 57px); }
      h1 { font-size: 42px; letter-spacing: -2px; }
      .indent { padding-left: 40px; }
      .bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; }
      .cta { width: 100%; text-align: center; }

      section { padding: 64px 6%; }
      h2 { font-size: 34px; letter-spacing: -1px; }

      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-image { height: 280px; }
      .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }

      .diensten-grid { grid-template-columns: 1fr; }

      .profielen-grid { grid-template-columns: repeat(2, 1fr); }

      .stappen { grid-template-columns: 1fr; gap: 40px; }
      .stap-lijn { display: none; }
      .stap { padding: 0; }

      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }

      footer { flex-direction: column; gap: 12px; text-align: center; }
    }
