.faq-hero {
        padding: 148px 0 72px;
        background: linear-gradient(155deg, #e8f0fe 0%, #f4f6fb 48%, #fff7ed 100%);
        position: relative; overflow: hidden;
        text-align: center;
    }
    .faq-hero::before {
        content: '';
        position: absolute; inset: 0;
        background-image:
            linear-gradient(rgba(59,130,246,.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(59,130,246,.045) 1px, transparent 1px);
        background-size: 52px 52px;
        pointer-events: none;
    }
    .fh-blob {
        position: absolute; border-radius: 50%;
        filter: blur(90px); pointer-events: none;
        animation: blobFloat 12s ease-in-out infinite;
    }
    .fh-blob-1 { width: 420px; height: 420px; top:-130px; right:-80px; background: rgba(59,130,246,.11); }
    .fh-blob-2 { width: 320px; height: 320px; bottom:-80px; left:-60px; background: rgba(249,115,22,.09); animation-delay:-6s; }
    @keyframes blobFloat {
        0%,100%{ transform:translate(0,0) scale(1) }
        33%    { transform:translate(16px,-24px) scale(1.03) }
        66%    { transform:translate(-12px,16px) scale(.97) }
    }
    .faq-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
    .fh-h {
        font-family: var(--font-h);
        font-size: clamp(2.6rem, 5vw, 4rem);
        font-weight: 300; line-height: 1.07;
        letter-spacing: -.025em; color: var(--text);
        margin-bottom: 16px;
    }
    .fh-h strong { font-weight: 700; display: block; }
    .fh-h em {
        font-style: italic;
        background: linear-gradient(135deg, var(--teal-deep), var(--indigo));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .fh-sub {
        font-size: 1rem; color: var(--text-3);
        line-height: 1.8; margin-bottom: 32px;
    }

    /* Search bar */
    .faq-search-wrap {
        position: relative; max-width: 480px; margin: 0 auto;
    }
    .faq-search-wrap i {
        position: absolute; left: 18px; top: 50%;
        transform: translateY(-50%);
        color: var(--text-4); font-size: .9rem;
        pointer-events: none; transition: color .25s;
    }
    .faq-search-wrap:focus-within i { color: var(--teal-deep); }
    .faq-search {
        width: 100%; padding: 14px 20px 14px 46px;
        background: #fff; border: 1.5px solid var(--border-2);
        border-radius: 100px; outline: none;
        font-family: var(--font-b); font-size: .9rem; color: var(--text);
        box-shadow: var(--shadow-md);
        transition: all .25s var(--ease);
    }
    .faq-search::placeholder { color: var(--text-4); }
    .faq-search:focus { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-dim), var(--shadow-md); }

    /* ══════════════════════════════
       CATEGORY TABS
    ══════════════════════════════ */
    .faq-tabs-wrap {
        padding: 40px 0 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        position: sticky; top: 62px; z-index: 50;
    }
    .faq-tabs {
        display: flex; gap: 6px; flex-wrap: wrap;
        padding-bottom: 0; justify-content: center;
    }
    .faq-tab {
        display: inline-flex; align-items: center; gap: 7px;
        padding: 9px 20px; border-radius: 100px;
        font-size: .82rem; font-weight: 600;
        background: var(--bg); border: 1.5px solid var(--border);
        color: var(--text-3); cursor: pointer;
        transition: all .25s var(--ease);
        font-family: var(--font-b); margin-bottom: 16px;
    }
    .faq-tab i { font-size: .78rem; }
    .faq-tab:hover { border-color: var(--indigo); color: var(--indigo-deep); background: var(--indigo-pale); }
    .faq-tab.active {
        background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
        color: #fff; border-color: transparent;
        box-shadow: 0 4px 16px rgba(234,88,12,.28);
    }
    .faq-tab .tab-count {
        background: rgba(255,255,255,.25); color: inherit;
        font-size: .68rem; font-weight: 700;
        padding: 2px 7px; border-radius: 100px;
    }
    .faq-tab:not(.active) .tab-count { background: var(--border-2); color: var(--text-4); }

    /* ══════════════════════════════
       FAQ BODY
    ══════════════════════════════ */
    .faq-body { padding: 64px 0 80px; background: #fff; }
    .faq-layout {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 48px; align-items: start;
    }

    /* Sidebar quick-jump */
    .faq-sidebar { position: sticky; top: 140px; }
    .faq-sidebar-label {
        font-size: .68rem; font-weight: 700; letter-spacing: .12em;
        text-transform: uppercase; color: var(--text-4); margin-bottom: 14px;
    }
    .faq-sidebar-links { display: flex; flex-direction: column; gap: 4px; }
    .faq-sidebar-link {
        display: flex; align-items: center; gap: 8px;
        padding: 9px 12px; border-radius: var(--radius);
        font-size: .82rem; font-weight: 500; color: var(--text-3);
        cursor: pointer; transition: all .2s var(--ease);
        border: 1.5px solid transparent;
    }
    .faq-sidebar-link i { font-size: .75rem; width: 14px; text-align: center; }
    .faq-sidebar-link:hover { background: var(--indigo-pale); color: var(--indigo-deep); border-color: rgba(249,115,22,.2); }
    .faq-sidebar-link.active { background: var(--indigo-pale); color: var(--indigo-deep); border-color: rgba(249,115,22,.3); font-weight: 700; }

    /* FAQ groups */
    .faq-groups { display: flex; flex-direction: column; gap: 40px; }
    .faq-group { display: block; }
    .faq-group-title {
        display: flex; align-items: center; gap: 10px;
        font-family: var(--font-h); font-size: 1.3rem; font-weight: 600;
        color: var(--text); margin-bottom: 18px; padding-bottom: 14px;
        border-bottom: 2px solid var(--border);
    }
    .faq-group-title-ico {
        width: 36px; height: 36px; border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        font-size: .9rem; flex-shrink: 0;
    }
    .gico-o { background: var(--indigo-dim); color: var(--indigo-deep); }
    .gico-t { background: var(--teal-dim);   color: var(--teal-deep); }
    .gico-g { background: rgba(5,150,105,.1); color: #059669; }
    .gico-r { background: var(--rose-dim);   color: #92400e; }

    /* ══════════════════════════════
       ACCORDION ITEM
    ══════════════════════════════ */
    .faq-item {
        background: var(--bg);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-lg);
        margin-bottom: 10px;
        overflow: hidden;
        transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
    }
    .faq-item:hover { border-color: rgba(249,115,22,.25); }
    .faq-item.open {
        border-color: var(--indigo);
        box-shadow: 0 4px 24px rgba(249,115,22,.1);
        background: #fff;
    }

    /* Header row — always visible */
    .faq-header {
        display: flex; align-items: flex-start;
        gap: 14px; padding: 18px 20px;
        cursor: pointer; user-select: none;
    }

    /* Number badge */
    .faq-num {
        width: 28px; height: 28px; border-radius: 8px;
        background: var(--border-2); color: var(--text-4);
        font-size: .72rem; font-weight: 700;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0; margin-top: 1px;
        transition: all .3s var(--ease);
    }
    .faq-item.open .faq-num {
        background: var(--indigo-deep); color: #fff;
    }

    .faq-header-text { flex: 1; min-width: 0; }

    /* Question */
    .faq-question {
        font-size: .95rem; font-weight: 700;
        color: var(--text); margin-bottom: 4px;
        line-height: 1.4; transition: color .25s;
    }
    .faq-item.open .faq-question { color: var(--indigo-deep); }

    /* Short answer — always visible */
    .faq-short {
        font-size: .82rem; color: var(--text-4);
        font-weight: 400; line-height: 1.5;
        white-space: nowrap; overflow: hidden;
        text-overflow: ellipsis; max-width: 520px;
        transition: opacity .3s;
    }
    .faq-item.open .faq-short { opacity: 0; height: 0; margin: 0; overflow: hidden; }

    /* Chevron */
    .faq-chevron {
        width: 32px; height: 32px; border-radius: 50%;
        background: var(--bg-2); border: 1.5px solid var(--border);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0; transition: all .35s var(--ease);
        color: var(--text-4); font-size: .72rem; margin-top: 2px;
    }
    .faq-item:hover .faq-chevron { border-color: var(--indigo); color: var(--indigo-deep); background: var(--indigo-pale); }
    .faq-item.open .faq-chevron {
        background: var(--indigo-deep); border-color: var(--indigo-deep);
        color: #fff; transform: rotate(180deg);
    }

    /* Full answer panel */
    .faq-answer-wrap {
        max-height: 0; overflow: hidden;
        transition: max-height .45s var(--ease);
    }
    .faq-item.open .faq-answer-wrap { max-height: 400px; }

    .faq-answer {
        padding: 0 20px 20px 62px;
        font-size: .88rem; color: var(--text-3);
        line-height: 1.8;
        border-top: 1px solid var(--border);
        padding-top: 16px;
        margin: 0 20px 0 0;
    }
    .faq-answer ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
    .faq-answer ul li {
        display: flex; align-items: flex-start; gap: 8px;
    }
    .faq-answer ul li::before {
        content: ''; width: 6px; height: 6px; border-radius: 50%;
        background: var(--indigo); flex-shrink: 0; margin-top: 7px;
    }
    .faq-answer strong { color: var(--text-2); }

    /* No results */
    .faq-no-results {
        text-align: center; padding: 60px 20px;
        display: none;
        color: var(--text-4);
    }
    .faq-no-results i { font-size: 2.5rem; margin-bottom: 12px; display: block; opacity: .3; }
    .faq-no-results p { font-size: .9rem; }

    /* ══════════════════════════════
       CTA STRIP
    ══════════════════════════════ */
    .faq-cta {
        padding: 64px 0; background: var(--bg);
    }
    .faq-cta-box {
        background: #fff; border: 1.5px solid var(--border);
        border-radius: var(--radius-xl); padding: 52px 40px;
        box-shadow: var(--shadow-lg); text-align: center;
        max-width: 640px; margin: 0 auto;
        position: relative; overflow: hidden;
    }
    .faq-cta-box::before {
        content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
        background: linear-gradient(90deg, var(--teal-deep), var(--teal), var(--indigo));
    }
    .faq-cta-box::after {
        content: ''; position: absolute; bottom: 16px; right: 16px;
        width: 22px; height: 22px;
        border-right: 2px solid rgba(249,115,22,.3);
        border-bottom: 2px solid rgba(249,115,22,.3);
        border-radius: 0 0 4px 0;
    }
    .faq-cta-h {
        font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 300; line-height: 1.2; color: var(--text); margin-bottom: 10px;
    }
    .faq-cta-h strong { font-weight: 700; }
    .faq-cta-h em {
        font-style: italic;
        background: linear-gradient(135deg, var(--teal-deep), var(--indigo));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .faq-cta-p { font-size: .9rem; color: var(--text-3); margin-bottom: 24px; line-height: 1.7; }
    .faq-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 1024px) {
        .faq-layout { grid-template-columns: 1fr; }
        .faq-sidebar { display: none; }
    }
    @media (max-width: 768px) {
        .faq-hero { padding: 110px 0 52px; }
        .faq-tabs-wrap { top: 56px; padding: 20px 0 0; }
        .faq-tabs { gap: 6px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding: 0 4px 16px; scrollbar-width: none; }
        .faq-tabs::-webkit-scrollbar { display: none; }
        .faq-tab { flex-shrink: 0; }
        .faq-body { padding: 36px 0 56px; }
        .faq-cta-box { padding: 36px 20px; }
        .faq-answer { padding-left: 20px; }
        .faq-short { max-width: 200px; }
    }
    @media (max-width: 480px) {
        .faq-header { padding: 14px 14px; gap: 10px; }
        .faq-answer { padding: 12px 14px 16px; }
        .faq-question { font-size: .88rem; }
    }