/* NRG Group website styles */
/* ===== Silka font family ===== */
@font-face {
  font-family: 'Silka';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/silka-light-webfont.woff2') format('woff2');
}
@font-face {
  font-family: 'Silka';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/silka-regular-webfont.woff2') format('woff2');
}
@font-face {
  font-family: 'Silka';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/silka-medium-webfont.woff2') format('woff2');
}
@font-face {
  font-family: 'Silka';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/silka-semibold-webfont.woff2') format('woff2');
}
@font-face {
  font-family: 'Silka';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/silka-bold-webfont.woff2') format('woff2');
}

    :root {
      --nrg-teal-900: #00343d;
      --nrg-teal-800: #004d59;
      --nrg-teal-600: #007d8c;
      --nrg-teal-300: #7dc4b0;
      --nrg-green-500: #00af70;
      --nrg-green-300: #59cc7d;
      --nrg-ink: #0a2a2f;
      --nrg-ink-soft: #2c4a50;
      --nrg-muted: #4a6569;
      --nrg-border: rgba(0, 77, 89, 0.1);
      --nrg-border-strong: rgba(0, 77, 89, 0.25);
      --nrg-surface: #fafaf7;
      --nrg-surface-2: #f0f4f2;
      --nrg-white: #ffffff;
      --font-sans: 'Silka', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      --r-sm: 0;
      --r-md: 0;
      --r-lg: 0;
      --r-pill: 0;
      --content-max: 1240px;
      --content-pad: clamp(20px, 4vw, 48px);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: var(--font-sans);
      color: var(--nrg-ink);
      background: var(--nrg-surface);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      letter-spacing: -0.01em;
      overflow-wrap: break-word;
      overflow-x: hidden;
    }
    html { overflow-x: hidden; }
    img, svg { display: block; max-width: 100%; }
    button { font-family: inherit; cursor: pointer; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; margin: 0; padding: 0; }
    h1, h2, h3, h4, h5, h6, p { margin: 0; }

    .container {
      max-width: var(--content-max);
      margin: 0 auto;
      padding: 0 var(--content-pad);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 22px;
      border-radius: var(--r-pill);
      font-size: 14px;
      font-weight: 500;
      border: 1px solid transparent;
      transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn--primary { background: var(--nrg-teal-800); color: var(--nrg-white); }
    .btn--primary:hover { background: var(--nrg-teal-900); }
    .btn--ghost { background: transparent; color: var(--nrg-teal-800); border-color: var(--nrg-border-strong); }
    .btn--ghost:hover { background: var(--nrg-teal-800); color: var(--nrg-white); border-color: var(--nrg-teal-800); }
    .btn--on-dark { background: var(--nrg-green-500); color: var(--nrg-teal-900); }
    .btn--on-dark:hover { background: var(--nrg-green-300); }

    .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--nrg-green-500);
      margin-bottom: 14px;
    }
    .eyebrow--pill {
      padding: 6px 14px;
      background: rgba(0, 175, 112, 0.12);
      color: var(--nrg-teal-600);
      border-radius: var(--r-pill);
      letter-spacing: 0.04em;
      margin-bottom: 20px;
    }

    .section { padding: clamp(56px, 8vw, 96px) 0; }
    .section-head { max-width: 680px; margin-bottom: 48px; }
    .section-head h2 {
      font-size: clamp(30px, 4vw, 42px);
      font-weight: 600;
      color: var(--nrg-teal-800);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .section-head p { font-size: 17px; color: var(--nrg-muted); line-height: 1.6; }

    /* Nav */
    .nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(250, 250, 247, 0.85);
      backdrop-filter: saturate(180%) blur(12px);
      -webkit-backdrop-filter: saturate(180%) blur(12px);
      border-bottom: 1px solid var(--nrg-border);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 14px; padding-bottom: 14px; gap: 24px;
      min-height: 68px;
    }
    .nav__logo { display: inline-flex; align-items: center; overflow: visible; }
    .nav__logo svg { height: 44px; width: auto; display: block; overflow: visible; }
    .nav__links ul { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; color: var(--nrg-teal-800); }
    .nav__links ul > li { display: flex; align-items: center; }
    .nav__links ul > li > a, .nav__links ul > li > button { white-space: nowrap; }
    .nav__links ul > li > a { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: var(--r-sm); }
    .nav__links a { transition: color 0.2s ease, background 0.2s ease; }
    .nav__links a:hover { color: var(--nrg-green-500); }
    .nav__cta { padding: 11px 20px; font-size: 13px; }

    /* ---- Language switcher ---- */
    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 0;
      border: 1px solid var(--nrg-border-strong, #d0d4d1);
      border-radius: 0;
      padding: 2px;
      background: transparent;
    }
    .lang-switch__btn {
      border: 0;
      background: transparent;
      padding: 4px 10px;
      font-family: inherit;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--nrg-teal-800);
      cursor: pointer;
      border-radius: 0;
      transition: background 0.2s ease, color 0.2s ease;
      line-height: 1;
    }
    .lang-switch__btn:hover { color: var(--nrg-green-500); }
    .lang-switch__btn.is-active {
      background: var(--nrg-teal-800);
      color: var(--nrg-white);
    }
    .lang-switch__btn.is-active:hover { color: var(--nrg-white); }
    /* Mobile: place in the mobile menu */
    .nav__mobile .lang-switch {
      margin: 12px 24px 16px;
    }

    /* ---- Hero (big nrg left, full-height diagonal photo right) ---- */
    .hero {
      position: relative; overflow: hidden;
      background: linear-gradient(180deg, var(--nrg-surface) 0%, var(--nrg-surface-2) 100%);
      padding: clamp(64px, 9vw, 120px) 0 clamp(64px, 9vw, 100px);
    }
    .hero__inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 64px);
      align-items: center;
    }
    .hero__content { padding-top: clamp(8px, 2vw, 24px); }
    .hero__wordmark {
      color: var(--nrg-teal-800);
      margin-bottom: clamp(32px, 5vw, 56px);
      line-height: 0;
    }
    .hero__wordmark svg {
      display: block;
      width: clamp(160px, 28vw, 340px);
      height: auto;
    }
    .hero__payoff {
      font-size: clamp(20px, 2.2vw, 28px); font-weight: 500; line-height: 1.3;
      color: var(--nrg-teal-800); letter-spacing: -0.01em;
      margin-bottom: clamp(20px, 2.5vw, 28px);
    }
    .hero__payoff em {
      display: block; font-style: italic; font-weight: 400;
      color: var(--nrg-teal-600); margin-top: 4px;
    }
    .hero__intro {
      font-size: clamp(17px, 1.4vw, 20px); font-weight: 500;
      color: var(--nrg-ink-soft); line-height: 1.4;
      max-width: 520px;
      margin-bottom: clamp(28px, 4vw, 40px);
    }
    .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
    /* Right column reserves space in the grid; actual photo is absolutely positioned below */
    .hero__aside { position: relative; min-height: 1px; }

    /* Hero photo: absolute, full height, bleeds to right edge */
    .hero-photo {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 50%;
      background-image: url('../photos/graafmachine.jpg');
      background-size: cover;
      background-position: center;
      background-color: var(--nrg-surface-2);
      clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
      -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
      z-index: 1;
    }

    /* ---- Hero links (3 blocks under hero) ---- */
    .hero-links {
      background: var(--nrg-surface);
      padding: clamp(32px, 5vw, 56px) 0;
      border-bottom: 1px solid var(--nrg-border);
    }
    .hero-links .hero-menu {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    /* Hero menu: 3 blocks that light up on hover */
    .hero-menu {
      display: flex; flex-direction: column; gap: 10px;
      width: 100%;
    }
    .hero-menu__item {
      position: relative;
      display: grid; grid-template-columns: auto 1fr auto;
      align-items: center; gap: 22px;
      padding: 20px 24px;
      background: var(--nrg-white);
      border: 1px solid var(--nrg-border);
      border-radius: var(--r-md);
      color: var(--nrg-teal-800);
      overflow: hidden;
      transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    }
    .hero-menu__item::before {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--nrg-teal-800) 0%, var(--nrg-teal-600) 100%);
      opacity: 0;
      transition: opacity 0.25s ease;
      z-index: 0;
    }
    .hero-menu__item > * { position: relative; z-index: 1; }
    .hero-menu__item:hover {
      border-color: var(--nrg-teal-800);
      color: var(--nrg-white);
      transform: translateY(-2px);
      box-shadow: 0 18px 40px -18px rgba(0, 77, 89, 0.45);
    }
    .hero-menu__item:hover::before { opacity: 1; }
    .hero-menu__num {
      font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
      color: var(--nrg-green-500);
      transition: color 0.25s ease;
    }
    .hero-menu__item:hover .hero-menu__num { color: var(--nrg-green-300); }
    .hero-menu__text {
      display: flex; flex-direction: column; gap: 5px;
      min-width: 0;
    }
    .hero-menu__label {
      font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
      color: inherit;
    }
    .hero-menu__sub {
      font-size: 14px; line-height: 1.45;
      color: var(--nrg-muted);
      transition: color 0.25s ease;
    }
    .hero-menu__item:hover .hero-menu__sub { color: rgba(255, 255, 255, 0.78); }
    .hero-menu__arrow {
      font-size: 20px;
      color: var(--nrg-teal-600);
      transition: color 0.25s ease, transform 0.25s ease;
    }
    .hero-menu__item:hover .hero-menu__arrow {
      color: var(--nrg-green-300);
      transform: translateX(4px);
    }

    /* Challenge / Role two-column prose */
    .intro { background: var(--nrg-surface); padding: clamp(56px, 7vw, 88px) 0; }
    .intro__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 72px);
      max-width: 1040px;
    }
    .intro__col h3 {
      font-size: clamp(22px, 2.4vw, 28px); font-weight: 600;
      color: var(--nrg-teal-800); letter-spacing: -0.01em; margin-bottom: 14px;
    }
    .intro__col p {
      font-size: 16px; line-height: 1.65; color: var(--nrg-ink-soft);
      margin-bottom: 14px;
    }
    .intro__col p:last-child { margin-bottom: 0; }
    .intro__col--muted p { color: var(--nrg-muted); }

    /* Wat doet NRG: dark band with solution pills */
    .wat {
      background: var(--nrg-teal-800); color: var(--nrg-white);
      padding: clamp(56px, 7vw, 88px) 0;
      position: relative; overflow: hidden;
    }
    .wat::before {
      content: ""; position: absolute; bottom: -180px; left: -140px;
      width: 420px; height: 420px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 175, 112, 0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .wat__inner { position: relative; z-index: 2; max-width: 900px; }
    .wat__title {
      font-size: clamp(26px, 3.4vw, 36px); font-weight: 600;
      color: var(--nrg-white); letter-spacing: -0.02em; line-height: 1.2;
      margin-bottom: 16px;
    }
    .wat__lede {
      font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.8);
      margin-bottom: 28px; max-width: 720px;
    }
    .wat__lede strong { color: var(--nrg-green-300); font-weight: 500; }
    .wat__pills {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .wat__pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 20px; border-radius: var(--r-pill);
      background: rgba(89, 204, 125, 0.15);
      color: var(--nrg-green-300);
      border: 1px solid rgba(89, 204, 125, 0.35);
      font-size: 14px; font-weight: 500;
      transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }
    .wat__pill:hover {
      background: var(--nrg-green-500); color: var(--nrg-teal-900);
      border-color: var(--nrg-green-500); transform: translateY(-1px);
    }
    .wat__pill::after { content: "→"; font-size: 14px; }

    /* Sector tiles: 4 big tiles with tinted background */
    .tiles-section {
      background: #eaf5ef;
      padding: clamp(56px, 8vw, 96px) 0;
    }
    .tiles-section .section-head h2 { color: var(--nrg-teal-900); }
    .tiles {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
    }
    .tile {
      position: relative; background: var(--nrg-teal-800); color: var(--nrg-white);
      border-radius: var(--r-lg); padding: 24px 20px;
      min-height: 150px;
      display: flex; flex-direction: column; justify-content: space-between;
      transition: transform 0.2s ease, background 0.2s ease;
      overflow: hidden;
    }
    .tile:hover { transform: translateY(-3px); background: var(--nrg-teal-900); }
    .tile--accent { background: var(--nrg-green-500); color: var(--nrg-teal-900); }
    .tile--accent:hover { background: var(--nrg-green-300); }
    .tile__label {
      font-size: 17px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em;
    }
    .tile__arrow {
      font-size: 22px; align-self: flex-end; transition: transform 0.2s ease;
    }
    .tile:hover .tile__arrow { transform: translate(4px, -4px); }

    /* Blog slider with filter */
    .blog { background: var(--nrg-white); padding: clamp(56px, 7vw, 88px) 0; }

    .blog-filter {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 32px;
    }
    .blog-filter__btn {
      border: 1px solid var(--nrg-border);
      background: var(--nrg-white);
      color: var(--nrg-teal-800);
      font-family: inherit;
      font-size: 13px; font-weight: 500;
      padding: 9px 18px;
      border-radius: var(--r-pill);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .blog-filter__btn:hover {
      border-color: var(--nrg-teal-800);
      background: var(--nrg-surface-2);
    }
    .blog-filter__btn.is-active {
      background: var(--nrg-teal-800);
      color: var(--nrg-white);
      border-color: var(--nrg-teal-800);
    }

    .blog-slider {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
    }
    .blog-slider__track {
      position: relative;
      overflow: hidden;
      border-radius: var(--r-lg);
    }
    .blog-slider__nav {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid var(--nrg-border);
      background: var(--nrg-white);
      color: var(--nrg-teal-800);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
      flex-shrink: 0;
    }
    .blog-slider__nav:hover:not(:disabled) {
      background: var(--nrg-teal-800);
      border-color: var(--nrg-teal-800);
      color: var(--nrg-white);
      transform: translateY(-1px);
    }
    .blog-slider__nav:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
    .blog-slider__nav svg { width: 20px; height: 20px; }

    .blog-card {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: clamp(24px, 4vw, 48px);
      align-items: center;
      background: var(--nrg-surface);
      border: 1px solid var(--nrg-border);
      border-radius: var(--r-lg);
      padding: clamp(24px, 4vw, 40px);
      min-height: 320px;
      /* Hidden by default, shown by JS */
      display: none;
    }
    .blog-card.is-visible {
      display: grid;
      animation: blog-card-in 0.4s cubic-bezier(.2,.8,.2,1) both;
    }
    @keyframes blog-card-in {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .blog-card__image {
      height: clamp(220px, 26vw, 320px);
      border-radius: var(--r-md);
      background-size: cover;
      background-position: center;
      background-color: var(--nrg-surface-2);
    }
    .blog-card__meta {
      font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--nrg-green-500);
      margin-bottom: 12px;
    }
    .blog-card__title {
      font-size: clamp(20px, 2.2vw, 26px); font-weight: 600;
      color: var(--nrg-teal-800);
      letter-spacing: -0.01em; line-height: 1.2;
      margin-bottom: 14px;
    }
    .blog-card__excerpt {
      font-size: 15px; line-height: 1.6;
      color: var(--nrg-muted);
      margin-bottom: 22px;
    }

    .blog-slider__dots {
      display: flex; justify-content: center; gap: 8px;
      margin-top: 24px;
    }
    .blog-slider__dot {
      width: 9px; height: 9px;
      border-radius: 50%;
      border: 0;
      background: rgba(0, 77, 89, 0.2);
      cursor: pointer;
      padding: 0;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .blog-slider__dot:hover { background: rgba(0, 77, 89, 0.4); }
    .blog-slider__dot.is-active {
      background: var(--nrg-green-500);
      transform: scale(1.25);
    }

    /* Audience strip */
    .audience {
      background: var(--nrg-white);
      border-top: 1px solid var(--nrg-border); border-bottom: 1px solid var(--nrg-border);
    }
    .audience__inner {
      display: flex; align-items: center; gap: clamp(12px, 1.5vw, 20px);
      padding-top: 22px; padding-bottom: 22px;
      flex-wrap: nowrap;
    }
    .audience__label {
      font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--nrg-teal-600); flex-shrink: 0;
    }
    .audience__list {
      display: flex; flex-wrap: nowrap;
      gap: clamp(8px, 1.2vw, 18px);
      font-size: clamp(11px, 0.85vw, 14px); font-weight: 500; color: var(--nrg-teal-800);
      flex: 1;
      min-width: 0;
      justify-content: space-between;
    }
    .audience__list li {
      position: relative; padding-left: 12px;
      flex-shrink: 1;
      white-space: nowrap;
    }
    .audience__list li::before {
      content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
      width: 4px; height: 4px; background: var(--nrg-green-500); border-radius: 50%;
    }
    /* On narrow screens (below 860px), allow wrap so it stays readable on mobile */
    @media (max-width: 860px) {
      .audience__inner { flex-wrap: wrap; gap: 16px; }
      .audience__list {
        flex-wrap: wrap; gap: 12px 18px;
        font-size: 14px;
        justify-content: flex-start;
      }
      .audience__list li { padding-left: 14px; }
      .audience__list li::before { width: 5px; height: 5px; }
    }

    /* Three steps */
    .steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .step {
      background: var(--nrg-white); border: 1px solid var(--nrg-border); border-radius: var(--r-lg);
      padding: 36px 32px; display: flex; flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .step:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -24px rgba(0, 77, 89, 0.25); }
    .step__num { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--nrg-teal-600); margin-bottom: 28px; }
    .step__num span { color: var(--nrg-teal-300); font-weight: 400; }
    .step__title { font-size: 24px; font-weight: 600; color: var(--nrg-teal-800); letter-spacing: -0.01em; margin-bottom: 12px; }
    .step__desc { font-size: 15px; line-height: 1.6; color: var(--nrg-muted); margin-bottom: 24px; flex-grow: 1; }
    .step__bullets li {
      padding: 10px 0; font-size: 14px; color: var(--nrg-ink-soft);
      display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--nrg-border);
    }
    .step__bullets li::before { content: ""; width: 5px; height: 5px; background: var(--nrg-green-500); border-radius: 50%; flex-shrink: 0; }
    .step--featured {
      background: var(--nrg-teal-800); border-color: var(--nrg-teal-800); color: var(--nrg-white);
      position: relative; overflow: hidden;
    }
    .step--featured::before {
      content: ""; position: absolute; top: -40px; right: -40px;
      width: 160px; height: 160px; border-radius: 50%;
      background: radial-gradient(circle, rgba(89, 204, 125, 0.25) 0%, transparent 70%);
    }
    .step--featured .step__num { color: var(--nrg-green-300); position: relative; }
    .step--featured .step__num span { color: rgba(255, 255, 255, 0.35); }
    .step--featured .step__title { color: var(--nrg-white); position: relative; }
    .step--featured .step__desc { color: rgba(255, 255, 255, 0.78); position: relative; }
    .step--featured .step__bullets li { color: var(--nrg-white); border-color: rgba(255, 255, 255, 0.15); position: relative; }
    .step--featured .step__bullets li::before { background: var(--nrg-green-300); }

    /* Cockpit */
    .cockpit {
      background: var(--nrg-teal-800); color: var(--nrg-white);
      padding: clamp(72px, 10vw, 120px) 0; position: relative; overflow: hidden;
    }
    .cockpit::before {
      content: ""; position: absolute; top: -200px; right: -200px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(89, 204, 125, 0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .cockpit__grid {
      display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
      align-items: center; position: relative; z-index: 2;
    }
    .cockpit__eyebrow { color: var(--nrg-green-300); }
    .cockpit__title {
      font-size: clamp(30px, 4vw, 44px); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
      color: var(--nrg-white); margin-bottom: 24px; max-width: 560px;
    }
    .cockpit__quote {
      border-left: 2px solid var(--nrg-green-500); padding-left: 20px;
      margin: 0 0 32px; font-style: italic; color: rgba(255, 255, 255, 0.8);
      font-size: 16px; line-height: 1.65; max-width: 520px;
    }
    .cockpit__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
    .metric {
      background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--r-md); padding: 22px 20px;
    }
    .metric__k { font-size: 28px; font-weight: 600; color: var(--nrg-green-300); letter-spacing: -0.02em; margin-bottom: 4px; }
    .metric__l { font-size: 13px; color: rgba(255, 255, 255, 0.72); line-height: 1.4; }
    .cockpit__mock {
      background: var(--nrg-surface-2); border-radius: var(--r-lg); padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.35);
    }
    .mock__bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
    .mock__dots { display: flex; gap: 6px; }
    .mock__dots span { width: 9px; height: 9px; border-radius: 50%; background: #c4d6d8; }
    .mock__label { font-size: 11px; color: var(--nrg-muted); font-weight: 500; }
    .mock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
    .mock__stat { background: var(--nrg-white); padding: 14px; border-radius: 0; font-size: 11px; color: var(--nrg-muted); }
    .mock__v { font-size: 18px; font-weight: 600; color: var(--nrg-teal-800); margin-bottom: 2px; }
    .mock__chart { background: var(--nrg-white); border-radius: 0; padding: 14px; height: 140px; margin-bottom: 14px; }
    .mock__chart svg { width: 100%; height: 100%; }
    .mock__rows { background: var(--nrg-white); border-radius: 0; padding: 6px 14px; }
    .mock__row {
      display: flex; align-items: center; gap: 10px; padding: 10px 0;
      font-size: 12px; color: var(--nrg-ink-soft); border-bottom: 1px solid var(--nrg-border);
    }
    .mock__row:last-child { border-bottom: 0; }
    .mock__row-label { flex-grow: 1; }
    .mock__row-val { font-weight: 600; color: var(--nrg-teal-800); }
    .mock__row-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--nrg-green-500); flex-shrink: 0; }
    .mock__row-dot--warn { background: #e8a93b; }

    /* Sectors */
    .sectors { background: var(--nrg-white); }
    .sectors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .sector {
      background: var(--nrg-surface); border: 1px solid var(--nrg-border); border-radius: var(--r-lg);
      padding: 32px 28px;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .sector:hover { transform: translateY(-2px); border-color: var(--nrg-teal-300); background: var(--nrg-white); }
    .sector__icon {
      width: 56px; height: 56px; border-radius: 0;
      background: rgba(0, 175, 112, 0.1);
      display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    }
    .sector__icon img { width: 32px; height: 32px; object-fit: contain; }
    .sector__title { font-size: 20px; font-weight: 600; color: var(--nrg-teal-800); letter-spacing: -0.01em; margin-bottom: 10px; }
    .sector__desc { font-size: 14.5px; line-height: 1.6; color: var(--nrg-muted); margin-bottom: 20px; }
    .sector__tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .sector__tags li {
      font-size: 12px; font-weight: 500; color: var(--nrg-teal-600);
      background: rgba(0, 125, 140, 0.08); padding: 5px 10px; border-radius: var(--r-pill);
    }

    /* Footer CTA */
    .footer-cta {
      background: var(--nrg-surface); padding: clamp(72px, 10vw, 110px) 0;
      border-top: 1px solid var(--nrg-border);
    }
    .footer-cta__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
    .footer-cta__title {
      font-size: clamp(28px, 3.6vw, 40px); font-weight: 600;
      color: var(--nrg-teal-800); line-height: 1.15; letter-spacing: -0.02em;
      margin-bottom: 18px; max-width: 580px;
    }
    .footer-cta__lede {
      font-size: 17px; color: var(--nrg-muted); line-height: 1.6;
      max-width: 520px; margin-bottom: 28px;
    }
    .footer-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
    .footer-cta__card {
      background: var(--nrg-white); border: 1px solid var(--nrg-border);
      border-radius: var(--r-lg); padding: 32px;
    }
    .footer-cta__card-label {
      font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--nrg-green-500); margin-bottom: 18px;
    }
    .footer-cta__card-block {
      display: flex; flex-direction: column; gap: 4px;
      padding: 14px 0; border-top: 1px solid var(--nrg-border);
      font-size: 15px; color: var(--nrg-ink-soft);
    }
    .footer-cta__card-block strong { color: var(--nrg-teal-800); font-weight: 600; margin-bottom: 2px; }
    .footer-cta__card-block a { transition: color 0.2s ease; }
    .footer-cta__card-block a:hover { color: var(--nrg-green-500); }

    /* Footer */
    .footer {
      background: var(--nrg-teal-900); color: rgba(255, 255, 255, 0.8);
      padding: clamp(56px, 7vw, 80px) 0 24px;
    }
    .footer__inner {
      display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer__logo svg { height: 28px; width: auto; margin-bottom: 16px; }
    .footer__tag { font-size: 14px; color: rgba(255, 255, 255, 0.6); max-width: 240px; line-height: 1.5; }
    .footer__cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-flow: row;
      gap: 32px 40px;
    }
    .footer__col--bottom { grid-column: span 1; }
    .footer__col h4 {
      font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--nrg-green-300); margin-bottom: 18px;
    }
    .footer__col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer__col li { font-size: 14px; color: rgba(255, 255, 255, 0.72); }
    .footer__col a { transition: color 0.2s ease; }
    .footer__col a:hover { color: var(--nrg-green-300); }
    .footer__base {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 24px; font-size: 13px; color: rgba(255, 255, 255, 0.5);
      flex-wrap: wrap; gap: 12px;
    }
    .footer__base-links { display: flex; gap: 24px; }
    .footer__base-links a:hover { color: rgba(255, 255, 255, 0.9); }

    /* ---- Showcase (Bright-style tabs) ---- */
    .showcase {
      background: var(--nrg-white);
      padding: clamp(64px, 9vw, 110px) 0;
      position: relative;
    }
    .showcase__head { max-width: 720px; margin-bottom: 40px; }
    .showcase__heading {
      font-size: clamp(30px, 4vw, 44px); font-weight: 600;
      color: var(--nrg-teal-800);
      line-height: 1.1; letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .showcase__lede {
      font-size: 17px; line-height: 1.6; color: var(--nrg-muted);
      max-width: 640px;
    }
    .showcase__tabs {
      display: flex; flex-wrap: wrap; gap: 4px;
      margin: 0 auto 48px;
      padding: 6px;
      background: var(--nrg-surface-2);
      border-radius: var(--r-pill);
      width: fit-content;
      max-width: 100%;
      justify-content: center;
    }
    .showcase__tab {
      border: 0; background: transparent;
      padding: 12px 24px; border-radius: var(--r-pill);
      font-family: inherit;
      font-size: 14px; font-weight: 500; color: var(--nrg-muted);
      cursor: pointer; white-space: nowrap;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .showcase__tab-num {
      font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
      color: var(--nrg-teal-300);
      transition: color 0.2s ease;
    }
    .showcase__tab:hover { color: var(--nrg-teal-800); }
    .showcase__tab.is-active { background: var(--nrg-teal-800); color: var(--nrg-white); }
    .showcase__tab.is-active .showcase__tab-num { color: var(--nrg-green-300); }
    /* Prevent child spans from becoming tap target on mobile (fixes tap-through issue) */
    .showcase__tab > * { pointer-events: none; }

    .showcase__step {
      font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--nrg-green-500);
      margin-bottom: 14px;
    }
    .showcase__stage { position: relative; min-height: 380px; }
    .showcase__panel {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(32px, 5vw, 72px);
      align-items: center;
      animation: showcase-in 0.45s cubic-bezier(.2,.8,.2,1) both;
    }
    .showcase__panel[hidden] { display: none; }
    @keyframes showcase-in {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .showcase__title {
      font-size: clamp(28px, 3.2vw, 40px); font-weight: 600;
      color: var(--nrg-teal-800);
      letter-spacing: -0.02em; line-height: 1.1;
      margin-bottom: 16px;
    }
    .showcase__desc {
      font-size: 17px; line-height: 1.6; color: var(--nrg-ink-soft);
      margin-bottom: 24px;
      max-width: 480px;
    }
    .showcase__bullets {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
      margin-bottom: 28px;
      max-width: 480px;
    }
    .showcase__bullets li {
      font-size: 14px; color: var(--nrg-ink-soft);
      display: flex; align-items: center; gap: 10px;
    }
    .showcase__bullets li::before {
      content: "";
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--nrg-green-500);
      flex-shrink: 0;
    }
    .showcase__actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .showcase__visual {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--nrg-surface-2);
      box-shadow: 0 30px 80px -30px rgba(0, 77, 89, 0.25);
    }
    .showcase__viz {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
    }
    .showcase__viz svg { width: 100%; height: 100%; display: block; }

    /* ---- Klantenbanner (marquee) ---- */
    .clients {
      background: var(--nrg-white);
      border-top: 1px solid var(--nrg-border);
      border-bottom: 1px solid var(--nrg-border);
      padding: 28px 0 32px;
      overflow: hidden;
    }
    .clients__label {
      display: inline-block;
      font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--nrg-muted);
      margin-bottom: 20px;
    }
    .clients__marquee {
      position: relative;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }
    .clients__track {
      display: flex;
      gap: clamp(40px, 5vw, 72px);
      width: max-content;
      animation: clients-scroll 45s linear infinite;
    }
    .clients__marquee:hover .clients__track {
      animation-play-state: paused;
    }
    @keyframes clients-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .clients__track { animation: none; }
    }
    .client-logo {
      font-family: var(--font-sans);
      font-size: 17px; font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--nrg-muted);
      opacity: 0.7;
      transition: opacity 0.2s ease, color 0.2s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .client-logo:hover { opacity: 1; color: var(--nrg-teal-800); }

    /* Screen reader only helper */
    .visually-hidden {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0, 0, 0, 0);
      white-space: nowrap; border: 0;
    }

    /* Responsive */
    @media (max-width: 1080px) {
      .tiles { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 960px) {
      .sectors__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 720px) {
      .tiles { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 860px) {
      .hide-on-mobile { display: none; }
      .steps__grid { grid-template-columns: 1fr; }
      .cockpit__grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-cta__inner { grid-template-columns: 1fr; gap: 32px; }
      .hero__inner { grid-template-columns: 1fr; gap: 32px; }
      .hero__aside { display: none !important; }
      .hero-photo { display: none !important; background-image: none !important; }
      .hero-links .hero-menu { grid-template-columns: 1fr; }
      .intro__grid { grid-template-columns: 1fr; gap: 32px; }
      .blog-card { grid-template-columns: 1fr; }
      .blog-card__image { height: 200px; }
      .footer__inner { grid-template-columns: 1fr; gap: 40px; }
      .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .showcase__panel { grid-template-columns: 1fr; gap: 32px; }
      /* Hide decorative visuals that sit beside text on desktop — they add bulk
         on mobile without conveying extra information. */
      .showcase__viz,
      .showcase__visual,
      .solution-card__visual,
      .featured-product__visual,
      .evinity-block__visual { display: none; }
      .showcase__tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
        padding: 6px;
        border-radius: var(--r-md);
      }
      .showcase__tab {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 18px;
        border-radius: var(--r-sm);
      }
      .showcase__tab-num { min-width: 22px; }
      .showcase__bullets { grid-template-columns: 1fr; }
    }
    @media (max-width: 500px) {
      .sectors__grid { grid-template-columns: 1fr; }
      .tiles { grid-template-columns: 1fr; }
    }
    @media (max-width: 520px) {
      .footer__cols { grid-template-columns: 1fr; }
    }


/* ==========================================================================
   Subpage additions
   ========================================================================== */

/* Generic page hero (used by Contact, Over ons, etc.) */
.page-hero {
  background: linear-gradient(180deg, var(--nrg-surface) 0%, var(--nrg-surface-2) 100%);
  padding: clamp(80px, 11vw, 140px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--nrg-border);
}
.page-hero__inner {
  max-width: 760px;
}
.page-hero__title {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--nrg-teal-800);
  margin: 12px 0 clamp(16px, 2vw, 24px);
}
.page-hero__lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--nrg-ink-soft);
  max-width: 620px;
}

