/* Enhanced Solution Section with Visuals */

#solution {
    position: relative;
    overflow: hidden;
}

/* Animated orbital path background */
#solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 166, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 204, 102, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Orbital rings in background */
#solution::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 1px solid rgba(0, 166, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: rotate 60s linear infinite;
}

/* Add icons to comparison rows */
.comparison-table {
    position: relative;
    z-index: 1;
}

.comparison-row {
    position: relative;
    padding-left: 60px; /* Make room for icons */
}

/* Icon container for each row */
.comparison-row::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.comparison-row:hover::before {
    opacity: 0.8;
}

/* Row 1: Propulsion icon */
.comparison-row:nth-child(2)::before {
    content: '🚀';
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Row 2: Cost icon */
.comparison-row:nth-child(3)::before {
    content: '💰';
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Row 3: Certification icon */
.comparison-row:nth-child(4)::before {
    content: '✅';
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating container illustrations */
.solution-visual-container {
    position: absolute;
    width: 300px;
    height: 200px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.solution-visual-left {
    top: 20%;
    left: -50px;
    animation: float 20s ease-in-out infinite;
}

.solution-visual-right {
    bottom: 20%;
    right: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Add subtle grid pattern */
.comparison-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 166, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Highlight effect on hover */
.comparison-row {
    transition: all 0.3s;
}

.comparison-row:hover {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 166, 255, 0.05) 50%, transparent 100%);
}

/* Add connecting lines between rows */
.comparison-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 166, 255, 0.2) 50%, transparent 100%);
}
