@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,900&amp;f[]=general-sans@200,300,400,500,600,700&amp;display=swap");

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    line-height: 1.6;
    color: #001011;
    background-color: #ffffff;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}
.container.border-left {
    border-left: 5px solid #f1f2ec;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #001011;
    font-family: "Cabinet Grotesk", sans-serif;
}

.border-bottom {
    border-bottom: 5px solid #f1f2ec;
}
.border-top {
    border-top: 5px solid #f1f2ec;
}
.border-left {
    border-left: 5px solid #f1f2ec;
}
.border-right {
    border-right: 5px solid #f1f2ec;
}

.bordered-container {
    border-left: 5px solid #f1f2ec;
    margin-left: 2rem;
    padding: 6rem 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: "Cabinet Grotesk", sans-serif;
    text-align: center;
    margin-bottom: 1rem;
    color: #001011;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #8a9192;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.dark-hero-video{
    display: none;
}
.light-hero-video{
    display: block;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-outline {
    padding: 12px 24px;
    /* border-radius: 12px; */
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.btn-primary {
    background: #c1e963;
    color: #001011;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #84cc16;
    transform: translateY(-1px);
}

.btn-primary-large {
    background: #c1e963;
    color: #001011;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn-secondary {
    background: #f9fdef;
    color: #001011;
    border: 1px solid #ecf8cf;
}

.btn-secondary:hover {
    background: #ecf8cf;
    border-color: #d1d5db;
}

.btn-secondary-outline {
    background: #f9fdef;
    color: #001011;
    border: 1px solid #ecf8cf;
    font-weight: 600;
    font-size: 16px;
}

.btn-secondary-outline:hover {
    background: #f9fdef;
    border-color: #d1d5db;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f3f4;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    height: 32px;
    width: auto;
    transition: opacity 0.3s ease;
}

.brand-logo.dark-logo {
    display: none;
}

body.night-mode .brand-logo.light-logo {
    display: none;
}

body.night-mode .brand-logo.dark-logo {
    display: block;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: "Cabinet Grotesk", sans-serif;
    color: #001011;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #001011;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-menu a:hover {
    color: #001011;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #001011;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #001011;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 20px;
}

.hero-tagline-carousel {
    position: relative;
    height: 50px;
    overflow: hidden;
}

.hero-tagline {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    font-size: 18px;
    color: #8a9192;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 12px;
    border-radius: 12px;
    z-index: 1;
    /* don't rely on backdrop blur — use a translucent background so the text is not blurred */
    background: rgba(241, 242, 236, 0.3);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 2px solid #eef0e8;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    white-space: nowrap;
}

.hero-tagline.active {
    opacity: 1;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    font-family: "Cabinet Grotesk", sans-serif;
    margin-bottom: 3rem;
    color: #001011;
    line-height: 0.95;
    /* letter-spacing: -0.03em; */
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #8a9192;
    margin-bottom: 4rem;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats {
    background: #ffffff;
    /* padding: 2rem 0 4rem; */
}

.stats-grid {
    /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
    display: flex;
    justify-content: center;
    /* gap: 4rem; */
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto;
    border-top: 5px solid #f1f2ec;
    border-bottom: 5px solid #f1f2ec;
}

.stat-item {
    padding: 1rem 0;
    width: 280px;
    border-left: 5px solid #f1f2ec;
}

.stat-item:last-child {
    border-right: 5px solid #f1f2ec;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: "Cabinet Grotesk", sans-serif;
    color: #033f2d;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: #8a9192;
    font-weight: 500;
    font-size: 1.125rem;
}

/* Market Data Section */
.market-data {
    /* background: #ffffff; */
    /* padding: 2rem 0 5rem; */
    border-bottom: 5px solid #f1f2ec;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.market-item {
    background: #f9fdef;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.market-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.market-symbol {
    font-weight: 700;
    color: #001011;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.market-price {
    font-weight: 700;
    color: #001011;
    font-size: 16px;
    margin-bottom: 0.25rem;
}

.market-change {
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.market-change.positive {
    color: #059669;
    background: #d1fae5;
}

.market-change.negative {
    color: #dc2626;
    background: #fee2e2;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    /* background: #ffffff; */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 2rem; */
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-left: 5px solid #f1f2ec;
    border-top: 5px solid #f1f2ec;
    border-bottom: 5px solid #f1f2ec;
    /* border-radius: 20px;
  background: #F9FDEF;
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4; */
}

.step-card:first-child {
    border-left: none;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.step-icon {
    /* width: 80px; */
    /* height: 80px; */
    /* background: #c1e963; */
    /* border-radius: 20px; */
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
    line-height: 1.3;
}

.step-description {
    color: #8a9192;
    line-height: 1.5;
    font-size: 14px;
}

/* Info Section */
.info-section {
    padding: 6rem 0;
    /* background: #F9FDEF; */
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
    border-bottom: 5px solid #f1f2ec;
    border-top: 5px solid #f1f2ec;
}

.info-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-right: 5px solid #f1f2ec;
}

/* .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
} */

.info-title {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: "Cabinet Grotesk", sans-serif;
    margin-bottom: 1.5rem;
    color: #001011;
    line-height: 1.2;
}

.info-description {
    color: #8a9192;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 16px;
}

/* Traders Section */
.traders-section {
    /* padding: 6rem 0; */
    /* background: #ffffff; */
}

.traders-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    margin: 4rem 0;
    padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.traders-grid::-webkit-scrollbar {
    display: none;
}

.trader-card {
    flex: 0 0 340px;
    scroll-snap-align: center;
    background: #ffffff;
    padding: 1.5rem;
    /* border-radius: 16px; */
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #f8f9f6;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.trader-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trader-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trader-identity {
    display: flex;
    flex-direction: column;
}

.trader-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    color: #001011;
    font-family: "Cabinet Grotesk", sans-serif;
}

.trader-role {
    font-size: 0.875rem;
    color: #8a9192;
    font-weight: 500;
}

.trader-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem 2rem;
    background: #f8f9f6;
    border: none;
}

.trader-stat {
    display: flex;
    flex-direction: column;
}

.trader-stat.align-right {
    align-items: flex-end;
    text-align: right;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #001011;
    font-family: "Cabinet Grotesk", sans-serif;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1;
}

.trend-icon {
    font-size: 1rem;
    color: #059669;
    vertical-align: super;
}

.stat-label {
    font-size: 0.875rem;
    color: #8a9192;
    margin-top: 0.5rem;
}

.trader-risk-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.risk-label {
    font-weight: 600;
    color: #001011;
    font-size: 0.9rem;
}

.risk-badge {
    background: #fee2e2;
    color: #d52941;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-copy-trader {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 700;
    color: #001011;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Cabinet Grotesk", sans-serif;
    text-align: center;
    text-decoration: none;
}

.btn-copy-trader:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.traders-actions {
    text-align: center;
    margin-top: 3rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    /* background: #f9fdef; */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 2rem; */
    margin-top: 4rem;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    /* border-radius: 20px; */
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    /* width: 60px; */
    height: 60px;
    /* background: #c1e963; */
    /* border-radius: 16px; */
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
    line-height: 1.3;
    text-align: center;
}

.feature-description {
    color: #8a9192;
    line-height: 1.6;
    font-size: 15px;
}

/* Copy Section */
.copy-section {
    padding: 6rem 0;
    background: #fff;
}

.copy-section .section-title {
    color: #033f2d;
}

.copy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}

.copy-card {
    background: #eaece2;
    padding: 3rem 2rem;
    /* border-radius: 20px; */
    text-align: center;
    transition: all 0.3s ease;
    /* border: 1px solid #f1f3f4; */
}

.copy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.copy-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    /* border-radius: 20px; */
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #033f2d;
    line-height: 1.3;
}

