/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {

    position: relative;

    max-width: 1200px;

    margin:
        20px auto 45px;

    padding:
        30px 20px 15px;

    text-align: center;
}

.hero-content {

    position: relative;

    z-index: 2;
}

/* =========================================
   TITLE
========================================= */

.hero-title {

    color: #fff;

    font-size:
        clamp(24px, 3vw, 44px);

    font-weight: 900;

    line-height: 1.4;

    letter-spacing:
        -0.5px;

    margin-bottom: 16px;
}

/* =========================================
   HIGHLIGHT
========================================= */

.hero-highlight {

    font-weight: 900;
}

/* Forex */

.hero-forex {

    color: #d4af37;

    text-shadow:
        0 0 18px rgba(212,175,55,0.25);
}

/* Futures */

.hero-futures {

    color: #10b981;

    text-shadow:
        0 0 18px rgba(16,185,129,0.25);
}

/* Crypto */

.hero-crypto {

    color: #3b82f6;

    text-shadow:
        0 0 18px rgba(59,130,246,0.25);
}

/* =========================================
   GLOW EFFECT
========================================= */

.hero-section::before {

    content: "";

    position: absolute;

    top: -120px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 550px;
    height: 550px;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.10) 0%,
            transparent 70%
        );

    filter:
        blur(80px);

    pointer-events: none;

    z-index: 0;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero-section {

        margin:
            10px auto 30px;

        padding:
            18px 14px 10px;
    }

    .hero-title {

        font-size: 26px;

        line-height: 1.5;
    }

    .hero-description {

        font-size: 14px;

        line-height: 1.8;
    }

    .hero-section::before {

        width: 300px;
        height: 300px;

        opacity: 0.7;
    }
}