/* =========================================================
   LBS SOFTWARE
   AI FOREX TRADING ROBOT
   PRODUCT PAGE
   ========================================================= */

:root {
    --forex-navy: #071b33;
    --forex-navy-2: #0b2747;
    --forex-blue: #087cff;
    --forex-blue-dark: #0059d6;
    --forex-blue-light: #eaf4ff;
    --forex-cyan: #39a7ff;

    --forex-text: #16263b;
    --forex-muted: #64748b;
    --forex-border: #e2e9f1;
    --forex-light: #f7faff;
    --forex-white: #ffffff;

    --forex-success: #159957;
    --forex-danger: #dc3545;
}


/* =========================================================
   BASE
   ========================================================= */

.forex-page {
    width: 100%;

    overflow: hidden;

    color: var(--forex-text);

    background: #ffffff;
}


.forex-page .container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


.forex-page .section {
    padding: 90px 0;
}


.forex-page .section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--forex-blue);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.forex-page .section-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.forex-page .section-heading h2 {
    margin: 0 0 14px;

    color: var(--forex-navy);

    font-size: clamp(31px, 4vw, 46px);

    line-height: 1.12;

    letter-spacing: -.035em;
}


.forex-page .section-heading h2 span {
    color: var(--forex-blue);
}


.forex-page .section-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: var(--forex-muted);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.forex-page .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding: 12px 21px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 750;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.forex-page .btn-primary {
    border: 1px solid var(--forex-blue);

    background:
        linear-gradient(
            135deg,
            var(--forex-blue),
            var(--forex-blue-dark)
        );

    color: #ffffff;

    box-shadow:
        0 9px 25px rgba(8,124,255,.20);
}


.forex-page .btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 30px rgba(8,124,255,.28);
}


.forex-page .btn-outline {
    border: 1px solid #b9cde2;

    background: #ffffff;

    color: var(--forex-navy);
}


.forex-page .btn-outline:hover {
    border-color: var(--forex-blue);

    color: var(--forex-blue);

    background: #f7fbff;
}


/* =========================================================
   HERO
   ========================================================= */

.forex-hero {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(8,124,255,.17),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 53%,
            #edf6ff 100%
        );

    border-bottom: 1px solid var(--forex-border);
}


.forex-hero::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -180px;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(8,124,255,.08);

    border-radius: 50%;
}


.forex-hero::after {
    content: "";

    position: absolute;

    right: 90px;
    bottom: -280px;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(8,124,255,.06);

    border-radius: 50%;
}


.forex-hero-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 65px;
}


.forex-hero-content {
    max-width: 620px;
}


.forex-hero-content h1 {
    margin: 0 0 23px;

    color: var(--forex-navy);

    font-size: clamp(44px, 5.5vw, 70px);

    font-weight: 850;

    line-height: .99;

    letter-spacing: -.055em;
}


.forex-hero-content h1 span {
    display: block;

    color: var(--forex-blue);
}


.forex-hero-lead {
    max-width: 600px;

    margin: 0 0 30px;

    color: #53657a;

    font-size: 16px;

    line-height: 1.8;
}


.forex-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 28px;
}


.forex-hero-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.forex-hero-tags span {
    padding: 7px 10px;

    border: 1px solid #cfe0ef;

    border-radius: 5px;

    background: rgba(255,255,255,.8);

    color: var(--forex-muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .09em;
}


/* =========================================================
   TRADING CHART
   ========================================================= */

.forex-hero-visual {
    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.forex-chart-card {
    position: relative;

    width: min(510px, 100%);

    overflow: hidden;

    border: 1px solid rgba(8,124,255,.18);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f2f8ff
        );

    box-shadow:
        0 25px 70px rgba(7,27,51,.14);

    animation:
        forexChartFloat 6s ease-in-out infinite;
}


@keyframes forexChartFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


.chart-header {
    min-height: 72px;

    padding: 17px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #e3ebf3;
}


.chart-header small {
    display: block;

    margin-bottom: 4px;

    color: #8999aa;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .12em;
}


.chart-header strong {
    color: var(--forex-navy);

    font-size: 21px;

    letter-spacing: -.02em;
}


.chart-live {
    padding: 7px 10px;

    border-radius: 5px;

    background: #e9f8f0;

    color: var(--forex-success);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .07em;
}


/* =========================================================
   CHART AREA
   ========================================================= */

.chart-area {
    position: relative;

    height: 260px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(8,124,255,.025),
            rgba(8,124,255,.07)
        );
}


