/* Pricing section styles */
.pricing {
    padding: 80px 0;
    background-color: var(--section-alt-bg);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-color);
}

.pricing h3:first-child {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px; /* Match the Key Features heading size */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--ui-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
    margin: 30px 0;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.price span {
    font-size: 16px;
    font-weight: normal;
    color: var(--text-light);
}

.pricing-features {
    padding: 25px 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color-light);
    color: var(--text-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    padding: 20px;
    text-align: center;
}

.features-cta {
    text-align: center;
    margin-top: 40px;
}

.features-cta .btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
}

.cta-primary {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.cta-secondary {
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 20px 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