/* ---- Contact: 3 aanspreekpunten ---- */
.contacts {
  background: var(--nrg-white);
  padding: clamp(56px, 7vw, 88px) 0;
}
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
}
.contact-card {
  background: var(--nrg-surface);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  border-color: var(--nrg-teal-300);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(0, 77, 89, 0.25);
}
.contact-card__domain {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrg-green-500);
  padding: 5px 12px;
  background: rgba(0, 175, 112, 0.08);
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.contact-card__name {
  font-size: 22px;
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.contact-card__role {
  font-size: 14px;
  color: var(--nrg-muted);
  margin-bottom: 16px;
}
.contact-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--nrg-ink-soft);
  margin-bottom: 20px;
}
.contact-card__info {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--nrg-border);
  padding-top: 16px;
}
.contact-card__info li {
  margin-bottom: 6px;
  font-size: 14px;
}
.contact-card__info a {
  color: var(--nrg-teal-800);
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-card__info a:hover { color: var(--nrg-green-500); }

/* ---- Contact: algemeen + formulier ---- */
.contact-general {
  background: var(--nrg-surface);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--nrg-border);
}
.contact-general__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-general__info h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}
.contact-general__lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--nrg-ink-soft);
  margin-bottom: 32px;
  max-width: 460px;
}
.contact-general__block {
  margin-bottom: 24px;
}
.contact-general__block h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrg-muted);
  margin: 0 0 6px;
}
.contact-general__block p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--nrg-teal-800);
  margin: 0;
}
.contact-general__block a {
  color: var(--nrg-teal-800);
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-general__block a:hover { color: var(--nrg-green-500); }

/* ---- Contactformulier ---- */
.contact-form {
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 40px);
}
.contact-form__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrg-green-500);
  margin-bottom: 8px;
}
.contact-form__title {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.contact-form__lede {
  font-size: 14px;
  color: var(--nrg-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--nrg-teal-800);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--nrg-teal-800);
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--nrg-teal-600);
  box-shadow: 0 0 0 3px rgba(0, 125, 140, 0.12);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

