 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    /* ADVIES — BLUE + GREEN — confident, sharp, fresh */
    --primary: #0055ff;
    --primary-dark: #0044cc;
    --primary-bright: #2970ff;
    --secondary: #00d26a;
    --secondary-light: #33e88a;
    --secondary-pale: #e0fbe9;

    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --graphite: #333333;
    --warm-gray: #6b6b6b;
    --stone: #999999;
    --silver: #cccccc;
    --cloud: #f0f0f0;
    --snow: #f8f8f8;
    --white: #ffffff;

    --diamond-size: 8px;
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--white);
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* =========================================
     FAMILY BAR
     ========================================= */
  .family-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 14px 40px;
    background: var(--charcoal);
  }
  .family-bar__label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }
  .family-bar__links {
    display: flex;
    gap: 28px;
  }
  .family-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
  }
  .family-bar__link:hover { color: rgba(255,255,255,0.9); }
  .family-bar__link::before {
    content: '';
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    flex-shrink: 0;
  }
  .family-bar__link--aannemer::before { background: #e63028; }
  .family-bar__link--vastgoed::before { background: #ffd000; }
  .family-bar__link--active { color: rgba(255,255,255,0.9); }
  .family-bar__link--active::before { background: var(--secondary); }

  
  /* Same diamond, different colors */
  .nav__diamond {
    width: 36px;
    height: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__diamond::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--primary);
    transform: rotate(45deg);
  }
  .nav__diamond::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    transform: rotate(45deg);
  }

  .nav__name {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
  }
  .nav__sub {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 1px;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .nav__links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav__links a:hover { color: var(--charcoal); }

  .nav__cta {
    padding: 10px 26px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }
  .nav__cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
  }

  /* =========================================
     HERO
     ========================================= */
  .hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    overflow: hidden;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 180px 60px 140px 80px;
    position: relative;
    z-index: 2;
  }

  /* Green accent block */
  .hero__content::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 0;
    width: 8px;
    height: 120px;
    background: var(--secondary);
  }

  .hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.2s forwards;
  }
  .hero__tagline::before {
    content: '';
    width: var(--diamond-size);
    height: var(--diamond-size);
    background: var(--secondary);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .hero__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--charcoal);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.35s forwards;
  }
  .hero__title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
  }
  .hero__title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 12px;
    background: var(--secondary);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-2deg);
  }

  .hero__subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 460px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.5s forwards;
  }

  /* Trust row */
  .hero__trust {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.6s forwards;
  }
  .hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero__trust-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    flex-shrink: 0;
  }
  .hero__trust-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
  }
  .hero__trust-icon--alt {
    background: var(--secondary) !important;
  }
  .hero__trust-icon--alt svg {
    stroke: var(--charcoal) !important;
  }
  .hero__trust-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
  }
  .hero__trust-sub {
    font-size: 10px;
    font-weight: 300;
    color: var(--stone);
    margin-top: 1px;
  }

  .hero__ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.72s forwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-primary:hover::before { transform: scaleX(1); }
  .btn-primary:hover { color: var(--charcoal); }
  .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(5px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    transition: all 0.3s ease;
  }
  .btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
  }

  /* --- Right: Visual --- */
  .hero__visual {
    position: relative;
    overflow: hidden;
  }

  .hero__visual-bg {
    position: absolute;
    inset: 0;
    background: var(--primary);
  }

  /* Diagonal green slice — mirrors the aannemer's yellow slice */
  .hero__visual-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--secondary);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
  }

  /* Grid pattern overlay */
  .hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.06;
    background-image:
      linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  /* Central stat block */
  .hero__visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
  }

  .hero__visual-stat-box {
    background: var(--white);
    padding: 40px 50px;
    box-shadow: 16px 16px 0 var(--secondary);
    position: relative;
  }
  /* Diamond accent on box */
  .hero__visual-stat-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    transform: rotate(45deg);
  }

  .hero__visual-stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }
  .hero__visual-stat-number span {
    color: var(--secondary);
  }
  .hero__visual-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: 10px;
  }

  .hero__visual-clients {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
  }
  .hero__visual-client {
    padding: 8px 14px;
    background: var(--charcoal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
  }
  .hero__visual-client:nth-child(even) {
    background: var(--primary);
  }

  /* Diamond corners */
  .hero__geo-diamond {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--white);
    transform: rotate(45deg);
    z-index: 6;
    opacity: 0;
    animation: fadeIn 0.5s ease 1.2s forwards;
  }
  .hero__geo-diamond--tl { top: 6%; left: 8%; }
  .hero__geo-diamond--br { bottom: 6%; right: 8%; background: var(--secondary); border: none; }

  /* --- Expertise strip --- */
  .hero__expertise {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 50;
    opacity: 0;
    animation: fadeIn 0.6s ease 1.3s forwards;
  }

  .hero__exp-item {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-right: 1px solid var(--cloud);
    border-top: 3px solid transparent;
    transition: all 0.3s;
    cursor: default;
  }
  .hero__exp-item:hover {
    border-top-color: var(--primary);
    background: var(--snow);
  }

  .hero__exp-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    flex-shrink: 0;
  }
  .hero__exp-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
  }
  .hero__exp-item:nth-child(even) .hero__exp-icon {
    background: var(--secondary);
  }
  .hero__exp-item:nth-child(even) .hero__exp-icon svg {
    stroke: var(--charcoal);
  }

  .hero__exp-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
  }
  .hero__exp-sub {
    font-size: 10px;
    font-weight: 300;
    color: var(--stone);
    margin-top: 2px;
  }



  /* =========================================
     ANIMATIONS
     ========================================= */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* =========================================
     RESPONSIVE
     ========================================= */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero__visual { min-height: 45vh; }
    .hero__content { padding: 160px 40px 60px; }
    .hero__expertise { grid-template-columns: repeat(2, 1fr); }
    .nav { padding: 20px 30px; }
    .hero__trust { flex-wrap: wrap; }
  }
  @media (max-width: 640px) {
    .hero__content { padding: 140px 24px 50px; }
    .hero__ctas { flex-direction: column; align-items: flex-start; }
    .hero__expertise { grid-template-columns: 1fr; }
    .nav__links a:not(.nav__cta) { display: none; }
    .sitemap-ref { padding: 40px 24px; }
    .family-bar { flex-direction: column; gap: 8px; padding: 12px 20px; }
  }