
#vox-esim-finder-app,
#vox-esim-finder-app *{
    box-sizing:border-box;
}

#vox-esim-finder-app{
    width:100%;
    background:#020617;
    color:#fff;
    padding:40px 20px;
    font-family:Arial,sans-serif;
}

#vox-esim-finder-app .vox-container{
    max-width:1200px;
    margin:auto;
}

#vox-esim-finder-app .vox-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    overflow:hidden;
    backdrop-filter:blur(16px);
}

#vox-esim-finder-app .vox-header{
    padding:40px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

#vox-esim-finder-app h1{
    margin:0 0 10px;
    font-size:48px;
    color:#fff;
}

#vox-esim-finder-app p{
    color:#cbd5e1;
}

#vox-esim-finder-app .vox-progress-wrap{
    height:10px;
    background:#1e293b;
    border-radius:999px;
    margin-top:30px;
    overflow:hidden;
}

#vox-esim-finder-app .vox-progress{
    height:100%;
    width:16%;
    background:linear-gradient(90deg,#3b82f6,#06b6d4);
    transition:.3s;
}

#vox-esim-finder-app .vox-timeline{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:25px;
}

#vox-esim-finder-app .vox-step{
    padding:10px 16px;
    border-radius:999px;
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    font-size:14px;
}

#vox-esim-finder-app .vox-step.active{
    background:#2563eb;
}

#vox-esim-finder-app .vox-body{
    padding:40px;
}

#vox-esim-finder-app .vox-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

#vox-esim-finder-app .vox-option{
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:24px;
    background:#0f172a;
    cursor:pointer;
    transition:.3s;
}

#vox-esim-finder-app .vox-option:hover,
#vox-esim-finder-app .vox-option.active{
    border-color:#3b82f6;
    transform:translateY(-3px);
}

#vox-esim-finder-app select,
#vox-esim-finder-app input{
    width:100%;
    padding:16px;
    border-radius:16px;
    border:none;
    background:#0f172a;
    color:#fff;
}

#vox-esim-finder-app .vox-nav{
    display:flex;
    justify-content:space-between;
    margin-top:30px;
}

#vox-esim-finder-app button{
    border:none;
    cursor:pointer;
}

#vox-esim-finder-app .vox-btn-primary{
    background:#2563eb;
    color:#fff;
    padding:14px 30px;
    border-radius:16px;
}

#vox-esim-finder-app .vox-btn-secondary{
    background:#1e293b;
    color:#fff;
    padding:14px 30px;
    border-radius:16px;
}

#vox-esim-finder-app .vox-results{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

#vox-esim-finder-app .vox-result{
    background:#0f172a;
    padding:25px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
}

@media(max-width:768px){
    #vox-esim-finder-app h1{
        font-size:34px;
    }

    #vox-esim-finder-app .vox-header,
    #vox-esim-finder-app .vox-body{
        padding:24px;
    }
}
