/* ===================================
   ASD TRADERS — HOMEPAGE GLOBAL STYLES
=================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #081321;
    color: #fff;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

section {
    width: 100%;
    max-width: 100%;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================
   COMMON SECTION
========================================== */

.section {
    padding: 80px 0;
}

.section-title {
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.section-description {
    max-width: 700px;
    margin: 12px auto 0;

    color: #9CB0CC;

    font-size: 17px;
    line-height: 1.7;

    text-align: center;
}


/* ==========================================
   HERO SECTION
========================================== */

.hero {
    position: relative;

    width: 100%;
    max-width: 100%;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    isolation: isolate;

    background:
        radial-gradient(
            ellipse at 50% 100%,
            rgba(90, 35, 180, .12),
            transparent 55%
        ),
        #03050B;
}


/* ==========================================
   ANIMATED BACKGROUND CONTAINER
========================================== */

.hero-animated-bg {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    pointer-events: none;

    z-index: -1;
}


/* ==========================================
   DARK ATMOSPHERE
========================================== */

.hero-atmosphere {

    position: absolute;

    width: 900px;
    height: 500px;

    right: -200px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(40, 70, 180, .12),
            transparent 68%
        );

    filter: blur(40px);

    animation:
        atmosphereMove 12s ease-in-out infinite alternate;
}


/* ==========================================
   HORIZONTAL LIGHT STREAKS
========================================== */

.hero-light {

    position: absolute;

    left: -20%;

    width: 140%;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(25px);

    transform: rotate(-2deg);

    will-change: transform;

    mix-blend-mode: screen;
}


/* PURPLE */

.hero-light-purple {

    bottom: 60px;

    height: 75px;

    opacity: .72;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(120, 30, 255, .05) 10%,
            rgba(145, 55, 255, .65) 30%,
            rgba(185, 55, 255, .80) 43%,
            rgba(115, 40, 255, .45) 60%,
            transparent 88%
        );

    animation:
        purpleFlow 9s ease-in-out infinite alternate;
}


/* GREEN */

.hero-light-green {

    bottom: 80px;

    height: 45px;

    opacity: .58;

    filter: blur(18px);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 255, 150, .15) 20%,
            rgba(0, 255, 150, .70) 45%,
            rgba(30, 255, 170, .35) 65%,
            transparent 90%
        );

    animation:
        greenFlow 7s ease-in-out infinite alternate;
}


/* BLUE */

.hero-light-blue {

    bottom: 115px;

    height: 55px;

    opacity: .55;

    filter: blur(22px);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 120, 255, .15) 15%,
            rgba(20, 120, 255, .65) 40%,
            rgba(0, 200, 255, .40) 60%,
            transparent 90%
        );

    animation:
        blueFlow 11s ease-in-out infinite alternate;
}


/* PINK */

.hero-light-pink {

    bottom: 35px;

    height: 40px;

    opacity: .42;

    filter: blur(20px);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 30, 220, .15) 20%,
            rgba(255, 50, 220, .65) 45%,
            rgba(180, 30, 255, .35) 65%,
            transparent 90%
        );

    animation:
        pinkFlow 10s ease-in-out infinite alternate;
}


/* ==========================================
   LARGE BOTTOM GLOW
========================================== */

.hero-bottom-glow {

    position: absolute;

    width: 850px;
    height: 260px;

    left: 50%;
    bottom: -210px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(145, 45, 255, .42),
            rgba(20, 230, 160, .18) 35%,
            transparent 70%
        );

    filter: blur(45px);

    animation:
        bottomGlowMove 8s ease-in-out infinite alternate;
}


/* ==========================================
   MARKET CHART SVG
========================================== */

.hero-market-chart {

    position: absolute;

    left: -2%;

    bottom: -15px;

    width: 104%;

    height: 92%;

    overflow: visible;

    pointer-events: none;

    opacity: .95;
}


/* ==========================================
   CHART MAIN GLOW
========================================== */

.chart-glow {

    fill: none;

    stroke-linecap: round;

    stroke-linejoin: round;

    pointer-events: none;
}


