/* =========================
   PRICING SECTION
========================= */

.pricing-section{
    background:#05070d;
    padding:80px 20px;
    font-family:Arial, sans-serif;
    overflow:hidden;
}

/* CENTER WRAPPER */

.pricing-wrapper{
    max-width:1400px;
    margin:auto;
}

/* CONTAINER */

.pricing-container{
    display:flex;
    gap:20px;
    align-items:stretch;
    overflow-x:auto;
    padding:20px 10px;
    scrollbar-width:none;
}

.pricing-container::-webkit-scrollbar{
    display:none;
}

/* FEATURES COLUMN */

.pricing-features{
    min-width:230px;
    background:#0b0f18;
    border:1px solid #1d2230;
    border-radius:20px;
    padding:25px;
    color:#fff;
    flex-shrink:0;
}

.pricing-features ul{
    list-style:none;
    padding:0;
    margin:0;
}

.pricing-features ul li{
    margin:0;
    padding:18px 0;
    font-size:15px;
    border-bottom:1px solid #1a2333;
    color:#d9d9d9;
}

.refund-text{
    margin-top:25px;
    color:#8f96a3;
    font-size:14px;
    line-height:1.6;
}

/* PRICE CARD */

.price-card{
    background:#0b0f18;
    border:1px solid #1d2230;
    border-radius:22px;
    padding:30px 22px;
    min-width:250px;
    max-width:250px;
    color:#fff;
    position:relative;
    transition:all 0.3s ease;
    overflow:visible;
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* HOVER */

.price-card:hover{
    transform:translateY(-6px);
    border-color:#2f7bff;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* ACTIVE CARD */

.price-card.active{
    background:linear-gradient(to bottom,#2a1408,#0b0f18);
    border:2px solid #ff7a00;
    transform:scale(1.02);
}

/* BADGE */

.badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#ff7a00;
    color:#fff;
    padding:7px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
    white-space:nowrap;
    z-index:5;
    box-shadow:0 5px 15px rgba(255,122,0,0.4);
}

/* TEXT */

.price-card h5{
    color:#bbb;
    margin-bottom:12px;
    font-size:18px;
    font-weight:500;
}

.price-card h2{
    font-size:50px;
    margin-bottom:22px;
    line-height:1.1;
    font-weight:700;
}

/* DESCRIPTION */

.card-desc{
    color:#b8c0d0;
    font-size:14px;
    line-height:1.8;
    margin-bottom:25px;
}

/* DETAILS */

.details{
    margin-top:10px;
}

.details p{
    margin:0;
    padding:14px 0;
    border-bottom:1px solid #182131;
    color:#ddd;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.green{
    background:#1f8b3c;
    padding:3px 9px;
    border-radius:6px;
    font-size:12px;
    font-weight:bold;
}

/* PRICE */

.price{
    font-size:34px;
    font-weight:bold;
    margin:30px 0 20px;
}

.price del{
    color:#777;
    font-size:18px;
    margin-left:6px;
}

/* BUTTON */

.btn-price{
    display:block;
    background:linear-gradient(90deg,#0d8cff,#006fe6);
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.btn-price:hover{
    background:linear-gradient(90deg,#0077db,#005fd1);
    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:768px){

    .pricing-section{
        padding:60px 15px;
    }

    .pricing-container{
        gap:16px;
    }

    .pricing-features{
        min-width:210px;
    }

    .price-card{
        min-width:240px;
        max-width:240px;
        padding:25px 18px;
    }

    .price-card h2{
        font-size:42px;
    }

    .badge{
        font-size:12px;
        padding:6px 15px;
    }
}