.fw-pipeline {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: var(--s2);
  padding: var(--s6) var(--s8);
  background: var(--midnight);
  border-radius: var(--r-md);
  margin: var(--s8) 0;
}
.fw-pipe-item {
  font-size: 14px; font-weight: 600;
  color: white; letter-spacing: .04em;
}
.fw-pipe-arrow {
  color: var(--gold); font-size: 11px; font-weight: 700;
}

.dim-full {
  padding: var(--s12) 0;
  border-bottom: 1px solid var(--border);
}
.dim-full:nth-child(even) { background: var(--sand); }
.dim-full:nth-child(odd)  { background: var(--blanc); }

.dim-full-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: var(--s12); align-items: start;
}
.dim-full-sidebar {
  background: var(--midnight);
  border-radius: var(--r-md);
  padding: var(--s6);
  position: sticky; top: 90px;
}
.dim-big-num {
  font-size: 4rem; font-weight: 700;
  color: rgba(132,178,199,.3); line-height: 1;
  margin-bottom: var(--s2);
}
.dim-full-sidebar h3 { color: white; margin-bottom: var(--s3); }
.dim-ki-badge {
  margin-top: var(--s4); padding: var(--s2) var(--s3);
  background: rgba(212,175,55,.15);
  border-radius: var(--r-xs);
  font-size: 12px; font-weight: 700;
  color: var(--gold); letter-spacing: .06em;
}
.dim-content h3 { margin-bottom: var(--s4); }
.dim-content p { margin-bottom: var(--s4); }
.dim-tools {
  display: flex; flex-wrap: wrap; gap: var(--s2);
  margin-top: var(--s4);
}
.dim-tool {
  padding: 3px 10px;
  background: rgba(0,112,168,.08);
  border: 1px solid rgba(0,112,168,.2);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  color: var(--dunkelblau);
}

.new-badge {
  display: inline-block;
  padding: 2px 8px; background: var(--gold);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  color: var(--midnight); letter-spacing: .08em;
  text-transform: uppercase; margin-left: 6px;
}

@media (max-width: 900px) {
  .dim-full-grid { grid-template-columns: 1fr; }
  .dim-full-sidebar { position: static; }
}
