/* faq.ejs */
.juicer-v2-narrow { padding-top: 8px; }

        .faq-section__title { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0; }
        .faq-section__emoji { margin-right: 0.35rem; }
        .faq-section__head { border-left: 3px solid var(--accent); }

                details { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 122, 0, 0.1); border-radius: 12px; margin-bottom: 1rem; transition: all 0.3s ease; }
        details:hover { border-color: rgba(255, 122, 0, 0.4); background: rgba(0, 0, 0, 0.6); transform: translateX(5px); }
        details[open] { border-color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); background: rgba(255, 122, 0, 0.03); }

                summary { padding: 1.2rem 1.5rem; cursor: pointer; list-style: none; font-weight: 600; display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; letter-spacing: 0.5px; color: #ffffff; }
        summary::-webkit-details-marker { display: none; }

                .faq-icon { color: var(--accent); margin-right: 15px; font-size: 1.2rem; text-shadow: 0 0 10px var(--accent-glow); }
        .chevron { transition: transform 0.3s ease; color: rgba(255, 255, 255, 0.3); font-size: 0.9rem; }
        details[open] summary .chevron { transform: rotate(180deg); color: var(--accent); }

        .faq-content { padding: 0 1.5rem 1.5rem 3.4rem; color: #d4d4d8; line-height: 1.6; font-size: 1.05rem; font-weight: 500; }
        details[open] .faq-content { animation: fadeInDown 0.4s ease forwards; }

        @keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

        .hover-underline:hover { text-decoration: underline !important; }

                .particles-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
        .particle { position: absolute; background: var(--accent); border-radius: 50%; opacity: 0.15; filter: blur(4px); animation: floatUp 15s linear infinite; }
        @keyframes floatUp { 0% { transform: translateY(110vh) translateX(0); opacity: 0; } 10% { opacity: 0.3; } 90% { opacity: 0.3; } 100% { transform: translateY(-20vh) translateX(100px); opacity: 0; } }

        .team-card { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 122, 0, 0.1); border-radius: 12px; padding: 12px 15px; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center; }
        .team-card:hover { border-color: rgba(255, 122, 0, 0.4); background: rgba(0, 0, 0, 0.6); transform: translateY(-3px); }
        .team-btn { background: rgba(255, 122, 0, 0.05); color: var(--accent); border: 1px solid rgba(255, 122, 0, 0.2); border-radius: 8px; padding: 6px 15px; transition: all 0.3s ease; text-decoration: none; font-size: 1rem; }
        .team-btn:hover { background: var(--accent); color: #000; box-shadow: 0 0 10px var(--accent-glow); }
        .team-role-title { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; }
        @media (max-width: 768px) {
            .juicer-v2-main { padding: 18px 10px; }
            summary { padding: 0.95rem 1rem; font-size: 0.96rem; }
            .faq-content { padding: 0 1rem 1rem 1rem; font-size: 0.92rem; }
            .team-card { flex-direction: column; align-items: flex-start; gap: 8px; }
            .team-btn { width: 100%; text-align: center; }
        }
