/* =========================================================
   HELP PAGE
   ========================================================= */

.help-page {
    background: #f7f8fb;
}


/* =========================================================
   HERO
   ========================================================= */

.help-hero {
    position: relative;

    padding: 72px 0 76px;

    overflow: hidden;

    background:
            radial-gradient(
                    circle at 20% 10%,
                    rgba(255, 255, 255, 0.12),
                    transparent 32%
            ),
            linear-gradient(
                    135deg,
                    #5630b4,
                    #7441d4
            );
}

.help-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
            linear-gradient(
                    120deg,
                    transparent,
                    rgba(255, 255, 255, 0.04),
                    transparent
            );
}

.help-hero-content {
    position: relative;
    z-index: 1;

    max-width: 720px;

    margin: 0 auto;

    text-align: center;
}

.help-hero-badge {
    display: inline-flex;

    margin-bottom: 14px;

    padding: 6px 12px;

    color: #fff;

    background: rgba(255, 255, 255, 0.13);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;

    font-size: 0.7rem;
    font-weight: 600;
}

.help-hero h1 {
    margin: 0;

    color: #fff;

    font-size: 2rem;
    font-weight: 600;
}

.help-hero p {
    max-width: 620px;

    margin: 10px auto 24px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.86rem;
}

.help-search {
    display: flex;
    align-items: center;

    max-width: 620px;

    min-height: 50px;

    margin: 0 auto;

    padding: 0 16px;

    background: #fff;

    border-radius: 14px;

    box-shadow:
            0 14px 30px rgba(43, 23, 83, 0.18);
}

.help-search i {
    margin-right: 11px;

    color: #7441d4;
}

.help-search .form-control {
    padding: 0;

    border: 0;

    box-shadow: none;

    font-size: 0.82rem;
}


/* =========================================================
   GENERIC SECTION
   ========================================================= */

.help-section {
    padding: 46px 0;
}

.help-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 24px;
}

.help-section-header h2 {
    margin: 0;

    color: #343a40;

    font-size: 1.35rem;
    font-weight: 600;
}

.help-section-header p {
    margin: 5px 0 0;

    color: #98a2a8;

    font-size: 0.78rem;
}


/* =========================================================
   CATEGORY CARDS
   ========================================================= */

.help-categories-section {
    padding-top: 38px;
}

.help-category-card {
    display: block;

    height: 100%;

    padding: 22px;

    color: inherit;

    background: #fff;

    border: 1px solid #edf0f2;
    border-radius: 14px;

    box-shadow:
            0 4px 15px rgba(30, 40, 50, 0.04);

    text-decoration: none;

    transition:
            transform 0.16s ease,
            box-shadow 0.16s ease,
            border-color 0.16s ease;
}

.help-category-card:hover {
    color: inherit;

    transform: translateY(-2px);

    border-color: #dfd2f8;

    box-shadow:
            0 10px 25px rgba(55, 42, 78, 0.08);
}

.help-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-bottom: 16px;

    color: #7441d4;

    background: #f3eefd;

    border-radius: 12px;

    font-size: 1rem;
}

.help-category-card h3 {
    margin: 0 0 7px;

    color: #343a40;

    font-size: 0.95rem;
    font-weight: 600;
}

.help-category-card p {
    min-height: 42px;

    margin: 0 0 14px;

    color: #98a2a8;

    font-size: 0.72rem;
    line-height: 1.55;
}

.help-category-link {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #7441d4;

    font-size: 0.7rem;
    font-weight: 600;
}


/* =========================================================
   FAQ
   ========================================================= */

.help-faq-section {
    background: #fff;
}

.help-faq-wrapper {
    max-width: 920px;

    margin: 0 auto;
}

.help-faq-group {
    padding: 24px 0;

    border-bottom: 1px solid #edf0f2;
}

.help-faq-group:last-child {
    border-bottom: 0;
}

.help-faq-group-title {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 14px;
}

.help-faq-group-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    color: #7441d4;

    background: #f3eefd;

    border-radius: 10px;
}

.help-faq-group-title h3 {
    margin: 0;

    color: #343a40;

    font-size: 0.95rem;
    font-weight: 600;
}

.help-faq-group-title p {
    margin: 2px 0 0;

    color: #99a2a8;

    font-size: 0.68rem;
}


/* ACCORDION */

.help-accordion {
    overflow: hidden;

    border: 1px solid #edf0f2;
    border-radius: 12px;
}

.help-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #edf0f2;
}

.help-accordion .accordion-item:last-child {
    border-bottom: 0;
}

.help-accordion .accordion-button {
    padding: 15px 17px;

    color: #41474b;

    background: #fff;

    box-shadow: none;

    font-size: 0.78rem;
    font-weight: 600;
}

.help-accordion .accordion-button:not(.collapsed) {
    color: #7441d4;

    background: #fbf9ff;
}

.help-accordion .accordion-body {
    padding: 0 17px 16px;

    color: #7e898f;

    font-size: 0.73rem;
    line-height: 1.6;
}


/* =========================================================
   CONTACT
   ========================================================= */

.help-contact-section {
    padding-bottom: 54px;
}

.help-contact-card {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    height: 100%;

    padding: 22px;

    background: #fff;

    border: 1px solid #edf0f2;
    border-radius: 14px;

    box-shadow:
            0 4px 15px rgba(30, 40, 50, 0.04);
}

.help-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 46px;
    height: 46px;

    color: #7441d4;

    background: #f3eefd;

    border-radius: 12px;
}

.help-contact-card h3 {
    margin: 0 0 6px;

    color: #343a40;

    font-size: 0.9rem;
    font-weight: 600;
}

.help-contact-card p {
    margin: 0 0 10px;

    color: #98a2a8;

    font-size: 0.72rem;
    line-height: 1.55;
}

.help-contact-link {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #7441d4;

    font-size: 0.7rem;
    font-weight: 600;

    text-decoration: none;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .help-hero {
        padding: 50px 0 54px;
    }

    .help-hero h1 {
        font-size: 1.55rem;
    }

    .help-section {
        padding: 34px 0;
    }

    .help-category-card {
        padding: 18px;
    }

    .help-contact-card {
        padding: 18px;
    }

}

.help-faq-wrapper {
    max-width: 1050px;
    margin: 0 auto;
}

.help-faq-group {
    padding: 18px 0;
}

.help-faq-section .help-section-header {
    margin-bottom: 14px;
}

.help-accordion {
    background: #fff;
    border: 1px solid #edf0f2;
    border-radius: 12px;
}

.help-accordion .accordion-item {
    background: #fff;
}

.help-accordion .accordion-button {
    background: #fff;
}

.help-accordion .accordion-button:not(.collapsed) {
    background: #faf8ff;
}

.help-accordion .accordion-body {
    background: #fff;
}

.help-faq-section {
    padding-top: 36px;
}