/* Reusable FAQ section matching the transfer FAQ layout */
.global-faq-section.trf-faq {
    padding: 96px 0 100px;
    background: #fff;
}

.global-faq-section .trf-eyebrow {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary, #e85d04);
    margin-bottom: 10px;
}

.global-faq-section .trf-section-title {
    font-family: var(--font-display, serif);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--gray-900, #0f172a);
    line-height: 1.18;
    letter-spacing: 0;
    margin: 0 0 12px;
}

.global-faq-section .trf-section-sub {
    font-size: 1rem;
    color: var(--gray-500, #64748b);
    line-height: 1.7;
    margin: 0;
}

.global-faq-section .trf-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: start;
}

.global-faq-section .trf-faq-head {
    position: sticky;
    top: 100px;
}

.global-faq-section .trf-faq-head .trf-section-title,
.global-faq-section .trf-faq-head .trf-section-sub {
    text-align: left;
}

.global-faq-section .trf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.global-faq-section .trf-faq-item {
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.global-faq-section .trf-faq-item:first-child {
    border-top: 1px solid #e2e8f0;
}

.global-faq-section .trf-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    cursor: pointer;
    font-size: .97rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    list-style: none;
    user-select: none;
    transition: color .18s ease;
}

.global-faq-section .trf-faq-q::-webkit-details-marker {
    display: none;
}

.global-faq-section .trf-faq-item[open] .trf-faq-q {
    color: var(--primary, #e85d04);
}

.global-faq-section .trf-faq-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), color .18s ease;
}

.global-faq-section .trf-faq-item[open] .trf-faq-chevron {
    transform: rotate(180deg);
    color: var(--primary, #e85d04);
}

.global-faq-section .trf-faq-a {
    height: 0;
    overflow: hidden;
    padding: 0 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        height .34s cubic-bezier(.22, 1, .36, 1),
        opacity .22s ease,
        transform .28s cubic-bezier(.22, 1, .36, 1);
    will-change: height, opacity, transform;
}

.global-faq-section .trf-faq-item[open] .trf-faq-a {
    opacity: 1;
    transform: translateY(0);
}

.global-faq-section .trf-faq-item.is-closing .trf-faq-a {
    opacity: 0;
    transform: translateY(-4px);
}

.global-faq-section .trf-faq-a-inner {
    padding-bottom: 20px;
}

.global-faq-section .trf-faq-a p {
    font-size: .93rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.global-faq-section .trf-faq-a p + p {
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .global-faq-section .trf-faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .global-faq-section .trf-faq-head {
        position: static;
    }

    .global-faq-section .trf-faq-head .trf-section-title,
    .global-faq-section .trf-faq-head .trf-section-sub {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .global-faq-section.trf-faq {
        padding: 56px 0 60px;
        background: #fff;
    }

    .global-faq-section .trf-faq-inner {
        gap: 24px;
    }

    .global-faq-section .trf-faq-head {
        padding: 0 4px;
    }

    .global-faq-section .trf-faq-head .trf-section-title,
    .global-faq-section .trf-faq-head .trf-section-sub {
        text-align: left;
    }

    .global-faq-section .trf-faq-head .trf-section-title {
        margin-bottom: 8px;
    }

    .global-faq-section .trf-faq-list {
        gap: 10px;
    }

    .global-faq-section .trf-faq-item,
    .global-faq-section .trf-faq-item:first-child {
        border: 1px solid rgba(226, 232, 240, .95);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 6px 20px rgba(15, 23, 42, .045);
        overflow: hidden;
    }

    .global-faq-section .trf-faq-q {
        padding: 15px 14px;
        gap: 12px;
        font-size: .9rem;
        line-height: 1.35;
    }

    .global-faq-section .trf-faq-chevron {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        background: #f8fafc;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .global-faq-section .trf-faq-a {
        padding: 0 14px;
    }

    .global-faq-section .trf-faq-a-inner {
        padding-bottom: 15px;
    }

    .global-faq-section .trf-faq-a p {
        font-size: .84rem;
        line-height: 1.58;
    }
}
