html { scroll-behavior: smooth; }

.hero-overlay { 
    background: linear-gradient(90deg, rgba(15,23,42,0.96) 0%, rgba(15,23,42,0.75) 100%); 
}

.feature-card { 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.feature-card:hover { 
    transform: translateY(-10px); 
}

.text-justify-custom { 
    text-align: justify; 
    text-justify: inter-word; 
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.btn-call-float { 
    animation: pulse-blue 2s infinite; 
}

.step-number { 
    -webkit-text-stroke: 1px #2563eb; 
    color: transparent; 
}

.tech-table tr:nth-child(even) { 
    background-color: rgba(30, 41, 59, 1); 
}

.tech-table tr:nth-child(odd) { 
    background-color: rgba(15, 23, 42, 1); 
}

.trust-badge { 
    background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.1); 
}