/* ============================= */
/*        Pricing Section        */
/* ============================= */

.pricing-section{
    width:100%;
    padding:60px 20px;
    box-sizing:border-box;
}

/* ===== Grid Layout ===== */

.pricing-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:24px;
}

/* ===== Item ===== */

.pricing-item{
    display:flex;
}

/* ===== Card ===== */

.plan-card{
    width:100%;
    background:#fff;
    border-radius:16px;
    padding:28px 22px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all .35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.plan-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* ===== Icon ===== */

.plan-bg-icon{
    width: 60px;
    height: 60px;
    padding-top:10px;
    margin: 0 auto;
    background:#E9F6FC;
    border-radius: 50%;
}
.plan-icon{
    font-size:34px;
    margin-bottom:20px;
    color:#4EA9E0;
}

/* ===== Title ===== */

.plan-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.4;
}

/* ===== Features ===== */

.plan-features{
    list-style:none;
    padding:0;
    margin:0 0 26px 0;
    text-align:center;
}

.plan-features li{   
    position:relative;
    margin-bottom:10px;
    font-size:16px;
    color:#123456;
}

/* ===== Button ===== */

.plan-btn{
    display:block;
    text-decoration:none;
    background:#F1F2F4;
    color:#123456;
    padding:12px 14px;
    border-radius:10px;
    font-size:14px;
    transition:.3s;
}

.plan-btn:hover{
    transform:scale(1.05);
    opacity:.95;
}

/* ============================= */
/*        Responsive             */
/* ============================= */

/* Laptop */

@media (max-width:1400px){
    .pricing-grid{
        grid-template-columns:repeat(4, 1fr);
    }
}

/* Tablet */

@media (max-width:992px){
    .pricing-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

/* Small Tablet */

@media (max-width:768px){
    .pricing-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */

@media (max-width:480px){
    .pricing-grid{
        grid-template-columns:1fr;
    }
}