/* ===== PRICING STYLES ===== */

.pricing-section {
    padding: 60px 20px;
}

.pricing-section.alt-bg {
    background-color: var(--bg-light);
}

.pricing-category {
    max-width: 1200px;
    margin: 0 auto;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-header h2 {
    margin-bottom: 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 1024px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }
}

.pricing-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-section.alt-bg .pricing-item {
    background-color: var(--white);
}

.pricing-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.pricing-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.pricing-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.pricing-item .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.cta-section .container {
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-section .cta-buttons {
    margin-top: 2.5rem;
}
