.techus-tool-card{
max-width:700px;
margin:40px auto;
background:#fff;
border-radius:16px;
padding:30px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
font-family:Inter,Arial,sans-serif;
}

.techus-header{
text-align:center;
margin-bottom:25px;
}

.techus-header h2{
margin:0;
font-size:30px;
color:#111827;
}

.techus-header p{
color:#6b7280;
margin-top:8px;
}

.techus-slider-wrap{
display:flex;
align-items:center;
gap:15px;
margin:15px 0;
}

.techus-slider-wrap input{
flex:1;
}

.techus-options{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin:25px 0;
}

.techus-options label{
display:flex;
gap:8px;
align-items:center;
}

.techus-btn{
width:100%;
padding:15px;
background:#2563EB;
color:#fff;
border:none;
border-radius:12px;
font-size:17px;
cursor:pointer;
transition:.3s;
}

.techus-btn:hover{
background:#1d4ed8;
}

.techus-output{
display:flex;
gap:10px;
margin-top:20px;
}

.techus-output input{
flex:1;
padding:14px;
border:1px solid #ddd;
border-radius:10px;
}

.techus-copy{
padding:14px 20px;
background:#22C55E;
border:none;
color:#fff;
border-radius:10px;
cursor:pointer;
}

.strength-bar{
height:10px;
background:#e5e7eb;
border-radius:20px;
margin-top:25px;
overflow:hidden;
}

#strengthFill{
height:100%;
width:0%;
background:#22C55E;
transition:.4s;
}

#strengthText{
display:block;
margin-top:8px;
font-weight:600;
}

@media(max-width:768px){

.techus-options{
grid-template-columns:1fr;
}

.techus-output{
flex-direction:column;
}

}

/* ===== WORD COUNTER ===== */

#wordCounterInput{
    width:100%;
    min-height:250px;
    padding:18px;
    border:1px solid #d1d5db;
    border-radius:12px;
    font-size:16px;
    resize:vertical;
    margin-top:20px;
    outline:none;
}

#wordCounterInput:focus{
    border-color:#2563eb;
}

.techus-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin:25px 0;
}

.stat-box{
    background:#f8fafc;
    padding:20px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.stat-box h3{
    margin:0;
    font-size:30px;
    color:#2563eb;
}

.stat-box span{
    color:#6b7280;
}

@media(max-width:768px){

.techus-stats{
grid-template-columns:repeat(2,1fr);
}

}