/* ==========================================
   Bayment Energy Solar Calculator
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8fc;
    color:#1e293b;
}

.be-wrapper{
    width:100%;
    min-height:100vh;
    padding:40px 20px;
}

.be-header{
    text-align:center;
    margin-bottom:40px;
}

.be-logo{
    width:170px;
    margin-bottom:20px;
}

.be-header h1{
    font-size:38px;
    font-weight:700;
    color:#0B63B6;
    margin-bottom:12px;
}

.be-header p{
    max-width:700px;
    margin:auto;
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

.be-calculator{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}

.be-progress{
    width:100%;
    height:10px;
    background:#e8edf5;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:15px;
}

.be-progress-fill{
    width:16.6%;
    height:100%;
    background:#0B63B6;
    transition:.4s;
}

.be-step-text{
    text-align:right;
    font-size:14px;
    color:#64748b;
    margin-bottom:30px;
}

.be-card{
    min-height:360px;
}

.be-step{
    display:none;
}

.be-step.active{
    display:block;
}

.be-step h2{
    text-align:center;
    font-size:30px;
    margin-bottom:35px;
    color:#1e293b;
}

.be-input{
    max-width:420px;
    margin:auto;
    display:flex;
    align-items:center;
    border:2px solid #dbeafe;
    border-radius:14px;
    overflow:hidden;
}

.be-input span{
    background:#eff6ff;
    padding:18px 22px;
    font-size:24px;
    color:#0B63B6;
}

.be-input input{
    flex:1;
    border:none;
    outline:none;
    padding:18px;
    font-size:22px;
}

select{
    width:100%;
    max-width:420px;
    margin:auto;
    display:block;
    padding:18px;
    border-radius:14px;
    border:2px solid #dbeafe;
    font-size:18px;
}

.be-options{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.option{
    padding:30px;
    background:#fff;
    border:2px solid #dbeafe;
    border-radius:18px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.option:hover{
    background:#0B63B6;
    color:#fff;
    transform:translateY(-5px);
}

.be-navigation{
    display:flex;
    justify-content:space-between;
    margin-top:40px;
}

.be-navigation button{
    border:none;
    background:#0B63B6;
    color:#fff;
    padding:16px 34px;
    border-radius:12px;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
}

.be-navigation button:hover{
    background:#084d8f;
}

.results{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.result-box{
    background:#f8fbff;
    border:1px solid #dbeafe;
    border-radius:18px;
    padding:25px;
    text-align:center;
}

.result-box h3{
    color:#64748b;
    margin-bottom:12px;
}

.result-box p{
    font-size:30px;
    color:#0B63B6;
    font-weight:700;
}

.result-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.result-buttons button{
    border:none;
    background:#0B63B6;
    color:#fff;
    padding:16px 30px;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
}

footer{
    text-align:center;
    margin-top:35px;
    color:#94a3b8;
}