/* FAQ Section */
.faq-section { padding: 120px 20px; background: var(--paper); border-bottom: 1px solid var(--border); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; margin-bottom: 16px; overflow: hidden; transition: all 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.faq-item.open { border-color: var(--accent-mid); box-shadow: 0 12px 32px rgba(147,58,255,0.08); }
.faq-question { padding: 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 16px; color: var(--ink); user-select: none; }
.faq-icon { width: 24px; height: 24px; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; padding: 0 24px; opacity: 0; transition: all 0.4s ease-in-out; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 24px; opacity: 1; }

/* CTA Banner */
.cta-section { padding: 120px 20px; background: var(--accent); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%); pointer-events: none; }
.cta-container { max-width: 850px; margin: 0 auto; position: relative; z-index: 1; }
.cta-container h2 { font-size: 44px; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.03em; line-height: 1.1; }
.cta-container p { font-size: 18px; opacity: 0.9; margin-bottom: 40px; font-weight: 400; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }
.cta-btn-dark { background: var(--ink); color: #fff; padding: 18px 40px; border-radius: 14px; text-decoration: none; font-weight: 800; font-size: 16px; transition: all 0.3s; box-shadow: 0 12px 32px rgba(15,10,30,0.3); }
.cta-btn-dark:hover { background: #1a1130; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15,10,30,0.4); }
.cta-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); padding: 18px 40px; border-radius: 14px; text-decoration: none; font-weight: 700; font-size: 16px; transition: all 0.3s; }
.cta-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.cta-subtext { font-size: 13px; opacity: 0.7; font-weight: 500; letter-spacing: 0.02em; }
@media(max-width: 768px) { 
    .cta-container h2 { font-size: 36px; } 
    .cta-buttons { flex-direction: column; } 
    .faq-question { font-size: 15px; }
}
