.px-faq-page {
    padding-top: 16px;
}

.px-faq-hero {
    min-height: 510px;
    padding: 98px 20px 88px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 14% 30%, rgba(27, 132, 255, .11) 0 2px, transparent 3px),
        radial-gradient(circle at 85% 68%, rgba(27, 132, 255, .1) 0 2px, transparent 3px),
        #f1f7ff;
}

.px-faq-hero::before,
.px-faq-hero::after {
    content: "";
    width: 350px;
    height: 350px;
    border: 1px solid rgba(27, 132, 255, .09);
    border-radius: 50%;
    position: absolute;
}

.px-faq-hero::before {
    top: -220px;
    right: -90px;
}

.px-faq-hero::after {
    bottom: -245px;
    left: -75px;
}

.px-faq-hero h1 {
    margin: 16px 0 0;
    color: #30374f;
    font-size: clamp(36px, 4.4vw, 62px);
    font-weight: 800;
    line-height: 1.55;
}

.px-faq-hero p {
    margin: 10px 0 0;
    font-size: 16px;
}

.px-faq-search {
    width: min(650px, 100%);
    height: 62px;
    margin: 34px auto 0;
    padding: 0 18px;
    border: 1px solid #d0d5dd;
    border-radius: 11px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #98a2b3;
    background: #fff;
    box-shadow: 0 12px 26px rgba(28, 59, 93, .08);
}

.px-faq-search:focus-within {
    border-color: #75b5ff;
    box-shadow: 0 0 0 4px rgba(27, 132, 255, .1), 0 12px 26px rgba(28, 59, 93, .08);
}

.px-faq-search input {
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    flex: 1;
    color: #344054;
    background: transparent;
    font: inherit;
    font-size: 14px;
}

.px-faq-search__key {
    padding: 3px 7px;
    border: 1px solid #e4e7ec;
    border-radius: 5px;
    direction: ltr;
    color: #98a2b3;
    font: 11px Arial, sans-serif;
}

.px-faq-guides {
    padding-top: 122px;
}

.px-faq-heading {
    text-align: center;
}

.px-faq-heading .px-inner-section-title {
    margin-top: 14px;
}

.px-faq-guides__grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.px-faq-guide-card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid #e4e7ec;
    border-radius: 13px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #344054;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.px-faq-guide-card:hover {
    border-color: #b8d8ff;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(27, 71, 126, .08);
}

.px-faq-guide-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #1b84ff;
    background: #eef6ff;
    font-size: 21px;
}

.px-faq-guide-card__content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.px-faq-guide-card__content strong {
    font-size: 15px;
    font-weight: 700;
}

.px-faq-guide-card__content small {
    margin-top: 7px;
    padding-left: 22px;
    color: #667085;
    font-size: 12px;
    line-height: 1.8;
}

.px-faq-guide-card__arrow {
    position: absolute;
    bottom: 24px;
    left: 22px;
    color: #98a2b3;
}

.px-faq-list {
    padding-top: 142px;
}

.px-faq-list__items {
    width: min(900px, 100%);
    margin: 54px auto 0;
    border-top: 1px solid #e4e7ec;
}

.px-faq-item {
    border-bottom: 1px solid #e4e7ec;
}

.px-faq-item button {
    width: 100%;
    min-height: 88px;
    padding: 22px 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #344054;
    background: transparent;
    text-align: right;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.9;
    cursor: pointer;
}

.px-faq-item__mark {
    width: 24px;
    height: 24px;
    border: 1.5px solid #98a2b3;
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}

.px-faq-item__mark::before,
.px-faq-item__mark::after {
    content: "";
    width: 8px;
    height: 1.5px;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #98a2b3;
    transform: translate(-50%, -50%);
}

.px-faq-item__mark::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.px-faq-item.is-open button {
    color: #1b84ff;
}

.px-faq-item.is-open .px-faq-item__mark {
    border-color: #1b84ff;
}

.px-faq-item.is-open .px-faq-item__mark::before,
.px-faq-item.is-open .px-faq-item__mark::after {
    background: #1b84ff;
}

.px-faq-item.is-open .px-faq-item__mark::after {
    transform: translate(-50%, -50%) rotate(0);
}

.px-faq-item__answer {
    padding: 0 0 25px 54px;
}

.px-faq-item__answer p {
    max-width: 760px;
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 2.1;
}

.px-faq-help {
    min-height: 330px;
    margin-top: 126px;
    padding: 58px 72px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 145px 1fr auto;
    align-items: center;
    gap: 36px;
    background: #eef6ff;
}

.px-faq-help::after {
    content: "";
    width: 510px;
    height: 510px;
    border: 1px solid rgba(27, 132, 255, .12);
    border-radius: 50%;
    position: absolute;
    right: -255px;
    bottom: -310px;
}

.px-faq-help__orb {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    color: #fff;
    background: #1b84ff;
    box-shadow:
        0 0 0 16px rgba(27, 132, 255, .09),
        0 0 0 34px rgba(27, 132, 255, .045);
}

.px-faq-help__orb span {
    font-size: 66px;
    font-weight: 300;
    transform: translateY(-3px);
}

.px-faq-help > div {
    position: relative;
    z-index: 1;
}

.px-faq-help h2 {
    margin: 0;
    color: #30374f;
    font-size: clamp(25px, 2.6vw, 38px);
    font-weight: 800;
}

.px-faq-help p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 2;
}

.px-faq-help .px-inner-button {
    min-width: 190px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .px-faq-guides__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .px-faq-help {
        padding: 50px 45px;
        grid-template-columns: 120px 1fr;
    }

    .px-faq-help__orb {
        width: 105px;
        height: 105px;
    }

    .px-faq-help .px-inner-button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 575.98px) {
    .px-faq-hero {
        min-height: 440px;
        padding: 70px 14px;
    }

    .px-faq-search__key {
        display: none;
    }

    .px-faq-guides,
    .px-faq-list {
        padding-top: 88px;
    }

    .px-faq-guides__grid {
        grid-template-columns: 1fr;
    }

    .px-faq-guide-card {
        min-height: 172px;
    }

    .px-faq-item button {
        font-size: 14px;
    }

    .px-faq-item__answer {
        padding-left: 0;
    }

    .px-faq-help {
        margin-top: 88px;
        padding: 55px 25px;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .px-faq-help .px-inner-button {
        grid-column: 1;
        justify-self: center;
    }
}
