/* ============================================================
   RJK GROUP — FAQ PAGE
   css/faq.css
   ============================================================ */

.faq-section {
    margin-bottom: 56px;
}

.faq-section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

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

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

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

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    line-height: 1.3;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-q:hover {
    background: var(--surface);
    color: var(--blue);
}

.faq-item.open .faq-q {
    color: var(--blue2);
    background: var(--surface);
}

.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--muted);
    transition: transform 0.3s ease, stroke 0.2s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    stroke: var(--blue2);
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-a p {
    margin-bottom: 8px;
}

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

.faq-a a {
    color: var(--blue2);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.faq-a a:hover {
    color: var(--blue);
}

.faq-choice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
    padding-left: 4px;
}

.faq-choice-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--ink);
}

.faq-choice-list li::before {
    content: '→';
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .faq-q {
        font-size: 15px;
        padding: 16px 16px;
    }

    .faq-a {
        padding: 0 16px 16px;
    }
}
