

.hero{
    width:100%;
    padding:8px 0;
    overflow:hidden;
    background:#fff;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 30px;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.hero-left{
    max-width:520px;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#eef7ef;
    color:#6ea574;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:30px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    color:#232323;
    margin-bottom:25px;
}

.hero h1 span{
    color:#6aa36d;
}

.hero p{
    font-size:19px;
    color:#727272;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:55px;
}

.btn{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px 38px;
    border-radius:15px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#6aa36d;
    color:#fff;
}

.btn-primary:hover{
    background:#5c9860;
}

.btn-outline{
    border:1px solid #d6d6d6;
    color:#555;
    background:#fff;
}

.btn-outline:hover{
    background:#f4f4f4;
}

.store-block span{
    display:block;
    color:#888;
    margin-bottom:18px;
    font-size:15px;
}

.stores{
    display:flex;
    gap:30px;
}

.stores img{
    height:46px;
}

.hero-right{
    position:relative;
    width:650px;
    height:700px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.circle-bg{
    position:absolute;
    width:520px;
    height:520px;
    background:#edf5ee;
    border-radius:50%;
    z-index:1;
}

.phone{
    position:absolute;
    width:290px;
    z-index:5;
    filter:drop-shadow(0 30px 40px rgba(0,0,0,.18));
}

.phone-left{
    left:120px;
    transform:rotate(-6deg);
}

.phone-right{
    right:60px;
    top:110px;
    transform:rotate(9deg);
}

@media(max-width:1100px){

    .hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .hero-left{
        max-width:700px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .stores{
        justify-content:center;
    }

    .hero-right{
        width:100%;
        height:650px;
    }

}

@media(max-width:768px){

    .hero{
        padding:50px 0;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .phone{
        width:210px;
    }

    .phone-left{
        left:70px;
    }

    .phone-right{
        right:40px;
    }

    .circle-bg{
        width:360px;
        height:360px;
    }

}
.how-it-works{
    padding:90px 0;
    background:#fafafa;
}

.features-top{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    margin-bottom:80px;
}

.feature-item{
    text-align:center;
}

.feature-icon{
    width:60px;
    height:60px;
    margin:auto;
    background:#eef7ef;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.feature-icon img{
    width:28px;
}

.feature-item h4{
    font-size:17px;
    margin-bottom:10px;
    color:#252525;
}

.feature-item p{
    font-size:14px;
    line-height:1.7;
    color:#777;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:70px;
    color:#222;
    font-weight:700;
}

.steps{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.step-card{
    flex:1;
    background:#fff;
    padding:35px 25px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.step-card:hover{
    transform:translateY(-5px);
}

.step-number{
    width:55px;
    height:55px;
    border-radius:16px;
    background:#eef7ef;
    color:#70a872;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:bold;
    margin-bottom:20px;
}

.step-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#222;
}

.step-card p{
    color:#777;
    line-height:1.7;
}

.step-arrow{
    font-size:34px;
    color:#86b489;
}

@media(max-width:1100px){

    .features-top{
        grid-template-columns:repeat(2,1fr);
    }

    .steps{
        flex-direction:column;
    }

    .step-arrow{
        transform:rotate(90deg);
    }

}

@media(max-width:768px){

    .features-top{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:34px;
    }

}

.meal-plan-section{
    padding:10px 0;
    background:#fafafa;
}

.meal-plan-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.meal-left{
    max-width:420px;
}

.meal-left h2{
    font-size:34px;
    line-height:1.1;
    margin-bottom:25px;
    color:#252525;
}

.meal-left p{
    color:#777;
    line-height:1.8;
    margin-bottom:40px;
}

.meal-list{
    list-style:none;
    margin-bottom:45px;
}

.meal-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#5b5b5b;
}

.meal-list span{
    width:24px;
    height:24px;
    border-radius:50%;
    background:#eaf5ea;
    color:#70a872;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:12px;
}

.meal-btn{
    display:inline-block;
    padding:18px 35px;
    background:#6FA38B;
    color:white;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
}

.meal-right{
    flex:1;
}

.plan-card{
    background:white;
    border-radius:28px;
    padding:35px;
    box-shadow:0 15px 50px rgba(0,0,0,.06);
}

.week-tabs{
    display:flex;
    gap:12px;
    margin-bottom:35px;
}

.week-tabs div{
    width:62px;
    height:62px;
    border:1px solid #ededed;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#666;
    font-size:13px;
}

.week-tabs .active{
    background:#6FA38B;
    color:white;
    border:none;
}

.plan-content{
    display:flex;
    gap:35px;
}

.meal-items{
    flex:1;
}

.meal-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
}

.meal-row h5{
    font-size:18px;
    margin-bottom:5px;
}

.meal-row span{
    color:#777;
}

.meal-row img{
    width:70px;
    border-radius:15px;
}

.summary{
    width:250px;
}

.summary h4{
    margin-bottom:25px;
}

.progress-item{
    margin-bottom:25px;
}

.progress-title{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-size:14px;
}

.progress{
    width:100%;
    height:6px;
    background:#ececec;
    border-radius:20px;
}

.progress div{
    height:100%;
    background:#67ad6f;
    border-radius:20px;
}

.orange div{
    background:#f3b125;
}

.blue div{
    background:#4a9eff;
}

.summary button{
    width:100%;
    padding:16px;
    background:white;
    border:1px solid #ddd;
    border-radius:14px;
    cursor:pointer;
    margin-top:15px;
}

@media(max-width:1100px){

    .meal-plan-wrapper{
        flex-direction:column;
    }

    .meal-left{
        max-width:100%;
        text-align:center;
    }

    .meal-list li{
        justify-content:center;
    }

    .plan-content{
        flex-direction:column;
    }

    .summary{
        width:100%;
    }

}

@media(max-width:768px){

    .meal-left h2{
        font-size:20px;
    }

    .week-tabs{
        flex-wrap:wrap;
    }

    .meal-row img{
        width:55px;
    }

}

.features-showcase{
    padding:120px 0;
    background:#fafafa;
}

.showcase-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.showcase-card{
    background:#fff;
    border-radius:32px;
    padding:25px;
    border:1px solid #f1f1f1;
    min-height:420px;
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.showcase-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.showcase-card h3{
    font-size:28px;
    font-weight:700;
    color:#2a2a2a;
    margin-bottom:15px;
    text-align: center;
}

.showcase-card p{
    color:#808080;
    line-height:1.8;
    margin-bottom:30px;
}

.search-box{
    height:58px;
    border:1px solid #ececec;
    border-radius:16px;
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
}

.search-box input{
    border:none;
    outline:none;
    width:100%;
    background:transparent;
}

.mini-card,
.favorite-card,
.reminder{
    background:#fafafa;
    border-radius:18px;
    padding:18px;
    margin-bottom:15px;
}

.product-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:25px;
}

.product-row{
    background:#fafafa;
    border-radius:18px;
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.showcase-btn{
    margin-top:auto;

    width:180px;
    height:58px;

    align-self:center;

    border-radius:16px;
    border:1px solid #ffffff;
    background:#6FA38B;
    cursor:pointer;
    font-weight:600;
    color:white;
    font-size:17px;
}

.showcase-card-main{
    margin-bottom: 5px;
}

.chart-placeholder{
    height:180px;
    border-radius:20px;
    background:#f7f7f7;
    margin-bottom:20px;
}

.stats-box{
    background:#fafafa;
    border-radius:18px;
    padding:18px;
}

.center-card{
    text-align:center;
}

.center-card img{
    max-width:220px;
    margin-top:30px;
}

@media(max-width:1100px){

    .showcase-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .showcase-grid{
        grid-template-columns:1fr;
    }

    .showcase-card{
        min-height:auto;
    }

}

.feature-icon{
    width:60px;
    height:60px;
    margin:auto;
    background:#eef7ef;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    font-size:28px;
}

.feature-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:9999;
    padding:0;
}

.feature-modal-content{
    width:100vw;
    height:100vh;
    background:#fff;
    position:relative;
    overflow-y:auto;
    padding:60px;
}

.feature-modal-content h2{
    font-size:42px;
    margin-bottom:25px;
    color:#252525;
}

.feature-modal-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
}

.modal-close{
    position:absolute;
    top:20px;
    right:20px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#eef7ef;
    color:#70a872;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.modal-close:hover{
    background:#70a872;
    color:#fff;
}

@media(max-width:768px){

    .feature-modal{
        padding:15px;
    }

    .feature-modal-content{
        padding:30px 20px;
    }

    .feature-modal-content h2{
        font-size:30px;
    }

    .feature-modal-content p{
        font-size:16px;
    }

}

.feature-section {
    margin-bottom: 18px;
    padding-bottom: 14px;

}

.feature-section:last-child {
    border-bottom: none;
}

.feature-section h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-section p {
    font-size: 20px;
    line-height: 1.6;
}
