/*=========================================
    PRICING
=========================================*/

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    align-items:stretch;

}

.plan-card{

    position:relative;

    display:flex;

    flex-direction:column;

    padding:38px;

    border-radius:26px;

    background:var(--color-surface);

    border:1px solid var(--color-border);

    overflow:hidden;

    transition:
        transform .35s,
        border-color .35s,
        box-shadow .35s;

}

.plan-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(255,212,0,.06),
        transparent 70%
    );

    opacity:0;

    transition:.35s;

}

.plan-card:hover::before{

    opacity:1;

}

.plan-card:hover{

    transform:translateY(-12px);

    border-color:rgba(255,212,0,.35);

    box-shadow:0 25px 55px rgba(0,0,0,.28);

}

.featured-plan{

    transform:scale(1.05);

    border-color:rgba(255,212,0,.35);

}

.featured-plan:hover{

    transform:scale(1.05) translateY(-10px);

}

.plan-badge{

    position:absolute;

    top:18px;

    right:18px;

    padding:8px 14px;

    border-radius:999px;

    background:var(--color-primary);

    color:#111;

    font-size:.75rem;

    font-weight:700;

    z-index:2;

}

.plan-status{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:6px 12px;

    border-radius:999px;

    background:rgba(34,197,94,.08);

    color:#6EE7A5;

    font-size:.8rem;

    margin-bottom:24px;

    width:max-content;

}

.plan-icon{

    width:72px;

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:rgba(255,212,0,.08);

    border:1px solid rgba(255,212,0,.15);

    margin-bottom:26px;

}

.plan-icon img{

    width:38px;

    height:38px;

    transition:.35s;

}

.plan-card:hover .plan-icon img{

    transform:scale(1.08) rotate(-4deg);

}

.plan-card h3{

    font-size:2rem;

    margin-bottom:12px;

}

.plan-subtitle{

    color:var(--color-text-secondary);

    margin-bottom:28px;

    line-height:1.7;

}

.plan-price{

    font-size:3rem;

    font-weight:700;

    margin-bottom:8px;

}

.plan-price span{

    font-size:1rem;

    color:var(--color-text-secondary);

}

.plan-note{

    color:var(--color-primary);

    font-size:.9rem;

    margin-bottom:30px;

}

.plan-features{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:35px;

}

.plan-features li{

    position:relative;

    padding-left:22px;

    color:var(--color-text-secondary);

}

.plan-features li::before{

    content:"";

    position:absolute;

    left:0;

    top:9px;

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--color-primary);

    box-shadow:0 0 10px rgba(255,212,0,.5);

}

.plan-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:auto;

    margin-bottom:30px;

    padding-top:22px;

    border-top:1px solid rgba(255,255,255,.06);

}

.plan-footer span{

    color:#888;

    font-size:.85rem;

}

.plan-footer strong{

    color:var(--color-primary);

    font-size:.95rem;

}

.plan-card .btn{

    width:100%;

}

.status-dot{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#22C55E;

    box-shadow:0 0 12px #22C55E;

}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:1200px){

    .featured-plan{

        transform:none;

    }

    .featured-plan:hover{

        transform:translateY(-12px);

    }

}

@media(max-width:992px){

    .pricing-grid{

        grid-template-columns:1fr;

        max-width:700px;

        margin:auto;

    }

}

@media(max-width:768px){

    .plan-card{

        padding:30px;

    }

    .plan-price{

        font-size:2.5rem;

    }

}

@media(max-width:480px){

    .plan-card{

        padding:24px;

    }

    .plan-icon{

        width:60px;

        height:60px;

    }

    .plan-icon img{

        width:30px;

        height:30px;

    }

    .plan-card h3{

        font-size:1.6rem;

    }

    .plan-price{

        font-size:2.2rem;

    }

}