/* ============================================
   FAQ - FREQUENTLY ASKED QUESTIONS
   Accordion style with smooth transitions
   ============================================ */

.faq-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 120px 24px;
        }

        .faq-section .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-section .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #FF6B4A;
            margin-bottom: 16px;
        }

        .faq-section .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #171717;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .faq-section .section-subtitle {
            font-size: 18px;
            color: #737373;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: white;
            border: 2px solid #E5E5E5;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(255, 107, 74, 0.3);
        }

        .faq-item.active {
            border-color: #FF6B4A;
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            gap: 20px;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #FAFAFA;
        }

        .faq-item.active .faq-question {
            background: #FAFAFA;
        }

        .faq-question-text {
            font-size: 18px;
            font-weight: 600;
            color: #171717;
            line-height: 1.4;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: #737373;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: #FF6B4A;
            color: white;
            transform: rotate(180deg);
        }

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

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 28px 24px 28px;
            font-size: 16px;
            color: #737373;
            line-height: 1.7;
        }

        .faq-answer-content strong {
            color: #171717;
            font-weight: 600;
        }

        .faq-cta {
            margin-top: 60px;
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 16px;
            border: 2px solid #E5E5E5;
        }

        .faq-cta-title {
            font-size: 24px;
            font-weight: 700;
            color: #171717;
            margin-bottom: 12px;
        }

        .faq-cta-text {
            font-size: 16px;
            color: #737373;
            margin-bottom: 24px;
        }

        .faq-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #FF6B4A;
            color: white;
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .faq-cta-button:hover {
            background: #FF5733;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .faq-section {
                padding: 80px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question-text {
                font-size: 16px;
            }

            .faq-icon {
                width: 28px;
                height: 28px;
                font-size: 18px;
            }

            .faq-answer-content {
                padding: 0 20px 20px 20px;
                font-size: 15px;
            }

            .faq-cta {
                padding: 32px 24px;
            }

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

        /* Demo section */
        .demo-section {
            margin-top: 80px;
            padding: 40px;
            background: white;
            border-radius: 12px;
            border: 2px dashed #E5E5E5;
        }

        .demo-section h3 {
            color: #171717;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .demo-section p {
            color: #737373;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .demo-section code {
            background: #FAFAFA;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 14px;
            color: #FF6B4A;
        }