.modules { background: var(--color-bg-alt); }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.module-card { padding: 30px 24px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); transition: all 0.4s var(--ease-out-expo); position: relative; overflow: hidden; }
.module-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0; background: linear-gradient(to top, rgba(124,58,237,0.08), transparent); transition: height 0.4s var(--ease-out-expo); }
.module-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.3); }
.module-card:hover::after { height: 100%; }
.module-icon-wrap { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(124,58,237,0.08); color: var(--color-primary-light); margin-bottom: 18px; position: relative; z-index: 1; }
.module-card h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.module-card p { font-size: 0.84rem; color: var(--color-text-muted); line-height: 1.65; position: relative; z-index: 1; }