
                .live-demo {
                    background: var(--primary-blue, #457b9d);
                    color: var(--white);
                    padding: 4px 12px;
                    border-radius: 20px;
                    font-size: 0.8rem;
                    font-weight: 500;
                }
                
                .card-content {
                    padding: 30px;
                }
                
                .card-content p {
                    color: var(--dark-gray);
                    margin-bottom: 20px;
                }
                
                .gait-analysis-display {
                    height: 200px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }
                
                .foot-pressure-map {
                    display: flex;
                    justify-content: center;
                    gap: 20px;
                    height: 140px;
                }
                
                .foot {
                    position: relative;
                    width: 70px;
                    height: 140px;
                    background: rgba(240, 240, 240, 0.8);
                    border-radius: 40% 40% 50% 50%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                
                .left-foot {
                    transform: rotate(-5deg);
                    box-shadow: inset 0 0 15px rgba(230, 57, 70, 0.3);
                }
                
                .right-foot {
                    transform: rotate(5deg);
                    box-shadow: inset 0 0 10px rgba(230, 57, 70, 0.1);
                }
                
                .pressure-points {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                }
                
                .pressure-point {
                    position: absolute;
                    width: 15px;
                    height: 15px;
                    background: radial-gradient(circle, rgba(230, 57, 70, 1) 0%, rgba(230, 57, 70, 0) 70%);
                    border-radius: 50%;
                    transform: translate(-50%, -50%);
                }
                
                .pressure-point.high {
                    width: 20px;
                    height: 20px;
                    background: radial-gradient(circle, rgba(230, 57, 70, 1) 0%, rgba(230, 57, 70, 0.3) 70%);
                    animation: pulse 2s infinite;
                }
                
                @keyframes pulse {
                    0% {
                        transform: translate(-50%, -50%) scale(1);
                    }
                    50% {
                        transform: translate(-50%, -50%) scale(1.2);
                    }
                    100% {
                        transform: translate(-50%, -50%) scale(1);
                    }
                }
                
                .foot-label {
                    position: absolute;
                    top: 5px;
                    font-weight: bold;
                    font-size: 14px;
                    color: var(--dark-gray);
                }
                
                .pressure-value {
                    position: absolute;
                    bottom: 10px;
                    font-weight: bold;
                    font-size: 14px;
                    color: var(--primary-red, #e63946);
                }
                
                .gait-metrics {
                    display: flex;
                    justify-content: space-around;
                    margin-top: 10px;
                }
                
                .metric {
                    text-align: center;
                }
                
                .metric-value {
                    font-weight: bold;
                    font-size: 16px;
                    color: var(--primary-blue, #457b9d);
                }
                
                .metric-label {
                    font-size: 12px;
                    color: var(--dark-gray);
                }
              