/* Nav active link */
.nav__links a.is-active {
  color: var(--nrg-green-500);
}

/* Mobile adjustments for contact page */
@media (max-width: 860px) {
  .contacts__grid { grid-template-columns: 1fr; }
  .contact-general__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Contact page: NRG logo in algemeen-block */
.contact-general__logo {
  color: var(--nrg-teal-800);
  margin: 12px 0 24px;
  line-height: 0;
}
.contact-general__logo svg {
  display: block;
  width: clamp(180px, 22vw, 260px);
  height: auto;
}

/* ---- Over ons: Missie & Visie ---- */
.mission-vision {
  background: var(--nrg-white);
  padding: clamp(56px, 7vw, 96px) 0;
}
.mission-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
.mv-card {
  background: var(--nrg-surface);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 48px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.mv-card:hover {
  border-color: var(--nrg-teal-300);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(0, 77, 89, 0.2);
}
.mv-card__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrg-green-500);
  padding: 5px 14px;
  background: rgba(0, 175, 112, 0.08);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.mv-card__title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--nrg-teal-800);
  margin: 0 0 18px;
}
.mv-card__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--nrg-ink-soft);
  margin: 0;
}

@media (max-width: 860px) {
  .mission-vision__grid { grid-template-columns: 1fr; }
}

