/* =========================================================
   ASD TRADERS
   HELP CENTER PAGE
========================================================= */


/* =========================================================
   COMMON
========================================================= */

.help-center-page {

    overflow: hidden;

}

.hc-section {

    padding: 90px 0;

}

.hc-eyebrow {

    display: inline-block;

    margin-bottom: 14px;

    color: #39A8FF;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}

.hc-section-heading {

    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;

}

.hc-section-heading h2 {

    margin-bottom: 18px;

    color: #FFFFFF;

    font-size: 42px;

    line-height: 1.2;

}

.hc-section-heading p {

    color: #9CB0CC;

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   HERO
========================================================= */

.hc-hero {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(57, 168, 255, .14),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(99, 102, 241, .10),
            transparent 32%
        ),
        #06101C;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

}

.hc-hero::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(57, 168, 255, .45),
        transparent
    );

}

.hc-hero-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

}

.hc-glow-one {

    top: -220px;

    left: -140px;

    background: rgba(57, 168, 255, .14);

}

.hc-glow-two {

    right: -160px;

    bottom: -240px;

    background: rgba(99, 102, 241, .12);

}

.hc-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 95px 0;

}

.hc-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 16px;

    margin-bottom: 24px;

    color: #8CCFFF;

    background: rgba(57, 168, 255, .09);

    border: 1px solid rgba(57, 168, 255, .20);

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

}

.hc-hero h1 {

    margin: 0 0 24px;

    color: #FFFFFF;

    font-size: 64px;

    line-height: 1.08;

    letter-spacing: -2px;

}

.hc-hero h1 span {

    color: #39A8FF;

}

.hc-hero p {

    max-width: 780px;

    margin: 0;

    color: #9CB0CC;

    font-size: 19px;

    line-height: 1.85;

}

.hc-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;

}


/* =========================================================
   BUTTONS
========================================================= */

.hc-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 10px;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        box-shadow .25s ease;

}

.hc-btn:hover {

    transform: translateY(-2px);

}

.hc-btn-primary {

    color: #FFFFFF;

    background: #1689E8;

    border: 1px solid #1689E8;

    box-shadow:
        0 10px 30px rgba(22, 137, 232, .20);

}

.hc-btn-primary:hover {

    color: #FFFFFF;

    background: #2498F5;

    border-color: #2498F5;

    box-shadow:
        0 12px 35px rgba(22, 137, 232, .28);

}

.hc-btn-outline {

    color: #D8E7F7;

    background: rgba(255, 255, 255, .025);

    border: 1px solid rgba(255, 255, 255, .14);

}

.hc-btn-outline:hover {

    color: #FFFFFF;

    border-color: rgba(57, 168, 255, .55);

    background: rgba(57, 168, 255, .07);

}


/* =========================================================
   CATEGORIES
========================================================= */

.hc-categories {

    background: #07121F;

}

.hc-category-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}

.hc-category-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .16);

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}

.hc-category-card:hover {

    transform: translateY(-4px);

    background: #0E2032;

    border-color: rgba(57, 168, 255, .28);

    box-shadow:
        0 15px 32px rgba(0, 0, 0, .20);

}

.hc-category-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .08);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 13px;

}

.hc-category-card h3 {

    margin-bottom: 5px;

    color: #FFFFFF;

    font-size: 17px;

}

.hc-category-card p {

    margin: 0;

    color: #8499B1;

    font-size: 12px;

    line-height: 1.6;

}

.hc-card-arrow {

    margin-left: auto;

    flex-shrink: 0;

    color: #4E7EA2;

    font-size: 12px;

    transition:
        transform .25s ease,
        color .25s ease;

}

.hc-category-card:hover .hc-card-arrow,
.hc-resource-card:hover .hc-card-arrow {

    color: #5CB8FF;

    transform: translateX(4px);

}


/* =========================================================
   RESOURCES
========================================================= */

.hc-resources {

    background: #06101C;

}

.hc-resource-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}

.hc-resource-card {

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 24px;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .16);

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;

}

.hc-resource-card:hover {

    transform: translateY(-4px);

    background: #0E2032;

    border-color: rgba(57, 168, 255, .28);

}

.hc-resource-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .08);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 13px;

}

.hc-resource-card h3 {

    margin-bottom: 5px;

    color: #FFFFFF;

    font-size: 16px;

}

.hc-resource-card p {

    margin: 0;

    color: #8298B1;

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   CONTACT
========================================================= */

.hc-contact {

    background: #07121F;

}

.hc-contact-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 70px;

    align-items: start;

}

.hc-contact-content {

    padding-top: 20px;

}

.hc-contact-content h2 {

    margin-bottom: 18px;

    color: #FFFFFF;

    font-size: 42px;

    line-height: 1.2;

}

.hc-contact-content > p {

    max-width: 560px;

    margin-bottom: 30px;

    color: #91A5BD;

    font-size: 16px;

    line-height: 1.85;

}

.hc-contact-points {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.hc-contact-point {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px;

    background: rgba(11, 25, 40, .65);

    border: 1px solid rgba(255, 255, 255, .07);

    border-radius: 13px;

}

.hc-contact-point > span {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 42px;

    height: 42px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .08);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 11px;

}