.chart-glow-1 {

    stroke: rgba(110, 45, 255, .55);

    stroke-width: 16;

    filter:
        blur(9px)
        drop-shadow(
            0 0 20px rgba(115, 55, 255, .75)
        );

    opacity: .75;
}


/* ==========================================
   MAIN NEON CHART LINE
========================================== */

.chart-line {

    fill: none;

    stroke: #8B5CFF;

    stroke-width: 3.5;

    stroke-linecap: round;

    stroke-linejoin: round;

    filter:
        drop-shadow(
            0 0 4px rgba(120, 75, 255, .95)
        )
        drop-shadow(
            0 0 12px rgba(100, 55, 255, .85)
        )
        drop-shadow(
            0 0 25px rgba(100, 55, 255, .55)
        );

    stroke-dasharray: 2400;

    stroke-dashoffset: 2400;

    animation:
        chartDraw 8s linear infinite;
}


/* ==========================================
   SECONDARY CHART LINE
========================================== */

.chart-line-secondary {

    fill: none;

    stroke: rgba(30, 190, 255, .38);

    stroke-width: 2;

    stroke-linecap: round;

    filter:
        drop-shadow(
            0 0 8px rgba(30, 180, 255, .45)
        );

    opacity: .55;

    stroke-dasharray: 1800;

    stroke-dashoffset: 1800;

    animation:
        chartSecondary 11s linear infinite;
}


/* ==========================================
   BACKGROUND ANIMATIONS
========================================== */

@keyframes purpleFlow {

    0% {
        transform:
            translateX(-80px)
            translateY(10px)
            rotate(-2deg)
            scaleX(.92);
    }

    50% {
        transform:
            translateX(70px)
            translateY(-12px)
            rotate(1deg)
            scaleX(1.04);
    }

    100% {
        transform:
            translateX(180px)
            translateY(8px)
            rotate(-1deg)
            scaleX(1.10);
    }
}


@keyframes greenFlow {

    0% {
        transform:
            translateX(140px)
            translateY(5px)
            scaleX(.90);
    }

    100% {
        transform:
            translateX(-130px)
            translateY(-8px)
            scaleX(1.08);
    }
}


@keyframes blueFlow {

    0% {
        transform:
            translateX(-120px)
            translateY(8px)
            scaleX(.95);
    }

    100% {
        transform:
            translateX(160px)
            translateY(-10px)
            scaleX(1.08);
    }
}


@keyframes pinkFlow {

    0% {
        transform:
            translateX(100px)
            translateY(4px)
            scaleX(.92);
    }

    100% {
        transform:
            translateX(-180px)
            translateY(-8px)
            scaleX(1.10);
    }
}


@keyframes atmosphereMove {

    0% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    100% {
        transform:
            translate3d(-100px, 60px, 0)
            scale(1.15);
    }
}


@keyframes bottomGlowMove {

    0% {
        transform:
            translateX(-50%)
            translateY(0)
            scaleX(.85);
    }

    100% {
        transform:
            translateX(-50%)
            translateY(-35px)
            scaleX(1.15);
    }
}


/* ==========================================
   CHART ANIMATION
========================================== */

@keyframes chartDraw {

    0% {
        stroke-dashoffset: 2400;
    }

    55% {
        stroke-dashoffset: 0;
    }

    75% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -2400;
    }
}


@keyframes chartSecondary {

    0% {
        stroke-dashoffset: 1800;
    }

    45% {
        stroke-dashoffset: 0;
    }

    70% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1800;
    }
}

/* ==========================================
   HERO WRAPPER
========================================== */

.hero-wrapper {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 80px;

    border-radius: 30px;

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.hero-wrapper:hover {
    transform: translateY(-6px);

    box-shadow:
        0 0 50px rgba(100, 60, 255, .08),
        0 0 100px rgba(0, 180, 255, .04);
}

.hero-wrapper::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(57, 168, 255, .12),
            transparent 40%,
            rgba(57, 168, 255, .06)
        );

    opacity: 0;

    transition: opacity .45s ease;

    pointer-events: none;
}

.hero-wrapper:hover::before {
    opacity: 1;
}


/* ==========================================
   HERO LEFT CONTENT
========================================== */

.hero-content {
    flex: 1 1 650px;

    min-width: 0;

    max-width: 650px;
}