/* ---- Over ons: hero tagline variant (lowercase, wide) ---- */
.page-hero__title--tagline {
  font-size: clamp(36px, 5vw, 58px);
  text-transform: lowercase;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
/* Wider hero inner on Over ons so lines fit properly */
.page-hero .page-hero__inner {
  max-width: 880px;
}

/* ---- Prose blocks (De uitdaging / Onze rol) ---- */
.prose-block {
  padding: clamp(56px, 7vw, 96px) 0;
}
.prose-block--light {
  background: var(--nrg-white);
}
.prose-block--dark {
  background: var(--nrg-teal-800);
  color: var(--nrg-white);
}
.prose-block__inner {
  max-width: 760px;
}
.prose-block h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--nrg-teal-800);
  margin: 12px 0 24px;
}
.prose-block--dark h2 {
  color: var(--nrg-white);
}
.prose-block p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--nrg-ink-soft);
  margin: 0 0 18px;
}
.prose-block--dark p {
  color: rgba(255, 255, 255, 0.88);
}
.prose-block__pull {
  font-size: 19px !important;
  font-weight: 500;
  color: var(--nrg-teal-800) !important;
  border-left: 3px solid var(--nrg-green-500);
  padding-left: 20px;
  margin-top: 28px !important;
}
.prose-block--dark .prose-block__pull {
  color: var(--nrg-white) !important;
  border-left-color: var(--nrg-green-300);
}

/* Eyebrow on dark background */
.eyebrow--on-dark {
  color: var(--nrg-green-300) !important;
}

/* ---- Oplossingen hub: 3 grote solution-cards ---- */
.solutions-list {
  background: var(--nrg-white);
  padding: clamp(48px, 6vw, 88px) 0;
}
.solution-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--nrg-border);
}
.solution-card:last-child { border-bottom: 0; }
.solution-card--reverse .solution-card__content { order: 2; }
.solution-card--reverse .solution-card__visual { order: 1; }

.solution-card__num {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--nrg-green-500);
  padding: 6px 14px;
  background: rgba(0, 175, 112, 0.1);
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.solution-card__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--nrg-teal-800);
  margin: 0 0 14px;
}
.solution-card__lede {
  font-size: 17px; line-height: 1.6;
  color: var(--nrg-ink-soft);
  margin: 0 0 24px;
}
.solution-card__bullets {
  list-style: none;
  margin: 0 0 28px; padding: 0;
}
.solution-card__bullets li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px; line-height: 1.5;
  color: var(--nrg-teal-800);
  border-bottom: 1px solid var(--nrg-border);
}
.solution-card__bullets li:last-child { border-bottom: 0; }
.solution-card__bullets li::before {
  content: "";
  position: absolute;
  left: 4px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--nrg-green-500);
}
.solution-card__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--nrg-surface-2);
}

