/* =========================================================
   ASD TRADERS
   INVESTMENT PLANS PAGE
========================================================= */


/* =========================================================
   COMMON
========================================================= */

.investment-plans-page {

    overflow: hidden;

}

.investment-plans-page .section {

    padding: 90px 0;

}

.ip-section-heading {

    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;

}

.ip-eyebrow {

    display: inline-block;

    margin-bottom: 14px;

    color: #39A8FF;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}

.ip-section-heading h2 {

    margin-bottom: 18px;

    color: #FFFFFF;

    font-size: 42px;

    line-height: 1.2;

}

.ip-section-heading p {

    color: #9CB0CC;

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   HERO
========================================================= */

.ip-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);

}

.ip-hero::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(57, 168, 255, .45),
        transparent
    );

}

.ip-hero-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

}

.ip-glow-one {

    top: -220px;

    left: -140px;

    background: rgba(57, 168, 255, .14);

}

.ip-glow-two {

    right: -160px;

    bottom: -240px;

    background: rgba(99, 102, 241, .12);

}

.ip-hero-content {

    position: relative;

    z-index: 2;

    max-width: 820px;

    padding: 100px 0;

}

.ip-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;

}

.ip-hero h1 {

    margin: 0 0 24px;

    color: #FFFFFF;

    font-size: 64px;

    line-height: 1.08;

    letter-spacing: -2px;

}

.ip-hero h1 span {

    color: #39A8FF;

}

.ip-hero p {

    max-width: 760px;

    margin: 0;

    color: #9CB0CC;

    font-size: 19px;

    line-height: 1.85;

}

.ip-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;

}


/* =========================================================
   BUTTONS
========================================================= */

.ip-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;

}

.ip-btn:hover {

    transform: translateY(-2px);

}

.ip-btn-primary {

    color: #FFFFFF;

    background: #1689E8;

    border: 1px solid #1689E8;

    box-shadow:
        0 10px 30px rgba(22, 137, 232, .20);

}

.ip-btn-primary:hover {

    color: #FFFFFF;

    background: #2498F5;

    border-color: #2498F5;

    box-shadow:
        0 12px 35px rgba(22, 137, 232, .28);

}

.ip-btn-outline {

    color: #D8E7F7;

    background: rgba(255, 255, 255, .025);

    border: 1px solid rgba(255, 255, 255, .14);

}

.ip-btn-outline:hover {

    color: #FFFFFF;

    border-color: rgba(57, 168, 255, .55);

    background: rgba(57, 168, 255, .07);

}


/* =========================================================
   INTRO / COMPANY OPTIONS
========================================================= */

.ip-intro {

    background: #07121F;

}

.ip-company-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}

.ip-company-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;

}

.ip-company-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    width: auto;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(57, 168, 255, .25),
        transparent
    );

    opacity: 0;

    transition: opacity .25s ease;

}

.ip-company-card:hover {

    transform: translateY(-5px);

    background: #0E2032;

    border-color: rgba(57, 168, 255, .28);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .22);

}

.ip-company-card:hover::before {

    opacity: 1;

}


/* =========================================================
   CARD TOP
========================================================= */

.ip-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 28px;

}

.ip-company-brand {

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;

}

.ip-company-logo {

    flex-shrink: 0;

    width: 54px;

    height: 54px;

    border-radius: 14px;

    object-fit: cover;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

}

.ip-company-logo-placeholder {

    display: flex;

    align-items: center;

    justify-content: center;

    color: #5CB8FF;

    font-size: 19px;

}

.ip-company-name {

    min-width: 0;

}

.ip-company-name h3 {

    margin: 0 0 5px;

    color: #FFFFFF;

    font-size: 17px;

    line-height: 1.3;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}

.ip-company-name span {

    color: #8499B1;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .5px;

}

.ip-status {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    color: #74D99B;

    background: rgba(70, 205, 125, .08);

    border: 1px solid rgba(70, 205, 125, .14);

    border-radius: 999px;

    font-size: 11px;

    font-weight: 700;

}

.ip-status-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #4ED48A;

    box-shadow:
        0 0 8px rgba(78, 212, 138, .55);

}


/* =========================================================
   PRICE
========================================================= */

.ip-price-section {

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255, 255, 255, .09);

}

.ip-price-label {

    display: block;

    margin-bottom: 8px;

    color: #748BA7;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .8px;

}

.ip-price-row {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

}

.ip-price {

    color: #FFFFFF;

    font-size: 30px;

    line-height: 1.2;

}

.ip-price-change {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 8px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 700;

}

.ip-price-change.positive {

    color: #63D997;

    background: rgba(70, 205, 125, .08);

}

.ip-price-change.negative {

    color: #FF7886;

    background: rgba(255, 85, 100, .08);

}

.ip-price-change.neutral {

    color: #9CB0CC;

    background: rgba(255, 255, 255, .06);

}


/* =========================================================
   DETAILS
========================================================= */

.ip-company-details {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

    padding: 22px 0;

}

.ip-detail {

    display: flex;

    flex-direction: column;

    gap: 5px;

}

.ip-detail span {

    color: #748BA7;

    font-size: 12px;

}

.ip-detail strong {

    color: #DCE8F6;

    font-size: 13px;

    line-height: 1.4;

}


/* =========================================================
   CARD ACTION
========================================================= */

.ip-card-action {

    padding-top: 2px;

}

.ip-card-btn {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    min-height: 46px;

    padding: 0 16px;

    color: #D9EBFC;

    background: rgba(57, 168, 255, .07);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;

}

