.faq-hero {
    background: linear-gradient(135deg, #1E5AA8 0%, #174a8c 55%, #123d75 100%);
    color: #fff;
    padding: 4rem 0 3.5rem;
}
.faq-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}
.faq-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.faq-hero__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.faq-hero__count {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
}

.faq-search-wrap {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
}
.faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #94a3b8;
    pointer-events: none;
}
.faq-search-input {
    width: 100%;
    padding: 0.95rem 1rem 0.95rem 2.75rem;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    color: #0f172a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    outline: none;
}
.faq-search-input:focus {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(77, 166, 255, 0.45);
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.faq-cat-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    transition: all 0.2s ease;
    cursor: pointer;
}
.faq-cat-btn:hover {
    border-color: #4DA6FF;
    color: #1E5AA8;
}
.faq-cat-btn.is-active {
    background: #1E5AA8;
    border-color: #1E5AA8;
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 90, 168, 0.25);
}

.faq-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}
.faq-category-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(30, 90, 168, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 20px rgba(30, 90, 168, 0.08);
}
.faq-item.is-open {
    border-color: #4DA6FF;
    box-shadow: 0 8px 28px rgba(30, 90, 168, 0.12);
}
.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
}
.faq-item__question {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45;
}
.faq-item__icon {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: #e8f4ff;
    position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #1E5AA8;
    border-radius: 1px;
    transition: transform 0.25s ease;
}
.faq-item__icon::before {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.faq-item__icon::after {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-item__panel {
    overflow: hidden;
}
.faq-item__panel[hidden] {
    display: none;
}
.faq-item__answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    margin: 0 1.25rem 1.25rem;
}

.faq-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}
.faq-empty.hidden {
    display: none;
}
.faq-category-block.is-hidden,
.faq-item.is-hidden {
    display: none !important;
}

.faq-cta {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.faq-cta-btn--primary {
    background: #1E5AA8;
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 90, 168, 0.25);
}
.faq-cta-btn--primary:hover {
    background: #174a8c;
}
.faq-cta-btn--secondary {
    background: #fff;
    color: #1E5AA8;
    border: 2px solid #e2e8f0;
}
.faq-cta-btn--secondary:hover {
    border-color: #4DA6FF;
    background: #e8f4ff;
}

@media (max-width: 640px) {
    .faq-hero {
        padding: 3rem 0 2.5rem;
    }
    .faq-item__trigger {
        padding: 1rem;
    }
    .faq-item__answer {
        margin: 0 1rem 1rem;
        padding-left: 0;
        padding-right: 0;
    }
}
