.home-faq {
    position: relative;
    padding: 72px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(102, 214, 140, 0.16), transparent 25%),
        linear-gradient(180deg, #f8f9ff 0%, #eef0f8 100%);
}

.home-faq::before {
    position: absolute;
    top: 50px;
    right: -90px;
    width: 260px;
    height: 260px;
    border: 48px solid rgba(1, 5, 107, 0.035);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.home-faq__intro,
.home-faq__list {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.home-faq__intro {
    max-width: 720px;
    margin-bottom: 38px;
    text-align: center;
}

.home-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 5px 13px;
    border: 1px solid rgba(1, 5, 107, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #01056b;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.13em;
}

.home-faq__title {
    margin: 0;
    color: #01056b;
    letter-spacing: -0.025em;
}

.home-faq__description {
    max-width: 650px;
    margin: 14px auto 0;
    color: #555763;
    font-size: 17px;
    line-height: 1.65;
}

.home-faq__list {
    display: grid;
    gap: 12px;
}

.home-faq__item {
    overflow: hidden;
    border: 1px solid rgba(24, 28, 68, 0.1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(16, 22, 54, 0.045);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-faq__item:hover {
    border-color: rgba(1, 5, 107, 0.2);
    box-shadow: 0 10px 30px rgba(16, 22, 54, 0.08);
    transform: translateY(-1px);
}

.home-faq__item:has(.home-faq__question:not(.collapsed)) {
    border-color: rgba(1, 5, 107, 0.28);
    box-shadow: 0 12px 34px rgba(1, 5, 107, 0.09);
}

.home-faq__heading {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: inherit;
    line-height: inherit;
}

.home-faq__question {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    gap: 16px;
    align-items: center;
    width: 100%;
    min-height: 76px;
    padding: 16px 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #25262b;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

.home-faq__question:hover,
.home-faq__question:focus,
.home-faq__question:not(.collapsed) {
    background: transparent;
    color: #01056b;
}

.home-faq__question:focus-visible {
    outline: 3px solid rgba(1, 5, 107, 0.24);
    outline-offset: -3px;
}

.home-faq__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #eff0fa;
    color: #01056b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background-color 180ms ease, color 180ms ease;
}

.home-faq__question:not(.collapsed) .home-faq__number {
    background: #01056b;
    color: #fff;
}

.home-faq__icon {
    position: relative;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(1, 5, 107, 0.13);
    border-radius: 50%;
    background: #f8f8fc;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.home-faq__icon::before,
.home-faq__icon::after {
    position: absolute;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #01056b;
    content: "";
    transition: transform 180ms ease;
}

.home-faq__icon::after {
    transform: rotate(90deg);
}

.home-faq__question:not(.collapsed) .home-faq__icon {
    border-color: #01056b;
    background: #01056b;
}

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

.home-faq__question:not(.collapsed) .home-faq__icon::after {
    transform: rotate(0deg);
}

.home-faq__answer {
    margin: 0 20px 0 78px;
    padding: 0 0 24px;
    color: #4b4b53;
    font-size: 15px;
    line-height: 1.7;
}

.home-faq__answer::before {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 18px;
    background: #e9eaf2;
    content: "";
}

.home-faq__answer > :last-child {
    margin-bottom: 0;
}

.home-faq__answer a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 767.98px) {
    .home-faq {
        padding: 52px 0 58px;
    }

    .home-faq::before {
        display: none;
    }

    .home-faq__intro {
        margin-bottom: 28px;
    }

    .home-faq__description {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.6;
    }

    .home-faq__list {
        gap: 10px;
    }

    .home-faq__item {
        border-radius: 12px;
    }

    .home-faq__item:hover {
        transform: none;
    }

    .home-faq__question {
        grid-template-columns: 34px minmax(0, 1fr) 32px;
        gap: 11px;
        min-height: 68px;
        padding: 14px;
        font-size: 14px;
    }

    .home-faq__number {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: 11px;
    }

    .home-faq__icon {
        width: 32px;
        height: 32px;
    }

    .home-faq__answer {
        margin: 0 14px 0 59px;
        padding-bottom: 20px;
        font-size: 14px;
        line-height: 1.65;
    }

    .home-faq__answer::before {
        margin-bottom: 14px;
    }
}

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