/* ── Tools op maat ───────────────────────────────────────── */
.tool-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}
.tool-highlight.reverse { direction: rtl; }
.tool-highlight.reverse > * { direction: ltr; }

.tool-highlight-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tool-highlight-img img { width: 100%; height: auto; display: block; }

.tool-highlight-text h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; }
.tool-highlight-text p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.25rem; }

.tool-divider { border: 0; border-top: 1px solid var(--gray-200); margin: 0; }

/* ── Proo intro block ────────────────────────────────────── */
.proo-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.proo-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proo-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}
.proo-text h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: .875rem; }
.proo-text p  { color: var(--text-muted); line-height: 1.75; margin-bottom: .75rem; }
.proo-text p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .tool-highlight, .tool-highlight.reverse { grid-template-columns: 1fr; direction: ltr; }
  .proo-intro { grid-template-columns: 1fr; text-align: center; }
  .proo-logo  { max-width: 120px; margin: 0 auto; }
}
