.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}


.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 300px;
    position: relative;
    transition: 0.3s;
}


.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
}


.pricing-card.popular {
    border: 2px solid var(--blue);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1), var(--bg-card));
    transform: scale(1.05); 
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.08); 
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 10px;
}

.icon-plan {
    font-size: 40px;
    color: var(--blue);
    margin-bottom: 15px;
    display: block;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: normal;
}

.plan-features {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: left; 
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--blue);
    font-size: 1.2rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--blue);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--blue);
    color: white;
}

.pricing-card .btn {
    width: 100%;
}