/* Why SixVM Page Specific Styles */

/* 1. Hero Neural Background */
.hero-why {
    position: relative;
    overflow: hidden;
}

.neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    z-index: 0;
}

.neural-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, rgba(64, 128, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(64, 128, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 20px 20px;
    background-position: 0 0, 25px 25px;
    animation: neural-move 60s linear infinite;
    opacity: 0.6;
}

@keyframes neural-move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -50px) rotate(5deg);
    }
}

/* 2. Vector Rows (Alternating Layout) */
.vector-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 60px;
    opacity: 0;
    /* For scroll animation */
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.vector-row.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.vector-row.reverse {
    flex-direction: row-reverse;
}

.vector-content {
    flex: 1;
    position: relative;
}

.vector-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -60px;
    left: -20px;
    z-index: -1;
    line-height: 1;
}

.vector-content h3 {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vector-content h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.vector-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

.vector-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Image Styles */
.vector-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.5s ease;
    z-index: 0;
    filter: grayscale(100%);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.vector-visual:hover img {
    transform: scale(1.1);
    opacity: 0.8;
    filter: grayscale(0%);
}

.vector-visual:hover .visual-overlay {
    background: radial-gradient(circle, rgba(64, 128, 255, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.vector-visual i {
    font-size: 5rem;
    color: #fff;
    transition: all 0.5s ease;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

.vector-visual:hover i {
    color: var(--accent-cyan);
    transform: scale(1.2);
    text-shadow: 0 0 30px var(--accent-cyan);
}


/* Logo Marquee Styles */
.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 40s linear infinite;
    gap: 60px;
    padding-left: 60px;
    /* Offset for gap */
}

.tech-brand {
    font-size: 1.5rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: color 0.3s;
}

.tech-brand i {
    font-size: 2rem;
}

.tech-brand:hover {
    color: #fff;
}

.tech-brand:hover i {
    color: var(--accent-cyan);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* 3. Comparison Table */
.comparison-table {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
}

.table-scroll-wrapper {
    width: 100%;
}

.comp-header {
    background: #111;
    padding: 20px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
}

.comp-header.premium {
    background: rgba(64, 128, 255, 0.1);
    color: var(--accent-cyan);
    position: relative;
}

.comp-header.premium::after {
    content: '★';
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

.comp-cell {
    background: #0a0a0a;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-align: center;
    font-size: 0.95rem;
}

.comp-cell.feature {
    justify-content: flex-start;
    color: #fff;
    font-weight: 600;
    padding-left: 30px;
    background: #0e0e0e;
}

.comp-cell.highlight {
    color: #fff;
    background: rgba(64, 128, 255, 0.02);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(64, 128, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .vector-row {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .vector-number {
        left: 50%;
        transform: translateX(-50%);
        top: -40px;
        font-size: 6rem;
    }

    /* Keep scrollable table for mobile */
    .table-scroll-wrapper {
        overflow-x: auto;
        opacity: 1 !important;
        /* Force visibility */
        transform: none !important;
    }

    .comparison-table {
        min-width: 600px;
        /* Force width to trigger scroll */
    }
}