.hero-badge {
    display: inline-block;

    padding: 8px 18px;

    border: 1px solid rgba(57, 168, 255, .30);

    border-radius: 30px;

    color: #39A8FF;

    font-size: 14px;

    margin-bottom: 25px;

    transition: .3s ease;
}

.hero-badge:hover {
    background: #39A8FF;
    color: #081321;
}

.hero-content h1 {
    max-width: 650px;

    color: #fff;

    font-size: 68px;

    line-height: 1.08;

    font-weight: 700;

    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #39A8FF;
}

.hero-content p {
    max-width: 560px;

    margin-top: 10px;
    margin-bottom: 10px;

    color: #9CB0CC;

    font-size: 18px;

    line-height: 1.8;
}


/* ==========================================
   HERO TAGS
========================================== */

.hero-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin: 35px 0;

    max-width: 100%;
}

.hero-tags span {
    display: inline-block;

    background: #13233D;

    border: 1px solid rgba(255, 255, 255, .08);

    color: #fff;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 14px;

    transition: .3s ease;

    cursor: default;
}

.hero-tags span:hover {
    background: #39A8FF;

    color: #081321;

    transform: translateY(-2px);
}


/* ==========================================
   HERO BUTTONS
========================================== */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 10px;
}

.hero-buttons .btn {
    transition: .3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}


/* ==========================================
   HERO RIGHT SIDE
========================================== */

.hero-image {
    flex: 0 1 390px;

    width: 390px;

    max-width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;
}


/* ==========================================
   TRADE CARD
========================================== */

.trade-card {
    width: 390px;

    max-width: 100%;

    /* Transparent glass background */
    background: rgba(19, 35, 61, 0.55);

    /* Glass effect */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* Subtle border */
    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 22px;

    padding: 28px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .38),
        inset 0 1px 0 rgba(255, 255, 255, .05);

    transition: .35s ease;
}

.trade-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 40px 80px rgba(0, 0, 0, .45);
}


/* ==========================================
   TRADE HEADER
========================================== */

.trade-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}

.trade-header h3 {
    color: #fff;

    font-size: 24px;

    white-space: nowrap;
}

.trade-header span {
    background: #2ECC71;

    color: #fff;

    font-size: 12px;

    padding: 6px 12px;

    border-radius: 20px;

    white-space: nowrap;
}


/* ==========================================
   TRADE ITEM
========================================== */

.trade-item {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding: 16px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    transition: .3s ease;
}

.trade-item:last-child {
    border-bottom: none;
}

.trade-item strong {
    color: #fff;

    font-size: 17px;

    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.profit {
    color: #2ECC71;

    font-weight: 600;

    white-space: nowrap;
}

.loss {
    color: #FF5E5E;

    font-weight: 600;

    white-space: nowrap;
}

.trade-item:hover {
    background: rgba(255, 255, 255, .03);

    border-radius: 10px;

    padding-left: 12px;
    padding-right: 12px;
}


/* ==========================================
   HOW IT WORKS
========================================== */

.how-it-works {
    width: 100%;
    max-width: 100%;

    padding: 65px 0 75px;

    background: #0B1627;

    overflow: hidden;
}

.how-it-works h2 {
    text-align: center;

    color: #fff;

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 12px;
}

.works-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 32px;

    width: 100%;

    max-width: 100%;
}

.work-card {
    min-width: 0;

    background: #12213B;

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 18px;

    padding: 35px;

    text-align: center;

    transition: .3s ease;
}

.work-card:hover {
    transform: translateY(-8px);

    border-color: rgba(57, 168, 255, .35);
}

.work-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #39A8FF;

    color: #081321;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 24px;

    font-weight: 700;
}

.work-card h3 {
    color: #fff;

    margin-bottom: 15px;

    font-size: 24px;
}

.work-card p {
    color: #9CB0CC;

    line-height: 1.8;

    font-size: 15px;
}


/* ==========================================
   TRUSTED SECTION
========================================== */

.trusted {
    width: 100%;
    max-width: 100%;

    padding: 75px 0;

    background: #0B1627;

    overflow: hidden;
}

