.faq-hero {
    padding: 145px 0 85px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 30%, rgba(85, 151, 255, 0.38), transparent 30%),
        linear-gradient(120deg, #102b53 0%, #286eda 100%);
}

.faq-hero-inner {
    max-width: 820px;
    text-align: center;
}

.faq-hero .section-kicker {
    color: #c8ddff;
}

.faq-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.faq-hero p {
    max-width: 680px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-content-section {
    padding: 90px 0 110px;
    background: #f5f8fc;
}

.faq-layout {
    display: grid;
    max-width: 970px;
    gap: 55px;
}

.faq-category-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.faq-category-heading > span {
    display: grid;
    flex: 0 0 auto;
    width: 43px;
    height: 43px;
    place-items: center;
    color: #286eda;
    background: #e1ecff;
    border-radius: 12px;
}

.faq-category-heading h2 {
    margin: 0;
    color: #10233c;
    font-size: clamp(1.45rem, 3vw, 2rem);
    letter-spacing: -0.035em;
}

.faq-list {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe8f5;
    border-radius: 17px;
    box-shadow: 0 16px 45px rgba(16, 43, 83, 0.07);
}

.faq-item + .faq-item {
    border-top: 1px solid #e7edf6;
}

.faq-item summary {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 24px;
    color: #10233c;
    font-weight: 750;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    flex: 0 0 auto;
    color: #286eda;
    transition: transform 0.2s ease;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 60px 22px 24px;
}

.faq-answer p {
    margin: 0;
    color: #617087;
    font-size: 0.94rem;
    line-height: 1.75;
}

[dir="rtl"] .faq-answer {
    padding-right: 24px;
    padding-left: 60px;
}

.faq-help {
    padding: 65px 0;
    color: #fff;
    background: #112849;
}

.faq-help-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.faq-help-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 17px;
    place-items: center;
    color: #a9ceff;
    background: rgba(40, 110, 218, 0.3);
    border-radius: 12px;
}

.faq-help h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: -0.04em;
}

.faq-help p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.faq-help a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    color: #fff;
    font-weight: 750;
    text-decoration: none;
    background: #286eda;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
    .faq-hero {
        padding: 120px 0 65px;
    }

    .faq-hero-inner {
        text-align: left;
    }

    [dir="rtl"] .faq-hero-inner {
        text-align: right;
    }

    .faq-hero p {
        margin-left: 0;
    }

    [dir="rtl"] .faq-hero p {
        margin-right: 0;
    }

    .faq-content-section {
        padding: 65px 0 80px;
    }

    .faq-layout {
        gap: 42px;
    }

    .faq-item summary {
        min-height: 64px;
        padding: 18px;
        font-size: 0.93rem;
    }

    .faq-answer {
        padding: 0 45px 20px 18px;
    }

    [dir="rtl"] .faq-answer {
        padding-right: 18px;
        padding-left: 45px;
    }

    .faq-help-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
