/**
 * ==========================================
 * VICIdial Hosting Plans
 * ==========================================
 */

.tr-vicidial-plans{

    padding:110px 0;

    background:linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );

}

/* ==========================================
   Section Heading
========================================== */

.tr-vicidial-plans .tr-section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.tr-vicidial-plans .tr-section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 22px;

    margin-bottom:18px;

    border-radius:999px;

}

.tr-vicidial-plans .tr-section-title{

    margin-bottom:20px;

}

.tr-vicidial-plans .tr-section-description{

    color:#64748b;

    font-size:17px;

    line-height:1.8;

}

/* ==========================================
   Plans Grid
========================================== */

.tr-vicidial-plans-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:30px;

    align-items:stretch;

}

/* ==========================================
   Plan Card
========================================== */

.tr-plan-card{

    position:relative;

    display:flex;

    flex-direction:column;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    padding:40px 28px;

    text-align:center;

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

}

.tr-plan-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 22px 45px rgba(15,23,42,.12);

}

/* ==========================================
   Featured Plan
========================================== */

.tr-plan-featured{

    border:2px solid #2563eb;

    transform:scale(1.04);

    box-shadow:0 20px 50px rgba(37,99,235,.18);

}

.tr-plan-featured:hover{

    transform:translateY(-8px) scale(1.04);

}

.tr-plan-badge{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    padding:8px 18px;

    border-radius:999px;

    background:#2563eb;

    color:#ffffff;

    font-size:13px;

    font-weight:700;

    white-space:nowrap;

}

/* ==========================================
   Typography
========================================== */

.tr-plan-card h3{

    margin:10px 0 20px;

    font-size:24px;

    font-weight:700;

    color:#0f172a;

}

.tr-plan-price{

    margin-bottom:28px;

    font-size:40px;

    font-weight:800;

    line-height:1;

    color:#2563eb;

}

.tr-plan-price span{

    font-size:16px;

    font-weight:500;

    color:#64748b;

}

/* ==========================================
   Features List
========================================== */

.tr-plan-card ul{

    list-style:none;

    margin:0 0 35px;

    padding:0;

    flex:1;

}

.tr-plan-card ul li{

    padding:14px 0;

    border-bottom:1px solid #edf2f7;

    color:#475569;

    font-size:15px;

}

.tr-plan-card ul li:last-child{

    border-bottom:none;

}

/* ==========================================
   Button
========================================== */

.tr-plan-card .tr-btn{

    width:100%;

    justify-content:center;

    margin-top:auto;

}

/* ==========================================
   Tablet
========================================== */

@media (max-width:1200px){

    .tr-vicidial-plans-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:991px){

    .tr-vicidial-plans{

        padding:90px 0;

    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:768px){

    .tr-vicidial-plans{

        padding:70px 0;

    }

    .tr-vicidial-plans .tr-section-heading{

        margin-bottom:50px;

    }

    .tr-vicidial-plans-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .tr-plan-featured{

        transform:none;

    }

    .tr-plan-featured:hover{

        transform:translateY(-8px);

    }

    .tr-plan-price{

        font-size:34px;

    }

}