@media (max-width: 860px) {
  .solution-card { grid-template-columns: 1fr; gap: 24px; }
  .solution-card--reverse .solution-card__content { order: 0; }
  .solution-card--reverse .solution-card__visual { order: 0; }
}

/* ---- Stub section (coming-soon subpage) ---- */
.stub-section {
  background: var(--nrg-surface);
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid var(--nrg-border);
}
.stub-section__inner {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}
.stub-section__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 14px;
  background: rgba(0, 175, 112, 0.1);
  border: 1px solid rgba(0, 175, 112, 0.25);
  color: var(--nrg-teal-800);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.stub-section__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--nrg-green-500);
  animation: stub-pulse 2s ease-in-out infinite;
}
@keyframes stub-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}
.stub-section h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--nrg-teal-800);
  margin: 0 0 18px;
}
.stub-section p {
  font-size: 16px; line-height: 1.65;
  color: var(--nrg-ink-soft);
  margin: 0 auto 32px;
  max-width: 520px;
}
.stub-section__actions {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 12px;
}

/* =========================================================================
   Oplossingen hub: challenges block + product lists
   ========================================================================= */

.challenges {
  background: var(--nrg-teal-800);
  color: var(--nrg-white);
  padding: clamp(56px, 7vw, 88px) 0;
}
.challenges__head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
.challenges__head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  color: var(--nrg-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.challenges__head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.challenges__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}
.challenge-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.challenge-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(89, 204, 125, 0.35);
  transform: translateY(-2px);
}
.challenge-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
  background: rgba(89, 204, 125, 0.15);
  color: var(--nrg-green-300);
  margin-bottom: 18px;
}
.challenge-card__icon svg {
  width: 22px; height: 22px;
}
.challenge-card h3 {
  font-size: 19px; font-weight: 600;
  color: var(--nrg-white);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.challenge-card p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

@media (max-width: 860px) {
  .challenges__grid { grid-template-columns: 1fr; }
}

/* Product lists in solution cards */
.solution-card__products {
  list-style: none;
  margin: 0 0 28px; padding: 0;
}
.solution-card__products li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px; line-height: 1.5;
  color: var(--nrg-ink-soft);
  border-bottom: 1px solid var(--nrg-border);
}
.solution-card__products li:last-child { border-bottom: 0; }
.solution-card__products li::before {
  content: "";
  position: absolute;
  left: 4px; top: 18px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--nrg-green-500);
}
.solution-card__products li strong {
  color: var(--nrg-teal-800);
  font-weight: 600;
}
.solution-card__products .sep {
  color: var(--nrg-muted);
  margin: 0 4px;
}
.evinity-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nrg-green-500);
  padding: 2px 8px;
  background: rgba(0, 175, 112, 0.1);
  border-radius: var(--r-pill);
  margin-left: 6px;
  vertical-align: 2px;
}

/* =========================================================================
   Energieplanning page
   ========================================================================= */

.page-hero__actions {
  display: flex; flex-wrap: wrap;
  gap: 12px; margin-top: 28px;
}

/* Why-plan */
.why-plan {
  background: var(--nrg-white);
  padding: clamp(56px, 7vw, 88px) 0;
}
.why-plan__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
.why-plan__content h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 12px 0 20px;
}
.why-plan__content p {
  font-size: 16px; line-height: 1.65;
  color: var(--nrg-ink-soft);
  margin-bottom: 16px;
}
.why-plan__stats {
  display: flex; flex-direction: column;
  gap: 12px;
}
.why-plan__stat {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--nrg-surface);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-md);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.why-plan__stat:hover {
  border-color: var(--nrg-teal-300);
  transform: translateX(4px);
}
.why-plan__stat-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nrg-green-500);
  color: var(--nrg-white);
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.why-plan__stat-label {
  font-size: 15px; line-height: 1.45;
  color: var(--nrg-teal-800);
  font-weight: 500;
}

@media (max-width: 860px) {
  .why-plan__grid { grid-template-columns: 1fr; }
}

/* 4 steps flow */
.steps-flow {
  background: var(--nrg-surface);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--nrg-border);
  border-bottom: 1px solid var(--nrg-border);
}
.steps-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
  position: relative;
}
.step-flow-card {
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 28px);
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}
.step-flow-card:hover {
  border-color: var(--nrg-teal-300);
  transform: translateY(-3px);
}
.step-flow-card__num {
  width: 36px; height: 36px;
  border-radius: 0;
  background: var(--nrg-teal-800);
  color: var(--nrg-white);
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-flow-card h3 {
  font-size: 17px; font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.step-flow-card p {
  font-size: 14px; line-height: 1.5;
  color: var(--nrg-ink-soft);
  margin: 0;
}

@media (max-width: 960px) { .steps-flow__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-flow__grid { grid-template-columns: 1fr; } }

/* Products grid */
.products-grid-section {
  background: var(--nrg-white);
  padding: clamp(56px, 7vw, 88px) 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
}
.product-card {
  background: var(--nrg-surface);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  border-color: var(--nrg-teal-300);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(0, 77, 89, 0.2);
}
.product-card--featured {
  background: linear-gradient(135deg, rgba(0, 175, 112, 0.06) 0%, rgba(0, 125, 140, 0.04) 100%);
  border-color: rgba(0, 175, 112, 0.25);
}
.product-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.product-card__head h3 {
  font-size: 20px; font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
  margin: 0;
}
.product-card__tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nrg-muted);
  padding: 4px 10px;
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  /* On narrow screens, allow long tags like "Voor evenementenorganisaties"
     to wrap instead of forcing the card to overflow the viewport. */
  .product-card__tag { white-space: normal; word-break: break-word; }
}
.product-card__tag--featured {
  color: var(--nrg-green-500);
  border-color: rgba(0, 175, 112, 0.3);
  background: rgba(0, 175, 112, 0.08);
}
.product-card__body {
  font-size: 14px; line-height: 1.6;
  color: var(--nrg-ink-soft);
  margin: 0 0 16px;
}
.product-card__bullets {
  list-style: none;
  margin: 0; padding: 0;
}
.product-card__bullets li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 13px; line-height: 1.45;
  color: var(--nrg-teal-800);
}
.product-card__bullets li::before {
  content: "→";
  position: absolute; left: 0; top: 6px;
  color: var(--nrg-green-500);
  font-weight: 600;
}
.product-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px; font-weight: 500;
  color: var(--nrg-green-500);
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-card__link:hover { color: var(--nrg-teal-800); }

@media (max-width: 720px) {
  .products-grid { grid-template-columns: minmax(0, 1fr); }
  /* Prevent grid children from establishing a larger intrinsic width
     than the available space — any overflow-causing content inside cards
     (long words, wide tables, etc.) will now wrap/truncate instead. */
  .products-grid > * { min-width: 0; }
}

/* Context block */
.context-block {
  background: var(--nrg-surface-2);
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--nrg-border);
}
.context-block__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.context-block__badge {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrg-green-500);
  padding: 6px 14px;
  background: rgba(0, 175, 112, 0.1);
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.context-block h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.context-block p {
  font-size: 15px; line-height: 1.65;
  color: var(--nrg-ink-soft);
  margin: 0 auto 24px;
  max-width: 580px;
}
.context-block__actions {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 12px;
}

/* Challenges light variant (op Over ons, onder prose) */
.challenges--light {
  background: var(--nrg-white);
  color: var(--nrg-teal-800);
  padding: 0 0 clamp(56px, 7vw, 88px);
}
.challenge-card--light {
  background: var(--nrg-surface);
  border: 1px solid var(--nrg-border);
  padding: clamp(20px, 2.5vw, 28px);
}
.challenge-card--light:hover {
  background: var(--nrg-white);
  border-color: var(--nrg-teal-300);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(0, 77, 89, 0.18);
}
.challenge-card--light .challenge-card__icon {
  background: rgba(0, 175, 112, 0.1);
  color: var(--nrg-green-500);
}
.challenge-card--light h3 {
  color: var(--nrg-teal-800);
  font-size: 18px;
  margin-bottom: 8px;
}
.challenge-card--light p {
  color: var(--nrg-ink-soft);
  font-size: 14px;
}

/* Transition-note (op Oplossingen, in plaats van groot blok) */
.transition-note {
  background: var(--nrg-white);
  padding: 0 0 clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--nrg-border);
}
.transition-note__inner {
  max-width: 780px;
  margin: 0 auto;
  padding-top: clamp(16px, 2vw, 24px);
}
.transition-note p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--nrg-ink-soft);
  margin: 0;
  text-align: center;
}
.transition-note a {
  color: var(--nrg-green-500);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.transition-note a:hover {
  color: var(--nrg-teal-800);
}

/* =========================================================================
   Mobile nav: hamburger toggle + slide-down menu
   ========================================================================= */

.nav__toggle {
  display: none; /* hidden on desktop */
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--nrg-teal-800);
}
.nav__toggle-bars {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}
.nav__toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 0;
  transition: transform 0.28s cubic-bezier(.4, 0, .2, 1),
              opacity 0.2s ease,
              top 0.28s cubic-bezier(.4, 0, .2, 1);
}
.nav__toggle-bars span:nth-child(1) { top: 0; }
.nav__toggle-bars span:nth-child(2) { top: 8px; }
.nav__toggle-bars span:nth-child(3) { top: 16px; }