.hc-contact-point strong {

    display: block;

    margin-bottom: 3px;

    color: #FFFFFF;

    font-size: 13px;

}

.hc-contact-point small {

    color: #758BA5;

    font-size: 11px;

}


/* =========================================================
   FORM CARD
========================================================= */

.hc-form-card {

    padding: 35px;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .18);

}

.hc-form-header {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 28px;

}

.hc-form-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .08);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 13px;

}

.hc-form-header h3 {

    margin-bottom: 4px;

    color: #FFFFFF;

    font-size: 20px;

}

.hc-form-header p {

    margin: 0;

    color: #758BA5;

    font-size: 12px;

    line-height: 1.6;

}

.hc-contact-form {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.hc-form-group {

    display: flex;

    flex-direction: column;

}

.hc-form-group label {

    margin-bottom: 8px;

    color: #D8E7F7;

    font-size: 12px;

    font-weight: 700;

}

.hc-form-group label span {

    color: #5CB8FF;

}

.hc-form-group input,
.hc-form-group textarea {

    width: 100%;

    padding: 14px 15px;

    color: #FFFFFF;

    background: #07121F;

    border: 1px solid rgba(255, 255, 255, .10);

    border-radius: 10px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

    box-sizing: border-box;

}

.hc-form-group input::placeholder,
.hc-form-group textarea::placeholder {

    color: #526A83;

}

.hc-form-group input:focus,
.hc-form-group textarea:focus {

    border-color: rgba(57, 168, 255, .55);

    background: #081726;

    box-shadow:
        0 0 0 3px rgba(57, 168, 255, .07);

}

.hc-form-group textarea {

    min-height: 145px;

    resize: vertical;

    line-height: 1.7;

}

.hc-submit-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 100%;

    min-height: 50px;

    margin-top: 3px;

    color: #FFFFFF;

    background: #1689E8;

    border: 1px solid #1689E8;

    border-radius: 10px;

    cursor: pointer;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(22, 137, 232, .20);

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}

.hc-submit-btn:hover {

    transform: translateY(-2px);

    background: #2498F5;

    border-color: #2498F5;

    box-shadow:
        0 12px 35px rgba(22, 137, 232, .28);

}


/* =========================================================
   MICOSOFT
========================================================= */

.hc-microsoft {

    padding-top: 0;

    background: #07121F;

}

.hc-microsoft-box {

    display: flex;

    align-items: flex-start;

    gap: 30px;

    padding: 45px;

    background:
        linear-gradient(
            135deg,
            rgba(57, 168, 255, .07),
            rgba(255, 255, 255, .018)
        );

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .14);

}

.hc-microsoft-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 68px;

    height: 68px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .09);

    border: 1px solid rgba(57, 168, 255, .18);

    border-radius: 18px;

    font-size: 26px;

}

.hc-microsoft-content {

    max-width: 900px;

}

.hc-microsoft-content h2 {

    margin-bottom: 12px;

    color: #FFFFFF;

    font-size: 32px;

}

.hc-microsoft-content p {

    margin: 0;

    color: #91A5BD;

    font-size: 16px;

    line-height: 1.85;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .hc-section {

        padding: 75px 0;

    }

    .hc-hero {

        min-height: auto;

    }

    .hc-hero-content {

        padding: 85px 0;

    }

    .hc-hero h1 {

        font-size: 52px;

    }

    .hc-contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .hc-contact-content {

        padding-top: 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .hc-section {

        padding: 60px 0;

    }


    /* HERO */

    .hc-hero-content {

        padding: 70px 0;

        text-align: center;

    }

    .hc-badge {

        font-size: 11px;

    }

    .hc-hero h1 {

        font-size: 38px;

        line-height: 1.12;

        letter-spacing: -1px;

    }

    .hc-hero p {

        font-size: 16px;

        line-height: 1.75;

    }

    .hc-hero-actions {

        justify-content: center;

    }

    .hc-btn {

        width: 100%;

    }


    /* HEADINGS */

    .hc-section-heading {

        margin-bottom: 38px;

    }

    .hc-section-heading h2 {

        font-size: 31px;

    }

    .hc-section-heading p {

        font-size: 15px;

    }


    /* CATEGORIES */

    .hc-category-grid {

        grid-template-columns: 1fr;

        gap: 12px;

    }

    .hc-category-card {

        padding: 20px;

    }


    /* RESOURCES */

    .hc-resource-grid {

        grid-template-columns: 1fr;

        gap: 12px;

    }

    .hc-resource-card {

        padding: 20px;

    }


    /* CONTACT */

    .hc-contact-content {

        text-align: center;

    }

    .hc-contact-content h2 {

        font-size: 31px;

    }

    .hc-contact-content > p {

        font-size: 15px;

    }

    .hc-contact-point {

        text-align: left;

    }


    /* FORM */

    .hc-form-card {

        padding: 25px 20px;

    }

    .hc-form-header {

        align-items: flex-start;

    }


    /* MICOSOFT */

    .hc-microsoft-box {

        flex-direction: column;

        padding: 30px 24px;

        gap: 24px;

        text-align: center;

    }

    .hc-microsoft-icon {

        margin: 0 auto;

    }

    .hc-microsoft-content h2 {

        font-size: 29px;

    }

    .hc-microsoft-content p {

        font-size: 15px;

    }

}