/* =========================================================
   ASD TRADERS
   INVESTMENT TIPS PAGE
========================================================= */


/* =========================================================
   COMMON
========================================================= */

.investment-tips-page {

    overflow: hidden;

}

.investment-tips-page .section {

    padding: 90px 0;

}

.it-section-heading {

    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;

}

.it-heading-left {

    max-width: 760px;

    margin-left: 0;

    text-align: left;

}

.it-eyebrow {

    display: inline-block;

    margin-bottom: 14px;

    color: #39A8FF;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}

.it-section-heading h2 {

    margin-bottom: 18px;

    color: #FFFFFF;

    font-size: 42px;

    line-height: 1.2;

}

.it-section-heading p {

    color: #9CB0CC;

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   HERO
========================================================= */

.it-hero {

    position: relative;

    min-height: 600px;

    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);

}

.it-hero::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(57, 168, 255, .45),
        transparent
    );

}

.it-hero-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

}

.it-glow-one {

    top: -220px;

    left: -140px;

    background: rgba(57, 168, 255, .14);

}

.it-glow-two {

    right: -160px;

    bottom: -240px;

    background: rgba(99, 102, 241, .12);

}

.it-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 100px 0;

}

.it-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;

}

.it-hero h1 {

    margin: 0 0 24px;

    color: #FFFFFF;

    font-size: 64px;

    line-height: 1.08;

    letter-spacing: -2px;

}

.it-hero h1 span {

    color: #39A8FF;

}

.it-hero p {

    max-width: 770px;

    margin: 0;

    color: #9CB0CC;

    font-size: 19px;

    line-height: 1.85;

}

.it-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;

}


/* =========================================================
   BUTTONS
========================================================= */

.it-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;

}

.it-btn:hover {

    transform: translateY(-2px);

}

.it-btn-primary {

    color: #FFFFFF;

    background: #1689E8;

    border: 1px solid #1689E8;

    box-shadow: 0 10px 30px rgba(22, 137, 232, .20);

}

.it-btn-primary:hover {

    color: #FFFFFF;

    background: #2498F5;

    border-color: #2498F5;

    box-shadow: 0 12px 35px rgba(22, 137, 232, .28);

}

.it-btn-outline {

    color: #D8E7F7;

    background: rgba(255, 255, 255, .025);

    border: 1px solid rgba(255, 255, 255, .14);

}

.it-btn-outline:hover {

    color: #FFFFFF;

    border-color: rgba(57, 168, 255, .55);

    background: rgba(57, 168, 255, .07);

}


/* =========================================================
   INTRO / PRINCIPLES
========================================================= */

.it-intro {

    background: #07121F;

}

.it-principles-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}

.it-principle-card {

    position: relative;

    padding: 28px 24px;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 17px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .16);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}

.it-principle-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(57, 168, 255, .25),
        transparent
    );

    opacity: 0;

    transition: opacity .25s ease;

}

.it-principle-card:hover {

    transform: translateY(-5px);

    background: #0E2032;

    border-color: rgba(57, 168, 255, .28);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .22);

}

.it-principle-card:hover::before {

    opacity: 1;

}

.it-principle-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 54px;

    height: 54px;

    margin-bottom: 21px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .08);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 14px;

}

.it-card-number {

    position: absolute;

    top: 17px;

    right: 20px;

    color: #5CB8FF;

    font-size: 30px;

    font-weight: 800;

}

.it-principle-card h3 {

    margin-bottom: 11px;

    color: #FFFFFF;

    font-size: 18px;

}

.it-principle-card p {

    margin: 0;

    color: #8499B1;

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   PRACTICAL TIPS
========================================================= */

.it-tips {

    background: #06101C;

}

.it-tips-layout {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}

.it-tip-card {

    padding: 28px 25px;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 17px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .16);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}

.it-tip-card:hover {

    transform: translateY(-5px);

    background: #0E2032;

    border-color: rgba(57, 168, 255, .28);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .22);

}

.it-tip-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}

.it-tip-number {

    color: #5CB8FF;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}

.it-tip-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 50px;

    height: 50px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .08);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 13px;

}

.it-tip-card h3 {

    min-height: 48px;

    margin-bottom: 12px;

    color: #FFFFFF;

    font-size: 18px;

    line-height: 1.35;

}

.it-tip-card p {

    min-height: 100px;

    margin-bottom: 20px;

    color: #8499B1;

    font-size: 13px;

    line-height: 1.75;

}