/* Transform to X when open */
.nav__toggle.is-open .nav__toggle-bars span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.nav__toggle.is-open .nav__toggle-bars span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open .nav__toggle-bars span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Mobile slide-down menu */
.nav__mobile {
  display: none; /* hidden on desktop */
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--nrg-white);
  border-top: 1px solid var(--nrg-border);
  border-bottom: 1px solid var(--nrg-border);
  box-shadow: 0 12px 30px -18px rgba(0, 77, 89, 0.2);
  z-index: 100;
  animation: nav-mobile-in 0.28s cubic-bezier(.2, .8, .2, 1);
}
@keyframes nav-mobile-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__mobile-links ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.nav__mobile-links li a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--nrg-teal-800);
  border-bottom: 1px solid var(--nrg-border);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__mobile-links li:last-child a {
  border-bottom: 0;
}
.nav__mobile-links li a:hover,
.nav__mobile-links li a.is-active {
  background: var(--nrg-surface);
  color: var(--nrg-green-500);
}
.nav__mobile-cta {
  display: block;
  margin: 16px 24px 24px;
  text-align: center;
  padding: 13px 20px;
}

/* Show mobile nav elements on small screens */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  /* Only show the mobile menu when it's been opened (hidden attribute removed by JS).
     Without :not([hidden]) the menu would be permanently visible on load. */
  .nav__mobile:not([hidden]) { display: block; }
  .nav {
    position: relative; /* needed so .nav__mobile can position itself */
  }
  /* On mobile, nav__inner switches: logo + hamburger only */
  .nav__inner {
    justify-content: space-between;
  }
  /* Prevent body scroll while mobile menu is open */
  body.nav-open {
    overflow: hidden;
  }
}

/* =========================================================================
   Nav Cockpit dropdown (with lock icon, hover dropdown)
   ========================================================================= */

.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--nrg-teal-800);
  background: transparent;
  border: 0;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__dropdown-trigger:hover,
.nav__dropdown:hover .nav__dropdown-trigger,
.nav__dropdown-trigger.is-active {
  color: var(--nrg-green-500);
  background: rgba(0, 175, 112, 0.06);
}
.nav__lock {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.nav__chev {
  width: 12px; height: 12px;
  transition: transform 0.2s ease;
}
.nav__dropdown:hover .nav__chev {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-md);
  box-shadow: 0 20px 40px -20px rgba(0, 77, 89, 0.3);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 90;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Invisible bridge so menu doesn't close when cursor moves from button to panel */
.nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 10px;
}

.nav__dropdown-item {
  display: block;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  text-decoration: none;
  color: var(--nrg-teal-800);
  transition: background 0.15s ease;
}
.nav__dropdown-item:hover {
  background: var(--nrg-surface);
}
.nav__dropdown-item-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nrg-teal-800);
  margin-bottom: 2px;
}
.nav__dropdown-item-title svg {
  width: 12px; height: 12px;
  color: var(--nrg-muted);
}
.nav__dropdown-item-sub {
  font-size: 12px;
  color: var(--nrg-muted);
  line-height: 1.4;
}
.nav__dropdown-item--cta {
  background: rgba(0, 175, 112, 0.05);
  border-top: 1px solid var(--nrg-border);
  margin-top: 4px;
}
.nav__dropdown-item--cta:hover {
  background: rgba(0, 175, 112, 0.12);
}
.nav__dropdown-item--cta .nav__dropdown-item-title {
  color: var(--nrg-green-500);
}
.nav__dropdown-item--cta .nav__dropdown-item-title svg {
  color: var(--nrg-green-500);
}

/* Hide dropdown on mobile (we use mobile menu groups instead) */
@media (max-width: 860px) {
  .nav__dropdown { display: none; }
}

/* Mobile menu group (Cockpit with 2 subitems) */
.nav__mobile-group {
  border-bottom: 1px solid var(--nrg-border);
  padding: 8px 0;
}
.nav__mobile-group-label {
  padding: 10px 24px 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrg-muted);
}
.nav__mobile-subitem {
  display: block;
  padding: 10px 24px 10px 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--nrg-teal-800);
  transition: background 0.15s ease;
}
.nav__mobile-subitem:hover {
  background: var(--nrg-surface);
  color: var(--nrg-green-500);
}
.nav__mobile-subitem--cta {
  color: var(--nrg-green-500);
  font-weight: 600;
}

/* =========================================================================
   Fix: prevent hamburger bars from intercepting mobile taps
   ========================================================================= */
.nav__toggle * {
  pointer-events: none;
}

/* =========================================================================
   Mobile menu: collapsible groups (Oplossingen + Cockpit)
   ========================================================================= */

.nav__mobile-group {
  border-bottom: 1px solid var(--nrg-border);
  padding: 0;
}
.nav__mobile-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--nrg-teal-800);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}
.nav__mobile-group-toggle:hover {
  background: var(--nrg-surface);
}
.nav__mobile-group-toggle .nav__lock {
  width: 14px; height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
}
.nav__mobile-group-toggle-main {
  display: inline-flex; align-items: center;
}
.nav__mobile-chev {
  width: 16px; height: 16px;
  color: var(--nrg-muted);
  transition: transform 0.25s cubic-bezier(.4, 0, .2, 1);
}
.nav__mobile-group.is-expanded .nav__mobile-chev {
  transform: rotate(180deg);
  color: var(--nrg-teal-800);
}

.nav__mobile-group-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(.4, 0, .2, 1);
  background: var(--nrg-surface);
}
.nav__mobile-group.is-expanded .nav__mobile-group-items {
  max-height: 400px;
}
.nav__mobile-group-items .nav__mobile-subitem {
  display: block;
  padding: 12px 24px 12px 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--nrg-teal-800);
  border-bottom: 1px solid var(--nrg-border);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__mobile-group-items .nav__mobile-subitem:last-child {
  border-bottom: 0;
}
.nav__mobile-group-items .nav__mobile-subitem:hover {
  background: var(--nrg-white);
  color: var(--nrg-green-500);
}
.nav__mobile-subitem--cta {
  color: var(--nrg-green-500) !important;
  font-weight: 600;
}

/* Cockpit dropdown aligned to the right edge (no overflow off-screen) */
.nav__dropdown--end .nav__dropdown-menu {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-6px);
}
.nav__dropdown--end:hover .nav__dropdown-menu,
.nav__dropdown--end:focus-within .nav__dropdown-menu {
  transform: translateX(0) translateY(0);
}

/* Subtle visual distinction for Cockpit login trigger (pill, green accent) */
.nav__dropdown-trigger--cockpit {
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-pill);
  padding: 6px 12px;
}
.nav__dropdown-trigger--cockpit:hover,
.nav__dropdown:hover .nav__dropdown-trigger--cockpit {
  border-color: rgba(0, 175, 112, 0.35);
  background: rgba(0, 175, 112, 0.06);
}
.nav__dropdown-trigger--cockpit .nav__lock {
  color: var(--nrg-green-500);
}

/* =========================================================================
   Energie op locatie
   ========================================================================= */

/* Alternate product-grid section (Groep 2, softer bg) */
.products-grid-section--alt {
  background: var(--nrg-surface);
  border-top: 1px solid var(--nrg-border);
}
.products-grid-section--alt .product-card {
  background: var(--nrg-white);
}

/* Services block (meetdiensten) */
.services-block {
  background: var(--nrg-teal-800);
  color: var(--nrg-white);
  padding: clamp(56px, 7vw, 88px) 0;
}
.services-block .section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}
.services-block .section-head h2 {
  color: var(--nrg-white);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 12px 0 14px;
}
.services-block .section-head p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.services-block .eyebrow {
  color: var(--nrg-green-300);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 40px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(89, 204, 125, 0.35);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
  background: rgba(89, 204, 125, 0.15);
  color: var(--nrg-green-300);
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 26px; height: 26px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--nrg-white);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.service-card__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--nrg-green-300);
  margin: 0 0 14px;
}
.service-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Energie op locatie v2: wider CPMS card + richer service cards
   ========================================================================= */

/* Wide product card (spans 2 columns in products-grid) */
.product-card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0, 175, 112, 0.04) 0%, rgba(0, 125, 140, 0.03) 100%);
  border-color: rgba(0, 175, 112, 0.2);
}
.product-card--wide .product-card__bullets {
  columns: 2;
  column-gap: 32px;
}
.product-card--wide .product-card__bullets li {
  break-inside: avoid;
}
@media (max-width: 720px) {
  .product-card--wide .product-card__bullets { columns: 1; }
}

/* Service card enhancements: sub-heading, bullets, CTA */
.service-card__sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--nrg-green-300);
  text-transform: uppercase;
  margin: 22px 0 12px;
}
.service-card__bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.service-card__bullets li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.service-card__bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--nrg-green-300);
  font-weight: 600;
}

/* Light CTA button for use on dark backgrounds */
.btn--accent-light {
  background: var(--nrg-green-500);
  color: var(--nrg-white);
  border: 1px solid var(--nrg-green-500);
}
.btn--accent-light:hover {
  background: var(--nrg-green-300);
  border-color: var(--nrg-green-300);
  color: var(--nrg-teal-800);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
}

/* =========================================================================
   Legal pages (privacy, disclaimer, disclosure, cookies) placeholder
   ========================================================================= */
