/* @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,400&display=swap'); */

body {
    font-family: 'Montserrat', 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
    font-display: swap;
    margin: 0;
    padding: 0;
    background: #fff;
    min-height: 100vh;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

a,
button,
input,
label {
    -webkit-tap-highlight-color: transparent;
    /* Prevent blue highlight on mobile */
}

header {
    /* background: linear-gradient(90deg, #980303 30%, #02791b 100%); */
    /* background: linear-gradient(90deg, #101a3c 60%, #4f8cff 100%); */
    /* background: linear-gradient(90deg, #760404 60%, #440000 100%); */
    background: linear-gradient(90deg, #001F3F 60%, #000b16 100%);
    /* background: linear-gradient(90deg, #2092e9 60%, #440000 100%); */
    /* background: linear-gradient(90deg, #2092e9 60%, #1664a0 100%); */
    /* background: linear-gradient(90deg, #760404 60%, #a9947d 100%); */
    /*current one*/
    /* background: linear-gradient(90deg, #8B1C1C 60%, #a9947d 100%); */
    /* background: #093002; */
    /* background: #171717; */
    color: #fff;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 12px 8px rgba(53, 66, 74, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    transition: all 0.4s ease;
}

.header-home {
    /* background: linear-gradient(90deg, #980303 30%, #02791b 100%); */
    /* background: linear-gradient(90deg, #101a3c 60%, #4f8cff 100%); */
    /* background: linear-gradient(90deg, #760404 60%, #440000 100%); */
    background: rgb(231, 231, 231);
    /* background: linear-gradient(90deg, #2092e9 60%, #440000 100%); */
    /* background: linear-gradient(90deg, #2092e9 60%, #1664a0 100%); */
    /* background: linear-gradient(90deg, #760404 60%, #a9947d 100%); */
    /*current one*/
    /* background: linear-gradient(90deg, #8B1C1C 60%, #a9947d 100%); */
    /* background: #093002; */
    /* background: #171717; */
    color: gray;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 12px 8px rgba(53, 66, 74, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 0 0;
    background: linear-gradient(90deg, #001F3F 60%, #000b16 100%);
    box-shadow: 0 12px 8px rgba(53, 66, 74, 0.08);
}

.header-home.scrolled {
    padding: 0 0;
    background: rgb(231, 231, 231);
    box-shadow: 0 12px 8px rgba(53, 66, 74, 0.08);
}

nav {
    /* margin: 24px 0 0 0; */
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background 0.3s, color 0.3s;
}

.nav-home a {
    color: darkslategray;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
    background: #fff;
    color: #35424a;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
}

.header-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: 1100px; */
    margin: 0 auto;
    padding: 6px 32px;
    /* height: 30px; */
    /* enough for big logo */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: inline-block;
}

.header-logo {
    display: block;
    position: relative;
    /* left: 0; */
    /* top: 170%; */
    /* transform: translateY(-50%); */
    height: 70px;
    width: auto;
    border-radius: 14px;
    /* background: #fff; */
    /* box-shadow: 0 2px 8px rgba(53,66,74,0.08); */
}

.header-wordmark {
    display: block;
    position: relative;
    height: auto;
    width: 25em;
    padding: 0 4em 0 1em;
}

.header-row h1 {
    margin: 0 auto;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    /* width: 100%; */
    position: relative;
    z-index: 1;
}

.site-title-link {
    text-decoration: none;
    color: inherit;
    margin: 0 18px;
    display: flex;
    align-items: center;
}

.site-title-link h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 32px auto 32px auto;
    overflow: hidden;
}

h1,
h2 {
    color: #35424a;
    margin-bottom: 16px;
}

.hero {
    background-image: url('../images/heroBackground.jpg');
    background-size: cover;
    background-position: center;
    height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-logo {
    display: block;
    position: relative;
    /* left: 0; */
    /* top: 170%; */
    /* transform: translateY(-50%); */
    height: 280px;
    width: auto;
    border-radius: 14px;
    /* background: #fff; */
    /* box-shadow: 0 2px 8px rgba(53,66,74,0.08); */
}

.hero h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    color: #fff;
}

.hero h2 {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    color: #fff;
}

.hero-cta-btn {
    display: inline-block;
    margin-top: 18px;
    background: #DAA520;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    transition: background 0.2s, color 0.2s;
}

.hero-cta-btn:hover {
    background: #48370b;
    color: #fff;
}

.home-heading{
    font-size: 24px;
}

.cta-center {
    text-align: center;
    margin: 24px 0;
}

.button-disclaimer {
    margin-top: 0px;
    font-size: 0.75rem;
    color: #555;
}

.home-card-list {
    display: flex;
    gap: 18px;
    justify-content: left;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.home-card {
    background: #f7f7fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(53, 66, 74, 0.12);
    padding: 24px 18px;
    width: 25%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.15s, box-shadow 0.15s;
    margin: 10px;
}

.home-card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #f4f4f4;
    box-shadow: 0 1px 4px rgba(53, 66, 74, 0.08);
}

.home-card h3 {
    margin: 0 0 8px 0;
    color: #434343;
    font-size: 1.2rem;
}

.home-card p {
    margin: 0 0 14px 0;
    color: #555;
    font-size: 1rem;
}

.home-card-pros {
    margin: 0 0 10px 0;
    padding-left: 18px;
    color: #555;
    font-size: 0.98rem;
    list-style: disc inside;
}

.home-card-pros li {
    margin-bottom: 2px;
}

.home-card a {
    margin-top: auto;
    /* background: #ff4f4f; red header */
    background: goldenrod;
    color: #fff;
    padding: 8px 18px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s;
}

.home-card a:hover {
    /* background: #35424a; red header */
    background: #48370b;
}

.slogan-banner {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 120px;
    margin: 36px auto 36px auto;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/banner.jpg') center center/cover no-repeat;
    box-shadow: 0 4px 24px rgba(53, 66, 74, 0.13);
}

.slogan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 30, 0.65);
    z-index: 1;
}