.trusted-top {
    text-align: center;

    margin-bottom: 45px;
}

.trusted-badge {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: #13233D;

    color: #39A8FF;

    font-size: 14px;

    margin-bottom: 20px;
}

.trusted-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    width: 100%;

    max-width: 100%;
}

.trusted-card {
    min-width: 0;

    transition: .3s ease;
}

.trusted-card:hover {
    transform: translateY(-8px);
}

.trusted-icon {
    font-size: 42px;

    margin-bottom: 20px;
}

.trusted-card h3 {
    color: #fff;

    font-size: 28px;

    margin-bottom: 15px;
}

.trusted-card p {
    color: #9CB0CC;

    line-height: 1.8;

    margin-bottom: 25px;
}

.trusted-card a {
    color: #39A8FF;

    font-weight: 600;
}


/* ==========================================
   STATS
========================================== */

.stats {
    width: 100%;
    max-width: 100%;

    background: #0B1627;

    padding: 35px 0;

    border-top: 1px solid rgba(255, 255, 255, .05);

    border-bottom: 1px solid rgba(255, 255, 255, .05);

    overflow: hidden;
}

.stats-wrapper {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    width: 100%;

    max-width: 100%;
}

.stat-item {
    min-width: 0;

    text-align: center;
}

.stat-item h3 {
    color: #39A8FF;

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 8px;
}

.stat-item p {
    color: #A8B8CF;

    font-size: 15px;
}


/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials {
    width: 100%;
    max-width: 100%;

    padding: 75px 0;

    background: #081321;

    overflow: hidden;

    text-align: center;
}

.section-badge {
    display: inline-block;

    padding: 8px 18px;

    background: #13233D;

    color: #39A8FF;

    border-radius: 30px;

    margin-bottom: 20px;

    font-size: 14px;
}

.testimonial-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 40px;

    width: 100%;

    max-width: 100%;

    text-align: left;
}

