/* ── FAQ — sticky heading + accordion ── */
.new-faq {
    position: relative;
    background: #f0f2f8;
    overflow: hidden;
}

.new-faq__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 45% at 8% 40%, rgba(25, 38, 102, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 92% 70%, rgba(206, 137, 36, 0.1) 0%, transparent 55%);
}

.new-faq__inner {
    position: relative;
    z-index: 1;
}

.new-faq__layout {
    align-items: start;
}

.new-faq__aside {
    padding-right: clamp(0rem, 2vw, 1.25rem);
}

@media (min-width: 992px) {
    .new-faq__aside {
        position: sticky;
        top: clamp(5.5rem, 10vh, 7rem);
        align-self: start;
    }
}

.new-faq__aside .heading9 h5 {
    margin-bottom: 0.85rem;
    color: var(--gold, #ce8924);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.new-faq__title {
    color: var(--ink, #2d3764);
}

.new-faq__intro {
    margin: 0 0 1.25rem;
    color: #4a5278;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
    max-width: 22rem;
}

.new-faq__hint {
    margin: 0 0 0.85rem;
    color: var(--text-muted, #667d9f);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 20rem;
}

.new-faq__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink, #2d3764);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.55rem 0;
    border-bottom: 2px solid rgba(206, 137, 36, 0.45);
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.new-faq__contact-link:hover {
    color: var(--gold, #ce8924);
    border-color: var(--gold, #ce8924);
}

.new-faq__contact-link i {
    font-size: 0.85rem;
    color: var(--gold, #ce8924);
}

.new-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.new-faq__item {
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(45, 55, 100, 0.1);
    box-shadow: 0 4px 18px rgba(25, 38, 102, 0.06);
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.new-faq__item:has(.collapse.show) {
    border-color: rgba(206, 137, 36, 0.45);
    box-shadow: 0 10px 28px rgba(25, 38, 102, 0.1);
}

.new-faq__item-title {
    margin: 0;
}

.new-faq__trigger {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: var(--ink, #2d3764);
    font-size: clamp(1.02rem, 1.8vw, 1.2rem);
    font-weight: 600;
    line-height: 1.35;
    box-shadow: none;
}

.new-faq__trigger:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(206, 137, 36, 0.5);
}

.new-faq__trigger:focus-visible {
    outline: 2px solid var(--gold, #ce8924);
    outline-offset: 2px;
}

.new-faq__trigger:not(.collapsed) {
    color: var(--ink, #2d3764);
    background: linear-gradient(180deg, rgba(206, 137, 36, 0.06) 0%, transparent 100%);
}

.new-faq__question {
    flex: 1;
    min-width: 0;
}

.new-faq__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(45, 55, 100, 0.08);
    position: relative;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.new-faq__icon::before,
.new-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--ink, #2d3764);
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.new-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.new-faq__trigger:not(.collapsed) .new-faq__icon {
    background: var(--gold, #ce8924);
    transform: rotate(0deg);
}

.new-faq__trigger:not(.collapsed) .new-faq__icon::before,
.new-faq__trigger:not(.collapsed) .new-faq__icon::after {
    background: #fff;
}

.new-faq__trigger:not(.collapsed) .new-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.new-faq__panel {
    padding: 0 1.35rem 1.25rem;
}

.new-faq__panel p {
    margin: 0;
    padding-top: 0.15rem;
    color: #4a5278;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    font-weight: 400;
    max-width: 52rem;
}

@media (max-width: 991.98px) {
    .new-faq__aside {
        text-align: center;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .new-faq__intro,
    .new-faq__hint {
        max-width: none;
        margin-inline: auto;
    }

    .new-faq__contact-link {
        justify-content: center;
    }
}