.chart-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(8,124,255,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8,124,255,.07) 1px,
            transparent 1px
        );

    background-size:
        50px 52px;
}


.forex-chart-line {
    position: absolute;

    inset: 18px 8px;

    width: calc(100% - 16px);

    height: calc(100% - 36px);

    color: var(--forex-blue);

    filter:
        drop-shadow(
            0 5px 8px rgba(8,124,255,.18)
        );
}


.chart-arrow {
    position: absolute;

    right: 12%;

    top: 16%;

    color: var(--forex-blue);

    font-size: 55px;

    font-weight: 900;

    line-height: 1;

    transform: rotate(-8deg);

    text-shadow:
        0 8px 20px rgba(8,124,255,.20);
}


.chart-signal {
    position: absolute;

    padding: 7px 11px;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .08em;

    box-shadow:
        0 5px 15px rgba(0,0,0,.08);
}


.buy-signal {
    left: 48%;

    top: 42%;

    background: #e9f8f0;

    color: var(--forex-success);
}


/* =========================================================
   CHART FOOTER
   ========================================================= */

.chart-footer {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid #e3ebf3;
}


.chart-footer > div {
    padding: 15px;

    border-right: 1px solid #e3ebf3;
}


.chart-footer > div:last-child {
    border-right: 0;
}


.chart-footer small {
    display: block;

    margin-bottom: 5px;

    color: #8b9aaa;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .08em;
}


.chart-footer strong {
    color: var(--forex-navy);

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.forex-floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 15px;

    border: 1px solid #d6e5f3;

    border-radius: 9px;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 12px 30px rgba(7,27,51,.12);

    backdrop-filter: blur(10px);
}


.forex-floating-card span {
    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 7px;

    background: var(--forex-blue-light);

    color: var(--forex-blue);

    font-size: 10px;

    font-weight: 850;
}


.forex-floating-card strong {
    color: var(--forex-navy);

    font-size: 10px;
}


.card-analysis {
    left: -20px;

    top: 55px;

    animation:
        forexFloatOne 5s ease-in-out infinite;
}


.card-automation {
    right: -20px;

    bottom: 55px;

    animation:
        forexFloatTwo 5.5s ease-in-out infinite;
}


@keyframes forexFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


@keyframes forexFloatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }

}


/* =========================================================
   INTRO
   ========================================================= */

.forex-intro {
    background: #ffffff;
}


.forex-intro-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;

    align-items: start;
}


.forex-intro-grid h2 {
    margin: 0;

    color: var(--forex-navy);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -.04em;
}


.forex-intro-grid h2 span {
    display: block;

    color: var(--forex-blue);
}


.forex-intro-grid p {
    margin: 0 0 17px;

    color: var(--forex-muted);

    font-size: 14px;

    line-height: 1.8;
}


.forex-intro-grid p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.forex-how {
    background: var(--forex-light);

    border-top: 1px solid #edf2f7;

    border-bottom: 1px solid #edf2f7;
}


.forex-process {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;
}


