/* Scan Line Animation */
@keyframes comp-scan {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(200%);
        opacity: 0;
    }
}

.comp-scan-line {
    animation: comp-scan 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Icon Glow Box */
.comp-icon-glow-box {
    position: relative;
}

.comp-icon-glow-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
}

/* Comparison Card Hover */
.comp-comparison-card:hover {
    border-color: rgba(99, 102, 241, 0.3) !important;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}

.comp-comparison-card:hover h3:first-of-type {
    color: #ffffff;
}