/* Pricing page specific styles (moved from inline) */
.pricing-hero { background: linear-gradient(135deg, var(--primary-color) 0%, #1A9B96 100%); color: white; padding: calc(var(--spacing-xxl) + 60px) 0 var(--spacing-xxl) 0; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.pricing-card { background: white; border-radius: 16px; padding: 2.5rem 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: all 0.3s ease; position: relative; height: fit-content; overflow: visible; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.pricing-card.featured { border: 3px solid var(--primary-color); transform: scale(1.05); }
.pricing-card.featured::after { content: 'Most Popular'; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: white; padding: 0.45rem 1.25rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600; z-index: 3; box-shadow: 0 4px 12px rgba(0,0,0,0.12); pointer-events: none; }
.plan-name { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.plan-description { color: var(--text-light); margin-bottom: 2rem; font-size: 1rem; }
.plan-price { display: flex; align-items: baseline; margin-bottom: 2rem; }
.price-amount { font-size: 3rem; font-weight: 700; color: var(--primary-color); }
.price-period { font-size: 1rem; color: var(--text-light); margin-left: 0.5rem; }
.price-note { font-size: 0.9rem; color: var(--text-light); margin-top: 0.5rem; }
.feature-list { list-style: none; padding: 0; margin: 2rem 0; }
.feature-list li { display: flex; align-items: flex-start; margin-bottom: 1rem; padding-left: 0; }
.feature-list li::before { content: '\2713'; color: var(--primary-color); font-weight: bold; margin-right: 0.75rem; margin-top: 0.1rem; font-size: 1.1rem; }
.feature-list .unavailable { color: var(--text-light); opacity: 0.6; }
.feature-list .unavailable::before { content: '—'; color: #BDC3C7; }
.plan-cta { margin-top: auto; padding-top: 1rem; }
.plan-cta .btn { width: 100%; padding: 1rem; font-size: 1.1rem; font-weight: 600; }
.faq-section { margin-top: 4rem; }
.faq-item { background: white; border-radius: 12px; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.1); overflow: hidden; }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; max-height: 200px; }
.comparison-table { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); margin: 3rem 0; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #ECF0F1; }
.comparison-table th { background: var(--light-gray); font-weight: 600; color: var(--text-dark); }
.comparison-table .plan-header { background: var(--primary-color); color: white; text-align: center; font-weight: 700; }
.comparison-table .check { color: var(--primary-color); font-weight: bold; text-align: center; }
.comparison-table .cross { color: #BDC3C7; text-align: center; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; } .pricing-card.featured { transform: none; } .comparison-table { overflow-x: auto; } .comparison-table table { min-width: 600px; } }