.forex-process-card {
    position: relative;

    min-height: 245px;

    padding: 25px 20px;

    border: 1px solid var(--forex-border);

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 22px rgba(7,27,51,.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.forex-process-card:hover {
    transform: translateY(-6px);

    border-color: #bddcff;

    box-shadow:
        0 18px 35px rgba(7,27,51,.09);
}


.forex-process-card > span {
    color: var(--forex-blue);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .12em;
}


.forex-process-card > div {
    width: 48px;
    height: 48px;

    margin: 20px 0 18px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: var(--forex-blue-light);

    color: var(--forex-blue);

    font-size: 13px;

    font-weight: 850;
}


.forex-process-card h3 {
    margin: 0 0 9px;

    color: var(--forex-navy);

    font-size: 17px;
}


.forex-process-card p {
    margin: 0;

    color: var(--forex-muted);

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   FEATURES
   ========================================================= */

.forex-features {
    background: #ffffff;
}


.forex-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.forex-feature-card {
    min-height: 210px;

    padding: 26px;

    border: 1px solid var(--forex-border);

    border-radius: 14px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.forex-feature-card:hover {
    transform: translateY(-5px);

    border-color: #bddcff;

    box-shadow:
        0 15px 35px rgba(7,27,51,.08);
}


.feature-icon {
    width: 46px;
    height: 46px;

    margin-bottom: 20px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--forex-blue-light),
            #f5faff
        );

    color: var(--forex-blue);

    font-size: 11px;

    font-weight: 850;
}


.forex-feature-card h3 {
    margin: 0 0 10px;

    color: var(--forex-navy);

    font-size: 17px;

    line-height: 1.3;
}


.forex-feature-card p {
    margin: 0;

    color: var(--forex-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   RISK MANAGEMENT
   ========================================================= */

.forex-risk {
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #edf6ff
        );
}


.forex-risk-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 80px;
}


.forex-risk-content h2 {
    margin: 0 0 20px;

    color: var(--forex-navy);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -.04em;
}


.forex-risk-content h2 span {
    color: var(--forex-blue);
}


.forex-risk-content > p {
    margin: 0 0 24px;

    color: var(--forex-muted);

    font-size: 15px;

    line-height: 1.75;
}


.forex-risk-content ul {
    padding: 0;

    margin: 0;

    list-style: none;
}


.forex-risk-content li {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: var(--forex-text);

    font-size: 13px;

    font-weight: 650;
}


.forex-risk-content li span {
    width: 22px;
    height: 22px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #eaf8f1;

    color: var(--forex-success);

    font-size: 10px;

    font-weight: 850;
}


/* =========================================================
   RISK VISUAL
   ========================================================= */

.forex-risk-visual {
    position: relative;

    width: min(430px, 100%);

    aspect-ratio: 1;

    margin: auto;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(8,124,255,.15),
            transparent 55%
        );
}


.risk-circle {
    position: relative;

    width: 180px;
    height: 180px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(8,124,255,.30);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #087cff,
            #0758ad
        );

    color: #ffffff;

    box-shadow:
        0 0 0 22px rgba(8,124,255,.06),
        0 0 70px rgba(8,124,255,.28);
}


.risk-circle::before {
    content: "";

    position: absolute;

    inset: -45px;

    border: 1px dashed rgba(8,124,255,.28);

    border-radius: 50%;
}


.risk-circle strong {
    display: block;

    text-align: center;

    font-size: 25px;

    line-height: 1;
}


.risk-circle span {
    display: block;

    margin-top: 6px;

    text-align: center;

    color: #b9dcff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .14em;
}


.risk-node {
    position: absolute;

    padding: 9px 12px;

    border: 1px solid #cfe0ef;

    border-radius: 7px;

    background: rgba(255,255,255,.95);

    color: var(--forex-navy);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .08em;

    box-shadow:
        0 7px 20px rgba(7,27,51,.09);
}


.node-top {
    top: 4%;

    left: 50%;

    transform: translateX(-50%);
}


.node-right {
    top: 48%;

    right: 0;
}


.node-bottom {
    bottom: 4%;

    left: 50%;

    transform: translateX(-50%);
}


.node-left {
    top: 48%;

    left: 0;
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.forex-technology {
    background: #ffffff;
}


.forex-tech-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 14px;
}


.forex-tech-item {
    min-height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--forex-border);

    border-radius: 13px;

    background: #ffffff;

    text-align: center;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.forex-tech-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 13px 30px rgba(7,27,51,.07);
}


.forex-tech-item strong {
    margin-bottom: 8px;

    color: var(--forex-blue);

    font-size: 23px;

    font-weight: 850;
}


.forex-tech-item span {
    color: var(--forex-muted);

    font-size: 10px;

    font-weight: 650;
}


/* =========================================================
   USERS
   ========================================================= */

.forex-users {
    background: var(--forex-light);

    border-top: 1px solid #edf2f7;
}


.forex-users-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.forex-users-grid article {
    min-height: 210px;

    padding: 27px;

    border: 1px solid var(--forex-border);

    border-radius: 14px;

    background: #ffffff;
}


.forex-users-grid article > strong {
    color: var(--forex-blue);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .12em;
}


.forex-users-grid h3 {
    margin: 20px 0 10px;

    color: var(--forex-navy);

    font-size: 18px;
}


