.pricing-main { padding: 4rem 0; }
.pricing-calculator {
    max-width: 800px;
    margin: 0 auto;
}
.calculator-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.calculator-header { text-align: center; margin-bottom: 2rem; }
.calculator-header p { color: var(--text-secondary); }

/* Price Display */
.price-display {
    margin-top: 2rem;
    padding: 2rem;
    border: 2px dashed var(--color-primary);
    border-radius: var(--radius);
    text-align: center;
    display: none; /* Hidden by default */
}
.price-display.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.price-label { font-size: 1.1rem; color: var(--text-secondary); }
.price-amount { font-size: 3rem; font-weight: 700; color: var(--color-primary); margin: 0.5rem 0 1.5rem; }
.price-features h4 { margin-bottom: 1rem; }
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
}
.features-list li { display: flex; align-items: center; gap: 0.5rem; }
.features-list i { color: #28a745; }
@media(max-width: 576px) { .features-list { grid-template-columns: 1fr; } }

/* Additional Info & FAQ */
.additional-info, .pricing-faq, .custom-quote-cta { margin-top: 4rem; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
    margin-top: 2rem;
}
.info-card i { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 0.5rem; }
.faq-accordion { max-width: 800px; margin: 2rem auto 0; }
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-toggle i { transition: transform var(--transition); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-secondary); }
.faq-item.active .faq-toggle i { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 200px; }

.custom-quote-cta {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: var(--radius);
}