.slogan-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.slogan-text span {
    color: #C08B5C;
}

.economic-calendar {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.guide-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 32px;
}

.guide-card {
    background: #f6f6f6;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    padding: 16px 12px;
    width: 80%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 6px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.guide-card h3 {
    margin: 0 0 6px 0;
    color: #ff4f4f;
    font-size: 1rem;
}

.guide-card p {
    margin: 0 0 8px 0;
    color: #555;
    font-size: 0.93rem;
}

.guide-card a {
    margin-top: auto;
    /* background: #ff4f4f; red header */
    background: goldenrod;
    color: #fff;
    padding: 6px 12px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s;
    display: inline-block;
}

.guide-card a:hover {
    /* background: #35424a; red header */
    background: #48370b;
}

@media (max-width: 800px) {
    .home-card-list {
        flex-direction: column;
        align-items: center;
    }

    .home-card {
        width: 80%;
        min-width: 0;
    }
}

.testimonials-section {
    max-width: 1100px;
    margin: 36px auto 0 auto;
    padding: 0 12px 32px 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(53, 66, 74, 0.08);
}

.testimonials-title {
    /* text-align: center; */
    /* color: #35424a; */
    /* font-size: 2rem; */
    margin-bottom: 24px;
    /* font-weight: 600; */
}

.testimonials-list {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #f7f7fa;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    padding: 22px 18px;
    width: 320px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    /* Stack vertically by default */
    align-items: center;
    /* Center photo and text */
    gap: 16px;
    margin-bottom: 18px;
    flex: 1 1 220px;
    text-align: center;
}

.testimonial-avatar {
    margin-bottom: 8px;
}

.testimonial-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    background: #fff;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #434343;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 0.98rem;
    color: #ff4f4f;
    font-weight: 500;
}