.legal-content {
  background: var(--nrg-surface);
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--nrg-border);
}
.legal-content__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.legal-content__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  background: rgba(0, 175, 112, 0.08);
  border: 1px solid rgba(0, 175, 112, 0.22);
  color: var(--nrg-teal-800);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500;
  margin-bottom: 22px;
}
.legal-content__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--nrg-green-500);
  animation: stub-pulse 2s ease-in-out infinite;
}
.legal-content h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.legal-content p {
  font-size: 15px; line-height: 1.65;
  color: var(--nrg-ink-soft);
  margin: 0 auto 24px;
  max-width: 520px;
}
.legal-content__contact {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
}

/* ---- Article layout for full legal text pages ---- */
.legal-article {
  background: var(--nrg-surface);
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--nrg-border);
}
.legal-article__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-article__updated {
  font-size: 13px;
  color: var(--nrg-muted);
  margin: 0 0 32px;
  font-style: italic;
}
.legal-article__download {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border-strong);
  border-radius: var(--r-md);
  color: var(--nrg-teal-800);
  font-weight: 500; font-size: 14px;
  margin-bottom: 40px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.legal-article__download:hover {
  border-color: var(--nrg-teal-800);
  background: var(--nrg-surface-2);
  transform: translateY(-1px);
}
.legal-article__download svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--nrg-green-500);
}
.legal-article h2 {
  font-size: 22px; font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
  scroll-margin-top: 96px;
}
.legal-article h2:first-of-type { margin-top: 0; }
.legal-article h3 {
  font-size: 17px; font-weight: 600;
  color: var(--nrg-teal-800);
  margin: 28px 0 10px;
}
.legal-article p,
.legal-article li {
  font-size: 15px; line-height: 1.7;
  color: var(--nrg-ink-soft);
  margin: 0 0 14px;
}
.legal-article ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 18px;
}
.legal-article li { margin-bottom: 6px; }
.legal-article a {
  color: var(--nrg-teal-600);
  border-bottom: 1px solid rgba(0, 125, 140, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.legal-article a:hover {
  color: var(--nrg-green-500);
  border-color: var(--nrg-green-500);
}
.legal-article strong { color: var(--nrg-teal-800); font-weight: 600; }
.legal-article__footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--nrg-border);
  font-size: 14px;
  color: var(--nrg-muted);
}
.legal-article__footer a { color: var(--nrg-teal-600); }

/* =========================================================================
   Regie over energie: featured Cockpit + EVinity block
   ========================================================================= */

/* Featured product (Cockpit - het hoofdproduct) */
.featured-product {
  background: var(--nrg-white);
  padding: clamp(56px, 7vw, 88px) 0;
}
.featured-product__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.featured-product__content {
  min-width: 0;
}
.featured-product__badge {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nrg-green-500);
  padding: 5px 14px;
  background: rgba(0, 175, 112, 0.1);
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.featured-product h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
}
.featured-product__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--nrg-ink-soft);
  margin: 0 0 24px;
}
.featured-product__bullets {
  list-style: none;
  margin: 0 0 28px; padding: 0;
}
.featured-product__bullets li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px; line-height: 1.5;
  color: var(--nrg-ink-soft);
  border-bottom: 1px solid var(--nrg-border);
}
.featured-product__bullets li:last-child { border-bottom: 0; }
.featured-product__bullets li::before {
  content: "";
  position: absolute;
  left: 4px; top: 18px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--nrg-green-500);
}
.featured-product__bullets li strong {
  color: var(--nrg-teal-800);
  font-weight: 600;
}
.featured-product__actions {
  display: flex; flex-wrap: wrap;
  gap: 10px;
}
.featured-product__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--nrg-surface-2);
  box-shadow: 0 24px 48px -24px rgba(0, 77, 89, 0.25);
}

@media (max-width: 860px) {
  .featured-product__grid { grid-template-columns: 1fr; }
  .featured-product__visual { aspect-ratio: 16/11; }
}

/* EVinity block - apart merk met eigen look */
.evinity-block {
  background: linear-gradient(135deg, var(--nrg-teal-800) 0%, #003844 100%);
  color: var(--nrg-white);
  padding: clamp(56px, 7vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.evinity-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(89, 204, 125, 0.1), transparent 50%);
  pointer-events: none;
}
.evinity-block__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}
.evinity-block__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5);
}
.evinity-block__content {
  min-width: 0;
}
.evinity-block__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(89, 204, 125, 0.3);
  border-radius: var(--r-pill);
}
.evinity-block__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--nrg-green-300);
  letter-spacing: -0.01em;
}
.evinity-block__tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.7);
}
.evinity-block h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--nrg-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 18px;
}
.evinity-block__lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}
.evinity-block__bullets {
  list-style: none;
  margin: 0 0 28px; padding: 0;
}
.evinity-block__bullets li {
  position: relative;
  padding: 9px 0 9px 24px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.evinity-block__bullets li::before {
  content: "→";
  position: absolute;
  left: 0; top: 9px;
  color: var(--nrg-green-300);
  font-weight: 700;
}
.evinity-block__bullets li strong {
  color: var(--nrg-white);
  font-weight: 600;
}

@media (max-width: 860px) {
  .evinity-block__grid { grid-template-columns: 1fr; }
  .evinity-block__visual { order: -1; aspect-ratio: 16/11; }
}

/* Small visual inside a product-card (for Stroomkaart) */
.product-card__visual-small {
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: var(--r-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--nrg-surface-2);
  margin: 0 0 16px;
}

/* =========================================================================
   Enriched product-card: sub-headings, case-block, split layout, actions
   ========================================================================= */

/* Sub-heading inside a product-card (for "Beantwoordt vragen als:" etc) */
.product-card__sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nrg-green-500);
  margin: 20px 0 10px;
}
.product-card__sub:first-child { margin-top: 0; }

/* Case study block inside product-card */
.product-card__case {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-md);
  border-left: 3px solid var(--nrg-green-500);
}
.product-card__case-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nrg-muted);
  margin-bottom: 8px;
}
.product-card__case p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--nrg-ink-soft);
  margin: 0 0 10px;
}
.product-card__case p strong {
  color: var(--nrg-teal-800);
  font-weight: 600;
}
.product-card__case-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--nrg-green-500);
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-card__case-link:hover {
  color: var(--nrg-teal-800);
}

/* Actions (multiple buttons) at bottom of a product-card */
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* Split layout inside a wide product-card (2 columns of content) */
.product-card__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: 8px;
}
.product-card__split-left,
.product-card__split-right {
  min-width: 0;
}
@media (max-width: 760px) {
  .product-card__split { grid-template-columns: 1fr; gap: 20px; }
}

/* In a single-column products-grid (stroomkaart wide + meetdiensten below) */
.products-grid--single {
  grid-template-columns: 1fr;
}

/* =========================================================================
   Sectoren hub: 5 sector-cards + audience pills
   ========================================================================= */

.sectors-list {
  background: var(--nrg-white);
  padding: clamp(48px, 6vw, 88px) 0;
}
.sector-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--nrg-border);
}
.sector-card:last-child { border-bottom: 0; }
.sector-card--reverse .sector-card__content { order: 2; }
.sector-card--reverse .sector-card__visual { order: 1; }

.sector-card__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--nrg-teal-800);
  margin: 0 0 12px;
}
.sector-card__audience {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.sector-card__lede {
  font-size: 16px; line-height: 1.6;
  color: var(--nrg-ink-soft);
  margin: 0 0 22px;
}
.sector-card__bullets {
  list-style: none;
  margin: 0 0 28px; padding: 0;
}
.sector-card__bullets li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 15px; line-height: 1.5;
  color: var(--nrg-teal-800);
  border-bottom: 1px solid var(--nrg-border);
}
.sector-card__bullets li:last-child { border-bottom: 0; }
.sector-card__bullets li::before {
  content: "";
  position: absolute;
  left: 4px; top: 16px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--nrg-green-500);
}
.sector-card__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--nrg-surface-2);
}

@media (max-width: 860px) {
  .sector-card { grid-template-columns: 1fr; gap: 24px; }
  .sector-card--reverse .sector-card__content { order: 0; }
  .sector-card--reverse .sector-card__visual { order: 0; }
}

/* Audience pills (for both hub + subpage heroes) */
.audience-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(0, 175, 112, 0.1);
  color: var(--nrg-green-500);
  border: 1px solid rgba(0, 175, 112, 0.25);
  line-height: 1.4;
}
/* Slightly different style for use on page-hero (light surface) */
.audience-pill--on-light {
  background: var(--nrg-white);
  color: var(--nrg-teal-800);
  border-color: var(--nrg-border);
}

/* Sector subpage: audience strip in hero */
.sector-page__audience {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 12px 0 20px;
}

/* =========================================================================
   Cockpit product page
   ========================================================================= */

/* Hero - premium feel */
.cockpit-hero {
  background: linear-gradient(135deg, var(--nrg-teal-800) 0%, #003844 100%);
  color: var(--nrg-white);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.cockpit-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 25%, rgba(89, 204, 125, 0.12), transparent 55%);
  pointer-events: none;
}
.cockpit-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}
.cockpit-hero__content {
  min-width: 0;
}
.cockpit-hero__brand {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(89, 204, 125, 0.3);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.cockpit-hero__brand-icon {
  width: 16px; height: 16px;
  color: var(--nrg-green-300);
}
.cockpit-hero__brand-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--nrg-green-300);
  letter-spacing: 0.02em;
}
.cockpit-hero__title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--nrg-white);
  margin: 0 0 20px;
}
.cockpit-hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 560px;
}
.cockpit-hero__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.cockpit-hero__login-btn {
  color: var(--nrg-white);
  border-color: rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cockpit-hero__login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(89, 204, 125, 0.5);
  color: var(--nrg-green-300);
}
.cockpit-hero__login-btn svg {
  width: 16px; height: 16px;
}
.cockpit-hero__ext { width: 13px !important; height: 13px !important; }
.cockpit-hero__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 860px) {
  .cockpit-hero__grid { grid-template-columns: 1fr; }
  .cockpit-hero__visual { aspect-ratio: 16/11; order: -1; }
}

