/* Global Utility Classes to replace inline styles */
.max-w-800 { max-width: 800px; width: 100%; }
.max-w-700 { max-width: 700px; width: 100%; }
.img-h-400 { max-height: 400px; }
.list-none { list-style: none; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

.fs-small { font-size: 0.7rem; }
.fs-medium { font-size: 1.2rem; }

.bg-cyan-glow { background: rgba(0, 229, 255, 0.2); }
.bg-purple-glow { background: rgba(124, 58, 237, 0.2); }
.bg-blue-soft { background: rgba(46, 163, 214, 0.1); }

.flex-gap-10 { gap: 10px; }
.flex-gap-15 { gap: 15px; }

.text-inherit { color: inherit; }
.no-underline { text-decoration: none; }

/* AI Decor Circles */
.ai-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}
