  /* ===== SLIDE 5: PRODUCT ===== */
  .kill-chain {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    margin: 0.6rem 0;
  }

  .kc-step {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 0;
    text-align: center;
  }

  .kc-step.partner { background: #1E1E1E; border: 1px solid #3A3836; }
  .kc-step.tehiru { background: #1E1E1E; border: 2px solid var(--blue); }

  .kc-step-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
  }

  .kc-step-owner {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .kc-step.partner .kc-step-owner { color: var(--text-muted); }
  .kc-step.tehiru .kc-step-owner { color: var(--blue); }

  .kc-arrow {
    font-size: 1rem;
    color: #d1d5db;
    flex-shrink: 0;
    padding: 0 0.2rem;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.65rem;
    width: 100%;
    margin-top: 0.9rem;
  }

  .prod-chip {
    background:#1E1E1E;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.65rem 0.5rem;
    text-align: center;
    box-shadow: none;
  }

  .prod-chip-name {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.15rem;
  }

  .prod-chip-desc { font-size: 0.6rem; color: var(--text-muted); line-height: 1.3; }