.testimonial-card {
    min-width: 0;

    transition: .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-header {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    min-width: 0;
}

.avatar {
    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 50%;

    background: #39A8FF;

    color: #081321;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 22px;

    font-weight: 700;
}

.testimonial-header h4 {
    color: #fff;

    margin-bottom: 4px;
}

.testimonial-header span {
    color: #9CB0CC;

    font-size: 14px;
}

.testimonial-card p {
    color: #AAB8CC;

    line-height: 1.8;

    margin-bottom: 25px;
}

.rating {
    color: #FFD54A;

    font-size: 20px;
}


/* ==========================================
   CTA
========================================== */

.cta {
    width: 100%;
    max-width: 100%;

    padding: 75px 0;

    background: #081321;

    overflow: hidden;
}

.cta-box {
    width: 100%;

    max-width: 100%;

    background:
        linear-gradient(
            135deg,
            #10233F,
            #162F55
        );

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 24px;

    padding: 65px 50px;

    text-align: center;
}

.cta-box h2 {
    color: #fff;

    font-size: 48px;

    line-height: 1.2;

    margin: 20px 0;
}

.cta-box p {
    max-width: 700px;

    margin: 0 auto;

    color: #A8B8CF;

    font-size: 18px;

    line-height: 1.8;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 35px;
}


/* ==========================================
   FAQ
========================================== */

.faq {
    width: 100%;
    max-width: 100%;

    padding: 75px 0;

    background: #0B1627;

    overflow: hidden;

    text-align: center;
}

.faq-wrapper {
    width: 100%;

    max-width: 900px;

    margin: 40px auto 0;

    text-align: left;
}

.faq-item {
    width: 100%;

    max-width: 100%;

    background: #13233D;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 14px;

    margin-bottom: 18px;

    overflow: hidden;
}

.faq-question {
    width: 100%;

    padding: 22px 25px;

    background: none;

    border: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    cursor: pointer;

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    text-align: left;
}

.faq-icon {
    flex-shrink: 0;

    font-size: 24px;

    color: #39A8FF;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 25px 22px;

    color: #A8B8CF;

    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


/* ==========================================
   TABLET
========================================== */

@media(max-width:992px) {

    /* HERO */

    .hero {
        min-height: auto;

        padding: 65px 0;
    }

    .hero-wrapper {
        flex-direction: column;

        text-align: center;

        gap: 35px;
    }

    .hero-content {
        width: 100%;

        max-width: 700px;

        flex: 0 1 auto;
    }

    .hero-content h1 {
        font-size: 48px;

        max-width: 100%;
    }

    .hero-content p {
        margin: 10px auto;

        max-width: 600px;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /*
       IMPORTANT:
       Do NOT use flex-basis: 390px here.
       Otherwise mobile/tablet creates
       unnecessary vertical blank space.
    */

    .hero-image {
        flex: 0 1 auto;

        width: 100%;

        max-width: 500px;

        height: auto;

        display: flex;

        justify-content: center;
        align-items: center;
    }

    .trade-card {
        width: 100%;

        max-width: 420px;
    }


    /* HOW IT WORKS */

    .works-grid {
        grid-template-columns: 1fr;
    }


    /* TRUSTED */

    .trusted-grid {
        grid-template-columns: 1fr;
    }


    /* TESTIMONIALS */

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* STATS */

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px) {

    .container {
        width: 92%;

        max-width: 100%;
    }


    /* ======================================
       HERO MOBILE
    ====================================== */

    .hero {
        padding: 45px 0 50px;
    }

    .hero-wrapper {
        gap: 30px;

        border-radius: 24px;
    }

    /*
       Disable hover movement on touch devices
    */

    .hero-wrapper:hover {
        transform: none;

        box-shadow: none;
    }

    .hero-wrapper:hover::before {
        opacity: 0;
    }

    .hero-content {
        width: 100%;

        max-width: 100%;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 40px;

        line-height: 1.15;

        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;

        line-height: 1.7;

        margin-top: 8px;
        margin-bottom: 8px;
    }

    .hero-tags {
        gap: 8px;

        margin: 22px 0;
    }

    .hero-tags span {
        padding: 8px 14px;

        font-size: 13px;
    }

    .hero-buttons {
        width: 100%;

        justify-content: center;

        gap: 12px;

        margin-top: 8px;
    }

    .hero-buttons .btn {
        max-width: 100%;
    }


    /*
       MAIN FIX:
       Remove the old 390px flex-basis
       that created the giant blank area.
    */

    .hero-image {
        flex: 0 1 auto;

        width: 100%;

        max-width: 500px;

        height: auto;

        margin: 0 auto;

        display: flex;

        justify-content: center;
        align-items: center;
    }

    .trade-card {
        width: 100%;

        max-width: 420px;

        padding: 22px;

        border-radius: 18px;
    }

    .trade-header {
        margin-bottom: 20px;
    }

    .trade-header h3 {
        font-size: 21px;
    }

    .trade-item {
        padding: 14px 0;
    }

    .trade-item strong {
        font-size: 15px;
    }


    /* ======================================
       HOW IT WORKS MOBILE
    ====================================== */

    .how-it-works {
        padding: 50px 0 60px;
    }

    .how-it-works h2 {
        font-size: 32px;

        line-height: 1.2;

        margin-bottom: 10px;
    }

    .section-description {
        max-width: 600px;

        font-size: 15px;

        line-height: 1.7;

        margin-top: 8px;
    }

    .works-grid {
        margin-top: 28px;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .work-card {
        padding: 28px 22px;
    }

    .work-card h3 {
        font-size: 21px;
    }


    /* ======================================
       TRUSTED MOBILE
    ====================================== */

    .trusted {
        padding: 60px 0;
    }

    .trusted-top {
        margin-bottom: 35px;
    }

    .trusted-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .trusted-card h3 {
        font-size: 24px;
    }


    /* ======================================
       STATS MOBILE
    ====================================== */

    .stats {
        padding: 28px 0;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);

        gap: 22px 15px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 13px;
    }


    /* ======================================
       TESTIMONIALS MOBILE
    ====================================== */

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 30px;
    }


    /* ======================================
       CTA MOBILE
    ====================================== */

    .cta {
        padding: 60px 0;
    }

    .cta-box {
        padding: 45px 22px;

        border-radius: 18px;
    }

    .cta-box h2 {
        font-size: 34px;

        line-height: 1.2;
    }

    .cta-box p {
        font-size: 16px;

        line-height: 1.7;
    }

    .cta-buttons {
        flex-direction: column;

        width: 100%;

        gap: 12px;

        margin-top: 30px;
    }


    /* ======================================
       FAQ MOBILE
    ====================================== */

    .faq {
        padding: 60px 0;
    }

    .faq-wrapper {
        width: 100%;

        max-width: 100%;

        margin-top: 30px;
    }

    .faq-question {
        padding: 18px;

        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 18px 18px;

        font-size: 15px;
    }



    /* ==========================================
   HERO ANIMATION — MOBILE
========================================== */

.hero-animated-bg {
    opacity: .78;
}

.hero-market-chart {
    left: -25%;

    width: 150%;

    height: 75%;

    bottom: 0;

    opacity: .65;
}

.chart-line {
    stroke-width: 3;

    filter:
        drop-shadow(
            0 0 5px rgba(120, 75, 255, .8)
        )
        drop-shadow(
            0 0 12px rgba(100, 55, 255, .55)
        );
}

.chart-glow-1 {
    stroke-width: 13;

    opacity: .55;
}

.hero-light-purple {
    bottom: 35px;

    height: 55px;
}

.hero-light-green {
    bottom: 55px;

    height: 35px;
}

.hero-light-blue {
    bottom: 80px;

    height: 40px;
}

.hero-light-pink {
    bottom: 20px;

    height: 30px;
}

.hero-bottom-glow {
    width: 600px;

    height: 200px;

    bottom: -160px;
}
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px) {

    .container {
        width: 92%;
    }


    /* HERO */

    .hero {
        padding: 42px 0 45px;
    }

    .hero-wrapper {
        gap: 26px;
    }

    .hero-content h1 {
        font-size: 34px;

        line-height: 1.15;
    }

    .hero-content p {
        font-size: 15px;

        line-height: 1.7;
    }

    .hero-badge,
    .trusted-badge,
    .section-badge {
        font-size: 12px;

        padding: 7px 14px;
    }

    .hero-tags {
        gap: 7px;

        margin: 20px 0;
    }

    .hero-tags span {
        padding: 7px 11px;

        font-size: 12px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .trade-card {
        padding: 18px;

        border-radius: 16px;
    }

    .trade-header {
        margin-bottom: 18px;
    }

    .trade-header h3 {
        font-size: 19px;
    }

    .trade-header span {
        font-size: 10px;

        padding: 5px 9px;
    }

    .trade-item {
        gap: 10px;

        padding: 12px 0;
    }

    .trade-item strong {
        font-size: 14px;
    }

    .profit,
    .loss {
        font-size: 13px;
    }


    /* HOW IT WORKS */

    .how-it-works {
        padding: 45px 0 55px;
    }

    .how-it-works h2 {
        font-size: 30px;

        margin-bottom: 8px;
    }

    .section-description {
        font-size: 14px;

        line-height: 1.65;

        margin-top: 7px;
    }

    .works-grid {
        margin-top: 25px;

        gap: 16px;
    }

    .work-card {
        padding: 25px 18px;
    }

    .work-icon {
        width: 60px;
        height: 60px;

        font-size: 21px;
    }

    .work-card h3 {
        font-size: 20px;
    }

    .work-card p {
        font-size: 14px;
    }


    /* TRUSTED */

    .trusted {
        padding: 50px 0;
    }

    .trusted-top {
        margin-bottom: 30px;
    }

    .trusted-grid {
        gap: 18px;
    }


    /* STATS */

    .stats {
        padding: 26px 0;
    }

    .stats-wrapper {
        gap: 20px 10px;
    }

    .stat-item h3 {
        font-size: 25px;
    }

    .stat-item p {
        font-size: 12px;
    }


    /* TESTIMONIALS */

    .testimonials {
        padding: 50px 0;
    }

    .testimonial-grid {
        gap: 16px;

        margin-top: 25px;
    }

    .testimonial-header {
        gap: 12px;
    }

    .avatar {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 19px;
    }


    /* CTA */

    .cta {
        padding: 50px 0;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-box p {
        font-size: 15px;
    }


    /* FAQ */

    .faq {
        padding: 50px 0;
    }

    .faq-wrapper {
        margin-top: 25px;
    }

    .faq-question {
        font-size: 15px;

        padding: 16px;
    }

    .faq-icon {
        font-size: 21px;
    }
}


/* ==========================================
   EXTRA SMALL DEVICES
========================================== */

@media(max-width:360px) {

    .container {
        width: 94%;
    }

    .hero {
        padding: 38px 0 42px;
    }

    .hero-wrapper {
        gap: 24px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-tags {
        gap: 6px;
    }

    .hero-tags span {
        padding: 6px 9px;

        font-size: 11px;
    }

    .trade-card {
        padding: 15px;
    }

    .trade-header h3 {
        font-size: 17px;
    }

    .trade-item strong {
        font-size: 13px;
    }

    .profit,
    .loss {
        font-size: 12px;
    }

    .how-it-works {
        padding: 42px 0 50px;
    }

    .how-it-works h2 {
        font-size: 28px;
    }

    .section-description {
        font-size: 13px;
    }

    .works-grid {
        margin-top: 22px;

        gap: 14px;
    }
}


/* ==========================================
   FINAL HOMEPAGE OVERFLOW PROTECTION
========================================== */

.hero,
.how-it-works,
.trusted,
.stats,
.testimonials,
.cta,
.faq {
    max-width: 100%;
}

.hero-wrapper,
.works-grid,
.trusted-grid,
.stats-wrapper,
.testimonial-grid {
    max-width: 100%;
}

.hero-content,
.hero-image,
.work-card,
.trusted-card,
.stat-item,
.testimonial-card {
    min-width: 0;
}

iframe,
video,
table {
    max-width: 100%;
}




/* =========================================================
   HERO ANIMATION — MOBILE
   Completely disabled for better mobile performance
========================================================= */

@media (max-width: 768px) {

    .hero-animated-bg {
        display: none !important;
    }

    .home-market-identity h3 {
        max-width: 170px;
    }

}
    .home-market-identity h3 {
        max-width: 170px;
    }

    /* Remove the heaviest atmospheric blur */
    .hero-atmosphere {
        display: none;
    }

    /* Reduce number of moving effects */
    .hero-light-pink {
        display: none;
    }

    /* Make remaining light effects much lighter */
    .hero-light {
        filter: blur(14px);
        opacity: .38;

        will-change: transform;
    }

    .hero-light-purple {
        height: 42px;
        bottom: 30px;

        animation-duration: 14s;
    }

    .hero-light-green {
        height: 28px;
        bottom: 48px;

        filter: blur(10px);

        animation-duration: 12s;
    }

    .hero-light-blue {
        height: 30px;
        bottom: 68px;

        filter: blur(12px);

        animation-duration: 15s;
    }


    /* ==========================================
       LIGHTWEIGHT CHART
    ========================================== */

    .hero-market-chart {
        left: -20%;

        width: 140%;
        height: 72%;

        bottom: 0;

        opacity: .55;

        transform: translateZ(0);
    }


    /* Main chart line */
    .chart-line {
        stroke-width: 2.5;

        filter:
            drop-shadow(
                0 0 4px rgba(120, 75, 255, .65)
            );

        animation-duration: 12s;
    }


    /* Remove expensive large chart blur */
    .chart-glow-1 {
        stroke-width: 8;

        filter:
            drop-shadow(
                0 0 7px rgba(115, 55, 255, .45)
            );

        opacity: .35;
    }


    /* Secondary chart is not necessary on mobile */
    .chart-line-secondary {
        display: none;
    }


    /* Bottom glow */
    .hero-bottom-glow {
        width: 500px;
        height: 140px;

        bottom: -115px;

        filter: blur(25px);

        opacity: .45;

        animation-duration: 14s;
    }
}

/* =========================================================
   HOME — MARKET INSIGHTS
   Matches /market-news company-card visual language
========================================================= */

.home-market-insights {
    background: #06101C;
}

.home-market-heading {
    text-align: center;
    margin-bottom: 42px;
}

.home-market-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: #5CB8FF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
}

.home-market-card {
    min-width: 0;
    padding: 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;
}

.home-market-card:hover {
    transform: translateY(-5px);
    background: #0E2032;
    border-color: rgba(57,168,255,.28);
    box-shadow: 0 16px 35px rgba(0,0,0,.22);
}

.home-market-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.home-market-identity {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.home-market-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    object-fit: cover;
    background: #101B29;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
}

.home-market-logo-placeholder {
    color: #5CB8FF;
    font-size: 17px;
}

.home-market-identity h3 {
    margin: 0 0 5px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
}

.home-market-identity span {
    color: #7188A2;
    font-size: 10px;
    font-weight: 600;
}

.home-market-identity em {
    margin: 0 4px;
    color: #425C75;
    font-style: normal;
}

.home-market-direction {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 13px;
}

.home-market-up .home-market-direction {
    color: #63D997;
    background: rgba(70,205,125,.08);
    border: 1px solid rgba(70,205,125,.14);
}

.home-market-down .home-market-direction {
    color: #FF7F91;
    background: rgba(255,75,98,.08);
    border: 1px solid rgba(255,75,98,.14);
}

.home-market-flat .home-market-direction {
    color: #9BAFC2;
    background: rgba(155,175,194,.08);
    border: 1px solid rgba(155,175,194,.14);
}

.home-market-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding: 23px 0;
}

.home-market-price-label {
    display: block;
    margin-bottom: 6px;
    color: #7188A2;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.home-market-price {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.home-market-change {
    text-align: right;
}

.home-market-change strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
}

.home-market-change span {
    font-size: 11px;
    font-weight: 700;
}

.home-market-up .home-market-change strong,
.home-market-up .home-market-change span {
    color: #63D997;
}

.home-market-down .home-market-change strong,
.home-market-down .home-market-change span {
    color: #FF7F91;
}

.home-market-flat .home-market-change strong,
.home-market-flat .home-market-change span {
    color: #9BAFC2;
}

.home-market-data {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.home-market-data-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
}

.home-market-data-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7188A2;
    font-size: 11px;
}

