#dreamy-advisor{
    max-width:800px;
    margin:40px auto;
    padding:20px;
}

.dreamy-progress{
    height:8px;
    background:#eee;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:40px;
}

.dreamy-progress-bar{
    height:100%;
    width:25%;
    background:#000;
    transition:width .3s ease;
}

.dreamy-step{
    display:none;
    animation:fade .25s ease;
}

.dreamy-step.active{
    display:block;
}

.dreamy-step h2{
    text-align:center;
    margin-bottom:15px;
}

.dreamy-step p{
    text-align:center;
    margin-bottom:25px;
}

.dreamy-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.dreamy-card{
    padding:25px;
    border:2px solid #e5e5e5;
    border-radius:14px;
    cursor:pointer;
    text-align:center;
    font-weight:600;
    transition:.2s;
    background:#fff;
}

.dreamy-card:hover{
    transform:translateY(-3px);
    border-color:#000;
}

#dreamy-name,
#dreamy-phone,
#dreamy-email{
    width:100%;
    margin-bottom:15px;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    box-sizing:border-box;
}

.dreamy-gdpr{
    display:block;
    margin:15px 0;
}

#dreamy-submit{
    width:100%;
    padding:16px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

#dreamy-submit:hover{
    opacity:.9;
}

.dreamy-success{
    text-align:center;
    padding:50px 20px;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateX(15px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@media(max-width:768px){

    .dreamy-cards{
        grid-template-columns:1fr;
    }

}

.dreamy-gdpr-wrap{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:20px 0;
}

.dreamy-gdpr-wrap input[type="checkbox"]{
    width:20px !important;
    height:20px !important;
    margin-top:2px;
    flex-shrink:0;
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    position:static !important;
}

.dreamy-gdpr-wrap label{
    cursor:pointer;
    line-height:1.4;
}