@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    color:#2d2d2d;
    line-height:1.6;
    overflow-x:hidden;

    background-color:#F8F7F2;

    background-image:
        linear-gradient(rgba(122,159,43,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122,159,43,.06) 1px, transparent 1px);

    background-size:40px 40px;
}

.pricing-section{
    max-width:1200px;
    margin:auto;
    padding:90px 25px;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.badge{
    display:inline-block;
    padding:10px 22px;
    background:#E8F1D8;
    color:#6B8E23;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
}

.section-title h1{
    margin-top:18px;
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    color:#222;
}

.section-title p{
    margin:18px auto 0;
    max-width:620px;
    color:#6b6b6b;
    font-size:17px;
}

.pricing-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    align-items:flex-start;
}

.pricing-card{
    position:relative;
    background:#FCFCFA;
    border:1px solid #ECE8DD;
    border-radius:22px;
    padding:38px 32px;
    transition:.35s ease;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.popular{
    border:2px solid #7A9F2B;
}

.popular-tag{
    position:absolute;
    top:18px;
    right:18px;
    background:#7A9F2B;
    color:#fff;
    padding:7px 14px;
    border-radius:50px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.pricing-card h2{
    font-size:30px;
    margin-bottom:10px;
    color:#222;
}

.plan-info{
    color:#777;
    font-size:15px;
    margin-bottom:28px;
}

.price{
    font-size:56px;
    font-weight:800;
    color:#7A9F2B;
    margin-bottom:30px;
}

.price span{
    font-size:26px;
    vertical-align:top;
}

.price small{
    font-size:16px;
    color:#777;
}
/* ===========================
   FEATURES LIST
=========================== */

.pricing-card ul{
    list-style:none;
    margin:30px 0;
}

.pricing-card ul li{
    padding:15px 0;
    font-size:15px;
    color:#555;
    border-bottom:1px solid #ececec;
    transition:.3s;
}

.pricing-card ul li:last-child{
    border-bottom:none;
}

.pricing-card ul li:hover{
    color:#7A9F2B;
    padding-left:6px;
}

/* ===========================
   BUTTON
=========================== */

.btn{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    background:#7A9F2B;
    color:#fff;
    padding:15px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    transition:.3s ease;
    position:relative;
    overflow:hidden;
}

.btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;
    background:rgba(255,255,255,.25);
    transform:skewX(-25deg);
    transition:.6s;
}

.btn:hover::before{
    left:120%;
}

.btn:hover{
    background:#688A24;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(122,159,43,.25);
}

.btn:active{
    transform:translateY(2px);
}

/* ===========================
   FOOTER NOTE
=========================== */

.note{
    margin:60px auto 0;
    width:max-content;
    background:#EEF6DE;
    color:#6B8E23;
    padding:14px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.note i{
    margin-right:8px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:992px){

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

    .pricing-card:last-child{
        grid-column:span 2;
        max-width:420px;
        margin:auto;
    }

}

@media (max-width:768px){

    .pricing-section{
        padding:70px 20px;
    }

    .section-title h1{
        font-size:38px;
    }

    .section-title p{
        font-size:16px;
    }

    .pricing-wrapper{
        grid-template-columns:1fr;
    }

    .pricing-card{
        max-width:420px;
        width:100%;
        margin:auto;
    }

    .pricing-card:last-child{
        grid-column:auto;
    }

    .note{
        width:100%;
        text-align:center;
        border-radius:18px;
    }

}

@media (max-width:480px){

    .section-title h1{
        font-size:30px;
    }

    .section-title p{
        font-size:15px;
    }

    .pricing-card{
        padding:30px 22px;
        border-radius:18px;
    }

    .pricing-card h2{
        font-size:26px;
    }

    .price{
        font-size:46px;
    }

    .price span{
        font-size:22px;
    }

    .btn{
        font-size:15px;
        padding:14px;
    }

    .badge{
        font-size:13px;
        padding:8px 18px;
    }

    .popular-tag{
        top:16px;
        right:16px;
        font-size:10px;
        padding:6px 12px;
    }

}