/* Capabilities (4 kern-kaarten) */
.capabilities {
  background: var(--nrg-white);
  padding: clamp(56px, 7vw, 96px) 0;
}
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(32px, 4vw, 48px);
}
.capability-card {
  background: var(--nrg-surface);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.capability-card:hover {
  border-color: var(--nrg-teal-300);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(0, 77, 89, 0.2);
}
.capability-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
  background: rgba(0, 175, 112, 0.1);
  color: var(--nrg-green-500);
  margin-bottom: 16px;
}
.capability-card__icon svg { width: 22px; height: 22px; }
.capability-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.capability-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--nrg-ink-soft);
  margin: 0;
}
@media (max-width: 960px) { .capabilities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .capabilities__grid { grid-template-columns: 1fr; } }

/* Audience block (voor wie) */
.audience-block {
  background: var(--nrg-surface);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--nrg-border);
  border-bottom: 1px solid var(--nrg-border);
}
.section-head--center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.audience-block__pills {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
}
.audience-big-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(18px, 2.5vw, 26px);
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.audience-big-pill:hover {
  border-color: var(--nrg-green-500);
  background: rgba(0, 175, 112, 0.04);
  transform: translateY(-2px);
}
.audience-big-pill__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--nrg-green-500);
}
.audience-big-pill__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
}
@media (max-width: 900px) { .audience-block__pills { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .audience-block__pills { grid-template-columns: repeat(2, 1fr); } }

/* Integrations block (6 bronnen) */
.integrations {
  background: var(--nrg-white);
  padding: clamp(56px, 7vw, 96px) 0;
}
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
}
.integration-card {
  background: var(--nrg-surface);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.8vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.integration-card:hover {
  border-color: var(--nrg-teal-300);
  transform: translateY(-2px);
}
.integration-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  color: var(--nrg-teal-600);
}
.integration-card__icon svg { width: 20px; height: 20px; }
.integration-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
  margin: 0;
}
.integration-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--nrg-ink-soft);
  margin: 0;
}
@media (max-width: 860px) { .integrations__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .integrations__grid { grid-template-columns: 1fr; } }

/* Features grid (2x4) */
.features-grid-section {
  background: var(--nrg-surface);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--nrg-border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 40px);
}
.feature-item {
  padding-left: 20px;
  position: relative;
}
.feature-item::before {
  content: "→";
  position: absolute;
  left: 0; top: 2px;
  color: var(--nrg-green-500);
  font-weight: 700;
}
.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--nrg-teal-800);
  margin: 0 0 6px;
}
.feature-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--nrg-ink-soft);
  margin: 0;
}
@media (max-width: 720px) { .features-grid { grid-template-columns: 1fr; } }

/* Login-CTA (voor bestaande klanten) */
.login-cta {
  background: var(--nrg-white);
  padding: clamp(40px, 5vw, 56px) 0;
}
.login-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  padding: clamp(24px, 3vw, 36px) clamp(28px, 3.5vw, 40px);
  background: linear-gradient(135deg, rgba(0, 175, 112, 0.06) 0%, rgba(0, 125, 140, 0.04) 100%);
  border: 1px solid rgba(0, 175, 112, 0.22);
  border-radius: var(--r-lg);
}
.login-cta__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  color: var(--nrg-green-500);
  flex-shrink: 0;
}
.login-cta__icon svg { width: 26px; height: 26px; }
.login-cta__content h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--nrg-teal-800);
  margin: 0 0 4px;
  letter-spacing: -0.015em;
}
.login-cta__content p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--nrg-ink-soft);
  margin: 0;
}
.login-cta__content p strong {
  color: var(--nrg-teal-800);
}
.login-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.login-cta__btn svg { width: 15px; height: 15px; }

@media (max-width: 760px) {
  .login-cta__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 16px;
  }
  .login-cta__btn { justify-self: start; }
}


/* =========================================================================
   Interactieve NRG-aanpak illustratie (sector-bouw-infra)
   Nagebouwd van nrggroup.nl homepage "interactive-toggle" module
   ========================================================================= */

.nrg-approach {
  background: var(--nrg-white);
  padding: clamp(48px, 6vw, 88px) 0;
}

.nrg-approach__img-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  background: #ffffff;
}

.nrg-approach__img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

/* Each toggle = marker + content (anchored to a position over the image) */
.nrg-toggle {
  position: absolute;
  width: 0; height: 0; /* pure anchor point; marker positions itself around it */
  z-index: 2;
}

/* Marker: pulsing green dot on the image */
.nrg-toggle__marker {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  padding: 0;
  border: 0;
  background: var(--nrg-green-500);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(0, 175, 112, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 3;
}
.nrg-toggle__marker::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--nrg-green-500);
  animation: nrg-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes nrg-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.8); opacity: 0;   }
  100% { transform: scale(1.8); opacity: 0;   }
}
.nrg-toggle__marker:hover,
.nrg-toggle__marker:focus-visible,
.nrg-toggle.is-open .nrg-toggle__marker {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 0 7px rgba(0, 175, 112, 0.35);
}
.nrg-toggle.is-open .nrg-toggle__marker {
  background: var(--nrg-teal-800);
}

/* Content card: white box that appears on hover/tap */
.nrg-toggle__content {
  position: absolute;
  bottom: calc(100% + 18px);
  width: 320px;
  background: var(--nrg-white);
  border: 1px solid var(--nrg-border);
  border-radius: var(--r-md);
  box-shadow: 0 22px 48px -24px rgba(0, 77, 89, 0.35);
  padding: 18px 20px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 4;
  pointer-events: none;
}
/* Default anchor card to LEFT side of marker */
.nrg-toggle__content--left {
  left: -10px;
}
/* Anchor to RIGHT side for markers on the right half of the image */
.nrg-toggle__content--right {
  right: -10px;
}
.nrg-toggle.is-open .nrg-toggle__content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/* Little triangle pointer */
.nrg-toggle__content::after {
  content: "";
  position: absolute;
  bottom: -7px;
  width: 14px; height: 14px;
  background: var(--nrg-white);
  border-right: 1px solid var(--nrg-border);
  border-bottom: 1px solid var(--nrg-border);
  transform: rotate(45deg);
}
.nrg-toggle__content--left::after { left: 16px; }
.nrg-toggle__content--right::after { right: 16px; }

.nrg-toggle__content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--nrg-teal-800);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.nrg-toggle__content p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--nrg-ink-soft);
  margin: 0;
}
.nrg-toggle__content p a {
  color: var(--nrg-green-500);
  font-weight: 500;
}
.nrg-toggle__content p a:hover {
  text-decoration: underline;
}

.nrg-approach__hint {
  text-align: center;
  font-size: 13px;
  color: var(--nrg-muted);
  margin-top: 18px;
}

/* Mobile: content stays in-flow under the image instead of overlaying it */
@media (max-width: 720px) {
  .nrg-toggle__marker {
    width: 22px; height: 22px;
  }
  .nrg-toggle__content {
    position: fixed;
    top: auto;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    transform: translateY(16px);
  }
  .nrg-toggle__content--left,
  .nrg-toggle__content--right {
    left: 16px; right: 16px;
  }
  .nrg-toggle.is-open .nrg-toggle__content {
    transform: translateY(0);
  }
  /* Hide the arrow tail on mobile (not pointing at anything meaningful) */
  .nrg-toggle__content::after { display: none; }
}

/* =========================================================================
   Case highlight block (sector-overheden + others)
   ========================================================================= */

.case-highlight {
  background: linear-gradient(135deg, var(--nrg-teal-800) 0%, #003844 100%);
  color: var(--nrg-white);
  padding: clamp(56px, 7vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.case-highlight::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 40%, rgba(89, 204, 125, 0.1), transparent 50%);
  pointer-events: none;
}
.case-highlight__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.case-highlight__tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(89, 204, 125, 0.15);
  border: 1px solid rgba(89, 204, 125, 0.35);
  color: var(--nrg-green-300);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.case-highlight h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--nrg-white);
  margin: 0 0 18px;
}
.case-highlight__lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 36px;
  max-width: 640px;
}
.case-highlight__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: 32px;
}
.case-highlight__stat {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  text-align: center;
}
.case-highlight__stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-highlight__stat-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--nrg-green-300);
  line-height: 1.3;
}
.case-highlight__link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--nrg-green-300);
  text-decoration: none;
  transition: color 0.2s ease;
}
.case-highlight__link:hover {
  color: var(--nrg-white);
}

@media (max-width: 720px) {
  .case-highlight__stats { grid-template-columns: 1fr; }
}

/* =========================================================================
   Top nav: pill-shaped elements override
   The site uses square corners as a global token, but the top-nav has a
   handful of elements that should keep their pill / rounded shape:
   - Cockpit dropdown trigger
   - NL / EN language switcher (container + active button)
   - Plan een demo CTA
   - Mobile-menu Plan een demo CTA
   ========================================================================= */
.nav__dropdown-trigger--cockpit { border-radius: 999px; }
.lang-switch { border-radius: 999px; }
.lang-switch__btn { border-radius: 999px; }
.nav__cta { border-radius: 999px; }
.nav__mobile-cta { border-radius: 999px; }