.forex-users-grid p {
    margin: 0;

    color: var(--forex-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.forex-disclaimer {
    padding: 30px 0;

    background: #fffaf0;

    border-top: 1px solid #f3e8cc;

    border-bottom: 1px solid #f3e8cc;
}


.forex-disclaimer-box {
    padding: 20px 25px;

    border-left: 4px solid #d99b19;

    background: #fffdf7;
}


.forex-disclaimer-box strong {
    display: block;

    margin-bottom: 7px;

    color: #8a5a00;

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .08em;
}


.forex-disclaimer-box p {
    margin: 0;

    color: #735f38;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.forex-final-cta {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(8,124,255,.13),
            transparent 36%
        ),
        #ffffff;

    text-align: center;
}


.forex-final-inner {
    max-width: 800px;

    margin: auto;
}


.forex-final-inner > span {
    color: var(--forex-blue);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .15em;
}


.forex-final-inner h2 {
    margin: 13px 0 15px;

    color: var(--forex-navy);

    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.08;

    letter-spacing: -.045em;
}


.forex-final-inner h2 strong {
    display: block;

    color: var(--forex-blue);
}


.forex-final-inner p {
    max-width: 620px;

    margin: 0 auto 28px;

    color: var(--forex-muted);

    font-size: 15px;

    line-height: 1.75;
}


.forex-final-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .forex-process {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .forex-feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .forex-users-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .forex-tech-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .forex-page .container {
        width: min(100% - 30px, 620px);
    }


    .forex-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .forex-hero {
        min-height: auto;

        padding: 65px 0 60px;
    }


    .forex-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .forex-hero-content {
        max-width: 650px;

        margin: auto;

        text-align: center;
    }


    .forex-hero-content h1 {
        font-size: clamp(42px, 12vw, 58px);
    }


    .forex-hero-lead {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }


    .forex-hero-actions {
        justify-content: center;
    }


    .forex-hero-tags {
        justify-content: center;
    }


    .forex-hero-visual {
        min-height: 380px;

        width: 100%;

        max-width: 550px;

        margin: auto;
    }


    .card-analysis {
        left: -5px;

        top: 25px;
    }


    .card-automation {
        right: -5px;

        bottom: 25px;
    }


    /* Intro */

    .forex-intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }


    /* Process */

    .forex-process {
        grid-template-columns:
            1fr 1fr;
    }


    /* Risk */

    .forex-risk-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .forex-risk-content {
        text-align: center;
    }


    .forex-risk-content ul {
        display: inline-block;

        text-align: left;
    }


    /* Technology */

    .forex-tech-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .forex-page .container {
        width: calc(100% - 28px);
    }


    .forex-page .section {
        padding: 55px 0;
    }


    .forex-hero {
        padding: 50px 0;
    }


    .forex-hero-content h1 {
        font-size: 40px;
    }


    .forex-hero-actions {
        flex-direction: column;
    }


    .forex-page .btn {
        width: 100%;
    }


    .forex-hero-tags {
        gap: 6px;
    }


    .forex-hero-tags span {
        font-size: 8px;

        padding: 6px 8px;
    }


    .forex-hero-visual {
        min-height: 330px;
    }


    .forex-chart-card {
        width: 100%;

        border-radius: 13px;
    }


    .chart-header {
        padding: 13px 14px;
    }


    .chart-header strong {
        font-size: 18px;
    }


    .chart-area {
        height: 205px;
    }


    .chart-footer > div {
        padding: 11px 8px;
    }


    .chart-footer strong {
        font-size: 7px;
    }


    .forex-floating-card {
        padding: 9px 10px;
    }


    .forex-floating-card span {
        width: 26px;
        height: 26px;
    }


    .forex-floating-card strong {
        font-size: 8px;
    }


    .card-analysis {
        left: -4px;

        top: 10px;
    }


    .card-automation {
        right: -4px;

        bottom: 10px;
    }


    /* Process */

    .forex-process {
        grid-template-columns: 1fr;
    }


    .forex-process-card {
        min-height: auto;
    }


    /* Features */

    .forex-feature-grid {
        grid-template-columns: 1fr;
    }


    /* Risk visual */

    .forex-risk-visual {
        width: 300px;
    }


    .risk-circle {
        width: 135px;
        height: 135px;
    }


    .risk-circle strong {
        font-size: 20px;
    }


    .risk-circle::before {
        inset: -30px;
    }


    .risk-node {
        font-size: 7px;

        padding: 7px 8px;
    }


    /* Technology */

    .forex-tech-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .forex-tech-item {
        min-height: 110px;
    }


    /* Users */

    .forex-users-grid {
        grid-template-columns: 1fr;
    }


    /* Disclaimer */

    .forex-disclaimer-box {
        padding: 17px;
    }


    /* CTA */

    .forex-final-cta {
        padding: 70px 0;
    }


    .forex-final-inner h2 {
        font-size: 34px;
    }


    .forex-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.forex-page a:focus-visible,
.forex-page button:focus-visible {
    outline: 3px solid rgba(8,124,255,.25);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .forex-chart-card,
    .forex-floating-card,
    .forex-process-card,
    .forex-feature-card,
    .forex-tech-item,
    .forex-page .btn {
        animation: none !important;

        transition: none !important;
    }

}