1. Identify performance issues (jank, low FPS) in GSAP animations.
2. Analyze the code for layout-heavy properties (width, height, top, left).
3. Recommend using transforms (x, y, scale, rotation, opacity) instead.
4. Suggest using `will-change` CSS property for animating elements.
5. Advise batching reads and writes to avoid layout thrashing.
6. Recommend `gsap.quickTo()` for frequently updated properties.
7. Optimize ScrollTrigger configuration (scrub, refresh).