
.tt-faq,
.tt-faq * {
    box-sizing: border-box;
}

.tt-faq {
    width: min(1120px, calc(100% - 36px));
    margin: 34px auto 60px;
    font-family: Poppins, Arial, sans-serif;
    color: #071a44;
}

.tt-faq__intro {
    max-width: 800px;
    margin: 0 auto 34px;
    text-align: center;
}

.tt-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0872ff;
    font-size: 12px;
    font-weight: 700;
}

.tt-faq__intro h1 {
    margin: 10px 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.tt-faq__intro h1 span {
    color: #0872ff;
}

.tt-faq__intro p {
    margin: 0 auto;
    color: #66758c;
    font-size: 15px;
    line-height: 1.65;
}

.tt-faq__search {
    display: flex;
    max-width: 640px;
    height: 56px;
    align-items: center;
    gap: 11px;
    margin: 24px auto 0;
    padding: 0 18px;
    border: 1px solid #d8e3f1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(20, 55, 105, .06);
    color: #0872ff;
}

.tt-faq__search input {
    width: 100%;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font: inherit;
    color: #071a44;
}

.tt-faq__layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.tt-faq__categories {
    display: grid;
    gap: 7px;
    padding: 12px;
    border: 1px solid #dce5f1;
    border-radius: 15px;
    background: #fff;
    position: sticky;
    top: 20px;
}

.tt-faq__categories button {
    width: 100%;
    padding: 13px 14px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #40516b;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.tt-faq__categories button:hover,
.tt-faq__categories button.is-active {
    background: #edf5ff;
    color: #0872ff;
}

.tt-faq__list {
    display: grid;
    gap: 11px;
}

.tt-faq__item {
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 13px;
    background: #fff;
}

.tt-faq__question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border: 0;
    background: #fff;
    color: #071a44;
    font: inherit;
    font-size: 15px;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
}

.tt-faq__question small {
    display: block;
    margin-bottom: 4px;
    color: #0872ff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.tt-faq__plus {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #edf5ff;
}

.tt-faq__plus::before,
.tt-faq__plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #0872ff;
    transform: translate(-50%, -50%);
}

.tt-faq__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .18s ease;
}

.tt-faq__item.is-open .tt-faq__plus::after {
    transform: translate(-50%, -50%) rotate(0);
}

.tt-faq__answer {
    padding: 0 22px 21px;
    color: #607088;
    font-size: 14px;
    line-height: 1.75;
}

.tt-faq__answer p {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #edf1f6;
}

.tt-faq__empty {
    padding: 35px;
    border: 1px dashed #cddaea;
    border-radius: 13px;
    text-align: center;
    color: #65738a;
}

.tt-faq__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding: 22px 24px;
    border: 1px solid #dce5f1;
    border-radius: 15px;
    background: #fff;
}

.tt-faq__contact > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tt-faq__contact .dashicons {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5ff;
    color: #0872ff;
    font-size: 24px;
}

.tt-faq__contact h2 {
    margin: 0 0 4px;
    font-size: 17px;
}

.tt-faq__contact p {
    margin: 0;
    color: #66758c;
    font-size: 13px;
}

.tt-faq__contact a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 8px;
    background: #0872ff;
    color: #fff !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none !important;
}

@media (max-width: 820px) {
    .tt-faq__layout {
        grid-template-columns: 1fr;
    }

    .tt-faq__categories {
        position: static;
        display: flex;
        overflow-x: auto;
    }

    .tt-faq__categories button {
        width: auto;
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 620px) {
    .tt-faq {
        width: min(100% - 22px, 1120px);
    }

    .tt-faq__question {
        padding: 17px;
    }

    .tt-faq__answer {
        padding: 0 17px 18px;
    }

    .tt-faq__contact {
        align-items: flex-start;
        flex-direction: column;
    }

    .tt-faq__contact a {
        width: 100%;
    }
}