@media (max-width: 800px) {
    .testimonials-list {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .testimonial-card {
        width: 95%;
        min-width: 0;
    }
}

.audience-section,
.benefits-section,
.trust-section {
    max-width: 1100px;
    margin: 36px auto 0 auto;
    padding: 0 12px 32px 12px;
}

.audience-section h2,
.benefits-section h2,
.trust-section h2 {
    text-align: center;
    color: #35424a;
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.audience-section ul,
.benefits-section ul,
.trust-section ul {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.audience-section li,
.benefits-section li,
.trust-section li {
    background: #f7f7fa;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    padding: 22px 18px;
    width: 320px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex: 1 1 220px;
    text-align: center;
    font-size: 1.05rem;
    color: #434343;
    transition: transform 0.15s, box-shadow 0.15s;
}

.audience-section li:hover,
.benefits-section li:hover,
.trust-section li:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(53, 66, 74, 0.15);
}

.audience-section li i,
.benefits-section li i,
.trust-section li i {
    font-size: 2rem;
    color: #C08B5C;
    margin-bottom: 10px;
    padding: 22px 18px;
}

.cta-sections {
    max-width: 1100px;
    margin: 36px auto 0 auto;
    padding: 0 12px 32px 12px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section {
    background: #f7f7fa;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    padding: 22px 18px;
    width: 320px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex: 1 1 220px;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cta-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(53, 66, 74, 0.15);
}

.cta-section h3 {
    margin: 0;
    color: #434343;
    font-size: 1.2rem;
}

.cta-section p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.cta-section a {
    background: goldenrod;
    color: #fff;
    padding: 8px 18px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s;
}

.cta-section a:hover {
    background: #48370b;
}

@media (max-width: 800px) {
.hero-logo{
    height: 70px;
}

.hero h1 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: #fff;
}

.hero h2 {
    font-size: 1rem;
    margin: 0 0 20px 0;
    color: #fff;
}

    .audience-section ul,
    .benefits-section ul,
    .trust-section ul,
    .cta-sections {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .audience-section li,
    .benefits-section li,
    .trust-section li,
    .cta-section {
        /* width: 95%; */
        min-width: 0;
    flex: 1 1 120px;
    width: 90%;
    }
}

.section-divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #C08B5C, transparent);
    margin: 50px auto;
    border: none;
}

.widget {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(53, 66, 74, 0.10);
    margin-bottom: 32px;
}

.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.card {
    background: #f6f6f6;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(53, 66, 74, 0.10);
    padding: 28px 20px 20px 20px;
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 420px;
    position: relative;
}

.card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(53, 66, 74, 0.18);
}

.exchange-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.08);
    display: block;
}

.card h3 {
    margin: 0 0 10px 0;
    color: #434343;
    font-size: 1.3rem;
}

.card ul {
    margin: 0 0 16px 18px;
    padding: 0;
    color: #555;
    font-size: 1rem;
    list-style: disc inside;
}

.card a {
    margin-top: auto;
    /* background: #ff4f4f; red header */
    background: goldenrod;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.card a:hover {
    /* background: #35424a; red header */
    background: #48370b;
}

.about-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 900px;
    margin: 32px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(53, 66, 74, 0.10);
    padding: 32px;
}

.about-content {
    flex: 2 1 0;
    min-width: 0;
}

.about-image {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    background: #f4f4f4;
}

.about-image-mobile {
    display: none;
}

@media (max-width: 900px) {
    .about-image {
        display: none;
    }

    .about-image-mobile {
        display: flex;
        justify-content: center;
        margin: 18px 0;
    }

    .about-image-mobile img {
        max-width: 80%;
        border-radius: 14px;
        box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
        background: #f4f4f4;
    }
}

.broker-subtitle {
    padding-bottom: 2rem;
}

.disclaimer {
    color: red;
}

.guides-cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1em;
}

.guides-cta h5{
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    margin-top: 0;
    text-align: center;
}

.guides-cta a{
    background: goldenrod;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.13);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    text-align: center;
}

.guides-cta a:hover {
    /* background: #35424a; red header */
    background: #48370b;
}

