        /* ============================================
           FAQ PAGE - Red Beard Peptides
           Matches demo-redesign.html design system
           ============================================ */

        /* ========== PAGE HERO ========== */
        .page-hero {
            position: relative;
            padding: 60px 24px 48px;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(192, 57, 43, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .page-hero-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .page-hero p {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== SEARCH BOX ========== */
        .faq-search {
            max-width: 520px;
            margin: 0 auto;
            position: relative;
        }

        .faq-search input {
            width: 100%;
            padding: 14px 20px 14px 48px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .faq-search input::placeholder {
            color: var(--text-muted);
        }

        .faq-search input:focus {
            border-color: var(--primary);
        }

        .faq-search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
        }

        /* ========== CATEGORY FILTER PILLS ========== */
        .faq-filters {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: -12px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .pill {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid var(--border);
            background: var(--bg-surface);
            color: var(--text-secondary);
        }

        .pill:hover,
        .pill.active {
            border-color: var(--primary);
            color: var(--primary-light);
            background: rgba(192, 57, 43, 0.1);
        }

        /* ========== FAQ SECTION ========== */
        .faq-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px 48px;
        }

        .faq-category {
            margin-bottom: 36px;
        }

        .faq-category-title {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-light);
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 8px;
            overflow: hidden;
            transition: border-color 0.2s ease;
        }

        .faq-item:hover {
            border-color: var(--border-hover);
        }

        .faq-item.open {
            border-color: var(--border-hover);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            text-align: left;
            padding: 18px 52px 18px 20px;
            cursor: pointer;
            position: relative;
            line-height: 1.4;
            transition: color 0.2s ease;
        }

        .faq-question:hover {
            color: var(--primary-light);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            font-weight: 400;
            color: var(--text-muted);
            transition: transform 0.3s ease, color 0.2s ease;
        }

        .faq-item.open .faq-question::after {
            content: '\00d7';
            color: var(--primary-light);
            transform: translateY(-50%);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-answer-inner p {
            margin-bottom: 12px;
        }

        .faq-answer-inner p:last-child {
            margin-bottom: 0;
        }

        .faq-answer-inner ul {
            margin: 8px 0 12px;
            padding-left: 20px;
        }

        .faq-answer-inner li {
            margin-bottom: 6px;
        }

        .faq-answer-inner strong {
            color: var(--text-primary);
        }

        .faq-answer-inner a {
            color: var(--primary-light);
            text-decoration: none;
        }

        .faq-answer-inner a:hover {
            text-decoration: underline;
        }

        .faq-item.open .faq-answer {
            max-height: 800px;
        }

        /* ========== NO RESULTS ========== */
        .faq-no-results {
            text-align: center;
            padding: 48px 24px;
            display: none;
        }

        .faq-no-results.visible {
            display: block;
        }

        .faq-no-results p {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .faq-no-results span {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ========== CTA SECTION ========== */
        .faq-cta {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 56px 24px;
            text-align: center;
        }

        .faq-cta h2 {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.3px;
            margin-bottom: 12px;
        }

        .faq-cta p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 460px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .page-hero {
                padding: 40px 16px 36px;
            }

            .page-hero h1 {
                font-size: 28px;
            }

            .page-hero p {
                font-size: 15px;
            }

            .faq-filters {
                margin-top: -4px;
                margin-bottom: 32px;
            }

            .faq-question {
                font-size: 14px;
                padding: 16px 44px 16px 16px;
            }

            .faq-answer-inner {
                padding: 0 16px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 24px;
            }

            .faq-cta h2 {
                font-size: 20px;
            }
        }
