/*==================================================
    PRICING CSS - FINAL - No Bootstrap Needed
==================================================*/
.pricing-banner{
    background: linear-gradient(135deg,#2596be 0%,#1d4ed8 50%,#1e40af 100%);
    padding: 90px 20px 110px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-banner::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.pricing-banner .container{
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.pricing-banner .badge{
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(34,197,94,0.35);
    animation: pulse 2s infinite;
}
@keyframes pulse{
    0%,100%{ transform: scale(1); }
    50%{ transform: scale(1.05); }
}
.pricing-banner h1{
    margin-top: 24px;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}
.pricing-banner .lead{
    margin-top: 16px;
    font-size: 19px;
    opacity: 0.92;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CARD SECTION */
.py-5{
    padding: 60px 20px;
    background: #f8fafc;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}
.py-5 .container{
    max-width: 1200px;
    margin: 0 auto;
}
.py-5 .row{
    display: flex;
    justify-content: center;
}
.py-5 .col-lg-8{
    width: 100%;
    max-width: 760px;
}

.free-plan-card{
    background: #fff;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #eef2f7;
    position: relative;
}
.free-plan-card::before{
    content:'';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg,#22c55e,#16a34a);
    border-radius: 0 0 10px 10px;
}
.current-plan{
    display: inline-block;
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    padding: 8px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(34,197,94,0.3);
}
.free-plan-card h2{
    font-size: 18px;
    letter-spacing: 2px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 8px;
}
.free-plan-card h1{
    font-size: 72px;
    color: #22c55e;
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
}
.free-plan-card p{
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
}
.free-plan-card hr{
    border: none;
    height: 1px;
    background: #f1f5f9;
    margin: 28px 0;
}
.free-plan-card .row{
    display: flex;
    gap: 20px;
    text-align: left;
    margin-top: 10px;
}
.free-plan-card .col-md-6{
    flex: 1;
}
.plan-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.plan-list li{
    padding: 13px 0;
    font-size: 16px;
    color: #334155;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}
.plan-list li:last-child{ border-bottom: none; }

.free-plan-card .btn{
    display: inline-block;
    margin-top: 32px;
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(34,197,94,0.35);
    transition: all 0.3s ease;
}
.free-plan-card .btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(34,197,94,0.45);
}

/* MOBILE */
@media(max-width: 768px){
    .pricing-banner h1{ font-size: 36px; }
    .pricing-banner .lead{ font-size: 16px; }
    .free-plan-card{ padding: 32px 22px; border-radius: 18px; }
    .free-plan-card h1{ font-size: 56px; }
    .free-plan-card .row{ flex-direction: column; gap: 0; }
    .py-5{ padding: 40px 16px; }
}