/* Trading Page Styles */

.trading-main {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(130% 110% at 50% -12%, rgba(149, 122, 97, 0.55) 0%, rgba(5, 5, 5, 0.92) 45%, #050505 100%);
    color: #ffffff;
    overflow: hidden;
}

.trading-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.88) 55%, rgba(5, 5, 5, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.trading-main > section {
    position: relative;
    z-index: 2;
}

/* Hero */
.trading-hero {
    text-align: right;
    min-height: 90vh;
    padding: 220px 0 120px;
    background:
        /* radial-gradient(140% 110% at 50% 30%, rgba(149, 122, 97, 0.55) 0%, rgba(5, 5, 5, 0.35) 45%, rgba(5, 5, 5, 0.95) 100%), */
        url('../assets/images/trading-hero.png') center top / contain no-repeat;
}


.trading-hero__content {
     /* max-width: 720px; */
    font-size: clamp(2.75rem, 4vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #957A61;
    text-transform: uppercase;
    text-align: right;
}

.trading-hero__title {
    margin: 0;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #957A61;
}

.trading-hero__subtitle {
    margin: 0;
    font-size: clamp(1.125rem, 1.6vw, 1.4rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
}

.trading-hero__image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 78px rgba(0, 0, 0, 0.45);
}

.trading-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits */
.trading-benefits {
    padding: 60px 0 140px;
}

.trading-benefits__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.trading-benefits__image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.trading-benefits__img {
    width: 100%;
    height: auto;
    display: block;
}

.trading-benefits__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trading-section__title {
    margin: 0;
    font-size: clamp(2.1rem, 3.1vw, 3rem);
    font-weight: 700;
    color: #957A61;
}

.trading-section__divider {
    width: 120px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(149, 122, 97, 0.95) 0%, rgba(184, 149, 107, 1) 100%);
}

.trading-section__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

/* Features */
.trading-features {
    padding: 40px 0 140px;
}

.trading-section__title--center {
    text-align: center;
}

.trading-section__title--center span {
    display: block;
    color: #ffffff;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    margin-top: 12px;
}

.trading-section__divider--center {
    margin: 18px auto 48px;
}

.trading-features__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.trading-features__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trading-features__image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.trading-features__img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA */
.trading-cta {
    padding: 40px 0 160px;
}

.trading-cta__card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(5, 5, 5, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 32px 84px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
}

.trading-cta__decorate {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.trading-cta__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.trading-cta__content {
    position: relative;
    z-index: 2;
    padding: 72px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trading-cta__title {
    margin: 0;
    font-size: clamp(2.45rem, 3.6vw, 3.3rem);
    font-weight: 700;
    color: #957A61;
}

.trading-cta__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.trading-cta__btn {
    align-self: center;
    padding: 18px 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(149, 122, 97, 0.95) 0%, rgba(184, 149, 107, 1) 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trading-cta__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 46px rgba(149, 122, 97, 0.35);
}

/* Responsive */
@media (max-width: 1280px) {
    .trading-hero {
        padding: 200px 0 100px;
    }

    .trading-hero__layout,
    .trading-benefits__layout,
    .trading-features__layout {
        gap: 40px;
    }
}
@media (max-width: 1024px) {
    .trading-hero {
        min-height: auto;
    }
    .trading-hero__content {
        text-align: center;
        background: rgba(5, 5, 5, 0.65);
        padding: 20px;
        color: #ffffff;
    }
    .trading-hero__title {
        color: #ffffff;
    }
    }
@media (max-width: 960px) {
    .trading-hero__layout,
    .trading-benefits__layout,
    .trading-features__layout {
        grid-template-columns: 1fr;
    }

    .trading-benefits__image,
    .trading-features__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .trading-hero {
        padding: 150px 0 70px;
    }

    .trading-benefits {
        padding: 40px 0 100px;
    }

    .trading-cta__content {
        padding: 56px 32px;
    }
}

@media (max-width: 480px) {
    .trading-hero {
        padding: 130px 0 50px;
    }

    .trading-cta__btn {
        width: 100%;
    }
}
