/* ============================================
   FAQ PAGE - FixStop 2026
   Relies on fixstop-2026.css for base tokens
   ============================================ */

.fq-page {
    padding: 100px 0 80px;
    min-height: 70vh;
    background: var(--white);
}

/* ---- Headings ---- */
.fq-heading {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 12px;
}
.fq-heading .accent {
    color: var(--blue);
}
.fq-subheading {
    text-align: center;
    font-size: 1.05rem;
    color: #64748B;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- FAQ Accordion ---- */
.fq-list {
    max-width: 800px;
    margin: 0 auto 48px;
}
.fq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.fq-item[open] {
    border-color: rgba(0, 112, 192, 0.25);
    box-shadow: 0 4px 16px rgba(0, 112, 192, 0.08);
}
.fq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
    line-height: 1.4;
}
.fq-question::-webkit-details-marker {
    display: none;
}
.fq-question::marker {
    display: none;
    content: '';
}
.fq-question:hover {
    color: var(--blue);
}
.fq-question::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2.5px solid var(--blue);
    border-bottom: 2.5px solid var(--blue);
    transform: rotate(45deg);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-top: -4px;
}
.fq-item[open] > .fq-question::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}
.fq-answer {
    padding: 0 24px 20px;
    border-top: 1px solid #F1F5F9;
}
.fq-answer p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.7;
    margin: 16px 0 0;
}

/* ---- SEO Content Block ---- */
.fq-seo-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 40px 0 0;
    border-top: 1px solid #E2E8F0;
}
.fq-seo-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.fq-seo-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4A5568;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .fq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    .fq-answer {
        padding: 0 20px 16px;
    }
}

@media (max-width: 480px) {
    .fq-page {
        padding: 80px 0 60px;
    }
    .fq-heading {
        font-size: 1.6rem;
    }
    .fq-subheading {
        font-size: 0.92rem;
        margin-bottom: 32px;
    }
    .fq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
        gap: 12px;
    }
    .fq-answer {
        padding: 0 16px 14px;
    }
}