.copy-description {
    color: #356557;
    line-height: 1.6;
    font-size: 1.25rem;
}

/* FAQ Section */
.faq-section {
    /* padding: 5rem 0; */
    background: #f9fafb;
}

.faq-list {
    /* max-width: 800px; */
    /* margin: 0 auto; */
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.faq-item {
    background: #eaece2;
    /* border-radius: 12px; */
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.75rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: #033f2d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    color: #eaece2;
    background: #033f2d;
}

.faq-question:hover .faq-toggle {
    color: #eaece2;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #033f2d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #8a9192;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    /* background: white; */
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trust-logo {
    /* opacity: 0.7; */
    /* transition: opacity 0.3s ease; */
}

.trust-logo:hover {
    /* opacity: 1; */
    /* filter: grayscale(0%); */
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* gap: 2rem; */
    margin-top: 3rem;
}

.trust-feature {
    padding: 1.5rem;
    border: 5px solid #f1f2ec;
}

.trust-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.trust-feature p {
    color: #8a9192;
    font-size: 0.875rem;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: #eaece2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 2rem; */
    margin-top: 3rem;
}

.cta-card {
    /* background: white; */
    padding: 2.5rem;
    /* border-radius: 16px; */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-card-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #033f2d;
}

.cta-card-description {
    color: #033f2d;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    /* background: #1a1a1a; */
    color: white;
    /* padding: 3rem 0 1rem; */
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-logo .brand-logo {
    height: 32px;
    width: auto;
}

.footer-logo .brand-name {
    color: white;
}

.footer-description {
    color: #001011;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-title,.footer-toggle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #001011;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-list a:hover {
    color: #10b981;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #001011;
    font-size: 0.875rem;
}

.footer-app-links {
    display: flex;
    gap: 1rem;
}

.app-store-link,
.google-play-link {
    display: block;
}

.app-store-link img,
.google-play-link img {
    height: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .nav-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 968px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-tagline-carousel {
        height: 45px;
    }

    .hero-tagline {
        font-size: 14px;
        padding: 10px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        /* flex-wrap: wrap; */
    }

    .stat-item {
        width: calc(50% - 2.5px);
    }

    .stat-item:nth-child(3) {
        width: 100%;
        /* border-right: 5px solid #f1f2ec; */
    }

    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card {
        padding: 2rem 1.25rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-description {
        font-size: 14px;
    }

    .copy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .copy-title {
        font-size: 1.75rem;
    }

    .copy-description {
        font-size: 1.125rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border: none;
    }

    .info-card {
        border-right: none;
        border-bottom: 5px solid #f1f2ec;
        padding: 2.5rem 2rem;
    }

    .info-card:last-child {
        border-bottom: none;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .info-description {
        font-size: 15px;
    }

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

    .faq-question {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .how-it-works,
    .features-section,
    .copy-section,
    .traders-section,
    .info-section {
        padding: 4rem 0;
    }

    .cta-card-title {
        font-size: 1.75rem;
    }

    .cta-card-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Remove side borders on mobile for cleaner look */
    .container.border-left {
        border-left: none;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .hero-tagline-carousel {
        height: 40px;
    }

    .hero-tagline {
        font-size: 13px;
        padding: 8px 12px;
    }

    .section-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .brand-logo {
        height: 28px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 1.25rem;
        flex-wrap: wrap;
        font-size: 14px;
    }

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

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-actions .btn-secondary {
        display: none;
    }

    .nav-actions .btn-primary {
        font-size: 13px;
        padding: 10px 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Market Data Section Mobile */
    .market-data > .container {
        flex-direction: column !important;
    }

    .market-data .section-title {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 5px solid #f1f2ec;
        padding: 1.5rem 0 !important;
        font-size: 1.875rem;
    }

    .market-data > .container > div:last-child {
        padding: 1.5rem 0 !important;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .btn-primary-large,
    .btn-secondary-outline {
        width: 100%;
        font-size: 15px;
        padding: 14px 24px;
    }

    .stats-grid {
        /* flex-direction: column;
        border: none; */
    }

    .stat-item {
        width: 100%;
        border: none;
        /* border-top: 5px solid #f1f2ec;
        border-left: 5px solid #f1f2ec; */
        border-right: 5px solid #f1f2ec;
        padding: 1.5rem 0;
    }

    .stat-item:last-child {
        /* border-bottom: 5px solid #f1f2ec; */
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .market-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .market-item {
        padding: 1.25rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step-card {
        border-left: 5px solid #f1f2ec;
        padding: 2rem 1.5rem;
    }

    .step-card:first-child {
        border-left: 5px solid #f1f2ec;
    }

    .step-icon {
        /* width: 64px;
    height: 64px; */
        margin-bottom: 1.5rem;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .step-description {
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-card {
        padding: 2.5rem 1.75rem;
    }

    .feature-icon {
        height: 48px;
        margin-bottom: 1.5rem;
    }

    .feature-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .feature-description {
        font-size: 14px;
    }

    .copy-grid {
        grid-template-columns: 1fr;
    }

    .copy-card {
        padding: 2.5rem 1.75rem;
    }

    .copy-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .copy-description {
        font-size: 1rem;
    }

    .info-card {
        padding: 2.5rem 1.5rem;
    }

    .info-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .info-description {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .traders-section {
        padding: 4rem 0;
    }

    .traders-grid {
        margin: 2.5rem 0;
        gap: 1rem;
    }

    .trader-card {
        flex: 0 0 300px;
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .trader-name {
        font-size: 1rem;
    }

    .trader-role {
        font-size: 0.8125rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .trader-stats-row {
        padding: 0.875rem 1.5rem;
    }

    .faq-question {
        font-size: 0.9375rem;
        padding: 1.25rem;
    }

    .faq-toggle {
        font-size: 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 14px;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-card-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-card-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .trust-logos {
        gap: 1.5rem;
    }

    .how-it-works,
    .features-section,
    .copy-section,
    .info-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Better touch targets for mobile */
    button,
    .btn-primary,
    .btn-secondary,
    .btn-primary-large,
    .btn-secondary-outline {
        /* min-height: 44px; */
    }

    .hero {
        padding: 4rem 0 4rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.05;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }

    .hero-tagline-carousel {
        height: 35px;
    }

    .hero-tagline {
        font-size: 11px;
        padding: 8px 10px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .nav-container {
        padding: 0.875rem 0.75rem;
    }

    .brand-logo {
        height: 24px;
    }

    .brand-name {
        font-size: 1.125rem;
    }

    .nav-actions .btn-primary {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Market Data Section - Smallest Mobile */
    .market-data .section-title {
        font-size: 1.5rem;
        padding: 1.25rem 0 !important;
    }

    .market-data > .container > div:last-child {
        padding: 1.25rem 0 !important;
    }

    /* Ensure proper spacing on smallest screens */
    .cta-section,
    /* .faq-section, */
    .trust-section {
        padding: 2.5rem 0;
    }

    /* Better button sizing for mobile */
    .btn-primary,
    .btn-secondary {
        font-size: 13px;
        padding: 10px 18px;
    }

    /* Tighter spacing for mobile */
    .traders-actions {
        margin-top: 2rem;
    }

    .traders-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    /* Prevent horizontal scroll on mobile */
    .section-title {
        word-break: break-word;
    }

    /* Better image sizing */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Improve readability on small screens */
    p {
        text-align: left;
    }

    .hero-subtitle,
    .section-subtitle {
        text-align: center;
    }

    .hero-actions {
        gap: 0.625rem;
    }

    .btn-primary-large,
    .btn-secondary-outline {
        padding: 12px 20px;
        font-size: 14px;
    }

    .stat-item {
        padding: 1.25rem 0;
    }

    .stat-number {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }

    .stat-label {
        font-size: 0.9375rem;
    }

    .market-item {
        padding: 1rem;
    }

    .market-symbol {
        font-size: 13px;
    }

    .market-price {
        font-size: 15px;
    }

    .market-change {
        font-size: 11px;
    }

    .step-card {
        padding: 1.75rem 1.25rem;
    }

    .step-icon {
        /* width: 56px;
    height: 56px; */
        margin-bottom: 1.25rem;
    }

    .step-title {
        font-size: 0.9375rem;
        margin-bottom: 0.625rem;
    }

    .step-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .feature-card {
        padding: 2rem 1.25rem;
    }

    .feature-icon {
        height: 40px;
        margin-bottom: 1.25rem;
    }

    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .feature-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .copy-card {
        padding: 2rem 1.25rem;
    }

    .copy-title {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }

    .copy-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .info-card {
        padding: 2rem 1.25rem;
    }

    .info-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .info-description {
        font-size: 13px;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .traders-grid {
        margin: 2rem 0;
        gap: 0.75rem;
    }

    .trader-card {
        flex: 0 0 85vw;
        padding: 1.125rem;
        gap: 1.125rem;
    }

    .trader-avatar {
        width: 40px;
        height: 40px;
    }

    .trader-name {
        font-size: 0.9375rem;
    }

    .trader-role {
        font-size: 0.75rem;
    }

    .trader-stats-row {
        padding: 0.75rem 1.25rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
        margin-top: 0.375rem;
    }

    .risk-label {
        font-size: 0.8125rem;
    }

    .risk-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .btn-copy-trader {
        padding: 10px;
        font-size: 0.9375rem;
    }

    .faq-question {
        font-size: 0.875rem;
        padding: 1rem;
    }

    .faq-toggle {
        font-size: 1.125rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 13px;
        line-height: 1.5;
    }

    .cta-card {
        padding: 1.75rem 1.25rem;
    }

    .cta-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }

    .cta-card-description {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 0.875rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .footer-description,
    .footer-list a {
        font-size: 0.8125rem;
    }

    .footer-list li {
        margin-bottom: 0.375rem;
    }

    .footer-copyright {
        font-size: 0.8125rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .app-store-link img,
    .google-play-link img {
        height: 36px;
    }

    .how-it-works,
    .features-section,
    .copy-section,
    .traders-section,
    .info-section,
    /* .faq-section, */
    .cta-section {
        padding: 3rem 0;
    }
}

/* Additional styles for new pages */

/* Brokerage Page Styles */
.brokerage-hero {
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding: 8rem 0 6rem;
    text-align: center;
}

.brokerage-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.brokerage-title {
    font-size: 6rem;
    font-weight: 900;
    font-family: "Cabinet Grotesk", sans-serif;
    margin-bottom: 2rem;
    color: #001011;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.brokerage-subtitle {
    font-size: 1.25rem;
    color: #8a9192;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.brokerage-cta {
    margin-top: 2rem;
}

.why-partner {
    /* padding: 6rem 0; */
    /* background: #f9fdef; */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 2rem; */
    margin-top: 4rem;
}

.benefit-card {
    background: #ffffff;
    padding: 2.5rem;
    /* border-radius: 20px; */
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
}

.benefit-description {
    color: #8a9192;
    line-height: 1.6;
    font-size: 15px;
}

.how-it-works-brokerage {
    padding: 6rem 0;
    background: #eaece2;
}

.works-steps {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.step-item {
    text-align: center;
    max-width: 200px;
}

.step-number {
    /* width: 60px;
    height: 60px;
    background: #c1e963;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: "Cabinet Grotesk", sans-serif;
    color: #001011; */
}

.step-number img{
  width: 60px;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #001011;
}

.step-description {
    color: #8a9192;
    font-size: 14px;
}

.b2b-solutions {
    padding: 6rem 0;
    /* background: #f9fdef; */
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 2rem; */
    margin-top: 4rem;
}

.solution-card {
    background: #ffffff;
    padding: 3rem 2rem;
    /* border-radius: 20px; */
    border: 5px solid #f1f3f4;
    transition: all 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.solution-icon {
    margin: 0 auto 2rem;
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
}

.solution-description {
    color: #8a9192;
    line-height: 1.6;
    font-size: 15px;
}

.about-SyncVestor {
    /* padding: 6rem 0; */
    background: #ffffff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    color: #8a9192;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.ready-transform {
    padding: 6rem 0;
    background: #eaece2;
    text-align: center;
}

.ready-transform .section-title,
.ready-transform .section-subtitle {
    color: #033f2d;
}

.transform-cta {
    margin-top: 2rem;
}

.contact-section {
    padding: 6rem 0;
    background: #eaece2;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    /* background: #ffffff; */
    padding: 3rem;
    /* border-radius: 20px; */
    /* border: 1px solid #f1f3f4; */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #001011;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: #eaece2;
    border: 1px solid #d5d7ce;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c1e963;
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.1);
}

.btn-full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Affiliate Page Styles */
.affiliate-hero {
    background: #ffffff;
    padding: 8rem 0 6rem;
    text-align: center;
}

.affiliate-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.affiliate-title {
    font-size: 6rem;
    font-weight: 900;
    font-family: "Cabinet Grotesk", sans-serif;
    margin-bottom: 2rem;
    color: #001011;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.affiliate-subtitle {
    font-size: 1.125rem;
    color: #8a9192;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.affiliate-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.what-is-affiliate {
    /* padding: 6rem 0; */
    /* background: #f9fdef; */
}

.affiliate-explanation {
    display: flex;
    flex-direction: column;
}

/* .affiliate-text{
  display: flex;
  flex-direction: column;
} */

.affiliate-explanation .section-title {
    text-align: start;
}

.affiliate-description {
    color: #8a9192;
    line-height: 1.6;
    font-size: 16px;
    max-width: 500px;
    align-self: end;
}

.affiliate-actions {
    padding: 6rem 0;
    background: #ffffff;
}

.affiliate-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.action-card {
    background: #f9fdef;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.action-icon {
    margin: 0 auto 2rem;
}

.action-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
}

.action-description {
    color: #8a9192;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 1.5rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.competition-scheme {
    /* padding: 6rem 0; */
    /* background: #f9fdef; */
}

.competition-holder {
    display: flex;
    flex-direction: column;
}

.competition-holder .section-title {
    text-align: start;
}

.competition-content {
    max-width: 500px;
    /* margin: 0 auto; */
    /* text-align: center; */
    align-self: end;
}

.competition-text {
    color: #8a9192;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.become-affiliate-steps {
    padding: 6rem 0;
    background: #e5e7eb;
}

.affiliate-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.affiliate-step {
    text-align: center;
    padding: 2rem;
}

.become-affiliate-cta {
    text-align: center;
    margin-top: 3rem;
}

.affiliate-reasons {
    /* padding: 6rem 0; */
    background: #ffffff;
}

.reasons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.reasons-header .section-title {
    max-width: 500px;
    text-align: start;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 2rem; */
}

.reason-card {
    /* background: #f9fdef; */
    padding: 2.5rem;
    /* border-radius: 16px; */
    border: 1px solid #f1f3f4;
}

.reason-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
}

.reason-description {
    color: #8a9192;
    line-height: 1.6;
    font-size: 14px;
}

/* Leader Page Styles */
.leader-hero {
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding: 8rem 0 6rem;
    text-align: center;
}

.leader-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.leader-title {
    font-size: 6rem;
    font-weight: 900;
    font-family: "Cabinet Grotesk", sans-serif;
    margin-bottom: 2rem;
    color: #001011;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.leader-subtitle {
    font-size: 1.125rem;
    color: #8a9192;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leader-cta {
    margin-top: 2rem;
}

.leader-function {
    /* padding: 6rem 0; */
    /* background: #f9fdef; */
}

.leader-function-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 4rem; */
    align-items: center;
}

.trading-chart-placeholder {
    background: #ffffff;
    /* border-radius: 16px; */
    padding: 2rem;
    border: 1px solid #f1f3f4;
}

.leader-function-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #001011;
}

.leader-function-description {
    color: #8a9192;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 15px;
}

.become-leader-steps {
    padding: 6rem 0;
    background: #eaece2;
}

.become-leader-steps .section-title {
    color: #033f2d;
}

.leader-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.leader-step {
    text-align: center;
    padding: 2rem;
}

.become-leader-cta {
    text-align: center;
    margin-top: 3rem;
}

.trading-platforms {
    /* padding: 6rem 0; */
    background: #ffffff;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 3rem; */
    margin-top: 4rem;
}

.platform-card {
    /* background: #f9fdef; */
    padding: 3rem 2rem;
    /* border-radius: 20px; */
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.platform-image {
    margin-bottom: 2rem;
}

.platform-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
}

.platform-description {
    color: #8a9192;
    line-height: 1.6;
    font-size: 14px;
}

.leader-reasons {
    /* padding: 6rem 0; */
    /* background: #f9fdef; */
}

.leader-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 2rem; */
    margin-top: 4rem;
}

.leader-reason-card {
    background: #ffffff;
    padding: 2.5rem;
    /* border-radius: 16px; */
    border: 1px solid #f1f3f4;
}

/* About Page Styles */
.about-hero {
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding: 8rem 0 6rem;
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-size: 6rem;
    font-weight: 900;
    font-family: "Cabinet Grotesk", sans-serif;
    margin-bottom: 3rem;
    color: #001011;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.about-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    color: #8a9192;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 16px;
    text-align: center;
}

.about-highlight {
    color: #001011;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 2rem 0;
}

.our-mission {
    /* padding: 6rem 0; */
    /* text-align: center; */
}

.mission-content {
    /* max-width: 600px; */
    display: flex;
    justify-content: end;
    margin: 0 auto;
}

.mission-statement {
    font-size: 2rem;
    font-weight: 700;
    color: #545f60;
    line-height: 1.2;
    margin-top: 2rem;
    font-family: "Cabinet Grotesk", sans-serif;
}

.our-brokers {
    /* padding: 6rem 0; */
    background: #ffffff;
}

.brokers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    margin-top: 4rem;
}

.broker-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* filter: grayscale(100%);
  transition: filter 0.3s ease; */
}

.broker-logo:hover {
    filter: grayscale(0%);
}

.our-awards {
    /* padding: 6rem 0; */
    background: #eaece2;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.award-item {
    text-align: center;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-icon {
    margin: 0 auto 1rem;
}

.award-text {
    color: #545f60;
    font-size: 1rem;
    font-weight: 500;
    align-items: center;
    text-align: center;
}

.world-presence {
    /* padding: 6rem 0; */
    /* background: #f1f2ec; */
}

.world-map-container {
    max-width: 900px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.world-map {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.world-map svg {
    width: 100%;
    height: auto;
}

.map-dots circle {
    fill: #8a9192;
    opacity: 0.4;
}

.section-title-about {
    font-size: 3.75rem;
    font-weight: 800;
    text-align: center;
    color: #001011;
    margin-bottom: 1rem;
    text-align: start;
    font-family: "Cabinet Grotesk", sans-serif;
}

.section-title-center {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: #001011;
    margin-bottom: 4rem;
}

.broker-placeholder {
    font-size: 14px;
    color: #8a9192;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.broker-logo:hover .broker-placeholder {
    opacity: 1;
}

.award-laurel {
    color: #8a9192;
    /* margin: 0 auto 1.5rem; */
    /* width: 80px; */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 3rem;
}

.award-laurel span {
    position: absolute;
    font-size: 0.75rem;
    top: 0.2rem;
    color: #001011;
}

.award-laurel svg {
    width: 100%;
    height: 100%;
}

.ready-invest-about {
    padding: 8rem 0;
    background: #f1f2ec;
    text-align: center;
}

.ready-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.ready-step {
    text-align: center;
}

.step-icon {
    /* width: 48px; */
    /* height: 48px; */
    margin: 0 auto 1.5rem;
    color: #001011;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #033f2d;
    margin-bottom: 1rem;
    font-family: "Cabinet Grotesk", sans-serif;
}

.step-description {
    color: #033f2d;
    line-height: 1.6;
    font-size: 15px;
}

.ready-cta {
    display: flex;
    justify-content: center;
}

/* Terms Page Styles */
.terms-content {
    padding: 4rem 0;
    background: #ffffff;
}

.terms-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
}

.terms-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #001011;
}

.terms-nav {
    list-style: none;
    padding: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #8a9192;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: #c1e963;
}

.terms-main {
    max-width: 800px;
}

.terms-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: "Cabinet Grotesk", sans-serif;
    margin-bottom: 2rem;
    color: #001011;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #001011;
}

.terms-text {
    color: #8a9192;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 15px;
}

.ready-invest-inline {
    background: #e5e7eb;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
}

/* Guide Page Styles */
.guide-content {
    padding: 4rem 0;
    background: #ffffff;
}

.guide-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
}

.guide-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.guide-nav {
    list-style: none;
    padding: 0;
    border: 5px solid #f1f2ec;
}

.guide-nav li {
    border-bottom: 5px solid #f1f2ec;
}

.guide-nav a {
    color: #001011;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 1rem;
}

.guide-nav a:hover,
.guide-nav a.active {
    color: #001011;
    background-color: #eaece2;
}

.guide-main {
    max-width: 800px;
}

.guide-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: "Cabinet Grotesk", sans-serif;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    color: #001011;
}

.guide-section {
    margin-bottom: 3rem;
}

.guide-section .section-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: start;
    margin-bottom: 1rem;
    color: #89a546;
    letter-spacing: -0.02em;
}

.guide-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #001011;
}

.guide-text {
    color: #8a9192;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 15px;
}

.guide-list {
    font-weight: 600;
    color: #89a546;
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.guide-list-plain {
    color: #8a9192;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.guide-numbered-list {
    color: #8a9192;
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.guide-numbered-list li {
    margin-bottom: 0.5rem;
}

.policy-cards {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.policy-card {
    background: #f9fdef;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #f1f3f4;
    /* display: flex;
  gap: 1.5rem; */
    align-items: flex-start;
}

.policy-icon {
    font-weight: 800;
    font-family: "Cabinet Grotesk", sans-serif;
    color: #b0d45a;
    font-size: 3.75rem;
}

.policy-content {
    flex: 1;
}

.policy-text {
    color: #8a9192;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 14px;
}

.policy-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design for new pages */
@media (max-width: 968px) {
    .brokerage-hero,
    .affiliate-hero,
    .leader-hero,
    .about-hero,
    .autoguard-hero {
        padding: 6rem 0 4rem;
    }

    .brokerage-title,
    .affiliate-title,
    .leader-title,
    .about-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .brokerage-subtitle,
    .affiliate-subtitle,
    .leader-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 2.5rem;
    }

    .benefits-grid,
    .solutions-grid,
    .affiliate-actions-grid,
    .platforms-grid,
    .leader-reasons-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        /* gap: 1.5rem; */
    }

    .benefit-title,
    .solution-title,
    .action-title,
    .platform-title,
    .reason-title {
        font-size: 1.125rem;
    }

    .benefit-description,
    .solution-description,
    .action-description,
    .platform-description,
    .reason-description {
        font-size: 14px;
    }

    .works-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .affiliate-steps-grid,
    .leader-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .leader-function-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .leader-function-title {
        font-size: 1.375rem;
    }

    .leader-function-description {
        font-size: 14px;
    }

    .brokers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .terms-layout,
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .terms-sidebar,
    .guide-sidebar {
        position: static;
        order: -1;
    }

    .terms-title,
    .guide-title {
        font-size: 2.5rem;
    }

    .terms-heading,
    .guide-heading {
        font-size: 1.0625rem;
    }

    .terms-text,
    .guide-text {
        font-size: 14px;
    }

    .reasons-header {
        flex-direction: column;
        text-align: center;
    }

    .mission-statement {
        font-size: 2.25rem;
    }

    .about-text {
        font-size: 15px;
    }

    .about-highlight {
        font-size: 1.0625rem;
    }

    .autoguard-title {
        font-size: 3.75rem;
        margin-bottom: 2.5rem;
    }

    .autoguard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .autoguard-card-title {
        font-size: 1.375rem;
    }

    .autoguard-card-description {
        font-size: 14px;
    }

    .ready-invest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .ready-invest-title {
        font-size: 1.0625rem;
    }

    .ready-invest-description {
        font-size: 13px;
    }

    .footer-content-autoguard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .brokerage-hero,
    .affiliate-hero,
    .leader-hero,
    .about-hero,
    .autoguard-hero {
        padding: 4rem 0 3rem;
    }

    .brokerage-title,
    .affiliate-title,
    .leader-title,
    .about-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }

    .brokerage-subtitle,
    .affiliate-subtitle,
    .leader-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .benefit-card,
    .solution-card,
    .action-card,
    .platform-card {
        padding: 2rem 1.5rem;
    }

    .benefit-title,
    .solution-title,
    .action-title,
    .platform-title {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
    }

    .benefit-description,
    .solution-description,
    .action-description,
    .platform-description {
        font-size: 13px;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 14px;
    }

    .affiliate-steps-grid,
    .leader-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .affiliate-step,
    .leader-step {
        padding: 1.5rem;
    }

    .step-number {
        /* width: 50px;
        height: 50px; */
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .step-description {
        font-size: 13px;
    }

    .leader-function-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .leader-function-description {
        font-size: 13px;
        margin-bottom: 1.5rem;
    }

    .brokers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .awards-grid {
        /* grid-template-columns: 1fr; */
        gap: 1.25rem;
    }

    .award-item {
        padding: 1.5rem 0.75rem;
    }

    .award-text {
        font-size: 13px;
    }

    .ready-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section-title-about {
        font-size: 1.75rem;
    }

    .section-title-center {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .mission-statement {
        font-size: 1.5rem;
    }

    .ready-invest-about {
        padding: 4rem 0;
    }

    .terms-title,
    .guide-title {
        font-size: 2rem;
    }

    .terms-heading,
    .guide-heading {
        font-size: 1rem;
        margin: 1.5rem 0 0.75rem;
    }

    .terms-text,
    .guide-text {
        font-size: 13px;
        margin-bottom: 1.25rem;
    }

    .policy-card {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }

    .policy-text {
        font-size: 13px;
    }

    .sidebar-title {
        font-size: 0.9375rem;
    }

    .terms-nav a,
    .guide-nav a {
        font-size: 13px;
    }

    .mission-statement {
        font-size: 2rem;
    }

    .about-text {
        font-size: 14px;
    }

    .about-highlight {
        font-size: 1rem;
    }

    .competition-text,
    .affiliate-description {
        font-size: 15px;
    }

    .terms-title {
        font-size: 2.25rem;
    }

    .terms-heading {
        font-size: 1.125rem;
    }

    .subsection-title {
        font-size: 1.0625rem;
    }

    .affiliate-subtitle,
    .leader-subtitle,
    .brokerage-subtitle {
        font-size: 14px;
    }

    .ready-invest-title {
        font-size: 1.375rem;
    }

    .ready-invest-description {
        font-size: 15px;
    }

    .reason-card {
        padding: 2rem;
    }

    .reason-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .reason-description {
        font-size: 13px;
    }

    .autoguard-title {
        font-size: 2.75rem;
        margin-bottom: 2rem;
    }

    .autoguard-card {
        padding: 2rem 1.5rem;
    }

    .autoguard-card-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .autoguard-card-description {
        font-size: 13px;
        margin-bottom: 1.25rem;
    }

    .ready-invest-grid {
        grid-template-columns: 1fr;
    }

    .ready-invest-card {
        padding: 1.5rem 1rem;
    }

    .ready-invest-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .ready-invest-description {
        font-size: 13px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .footer-tagline,
    .footer-list a {
        font-size: 13px;
    }

    .footer-app-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-disclaimer {
        padding: 1.75rem;
    }

    .footer-disclaimer h5 {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .footer-disclaimer p {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .brokerage-hero,
    .affiliate-hero,
    .leader-hero,
    .about-hero,
    .autoguard-hero {
        padding: 3rem 0 2.5rem;
    }

    .brokerage-title,
    .affiliate-title,
    .leader-title,
    .about-title {
        font-size: 1.75rem;
        line-height: 1.05;
        margin-bottom: 1rem;
    }

    .brokerage-subtitle,
    .affiliate-subtitle,
    .leader-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }

    .benefit-card,
    .solution-card,
    .action-card,
    .platform-card,
    .reason-card {
        padding: 1.75rem 1.25rem;
    }

    .benefit-title,
    .solution-title,
    .action-title,
    .platform-title,
    .reason-title {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .benefit-description,
    .solution-description,
    .action-description,
    .platform-description,
    .reason-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 0.375rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 12px;
        padding: 9px 12px;
    }

    .btn-full-width {
        font-size: 14px;
        padding: 11px 20px;
    }

    .affiliate-step,
    .leader-step {
        padding: 1.25rem;
    }

    .step-number {
        /* width: 44px;
        height: 44px; */
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .step-title {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
    }

    .step-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .leader-function-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .leader-function-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .trading-chart-placeholder {
        padding: 1.5rem;
    }

    .brokers-grid {
        /* grid-template-columns: 1fr; */
        gap: 1.25rem;
    }

    .awards-grid {
        gap: 1rem;
    }

    .award-item {
        padding: 1.25rem 0.5rem;
    }

    .award-text {
        font-size: 12px;
    }

    .terms-title,
    .guide-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .terms-heading,
    .guide-heading {
        font-size: 0.9375rem;
        margin: 1.25rem 0 0.625rem;
    }

    .terms-text,
    .guide-text {
        font-size: 12px;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .policy-card {
        padding: 1.5rem;
    }

    .policy-icon {
        width: 36px;
        /* height: 36px; */
    }

    .policy-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .sidebar-title {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .terms-nav a,
    .guide-nav a {
        font-size: 12px;
        padding: 0.375rem 0;
    }

    .mission-statement {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .about-text {
        font-size: 13px;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .about-highlight {
        font-size: 0.9375rem;
        margin: 1.5rem 0;
    }

    .competition-text,
    .affiliate-description {
        font-size: 14px;
        margin-bottom: 1.25rem;
    }

    .autoguard-title {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 1.75rem;
    }

    .autoguard-card {
        padding: 1.75rem 1.25rem;
    }

    .autoguard-card-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .autoguard-card-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .autoguard-icon {
        margin-bottom: 1.5rem;
    }

    .ready-invest-card {
        padding: 1.25rem 0.875rem;
    }

    .ready-invest-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 1.25rem;
    }

    .ready-invest-title {
        font-size: 0.9375rem;
        margin-bottom: 0.625rem;
    }

    .ready-invest-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-disclaimer {
        padding: 1.5rem;
    }

    .footer-disclaimer h5 {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
    }

    .footer-disclaimer p {
        font-size: 0.625rem;
        line-height: 1.4;
    }

    .footer-title {
        font-size: 0.875rem;
    }

    .footer-tagline {
        font-size: 12px;
        margin-bottom: 1.5rem;
    }

    .footer-list a {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .trader-card {
        flex: 0 0 85vw;
    }

    /* .why-partner,
    .how-it-works-brokerage,
    .b2b-solutions,
    .about-SyncVestor,
    .ready-transform,
    .contact-section,
    .what-is-affiliate,
    .affiliate-actions,
    .competition-scheme,
    .become-affiliate-steps,
    .affiliate-reasons,
    .leader-function,
    .become-leader-steps,
    .trading-platforms,
    .leader-reasons,
    .our-mission,
    .our-brokers,
    .our-awards,
    .world-presence,
    .autoguard-features,
    .ready-invest {
        padding: 3rem 0;
    } */

    .bordered-container {
        padding: 3rem 1.5rem;
    }

    .terms-content,
    .guide-content {
        padding: 2.5rem 0;
    }
}

.brand-accent {
    color: #c1e963;
}

.text-accent {
    color: #89a546;
}

.btn-ghost {
    background: transparent;
    color: #8a9192;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: #001011;
}

/* AutoGuard Hero Section */
.autoguard-hero {
    background-image: url("../images/hero-bg.png");
    padding: 8rem 0 6rem;
    text-align: center;
}

.autoguard-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.autoguard-title {
    font-size: 5rem;
    font-weight: 900;
    font-family: "Cabinet Grotesk", sans-serif;
    margin-bottom: 3rem;
    color: #001011;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.autoguard-cta {
    margin-top: 2rem;
}

/* AutoGuard Features Section */
.autoguard-features {
    background: #f9fdef;
    padding: 6rem 0;
}

/* AutoGuard Info Section */
.autoguard-info {
    background: #ffffff;
    /* padding: 6rem 0; */
    border-bottom: 1px solid #f1f3f4;
}

.autoguard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 4rem; */
    max-width: 1200px;
    margin: 0 auto;
}

.autoguard-card {
    /* background: #ffffff; */
    padding: 6rem 2.5rem 3rem;
    /* border-radius: 24px; */
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    border-left: 5px solid #f1f2ec;
}

.autoguard-card:last-child {
    border-right: 5px solid #f1f2ec;
}

.autoguard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.autoguard-icon {
    margin-bottom: 2rem;
}

.autoguard-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #001011;
    line-height: 1.3;
}

.autoguard-card-description {
    color: #8a9192;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 15px;
}

.autoguard-card-description:last-child {
    margin-bottom: 0;
}

/* Ready to Invest Section */
.ready-invest {
    background: #fff;
    padding: 6rem 0;
}
.ready-invest .section-title,
.ready-invest .ready-invest-title {
    color: #033f2d;
}

.ready-invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 4rem 0;
}

.ready-invest-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #eaece2;
}

.ready-invest-icon {
    margin: 0 auto 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ready-invest-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #033f2d;
}

.ready-invest-description {
    color: #033f2d;
    line-height: 1.6;
    font-size: 1.125rem;
}

.ready-invest-cta {
    text-align: center;
    margin-top: 3rem;
}

/* AutoGuard Footer */
.footer-autoguard {
    background: #f9fdef;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e5e7eb;
}

.footer-content-autoguard {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-section {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #8a9192;
    margin-bottom: 2rem;
    font-size: 14px;
}

.footer-app-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title,.footer-toggle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.footer-disclaimer h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001011;
}

.footer-disclaimer p {
    color: #8a9192;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
    font-style: italic;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: end;
}

.footer-copyright {
    color: #8a9192;
    font-size: 0.875rem;
    max-width: 600px;
    background: #F5F6F2;
    padding: 1rem;
}

/* Responsive Design for AutoGuard page */
@media (max-width: 968px) {
    .autoguard-title {
        font-size: 4rem;
    }

    .autoguard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ready-invest-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content-autoguard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .autoguard-title {
        font-size: 3rem;
    }

    .autoguard-hero {
        padding: 6rem 0 4rem;
    }

    .autoguard-card {
        padding: 2rem 1.5rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-app-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .autoguard-title {
        font-size: 2.5rem;
    }

    .autoguard-card {
        padding: 1.5rem 1rem;
    }

    .ready-invest-card {
        padding: 1.5rem 1rem;
    }

    .footer-disclaimer {
        padding: 1.5rem;
    }

    .terms-title {
        font-size: 2rem;
    }

    .terms-heading {
        font-size: 1.125rem;
    }

    .subsection-title {
        font-size: 1rem;
    }

    .affiliate-subtitle,
    .leader-subtitle,
    .brokerage-subtitle {
        font-size: 13px;
    }

    .competition-text {
        font-size: 14px;
    }

    .ready-invest-title {
        font-size: 1.125rem;
    }

    .ready-invest-description {
        font-size: 14px;
    }
}

.mb-1 {
    margin-bottom: 0.25rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-5 {
    margin-bottom: 1.25rem;
}

.mt-1 {
    margin-top: 0.25rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-5 {
    margin-top: 1.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Extra small devices (iPhone SE, etc.) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.375rem;
    }

    .hero-tagline {
        font-size: 10px;
        padding: 6px 8px;
    }

    .nav-container {
        padding: 0.75rem 0.5rem;
    }

    .brand-logo {
        height: 22px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .btn-primary-large,
    .btn-secondary-outline {
        font-size: 13px;
        padding: 11px 18px;
    }

    .trader-card {
        flex: 0 0 90vw;
    }

    .step-card,
    .feature-card,
    .copy-card,
    .cta-card,
    .info-card {
        padding: 1.5rem 1rem;
    }

    .brokerage-title,
    .affiliate-title,
    .leader-title,
    .about-title {
        font-size: 1.5rem;
    }

    .autoguard-title {
        font-size: 1.75rem;
    }

    .terms-title {
        font-size: 1.75rem;
    }

    .terms-heading {
        font-size: 1.125rem;
    }

    .subsection-title {
        font-size: 1rem;
    }

    .affiliate-subtitle,
    .leader-subtitle,
    .brokerage-subtitle {
        font-size: 13px;
    }

    .competition-text {
        font-size: 13px;
    }

    .ready-invest-title {
        font-size: 1rem;
    }

    .ready-invest-description {
        font-size: 13px;
    }
}

/* Additional Styles */
.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Mobile Menu Button Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    margin-left: 0.75rem;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #001011;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Night Mode Toggle Button Styles */
.night-mode-toggle {
    background: #f9fdef;
    border: 1px solid #ecf8cf;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.75rem;
    color: #001011;
}

.night-mode-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.night-mode-toggle:hover {
    background: #ecf8cf;
    transform: scale(1.05);
}

.night-mode-toggle:hover svg {
    transform: rotate(20deg);
}

.night-mode-toggle:active {
    transform: scale(0.95);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid #f1f3f4;
    }

    .mobile-menu.mobile-active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-container {
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .night-mode-toggle {
        width: 36px;
        height: 36px;
        margin-left: 0.5rem;
    }

    .night-mode-toggle svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .night-mode-toggle {
        width: 32px;
        height: 32px;
        margin-left: 0.375rem;
    }

    .night-mode-toggle svg {
        width: 16px;
        height: 16px;
    }

    .mobile-menu-btn {
        width: 24px;
        height: 18px;
        margin-left: 0.5rem;
    }
}

.notification {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

input.error,
select.error,
textarea.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Night Mode Styles */
body.night-mode {
    background-color: #011a13;
    color: #e5e7eb;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.night-mode .header {
    background: rgba(1, 26, 19, 0.95);
    border-bottom-color: #1f3933;
}

body.night-mode .header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.night-mode .brand-name,
body.night-mode h1,
body.night-mode h2,
body.night-mode h3,
body.night-mode h4,
body.night-mode h5,
body.night-mode h6,
body.night-mode .section-title,
body.night-mode .hero-title,
body.night-mode .info-title,
body.night-mode .feature-title,
body.night-mode .copy-title,
body.night-mode .step-title,
body.night-mode .trader-name,
body.night-mode .cta-card-title,
body.night-mode .faq-question {
    color: #e5e7eb;
}

body.night-mode .nav-menu a {
    color: #9ca3af;
}

body.night-mode .nav-menu a:hover {
    color: #e5e7eb;
}

body.night-mode .btn-primary {
    background: #c1e963;
    color: #011a13;
}

body.night-mode .btn-primary:hover {
    background: #d4f57a;
}

body.night-mode .btn-secondary,
body.night-mode .btn-secondary-outline {
    background: #1f3933;
    color: #e5e7eb;
    border-color: #2d4d42;
}

body.night-mode .btn-secondary:hover,
body.night-mode .btn-secondary-outline:hover {
    background: #2d4d42;
    border-color: #3a5f52;
}

body.night-mode .hero,
body.night-mode .autoguard-hero,
body.night-mode .about-hero,
body.night-mode .leader-hero,
body.night-mode .affiliate-hero,
body.night-mode .brokerage-hero {
    background-color: #011a13;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
        url("../images/hero-bg.png");
}

body.night-mode .hero-tagline {
    background: rgba(31, 57, 51, 0.5);
    border-color: #2d4d42;
    color: #fff;
}

body.night-mode .hero-subtitle,
body.night-mode .section-subtitle {
    color: #9ca3af;
}

body.night-mode .light-hero-video{
    display: none;
}

body.night-mode .dark-hero-video{
    display: block;
}

body.night-mode .stat-item{
    background: #1f3933;
    border-color: #2d4d42;
}

body.night-mode .stats-grid,
body.night-mode .stat-item {
    border-color: #2d4d42;
    background: #1f3933;
}

body.night-mode .stat-number {
    color: #c1e963;
}

body.night-mode .stat-label {
    color: #001011;
}

body.night-mode .market-item {
    background: #1f3933;
    border-color: #2d4d42;
}

body.night-mode .market-symbol,
body.night-mode .market-price {
    color: #e5e7eb;
}

body.night-mode .step-card,
body.night-mode .feature-card,
body.night-mode .copy-card,
body.night-mode .trader-card,
body.night-mode .info-card,
body.night-mode .cta-card {
    background: #1f3933;
    border-color: #2d4d42;
}

body.night-mode .step-card:hover,
body.night-mode .feature-card:hover,
body.night-mode .copy-card:hover,
body.night-mode .trader-card:hover,
body.night-mode .info-card:hover,
body.night-mode .cta-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

body.night-mode .step-description,
body.night-mode .feature-description,
body.night-mode .copy-description,
body.night-mode .info-description,
body.night-mode .cta-card-description {
    color: #9ca3af;
}

body.night-mode .info-grid,
body.night-mode .steps-grid,
body.night-mode .features-grid {
    border-color: #1f3933;
}

body.night-mode .info-card {
    border-right-color: #1f3933;
    border-bottom-color: #1f3933;
}

body.night-mode .trader-stats-row {
    background: #0f2920;
    border-color: #1f3933;
}

body.night-mode .trader-role,
body.night-mode .stat-label {
    color: #9ca3af;
}

body.night-mode .stat-value {
    color: #e5e7eb;
}

body.night-mode .risk-label {
    color: #e5e7eb;
}

body.night-mode .btn-copy-trader {
    background: #1f3933;
    border-color: #2d4d42;
    color: #e5e7eb;
}

body.night-mode .btn-copy-trader:hover {
    background: #2d4d42;
    border-color: #3a5f52;
}

body.night-mode .faq-section {
    background: #0f2920;
}

body.night-mode .faq-item {
    background: #1f3933;
}

body.night-mode .faq-question {
    color: #e5e7eb;
}

body.night-mode .faq-question:hover {
    background: #2d4d42;
}

body.night-mode .faq-answer {
    color: #9ca3af;
}

body.night-mode .faq-toggle {
    color: #c1e963;
}

body.night-mode .copy-section {
    background: #0f2920;
}

body.night-mode .copy-section .section-title {
    color: #c1e963;
}

body.night-mode .copy-title {
    color: #e5e7eb;
}

body.night-mode .copy-description {
    color: #9ca3af;
}

body.night-mode .cta-section {
    background: #0f2920;
}

body.night-mode .footer {
    background: #0a1410;
    border-top-color: #1f3933;
}

body.night-mode .footer-title {
    color: #e5e7eb;
}

body.night-mode .footer-description,
body.night-mode .footer-list a,
body.night-mode .footer-copyright {
    color: #9ca3af;
}

body.night-mode .footer-list a:hover {
    color: #c1e963;
}

body.night-mode .footer-bottom {
    border-top-color: #1f3933;
}

body.night-mode .night-mode-toggle {
    background: #1f3933;
    border-color: #2d4d42;
    color: #e5e7eb;
}

body.night-mode .night-mode-toggle:hover {
    background: #2d4d42;
}

body.night-mode .mobile-menu {
    background: rgba(1, 26, 19, 0.98);
    border-bottom-color: #1f3933;
}

body.night-mode .mobile-menu-btn span {
    background-color: #e5e7eb;
}

body.night-mode .border-bottom,
body.night-mode .border-top {
    border-color: #1f3933 !important;
}

body.night-mode .container.border-left {
    border-left-color: #1f3933;
}
body.night-mode .bordered-container {
    border-left: 5px solid #1f3933;
}

body.night-mode .form-group input,
body.night-mode .form-group select,
body.night-mode .form-group textarea {
    background: #1f3933;
    border-color: #2d4d42;
    color: #e5e7eb;
}

body.night-mode .form-group input:focus,
body.night-mode .form-group select:focus,
body.night-mode .form-group textarea:focus {
    border-color: #c1e963;
    box-shadow: 0 0 0 3px rgba(193, 233, 99, 0.1);
}

body.night-mode .form-group label {
    color: #e5e7eb;
}

body.night-mode .contact-form {
    background: #1f3933;
    border-color: #2d4d42;
}

/* Additional page-specific night mode styles */
body.night-mode .benefit-card,
body.night-mode .solution-card,
body.night-mode .action-card,
body.night-mode .platform-card,
body.night-mode .reason-card,
body.night-mode .leader-reason-card {
    background: #1f3933;
    border-color: #2d4d42;
}

body.night-mode .benefit-description,
body.night-mode .solution-description,
body.night-mode .action-description,
body.night-mode .platform-description,
body.night-mode .reason-description {
    color: #9ca3af;
}

body.night-mode .terms-content,
body.night-mode .guide-content {
    background: #011a13;
}

body.night-mode .terms-text,
body.night-mode .guide-text,
body.night-mode .about-text,
body.night-mode .competition-text,
body.night-mode .affiliate-description {
    color: #9ca3af;
}

body.night-mode .terms-nav a,
body.night-mode .guide-nav a {
    color: #9ca3af;
}

body.night-mode .terms-nav a:hover,
body.night-mode .terms-nav a.active,
body.night-mode .guide-nav a:hover {
    color: #c1e963;
}

body.night-mode .policy-card {
    background: #1f3933;
    border-color: #2d4d42;
}

body.night-mode .policy-text {
    color: #9ca3af;
}

body.night-mode .policy-icon {
    /* background: #c1e963; */
    color: #011a13;
}

body.night-mode .copy-icon,
body.night-mode .ready-invest-icon {
    background: #c1e963;
}

body.night-mode .autoguard-card,
body.night-mode .ready-invest-card {
    background: #1f3933;
    border-color: #2d4d42;
}

body.night-mode .autoguard-card-description,
body.night-mode .ready-invest-description {
    color: #9ca3af;
}

body.night-mode .ready-invest .section-title,
body.night-mode .ready-invest .ready-invest-title {
    color: #e5e7eb;
}

body.night-mode .footer-autoguard {
    background: #0a1410;
    border-top-color: #1f3933;
}

body.night-mode .footer-disclaimer {
    background: #1f3933;
    border-color: #2d4d42;
}

body.night-mode .footer-disclaimer p {
    color: #9ca3af;
}

body.night-mode .why-partner,
body.night-mode .what-is-affiliate,
body.night-mode .competition-scheme,
body.night-mode .leader-function,
body.night-mode .trading-platforms,
body.night-mode .leader-reasons,
body.night-mode .our-mission,
body.night-mode .autoguard-features {
    background: #0f2920;
}

body.night-mode .autoguard-info,
body.night-mode .autoguard-hero {
    background: #011a13;
}

body.night-mode .how-it-works-brokerage,
body.night-mode .about-SyncVestor,
body.night-mode .affiliate-actions,
body.night-mode .affiliate-reasons,
body.night-mode .our-brokers,
body.night-mode .world-presence,
body.night-mode .trading-platforms {
    background: #011a13;
}

body.night-mode .become-affiliate-steps,
body.night-mode .ready-transform,
body.night-mode .b2b-solutions,
body.night-mode .contact-section,
body.night-mode .become-leader-steps,
body.night-mode .our-awards,
body.night-mode .ready-invest,
body.night-mode .ready-invest-about {
    background: #0a1410;
}

body.night-mode .world-presence {
    background: #0f2920;
}

body.night-mode .trading-chart-placeholder {
    background: #1f3933;
    border-color: #2d4d42;
}

body.night-mode .step-number {
    /* background: #c1e963; */
    color: #011a13;
}

body.night-mode .mission-statement,
body.night-mode .about-highlight,
body.night-mode .section-title-about,
body.night-mode .section-title-center,
body.night-mode .step-title {
    color: #e5e7eb;
}

body.night-mode .award-laurel span,
body.night-mode .award-text,
body.night-mode .step-icon {
    color: #c1e963;
}

body.night-mode .award-laurel img,
body.night-mode .world-map img {
    filter: invert(1);
}

body.night-mode .broker-placeholder {
    color: #8a9192;
}

body.night-mode .map-dots circle {
    fill: #c1e963;
    opacity: 0.3;
}

body.night-mode .footer-toggle{
    color: white;
}

body.night-mode .toggle-icon{
    filter: invert(1);
}