.ip-card-btn i {

    color: #5CB8FF;

    transition: transform .25s ease;

}

.ip-card-btn:hover {

    color: #FFFFFF;

    background: rgba(57, 168, 255, .12);

    border-color: rgba(57, 168, 255, .30);

}

.ip-card-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   EMPTY STATE
========================================================= */

.ip-empty-state {

    grid-column: 1 / -1;

    padding: 70px 30px;

    text-align: center;

    background: #0B1928;

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 17px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .16);

}

.ip-empty-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .08);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 18px;

    font-size: 25px;

}

.ip-empty-state h3 {

    margin-bottom: 10px;

    color: #FFFFFF;

    font-size: 22px;

}

.ip-empty-state p {

    color: #8FA4BD;

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   PROCESS
========================================================= */

.ip-process {

    background: #06101C;

}

.ip-process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}

.ip-process-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;

}

.ip-process-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;

}

.ip-process-card:hover {

    transform: translateY(-5px);

    background: #0E2032;

    border-color: rgba(57, 168, 255, .28);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .22);

}

.ip-process-card:hover::before {

    opacity: 1;

}

.ip-process-number {

    position: absolute;

    top: 17px;

    right: 20px;

    color: rgba(92, 184, 255, .10);

    font-size: 30px;

    font-weight: 800;

}

.ip-process-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;

    font-size: 19px;

}

.ip-process-card h3 {

    margin-bottom: 11px;

    color: #FFFFFF;

    font-size: 18px;

}

.ip-process-card p {

    color: #8499B1;

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   FEATURES
========================================================= */

.ip-features {

    background: #07121F;

}

.ip-features-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}

.ip-feature-card {

    padding: 28px 24px;

    text-align: center;

    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;

}

.ip-feature-card:hover {

    transform: translateY(-5px);

    background: #0E2032;

    border-color: rgba(57, 168, 255, .28);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .22);

}

.ip-feature-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 56px;

    height: 56px;

    margin: 0 auto 20px;

    color: #5CB8FF;

    background: rgba(57, 168, 255, .08);

    border: 1px solid rgba(57, 168, 255, .14);

    border-radius: 15px;

    font-size: 20px;

}

.ip-feature-card h3 {

    margin-bottom: 11px;

    color: #FFFFFF;

    font-size: 18px;

}

.ip-feature-card p {

    color: #8499B1;

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   CONSIDERATIONS
========================================================= */

.ip-considerations {

    background: #06101C;

}

.ip-consideration-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);

}

.ip-consideration-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;

}

.ip-consideration-content h2 {

    margin-bottom: 16px;

    color: #FFFFFF;

    font-size: 34px;

}

.ip-consideration-content p {

    max-width: 850px;

    margin-bottom: 14px;

    color: #91A5BD;

    font-size: 16px;

    line-height: 1.85;

}

.ip-consideration-content p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   CTA
========================================================= */

.ip-cta {

    padding-top: 30px !important;

    padding-bottom: 100px !important;

    background: #07121F;

}

.ip-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);

}

.ip-cta-box h2 {

    margin-bottom: 16px;

    color: #FFFFFF;

    font-size: 42px;

}

.ip-cta-box p {

    max-width: 650px;

    margin: 0 auto;

    color: #91A5BD;

    font-size: 17px;

    line-height: 1.8;

}

.ip-cta-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .investment-plans-page .section {

        padding: 75px 0;

    }


    /* HERO */

    .ip-hero {

        min-height: auto;

    }

    .ip-hero-content {

        padding: 85px 0;

    }

    .ip-hero h1 {

        font-size: 52px;

    }


    /* COMPANY */

    .ip-company-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    /* PROCESS */

    .ip-process-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    /* FEATURES */

    .ip-features-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .investment-plans-page .section {

        padding: 60px 0;

    }


    /* HERO */

    .ip-hero-content {

        padding: 70px 0;

        text-align: center;

    }

    .ip-badge {

        font-size: 11px;

    }

    .ip-hero h1 {

        font-size: 38px;

        line-height: 1.12;

        letter-spacing: -1px;

    }

    .ip-hero p {

        font-size: 16px;

        line-height: 1.75;

    }

    .ip-hero-actions {

        justify-content: center;

    }

    .ip-btn {

        width: 100%;

    }


    /* SECTION HEADING */

    .ip-section-heading {

        margin-bottom: 38px;

    }

    .ip-section-heading h2 {

        font-size: 31px;

    }

    .ip-section-heading p {

        font-size: 15px;

    }


    /* COMPANY */

    .ip-company-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .ip-company-card {

        padding: 25px 22px;

    }

    .ip-company-name h3 {

        max-width: 145px;

    }


    /* PROCESS */

    .ip-process-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .ip-process-card {

        padding: 25px 22px;

    }


    /* FEATURES */

    .ip-features-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .ip-feature-card {

        padding: 25px 22px;

    }


    /* CONSIDERATIONS */

    .ip-consideration-box {

        flex-direction: column;

        padding: 30px 24px;

        gap: 24px;

        text-align: center;

    }

    .ip-consideration-icon {

        margin: 0 auto;

    }

    .ip-consideration-content h2 {

        font-size: 29px;

    }

    .ip-consideration-content p {

        font-size: 15px;

    }


    /* CTA */

    .ip-cta {

        padding-top: 15px !important;

        padding-bottom: 70px !important;

    }

    .ip-cta-box {

        padding: 50px 22px;

    }

    .ip-cta-box h2 {

        font-size: 31px;

    }

    .ip-cta-box p {

        font-size: 15px;

    }

}