/* =========================================
   PRICING PAGE (CLEAN + SAAS READY)
   ========================================= */

.prc-section{
    padding:60px 20px;
    background:linear-gradient(135deg,#f0f4f8,#ffffff);
}

.prc-container{
    max-width:1200px;
    margin:0 auto;
}

/* App Block */
.prc-app-block{
    margin-bottom:50px;
    text-align:center;
}

.prc-app-title{
    font-size:2rem;
    font-weight:700;
    margin-bottom:30px;
    color:#1a1a1a;
    position:relative;
}

.prc-app-title::after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:#007BFF;
    margin:10px auto 0;
    border-radius:2px;
}

/* Grid */
.prc-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

/* Card */
.prc-card{
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    padding:30px 25px 35px;
    display:flex;
    flex-direction:column;
    align-items:center;
    transition:all .35s ease;
}

.prc-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* Plan */
.prc-plan{
    background:#eef2ff;
    color:#2146d0;
    padding:6px 14px;
    border-radius:20px;
    font-size:.8rem;
    letter-spacing:.8px;
    margin-bottom:12px;
}

/* Price */
.prc-price{
    font-size:2.6rem;
    font-weight:800;
    color:#111;
    margin-bottom:10px;
}

/* Duration */
.prc-duration{
    background:#f4f4f4;
    padding:5px 12px;
    border-radius:20px;
    font-size:.8rem;
    margin-bottom:15px;
}

/* Divider */
.prc-divider{
    width:100%;
    border-top:1px solid #eee;
    margin:15px 0;
}

/* Details */
.prc-details{
    font-size:.95rem;
    color:#555;
    margin-bottom:20px;
    text-align:center;
    line-height:1.5;
}

/* Button */
.prc-btn{
    width:90%;
    max-width:260px;
    padding:14px;
    background:#007BFF;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    text-align:center;
    transition:.3s;
}

.prc-btn:hover{
    background:#0056b3;
    transform:translateY(-2px);
}

/* Popular plan */
.prc-card.popular{
    border:2px solid #2146d0;
    transform:scale(1.04);
}

.prc-card.popular::before{
    content:"MOST POPULAR";
    position:absolute;
    top:-12px;
    right:20px;
    background:#2146d0;
    color:white;
    font-size:.7rem;
    padding:4px 10px;
    border-radius:20px;
}

/* Responsive */
@media (max-width:768px){
    .prc-grid{
        gap:20px;
    }

    .prc-card{
        padding:25px 20px;
    }
}


/* ===== FINAL PRICING BUTTON FIX ===== */

.prc-card{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.prc-btn{
    display:block;
    width:100%;
    max-width:240px;
    margin-top:auto;
}


/* Remove Bootstrap card styling */
.card.noborder {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}


/* Fix pricing card layout */
.prc-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Button always aligned & clean */
.prc-btn {
    display: block;
    width: 100%;
    margin-top: auto;
    text-align: center;
}