/* ── PROBLEM/SOLUTION CARDS ── */
.agent-problems{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2rem}
.agent-problem{padding:1.5rem}
.agent-problem-icon{font-size:1.5rem;margin-bottom:.75rem}
.agent-problem h4{font-size:1rem;font-weight:700;margin-bottom:.5rem}
.agent-problem.problem h4{color:var(--red-400)}
.agent-problem.solution h4{color:var(--brand-400)}
.agent-problem p{font-size:.8125rem;color:var(--surface-500);line-height:1.6}

/* ── FEATURE CARDS ── */
.agent-features{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:2rem}
.agent-feature{padding:2rem}
.agent-feature h4{font-size:1rem;font-weight:700;color:var(--surface-900);margin-bottom:.5rem}
.agent-feature p{font-size:.8125rem;color:var(--surface-500);line-height:1.6}

@media(max-width:768px){
  .agent-problems{grid-template-columns:1fr}
  .agent-features{grid-template-columns:1fr}
}
