/* Pricing Plans */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    background: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.pricing-cta {
    padding: 0 2rem 2rem;
    text-align: center;
}

.recommended {
    border: 2px solid var(--secondary);
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 2.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}