.lx-global-faq {
    --lx-faq-ink: #073151;
    --lx-faq-copy: #4b687c;
    --lx-faq-blue: #087ec0;
    --lx-faq-yellow: #f3c51f;
    position: relative;
    z-index: 1;
    clear: both;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 88px 32px 96px;
    color: var(--lx-faq-ink);
    background: linear-gradient(145deg, #edf7fc 0%, #f7fbfd 48%, #e4f3fa 100%);
}

.lx-global-faq *,
.lx-global-faq *::before,
.lx-global-faq *::after {
    box-sizing: border-box;
}

.lx-global-faq::before,
.lx-global-faq::after {
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.lx-global-faq::before {
    top: -250px;
    right: -160px;
    background: radial-gradient(circle, rgba(243, 197, 31, .2), rgba(243, 197, 31, 0) 70%);
}

.lx-global-faq::after {
    bottom: -280px;
    left: -170px;
    background: radial-gradient(circle, rgba(8, 126, 192, .18), rgba(8, 126, 192, 0) 70%);
}

.lx-global-faq__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.lx-global-faq--full {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.lx-global-faq__heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.lx-global-faq__eyebrow {
    margin: 0 0 10px;
    color: var(--lx-faq-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lx-global-faq__heading h2 {
    margin: 0;
    color: var(--lx-faq-ink);
    font-size: clamp(34px, 3.4vw, 50px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.lx-global-faq__heading > p:last-child {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--lx-faq-copy);
    font-size: 18px;
    line-height: 1.6;
}

.lx-global-faq__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
}

.lx-global-faq__item {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(7, 76, 119, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 34px rgba(10, 63, 96, .08);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lx-global-faq__item:hover {
    border-color: rgba(8, 126, 192, .32);
    box-shadow: 0 16px 40px rgba(10, 63, 96, .13);
    transform: translateY(-2px);
}

.lx-global-faq__item[open] {
    border-color: rgba(8, 126, 192, .42);
    background: #fff;
    box-shadow: 0 18px 44px rgba(10, 63, 96, .14);
}

.lx-global-faq__item summary {
    position: relative;
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 24px 24px 26px;
    color: #0a3554;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.lx-global-faq__item summary::-webkit-details-marker {
    display: none;
}

.lx-global-faq__item summary:focus-visible {
    outline: 3px solid rgba(8, 126, 192, .32);
    outline-offset: -3px;
}

.lx-global-faq__icon {
    position: relative;
    display: block;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(8, 126, 192, .22);
    border-radius: 50%;
    background: #edf7fc;
    transition: background-color .2s ease, transform .2s ease;
}

.lx-global-faq__icon::before,
.lx-global-faq__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--lx-faq-blue);
    content: "";
    transform: translate(-50%, -50%);
    transition: background-color .2s ease, transform .2s ease;
}

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

.lx-global-faq__item[open] .lx-global-faq__icon {
    background: var(--lx-faq-blue);
    transform: rotate(180deg);
}

.lx-global-faq__item[open] .lx-global-faq__icon::before,
.lx-global-faq__item[open] .lx-global-faq__icon::after {
    background: #fff;
}

.lx-global-faq__item[open] .lx-global-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.lx-global-faq__answer {
    padding: 0 26px 26px;
    border-top: 1px solid rgba(7, 76, 119, .08);
}

.lx-global-faq__answer p {
    margin: 20px 0 0;
    color: var(--lx-faq-copy);
    font-size: 16px;
    line-height: 1.7;
}

.lx-global-faq__answer a {
    color: var(--lx-faq-blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lx-global-faq__more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
}

.lx-global-faq__button {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid var(--lx-faq-blue);
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(120deg, #087ec0, #0669a3);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .035em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 24, 43, .18);
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.lx-global-faq__button:hover,
.lx-global-faq__button:focus-visible {
    border-color: #075f94;
    color: #fff;
    background: #075f94;
    box-shadow: 0 13px 30px rgba(0, 24, 43, .25);
}

.lx-global-faq__button:focus-visible {
    outline: 3px solid rgba(8, 126, 192, .28);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .lx-global-faq {
        padding: 64px 16px 72px;
    }

    .lx-global-faq__heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .lx-global-faq__heading h2 {
        font-size: 34px;
    }

    .lx-global-faq__heading > p:last-child {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.55;
    }

    .lx-global-faq__items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lx-global-faq__item {
        border-radius: 14px;
    }

    .lx-global-faq__item:hover {
        transform: none;
    }

    .lx-global-faq__item summary {
        min-height: 76px;
        padding: 20px 18px 20px 20px;
        font-size: 16px;
    }

    .lx-global-faq__icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .lx-global-faq__answer {
        padding: 0 20px 22px;
    }

    .lx-global-faq__answer p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
    }

    .lx-global-faq__more {
        margin-top: 24px;
    }

    .lx-global-faq__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lx-global-faq__item,
    .lx-global-faq__icon,
    .lx-global-faq__icon::before,
    .lx-global-faq__icon::after,
    .lx-global-faq__button {
        transition: none;
    }
}