.it-tip-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #5CB8FF;

    font-size: 12px;

    font-weight: 700;

    transition:
        gap .25s ease,
        color .25s ease;

}

.it-tip-link:hover {

    gap: 13px;

    color: #8CCFFF;

}


/* =========================================================
   CHECKLIST
========================================================= */

.it-checklist {

    background: #07121F;

}

.it-checklist-box {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: center;

    padding: 55px;

    background:
        linear-gradient(
            135deg,
            rgba(57, 168, 255, .07),
            rgba(255, 255, 255, .018)
        );

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .15);

}

.it-checklist-content {

    max-width: 510px;

}

.it-checklist-content h2 {

    margin-bottom: 18px;

    color: #FFFFFF;

    font-size: 38px;

    line-height: 1.25;

}

.it-checklist-content p {

    margin-bottom: 25px;

    color: #91A5BD;

    font-size: 16px;

    line-height: 1.85;

}

.it-text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #5CB8FF;

    font-size: 14px;

    font-weight: 700;

    transition:
        gap .25s ease,
        color .25s ease;

}

.it-text-link:hover {

    gap: 14px;

    color: #8CCFFF;

}

.it-checklist-items {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.it-check-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 17px;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 13px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, .14);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;

}

.it-check-item:hover {

    background: #0E2032;

    border-color: rgba(57, 168, 255, .22);

    transform: translateX(3px);

}

.it-check-item > span {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 40px;

    height: 40px;

    color: #63D997;

    background: rgba(70, 205, 125, .08);

    border: 1px solid rgba(70, 205, 125, .14);

    border-radius: 10px;

    font-size: 11px;

}

.it-check-item strong {

    display: block;

    margin-bottom: 3px;

    color: #FFFFFF;

    font-size: 13px;

}

.it-check-item small {

    color: #758BA5;

    font-size: 11px;

}


/* =========================================================
   INVESTMENT PROCESS
========================================================= */

.it-process {

    background: #06101C;

}

.it-process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;

}

.it-process-step {

    position: relative;

    padding: 0 20px;

    text-align: center;

}

.it-process-line {

    position: absolute;

    top: 31px;

    left: 50%;

    width: 100%;

    height: 1px;

    background: rgba(57, 168, 255, .16);

}

.it-process-step:last-child .it-process-line {

    display: none;

}

.it-process-icon {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 62px;

    height: 62px;

    margin: 0 auto 17px;

    color: #5CB8FF;

    background: #0B1928;

    border: 1px solid rgba(57, 168, 255, .25);

    border-radius: 50%;

    box-shadow:
        0 0 0 8px #06101C,
        0 8px 20px rgba(0, 0, 0, .18);

}

.it-process-number {

    display: block;

    margin-bottom: 8px;

    color: #4E7EA2;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}

.it-process-step h3 {

    margin-bottom: 8px;

    color: #FFFFFF;

    font-size: 18px;

}

.it-process-step p {

    color: #8298B1;

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   COMMON MISTAKES
========================================================= */

.it-mistakes {

    background: #07121F;

}

.it-mistake-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}

.it-mistake-card {

    padding: 27px 23px;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 16px;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, .15);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}

.it-mistake-card:hover {

    transform: translateY(-4px);

    background: #0E2032;

    border-color: rgba(255, 100, 120, .25);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .20);

}

.it-mistake-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 50px;

    height: 50px;

    margin-bottom: 20px;

    color: #FF8797;

    background: rgba(255, 75, 98, .07);

    border: 1px solid rgba(255, 75, 98, .13);

    border-radius: 13px;

}

.it-mistake-card h3 {

    margin-bottom: 10px;

    color: #FFFFFF;

    font-size: 17px;

}

.it-mistake-card p {

    margin: 0;

    color: #8499B1;

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   IMPORTANT NOTICE
========================================================= */

.it-notice {

    background: #06101C;

}

.it-notice-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);

}

.it-notice-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;

}

.it-notice-content h2 {

    margin-bottom: 16px;

    color: #FFFFFF;

    font-size: 34px;

}

.it-notice-content p {

    max-width: 850px;

    margin-bottom: 14px;

    color: #91A5BD;

    font-size: 16px;

    line-height: 1.85;

}

.it-notice-content p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   RESOURCES
========================================================= */

.it-resources {

    background: #07121F;

}

.it-resource-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.it-resource-card {

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 25px;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 15px;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, .14);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}

