/* Base Font Setup */
body { 
    font-family: 'Outfit', sans-serif; 
}

/* =========================================
   PREMIUM CALCULATOR SLIDERS (SyokPinjam Style)
   ========================================= */
.tech-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #e2e8f0; /* slate-200 */
    border-radius: 10px;
    outline: none;
    margin: 10px 0;
}

.tech-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0d9488; /* teal-600 */
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
    cursor: pointer;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.tech-range::-webkit-slider-thumb:active { 
    transform: scale(1.2); 
}

/* Firefox compatibility for slider */
.tech-range::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0d9488;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
    cursor: pointer;
    transition: transform 0.15s;
}

/* =========================================
   ANIMATIONS & EFFECTS
   ========================================= */

/* Auto-scrolling Trust Bar */
.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

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

/* Subtle Hero Mesh Gradient */
.hero-mesh {
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 0% 0%, hsla(171, 100%, 93%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(204, 100%, 96%, 1) 0px, transparent 50%);
}

/* Hide scrollbar for clean horizontal lists */
.hide-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.hide-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}