body{
    background:#f7f7f7;
    font-family:'Inter',sans-serif;
    color:#111;
}

.logo{
    max-width:240px;
}

.hero-section{
    min-height:500px;
}

h1{
    font-size:70px;
    font-weight:800;
    line-height:1;
}

h1 span{
    color:#3e0c9b;
}

.hero-text{
    font-size:24px;
    max-width:700px;
}

.llama-img{
    max-height:800px;
}

.selection-title{
    color:#3e0c9b;
    font-size:32px;
    font-weight:700;
    margin-top:-100px;
}

.store-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    text-align:center;
    box-shadow:0 3px 20px rgba(0,0,0,.08);
}

.store-logo{
    height:80px;
    margin-bottom:30px;
}

.btn-store,
.btn-main{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#3e0c9b;
    color:#fff;
    border-radius:14px;
    padding:16px;
    text-decoration:none;
    font-weight:700;
    width: 100%;
}

.info-box {
    background:#f3eefc;
    border-radius:24px;
    padding:30px;
}
.info-box > div {
    display:flex;
    gap:20px;
}
.info-box > div:last-child {
    background: #e2d7f8;
    padding: 20px 20px 0;
    border-radius: 20px;
}
.info-card{
    background:#f3eefc;
    border-radius:24px;
    padding:30px;
    display:flex;
    gap:20px;
    margin-bottom: 30px;
}
.info-card i{font-size: 30px;  color: #5c21d9;}

.icon-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.info-box i{font-size: 30px; color: #5c21d9;}

.info-text{width: calc(100% - 70px);}
.info-text h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    color:#3e0c9b;
}

.info-text p{
    font-size:16px;
    line-height:1.5;
}

.review-steps{
    display:flex;
    justify-content:space-between;
    gap: 20px;
}

.steps-box{
    background:#fdf9f6;    
    text-align: center;
    padding: 20px;
    border-radius: 20px;
}

.steps-box h4{color:#3e0c9b; margin-bottom: 25px; font-weight: bold;}

.step{
    text-align:center;
    color: #3e0c9b;
    width: 20%;
}

.step .step_icon{background: #fff; border-radius: 50%;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 0 auto; 
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, .2);}
.step .step_icon i{font-size: 40px;}

.step span{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3e0c9b;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin: 10px auto;
}

.footer{
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;}

.step-indicator{
    background:#f3eefc;
    padding:10px 20px;
    border-radius:20px;
    margin:30px 0;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
}

.step-indicator strong{margin-right: 5px;}

.progress-line{
    display: flex;
    gap: 20px;
    margin-left: 15px;
    margin-top: 2px;
}

.progress-dot{
    width:16px;
    height:16px;
    border:2px solid #5c21d9;
    border-radius:50%;
}

.progress-dot:nth-child(1)::after {
    background: #5c21d9;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin-left: 15px;
    margin-top: 5px;
}

.progress-dot.active{
    background:#5c21d9;
}

@media(max-width:991px){

    .mobile-view{        
        padding: 50px 15px 0;
    }

    .header{
        display: flex;
        width: 100%;
        gap: 15px;
    }

    .header .header-left{width: 60%; margin-bottom: 50px;}

    .header .header-right{width: 40%;
        display: flex;
        align-items: flex-end;}


    .header .logo{
        width: 160px;
    }

    h1{
        font-size:28px;
    }

    .llama-mobile{
        width: calc(100% + 80px);
        display: block;
        margin: 0 auto;
        margin-left: -40px;
    }

    .store-card{
        padding:20px;
    }

    
    .store-logo{
        height:30px;
        margin-bottom:15px;
    }

}