.home-market-data-row span i {
    width: 13px;
    color: #4E83A7;
    text-align: center;
}

.home-market-data-row strong {
    color: #C9D7E5;
    font-size: 11px;
    white-space: nowrap;
}

.home-market-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.home-market-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 22px;
    color: #D8E7F7;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.home-market-view-all:hover {
    color: #fff;
    background: rgba(57,168,255,.07);
    border-color: rgba(57,168,255,.55);
    transform: translateY(-2px);
}

.home-market-empty {
    padding: 70px 30px;
    text-align: center;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
}

.home-market-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    color: #5CB8FF;
    background: rgba(57,168,255,.08);
    border: 1px solid rgba(57,168,255,.14);
    border-radius: 16px;
    font-size: 22px;
}

.home-market-empty h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
}

.home-market-empty p {
    max-width: 500px;
    margin: 0 auto 25px;
    color: #8298B1;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .home-market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-market-insights {
        padding: 60px 0;
    }

    .home-market-heading {
        margin-bottom: 30px;
    }

    .home-market-heading .section-title {
        font-size: 32px;
    }

    .home-market-heading .section-description {
        font-size: 15px;
    }

    .home-market-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-market-card {
        padding: 23px;
    }
}

@media (max-width: 480px) {
    .home-market-insights {
        padding: 50px 0;
    }

    .home-market-heading {
        margin-bottom: 25px;
    }

    .home-market-heading .section-title {
        font-size: 30px;
    }

    .home-market-heading .section-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .home-market-card {
        padding: 20px;
    }

    .home-market-logo {
        width: 46px;
        height: 46px;
        border-radius: 11px;
    }

    .home-market-identity h3 {
        max-width: 220px;
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        
    }

    .home-market-price {
        font-size: 23px;
    }
}

@media (max-width: 360px) {
    .home-market-card {
        padding: 18px;
    }

    .home-market-price-row {
        gap: 10px;
    }

    .home-market-price {
        font-size: 21px;
    }

    .home-market-data-row {
        gap: 10px;
    }
    
   
   
}



.hero-tagline {
    display: block;
    margin-bottom: 18px;

    color: #39A8FF;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}