*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-canvas: #FFFFFF;
    --bg-card: #F8F9FA;
    --bg-card-hover: #F3F3F3;
    --bg-surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #6C757D;
    --text-muted: #ADB5BD;
    --accent-indigo: #34E834;
    --accent-purple: #28A745;
    --accent-green: #34E834;
    --accent-red: #DC3545;
    --accent-blue: #007BFF;
    --border-subtle: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.15);
    --glow-indigo: rgba(52,232,52,0.15);
    --glow-purple: rgba(40,167,69,0.12);
    --font-primary: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1200px;
    --transition-base: 0.2s ease-out;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-canvas);
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--accent-indigo);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: #34E834;
    color: #000;
    box-shadow: 0 2px 8px rgba(52,232,52,0.25);
}

.btn-primary:hover {
    background: #28C928;
    box-shadow: 0 4px 16px rgba(52,232,52,0.3);
    transform: translateY(-1px);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--accent-indigo);
    color: #000;
    background: var(--accent-indigo);
}

.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.btn-buy {
    background: var(--accent-green);
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-buy:hover { background: #16A34A; color: #fff; }

.btn-sell {
    background: var(--accent-red);
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-sell:hover { background: #DC2626; color: #fff; }

.badge-new {
    background: #34E834;
    color: #000;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
    letter-spacing: 0.05em;
}

.badge-new-sm {
    background: #34E834;
    color: #000;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.badge-rec {
    background: #007BFF;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

/* ===== FOUC PREVENTION ===== */
.animate-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE APP BAR ===== */
.mobile-app-bar {
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.1));
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    font-size: 12px;
    position: relative;
    z-index: 101;
}
.mobile-app-bar.hidden { display: none; }
.mobile-app-bar-content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.app-bar-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    transition: color var(--transition-base);
}
.app-bar-close:hover { color: var(--text-primary); }
.app-bar-logo { flex-shrink: 0; }
.app-bar-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.app-bar-text strong { font-size: 13px; color: var(--text-primary); }
.app-bar-text span { font-size: 11px; color: var(--text-secondary); }

/* ===== TOP BAR ===== */
.topbar {
    background: #1A1A1A;
    border-bottom: 1px solid #333;
    padding: 6px 0;
    font-size: 12px;
    position: relative;
    z-index: 100;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }

.topbar-link {
    color: #ADB5BD;
    font-size: 12px;
    transition: color var(--transition-base);
}
.topbar-link:hover { color: #FFFFFF; }
.topbar-cta { color: #34E834 !important; font-weight: 600; }

.lang-selector { position: relative; }

.lang-btn {
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all var(--transition-base);
}
.lang-btn:hover, .lang-btn[aria-expanded="true"] { border-color: var(--border-hover); color: var(--text-primary); }

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 140px;
    z-index: 200;
    margin-top: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.lang-dropdown.show { display: block; }
.lang-selector:hover .lang-dropdown { display: block; }
.lang-dropdown a { display: block; padding: 6px 16px; font-size: 13px; color: var(--text-secondary); }
.lang-dropdown a:hover, .lang-dropdown a.active { color: var(--text-primary); background: rgba(52,232,52,0.08); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-secondary);
    border-radius: 1px;
    transition: all var(--transition-base);
}

/* ===== HEADER / NAV ===== */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 90;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 12px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 43px; width: auto; }

.nav-menu { display: flex; list-style: none; gap: 0; }
.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 20px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #6C757D;
    transition: color var(--transition-base);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link .arrow-down { transition: transform var(--transition-base); }
.nav-item:hover .arrow-down { transform: rotate(180deg); }

.btn-login { margin-left: 12px; padding: 8px 20px; font-size: 13px; }

.navbar .topbar-link {
    font-size: 0.875rem;
    color: #6C757D;
    white-space: nowrap;
    transition: color var(--transition-base);
}
.navbar .topbar-link:hover { color: #34E834; }

.navbar .lang-selector { position: relative; white-space: nowrap; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 720px;
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 24px;
    z-index: 100;
    margin-top: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-item:hover .dropdown-menu { display: block; }
.nav-item.dropdown-open .dropdown-menu { display: block; }

.dropdown-layout {
    display: flex;
    gap: 24px;
}

.dropdown-aside {
    flex-shrink: 0;
    width: 220px;
    border-right: 1px solid var(--border-subtle);
    padding-right: 24px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
}

.dropdown-col h5 {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.dropdown-col a {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}
.dropdown-col a:hover { color: var(--text-primary); }

.dropdown-cta {
    padding-top: 16px;
}
.dropdown-cta h3 { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 12px; line-height: 1.4; }
.dropdown-cta-btns { display: flex; gap: 10px; }
.dropdown-cta-btns .btn { padding: 8px 16px; font-size: 12px; }

/* ===== RAW SPREAD ===== */
.raw-spread { padding: 80px 0; background: #FFFFFF; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header h2 {
    font-size: 2rem; font-weight: 700; margin-bottom: 16px;
    color: #1A1A1A;
}
.section-header p { font-size: 1rem; color: #6C757D; line-height: 1.7; margin-bottom: 24px; }
.section-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.spread-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.spread-feature-card {
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 32px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.spread-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: #34E834;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.spread-feature-card:hover { border-color: #D0D0D0; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.spread-feature-card:hover::before { opacity: 1; }

.feature-icon-wrap { margin-bottom: 20px; }
.spread-feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.spread-feature-card ul { list-style: none; margin-bottom: 16px; }
.spread-feature-card li { font-size: 13px; color: var(--text-secondary); line-height: 1.6; padding-left: 16px; position: relative; margin-bottom: 6px; }
.spread-feature-card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-indigo); }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent-indigo); transition: gap var(--transition-base); }
.link-arrow:hover { gap: 10px; color: var(--accent-purple); }
.link-lg { font-size: 15px; }

/* ===== STATS BAR ===== */
.stats-bar {
    padding: 48px 0;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;
    background: #F8F9FA;
}
.stats-grid { display: flex; justify-content: center; gap: 80px; }
.stat-item { text-align: center; }
.stat-number { font-size: 36px; font-weight: 800; color: #1A1A1A; letter-spacing: -0.02em; }
.stat-number span { font-size: 20px; font-weight: 600; color: #34E834; }
.stat-desc { font-size: 13px; color: #6C757D; margin-top: 4px; }

/* ===== AUTO TRADING ===== */
.auto-trading { padding: 80px 0; background: #FFFFFF; }
.auto-trading-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.auto-trading-text { max-width: 520px; }
.auto-trading-text h2 {
    font-size: 2rem; font-weight: 700; margin-bottom: 16px;
    color: #1A1A1A;
}
.auto-trading-text p { font-size: 1rem; color: #6C757D; line-height: 1.7; }
.auto-trading-visual { display: flex; gap: 20px; }
.auto-vis-card {
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    min-width: 180px;
    transition: all var(--transition-smooth);
}
.auto-vis-card:hover { border-color: #D0D0D0; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.auto-vis-number { font-size: 24px; font-weight: 800; color: #34E834; margin-bottom: 8px; }
.auto-vis-label { font-size: 12px; color: #6C757D; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== PLATFORMS ===== */
.platforms { padding: 80px 0; text-align: center; background: #F8F9FA; }
.platform-cards { display: flex; justify-content: center; gap: 20px; margin-bottom: 24px; }
.platform-card {
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 24px 32px;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.platform-card:hover { border-color: #34E834; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); color: inherit; }
.platform-card.featured { border-color: #34E834; box-shadow: 0 0 20px rgba(52,232,52,0.2); }
.platform-card h3 { font-size: 15px; font-weight: 700; }
.platform-devices { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.device-tag { font-size: 12px; color: #6C757D; padding: 6px 14px; border: 1px solid #E9ECEF; border-radius: 20px; }

/* ===== GLOBAL MARKETS ===== */
.global-markets { padding: 80px 0; text-align: center; }
.global-markets h2 {
    font-size: 2rem; font-weight: 700; margin-bottom: 40px;
    color: #1A1A1A;
}
.markets-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 32px; }
.market-card {
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-smooth);
    color: #6C757D;
    text-decoration: none;
}
.market-card:hover { border-color: #34E834; color: #1A1A1A; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.market-icon { opacity: 0.7; transition: opacity var(--transition-base); }
.market-card:hover .market-icon { opacity: 1; }
.market-card span { font-size: 14px; font-weight: 500; }

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 80px 0; text-align: center;
    background: #F8F9FA;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;
}
.advantages h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.section-subtitle { font-size: 1rem; color: #6C757D; margin-bottom: 28px; }

/* ===== FUNDING ===== */
.funding { padding: 80px 0; text-align: center; }
.funding h2 { font-size: 2rem; font-weight: 700; margin-bottom: 40px; }
.funding-features { display: flex; justify-content: center; gap: 48px; margin-bottom: 32px; }
.funding-feature { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.funding-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
}
.funding-feature h4 { font-size: 15px; font-weight: 600; }
.payment-logos { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.payment-icon { border-radius: 4px; transition: transform var(--transition-base); }
.payment-icon:hover { transform: scale(1.08); }
.payment-logo { font-size: 12px; color: var(--text-muted); padding: 8px 16px; border: 1px solid var(--border-subtle); border-radius: 8px; font-weight: 600; letter-spacing: 0.05em; }

/* ===== STEPS ===== */
.steps { padding: 80px 0; text-align: center; background: #FFFFFF; }
.steps h2 { font-size: 2rem; font-weight: 700; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    padding: 32px 24px;
    position: relative;
    transition: all var(--transition-smooth);
}
.step-card:hover { border-color: #D0D0D0; transform: translateY(-3px); }
.step-number {
    width: 40px; height: 40px; border-radius: 50%;
    background: #34E834;
    color: #000; font-size: 18px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.step-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.9375rem; color: #6C757D; line-height: 1.5; }

/* ===== MOBILE APP ===== */
.mobile-app { padding: 80px 0; background: #F8F9FA; }
.mobile-app-content { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.mobile-app-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.mobile-features { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.mobile-feature { font-size: 13px; color: #6C757D; padding: 6px 14px; border: 1px solid #E9ECEF; border-radius: 20px; }
.app-stores { display: flex; gap: 12px; }
.app-store-btn {
    display: flex; align-items: center; gap: 8px;
    background: #FFFFFF; border: 1px solid #E9ECEF;
    border-radius: 10px; padding: 10px 20px;
    font-size: 14px; font-weight: 600; color: var(--text-primary);
    transition: all var(--transition-base);
}
.app-store-btn:hover { border-color: var(--border-hover); color: #fff; }
.mobile-app-visual { flex-shrink: 0; }
.phone-mockup {
    width: 240px; height: 420px;
    background: var(--bg-card);
    border: 2px solid var(--border-hover);
    border-radius: 32px; padding: 16px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.phone-screen { background: #050508; border-radius: 20px; height: 100%; padding: 20px 12px; display: flex; flex-direction: column; }
.screen-header { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; text-align: center; }
.screen-chart { margin-bottom: 16px; }
.screen-pair { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.screen-price { font-size: 24px; font-weight: 800; color: var(--accent-green); margin-bottom: 16px; }
.screen-btns { display: flex; gap: 8px; margin-top: auto; }
.screen-buy, .screen-sell { flex: 1; text-align: center; padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 700; }
.screen-buy { background: var(--accent-green); color: #fff; }
.screen-sell { background: var(--accent-red); color: #fff; }

/* ===== WEBINAR ===== */
.webinar {
    padding: 40px 0;
    background: #F8F9FA;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;
}
.webinar-content { display: flex; align-items: center; justify-content: space-between; }
.webinar-content h3 { font-size: 1.25rem; font-weight: 600; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; text-align: center; background: #1A1A1A; }
.cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; color: #FFFFFF; }
.cta-section h4 { font-size: 1.1rem; color: #ADB5BD; font-weight: 400; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 24px; border-top: 1px solid #333; background: #1A1A1A; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: #ADB5BD; line-height: 1.7; margin-top: 16px; }
.footer-brand img { height: 28px; width: auto; display: block; }
.footer-col h5 { font-size: 13px; font-weight: 600; color: #FFFFFF; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #ADB5BD; padding: 4px 0; transition: color var(--transition-base); }
.footer-col a:hover { color: #34E834; }
.footer-risk { border-top: 1px solid #333; padding: 24px 0; margin-bottom: 16px; }
.footer-risk p { font-size: 12px; color: #ADB5BD; line-height: 1.7; margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #ADB5BD; }
.footer-bottom a { color: #34E834; font-size: 12px; }

/* ===== FLOATING CTA ===== */
.floating-cta { position: fixed; bottom: 24px; right: 24px; display: flex; gap: 8px; z-index: 1000; }
.floating-support {
    display: flex; align-items: center; gap: 6px;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    color: var(--text-secondary); padding: 8px 16px;
    border-radius: 10px; font-size: 12px; font-weight: 600;
    transition: all var(--transition-base);
}
.floating-support:hover { border-color: var(--accent-indigo); color: var(--text-primary); }

/* ===== SUBPAGE STYLES ===== */
.subpage-hero {
    padding: 60px 0 40px;
    background: #F8F9FA;
    border-bottom: 1px solid #E9ECEF;
}
.breadcrumb {
    font-size: 13px;
    color: #6C757D;
    margin-bottom: 16px;
}
.breadcrumb a { color: #34E834; }
.breadcrumb a:hover { color: #28C928; }
.breadcrumb span { margin: 0 6px; }
.subpage-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A1A1A;
}
.subpage-hero p {
    font-size: 1.1rem;
    color: #6C757D;
    max-width: 600px;
}
.subpage-content {
    padding: 60px 0;
    min-height: 300px;
    background: #FFFFFF;
}
.content-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #6C757D;
    font-size: 15px;
    border: 1px dashed #D0D0D0;
    border-radius: 8px;
    background: #F8F9FA;
}
.content-placeholder a { color: #34E834; }
.content-placeholder a:hover { color: #28C928; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .markets-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .auto-trading-content { flex-direction: column; text-align: center; }
    .mobile-app-content { flex-direction: column; text-align: center; }
    .mobile-features { justify-content: center; }
    .app-stores { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dropdown-layout { flex-direction: column; }
    .dropdown-aside { width: 100%; border-right: none; border-bottom: 1px solid var(--border-subtle); padding-right: 0; padding-bottom: 16px; }
}

@media (max-width: 768px) {
    .mobile-app-bar-content .app-bar-text span { display: none; }
    .topbar-left { display: none; }
    .topbar-right .topbar-link:not(.topbar-cta) { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-menu {
        display: none; position: fixed; inset: 0;
        background: rgba(8,8,8,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 80px 24px 24px; z-index: 200; overflow-y: auto;
    }
    .nav-menu.open { display: flex; }
    .nav-link { padding: 16px 0; font-size: 18px; }
    .dropdown-menu {
        position: static; min-width: 100%; background: transparent;
        border: none; padding: 0 0 0 16px; box-shadow: none;
        display: none;
    }
    .nav-item.dropdown-open .dropdown-menu { display: block; }
    .dropdown-layout { flex-direction: column; }
    .dropdown-aside { width: 100%; border-right: none; border-bottom: 1px solid var(--border-subtle); padding-right: 0; padding-bottom: 16px; margin-bottom: 16px; }
    .dropdown-grid { grid-template-columns: 1fr; }
    .dropdown-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
    .dropdown-cta-btns { flex-direction: column; }
    .btn-login { display: none; }
    .spread-features { grid-template-columns: 1fr; }
    .section-header h2, .global-markets h2, .advantages h2, .funding h2, .steps h2, .cta-section h2 { font-size: 28px; }
    .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .stats-grid { flex-direction: column; gap: 32px; }
    .auto-trading-visual { flex-direction: column; }
    .platform-cards { flex-wrap: wrap; }
    .funding-features { flex-direction: column; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .webinar-content { flex-direction: column; gap: 16px; text-align: center; }
    .floating-cta { bottom: 12px; right: 12px; }
    .subpage-hero h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .phone-mockup { width: 200px; height: 350px; }
}
