.step-container {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: all .5s ease-in-out;
}
h1 {
    font-weight: 700;
    color: #333;
}
.radio-card {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: 0.3s;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.radio-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform .3s;
}
.radio-card:hover img { transform: scale(1.1); }
.radio-card.active {
    border-color: #ff7d00;
    box-shadow: 0 0 20px rgba(255,125,0,0.3);
}
.btn-next {
    background: #ff7d00;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-next:hover { background: #e86f00; }
.result-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    animation: fadeIn .6s ease-in-out;
}
@keyframes fadeIn { from {opacity:0;transform:translateY(20px);} to {opacity:1;transform:translateY(0);} }
.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}
.btn-next{background:#ff7d00;color:#fff;border:none;border-radius:28px;padding:12px 24px;margin:10px}
.btn-back{background:#ccc;color:#333;border:none;border-radius:28px;padding:12px 24px;margin:10px}
.btn-next:disabled{opacity:.6;cursor:not-allowed}
.result-card{background:#fff;border-radius:14px;box-shadow:0 2px 14px rgba(0,0,0,.08);padding:22px}
#rox-assistant {
    position: fixed;
    bottom: 142px;
    right: 20px;
    z-index: 9999;
}
#rox-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #9bdfa2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0,0,0,.3);
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #ccc;
}
#rox-container:hover { transform: scale(1.05); }
#rox-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
#rox-bubble {
    position: absolute;
    bottom: 110px;
    right: 0;
    background: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    width: 300px;
    animation: fadeIn .4s ease-in-out;
}
#rox-text {
    font-size: 15px;
    line-height: 1.5;
    min-height: 60px;
    white-space: pre-line;
}
.rox-buttons button {
    background: #ff7d00;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}
.rox-buttons button:hover {
    background: #e26f00;
}
@keyframes fadeIn {
    from {opacity:0;transform:translateY(15px);}
    to {opacity:1;transform:translateY(0);}
}
.seo-box h3{
    font-size: 56px;
    line-height: 17.2px !important;
    margin-bottom: 13px;
    padding-top: 20px !important;
    display: inline-block;
}