.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 200, 83, 0.1);
}

.hero-text-gradient {
    background: linear-gradient(to right, #111827, #00C853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-box-shadow {
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.15);
}

/* Input Slider Customization */
input[type=range] {
    -webkit-appearance: none; 
    background: transparent; 
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #00C853;
    border: 2px solid white;
    cursor: pointer;
    margin-top: -10px; 
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.6);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #374151;
    border-radius: 2px;
}

/* Custom Comparison Table Styles */
.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.check-item:last-child { border-bottom: none; }