.main-cta-btn {
    display: inline-block;
    margin-top: 18px;
    /* background: #ff4f4f; red header */
    background: #DAA520;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    transition: background 0.2s, color 0.2s;
}

.main-cta-btn:hover {
    /* background: #35424a; red header */
    background: #48370b;
    color: #fff;
}

.broker-container {
    width: 100%;
    margin: 32px auto 32px auto;
    overflow: hidden;
}

.broker-content-center {
    width: 70%;
    margin: 0 auto 24px auto;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    gap: 3rem;
    align-items: center;
}

.broker-content-center ul li {
    margin-bottom: 10px;
}

.broker-content-center-column-reverse {
    width: 70%;
    margin: 0 auto 24px auto;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    gap: 3rem;
    align-items: center;
}

.text-left {
    text-align: left
}

.raised {
    background: #f6f6f6;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
    padding: 16px 12px;
}

.broker-content-center div {
    width: 40%;
}

.broker-banner {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background-color: lightgray;
    padding-top: 20px;
    padding-bottom: 20px;
}

.broker-key-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.broker-key-points::before {
    width: 14rem;
    border-top: 2px solid #ff8c6c;
    border-left: 2px solid #ff8c6c;
}

.broker-risk-disclaimer {
    background-color: lightgray;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.broker-cta-join {
    display: flex;
    justify-content: center;
    margin: 32px 0 0 0;
}

.join-etoro-btn {
    background: linear-gradient(90deg, #00c220 60%, #0e8c3a 100%);
    color: #fff;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.13);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.join-etoro-btn:hover {
    background: linear-gradient(90deg, #0e8c3a 60%, #00c220 100%);
    transform: translateY(-2px) scale(1.04);
}


.join-vantage-btn {
    background: linear-gradient(90deg, #e35728 60%, #e17d5b 100%);
    color: #fff;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.13);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.join-vantage-btn:hover {
    background: linear-gradient(90deg, #e17d5b 60%, #e35728 100%);
    transform: translateY(-2px) scale(1.04);
}

.bybit-image {
    width: 100%;
    height: auto;
}

.bybit-reverse-content {
    width: 100%;
}

.padding-bot-small {
    padding-bottom: 5rem;
}

.landing-hero {
    position: relative;
    width: 100%;
    min-height: 380px;
    /* background: linear-gradient(120deg, #101a3c 60%, #4f8cff 100%); */
    background: linear-gradient(90deg, #760404 60%, #a9947d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    background-image:
        linear-gradient(#760404c1, #760404c3),
        url('../images/landing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
}

.landing-hero-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 480px;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
    text-align: left;
    padding: 48px 32px;
}

.landing-hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.landing-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 28px;
    color: #fff;
}

.landing-cta-btn {
    /* background: linear-gradient(90deg, #4f8cff 60%, #101a3c 100%); */
    background: linear-gradient(90deg, #e35728 60%, #e17d5b 100%);
    color: #fff;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 16px 38px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(53, 66, 74, 0.13);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.landing-cta-btn:hover {
    /* background: linear-gradient(90deg, #101a3c 60%, #4f8cff 100%); */
    background: linear-gradient(90deg, #e17d5b 60%, #e35728 100%);
    transform: translateY(-2px) scale(1.04);
}

.trust-section {
    max-width: 900px;
    margin: 48px auto 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.trust-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(53, 66, 74, 0.10);
    padding: 28px 20px;
    flex: 1 1 240px;
    min-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}

.trust-card i {
    font-size: 2.2rem;
    color: #f34734;
    margin-bottom: 12px;
}

.trust-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.18rem;
    color: #101a3c;
}

.trust-card p {
    font-size: 1rem;
    color: #444;
    margin: 0;
}

.footer-content {
    width: 100%;
    background: linear-gradient(90deg, #001F3F 60%, #000b16 100%);
    color: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    margin-top: 40px;
    padding: 32px 0 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.footer-slogan {
    width: 100%;
    text-align: center;
    margin-bottom: 18px;
    /* padding: 0 18px; */
}

.footer-slogan p {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 500;
    opacity: 0.92;
    margin: 0;
    line-height: 1.5;
}

.footer-nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}

.footer-nav a:hover {
    color: #363636;
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 18px;
}


.footer-social a {
    text-decoration: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(79, 140, 255, 0.15);
    transition: background 0.2s, transform 0.2s;
}

.social-icon i {
    font-size: 1.4em;
    color: #fff;
    transition: color 0.2s;
}

.social-icon.instagram:hover i {
    color: #e1306c;
}

.social-icon.facebook:hover i {
    color: #1877f2;
}

.social-icon.tiktok:hover i {
    color: #25f4ee;
}

.footer-copyright {
    font-size: 0.98rem;
    opacity: 0.7;
    margin-top: 10px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Optional: Animate burger to X when open */
.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

@media (max-width: 1500px) {
    .header-logo {
        height: 50px;
        width: 50px;
        /* top: 50%; */
    }

    .header-wordmark {
        padding: 0 3em 0 1em;
    }
    
    nav {
        gap: 0px;
    }
}

@media (max-width: 1350px) {

    .header-wordmark {
        width: 22em;
    }
}

@media (max-width: 1000px) {
    .header-logo {
        height: 36px;
        width: 36px;
        /* top: 50%; */
    }

    .header-wordmark {
        width: 13em;
        padding: 0 3em 0 1em;
    }

    nav a {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .broker-content-center {
        width: 80%;
    }

    .broker-content-center-column-reverse {
        width: 80%;
    }
}

@media (max-width: 800px) {
    .burger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 44px;
        left: -100%;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transition: left 0.3s ease;
        display: flex;
        background: linear-gradient(90deg, #001F3F 60%, #000b16 100%);
        box-shadow: 0 2px 8px rgba(53, 66, 74, 0.10);
        z-index: 1000;
        gap: 24px
    }

    nav a {
        font-size: 16px;
    }

    nav.open {
        left: 0;
    }

    .header-logo {
        height: 36px;
        width: 36px;
        /* top: 50%; */
    }

    .header-wordmark {
        width: 13em;
        padding: 0;
    }

    .header-row {
        padding: 4px 10px;
        justify-content: space-between;
        /* space for burger */
    }

    .header-row h1 {
        font-size: 1.3rem;
        margin: 0;
    }

    .container {
        width: 90%;
        padding: 0 8px;
    }

    .economic-calendar {
        margin: 3rem 1rem;
    }

    .card-list {
        grid-template-columns: 1fr;
    }

    .broker-content-center {
        width: 90%;
    }

    .broker-content-center-column-reverse {
        width: 90%;
    }
}

@media (max-width: 700px) {
    .slogan-banner {
        height: 70px;
    }

    .slogan-text {
        font-size: 1.2rem;
    }

    .landing-hero-content {
        width: 90%;
        padding: 32px 12px;
    }

    .landing-hero-img {
        display: none;
    }

    .trust-section {
        width: 80%;
        flex-direction: column;
        gap: 18px;
    }

    .broker-content-center {
        width: 100%;
        flex-direction: column;
    }

    .broker-content-center-column-reverse {
        width: 100%;
        flex-direction: column-reverse;
    }

    .broker-content-center div {
        width: 90%;
    }

    .broker-content-center-column-reverse div {
        width: 90%;
    }

    .broker-banner img {
        width: 100%;
        height: auto;
    }

    .broker-banner-img {
        width: 90%;
        height: auto;
    }

    .raised {
        width: 90%;
    }

    footer {
        font-size: 0.8rem;
    }

    .footer-slogan p {
        font-size: 1rem;
        padding: 0 6px;
    }

    .footer-nav-social {
        flex-direction: column;
        gap: 18px;
    }

    .footer-nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    nav {
        gap: 8px;
    }

    .container {
        width: 90%;
        padding: 0 4px;
    }

    .widget,
    .card {
        padding: 12px;
    }

    .card {
        min-height: 0;
    }
}