.pricing {
    background-color: #f5f9ff;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
    /* Align containers to top */
    padding: 2rem 0;
}

.pricing-card {
    background: var(--surface);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-left: 4px solid #ccd6e0;
    width: 100%;
    max-width: 380px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.highlighted {
    border: 1px solid var(--primary);
    border-left: 6px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.1);
    z-index: 10;
}

/* Yellow Theme for Pro */
.pricing-card.pro-yellow {
    border: 1px solid #ffd700;
    border-left: 6px solid #ffcc00;
    background-color: var(--surface);
}

.pro-yellow h3,
.pro-yellow .price {
    color: #b8860b;
    /* Darker gold/bronze */
}

.pro-yellow .badge {
    background: #ffcc00;
    color: #443300;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

.icon-gold {
    color: #28a745 !important;
    /* Green for checkmarks in Pro as well */
    background: #f0fff4 !important;
    /* Very light green background */
}


.not-included {
    opacity: 0.5;
}

.not-included i {
    color: #ff4d4d !important;
    /* Red for X */
    background: #fff0f0 !important;
}

.btn-disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    border: 1px solid #ddd;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    width: 100%;
    font-weight: 600;
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0 2rem;
    text-align: center;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 1.25rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.pricing-card li i {
    color: #28a745;
    /* Standard green for all checkmarks */
    font-size: 0.875rem;
    width: 24px;
    height: 24px;
    background: #f0fff4;
    /* Light green background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-card.highlighted {
        transform: none;
        margin: 1rem 0;
    }
}