.home-faq {
    padding: 52px 0 30px;
    background: #fff;
}

.home-faq * {
    box-sizing: border-box;
}

.faq-inner {
    width: 94%;
    max-width: 1430px;
    margin: 0 auto;
}

.faq-head {
    max-width: 760px;
    margin: 0 auto 26px;
    text-align: center;
}

.faq-kicker {
    margin: 0 0 8px;
    color: #ea5412;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.faq-title {
    margin: 0;
    color: #222;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.faq-title::after {
    content: "";
    display: block;
    width: 54px;
    height: 4px;
    margin: 14px auto 0;
    background: #f8bc40;
    border-radius: 4px;
}

.faq-subtitle {
    max-width: 520px;
    margin: 16px auto 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.faq-item {
    position: relative;
    min-height: 128px;
    padding: 20px 24px 18px 66px;
    background: #fff;
    border: 1px solid #f1e1d6;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    transition: all .35s ease;
}

.faq-item::before {
    content: "Q";
    position: absolute;
    left: 22px;
    top: 20px;
    width: 34px;
    height: 34px;
    color: #000;
    background: #f8bc40;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
}

.faq-item:hover {
    border-color: #ea5412;
    box-shadow: 0 12px 30px rgba(234, 84, 18, .15);
    transform: translateY(-2px);
}

.faq-question {
    margin: 0 0 10px;
    color: #222;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-answer {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.75;
}

@media screen and (max-width: 768px) {
    .home-faq {
        padding: 38px 0 24px;
    }

    .faq-head {
        margin-bottom: 22px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-title::after {
        margin: 12px auto 0;
    }

    .faq-subtitle {
        margin: 12px auto 0;
        font-size: 14px;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq-item {
        min-height: 0;
        padding: 20px 18px 20px 62px;
    }

    .faq-item::before {
        left: 18px;
        top: 20px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