.it-resource-card:hover {

    transform: translateY(-4px);

    background: #0E2032;

    border-color: rgba(57, 168, 255, .28);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .20);

}

.it-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;

}

.it-resource-card h3 {

    margin-bottom: 5px;

    color: #FFFFFF;

    font-size: 16px;

}

.it-resource-card p {

    margin: 0;

    color: #8298B1;

    font-size: 13px;

    line-height: 1.6;

}

.it-resource-arrow {

    margin-left: auto;

    color: #4E7EA2;

    font-size: 13px;

    transition:
        transform .25s ease,
        color .25s ease;

}

.it-resource-card:hover .it-resource-arrow {

    color: #5CB8FF;

    transform: translateX(4px);

}


/* =========================================================
   CTA
========================================================= */

.it-cta {

    padding-top: 30px !important;

    padding-bottom: 100px !important;

    background: #07121F;

}

.it-cta-box {

    padding: 70px 30px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(57, 168, 255, .12),
            transparent 55%
        ),
        #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 22px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .18);

}

.it-cta-box h2 {

    margin-bottom: 16px;

    color: #FFFFFF;

    font-size: 42px;

}

.it-cta-box p {

    max-width: 680px;

    margin: 0 auto;

    color: #91A5BD;

    font-size: 17px;

    line-height: 1.8;

}

.it-cta-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .investment-tips-page .section {

        padding: 75px 0;

    }


    /* HERO */

    .it-hero {

        min-height: auto;

    }

    .it-hero-content {

        padding: 85px 0;

    }

    .it-hero h1 {

        font-size: 52px;

    }


    /* PRINCIPLES */

    .it-principles-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    /* TIPS */

    .it-tips-layout {

        grid-template-columns: repeat(2, 1fr);

    }


    /* CHECKLIST */

    .it-checklist-box {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    /* PROCESS */

    .it-process-grid {

        grid-template-columns: repeat(2, 1fr);

        row-gap: 45px;

    }

    .it-process-line {

        display: none;

    }


    /* MISTAKES */

    .it-mistake-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .investment-tips-page .section {

        padding: 60px 0;

    }


    /* HERO */

    .it-hero-content {

        padding: 70px 0;

        text-align: center;

    }

    .it-badge {

        font-size: 11px;

    }

    .it-hero h1 {

        font-size: 38px;

        line-height: 1.12;

        letter-spacing: -1px;

    }

    .it-hero p {

        font-size: 16px;

        line-height: 1.75;

    }

    .it-hero-actions {

        justify-content: center;

    }

    .it-btn {

        width: 100%;

    }


    /* SECTION HEADING */

    .it-section-heading {

        margin-bottom: 38px;

    }

    .it-section-heading h2 {

        font-size: 31px;

    }

    .it-section-heading p {

        font-size: 15px;

    }

    .it-heading-left {

        text-align: center;

    }


    /* PRINCIPLES */

    .it-principles-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .it-principle-card {

        padding: 25px 22px;

    }


    /* TIPS */

    .it-tips-layout {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .it-tip-card {

        padding: 25px 22px;

    }

    .it-tip-card h3 {

        min-height: auto;

    }

    .it-tip-card p {

        min-height: auto;

    }


    /* CHECKLIST */

    .it-checklist-box {

        padding: 30px 24px;

        gap: 35px;

    }

    .it-checklist-content {

        text-align: center;

    }

    .it-checklist-content h2 {

        font-size: 29px;

    }

    .it-checklist-content p {

        font-size: 15px;

    }

    .it-check-item {

        align-items: flex-start;

    }


    /* PROCESS */

    .it-process-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .it-process-step {

        padding: 0;

    }


    /* MISTAKES */

    .it-mistake-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    /* NOTICE */

    .it-notice-box {

        flex-direction: column;

        padding: 30px 24px;

        gap: 24px;

        text-align: center;

    }

    .it-notice-icon {

        margin: 0 auto;

    }

    .it-notice-content h2 {

        font-size: 29px;

    }

    .it-notice-content p {

        font-size: 15px;

    }


    /* RESOURCES */

    .it-resource-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .it-resource-card {

        padding: 22px;

    }


    /* CTA */

    .it-cta {

        padding-top: 15px !important;

        padding-bottom: 70px !important;

    }

    .it-cta-box {

        padding: 50px 22px;

    }

    .it-cta-box h2 {

        font-size: 31px;

    }

    .it-cta-box p {

        font-size: 15px;

    }

}