/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================
   CSS VARIABLES - DARK THEME (DEFAULT)
   ============================= */
:root {
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --dark-bg: #0a0a0f;
    --dark-card: #111118;
    --dark-border: #1f1f2e;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light-gray: #d1d5db;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
}

/* =============================
   CSS VARIABLES - LIGHT THEME
   ============================= */
[data-theme="light"] {
    --dark-bg: #f8fafc;
    --dark-card: #ffffff;
    --dark-border: #e2e8f0;
    --text-white: #0f172a;
    --text-gray: #64748b;
    --text-light-gray: #475569;
    --gradient-dark: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Light theme specific adjustments */
[data-theme="light"] body {
    background-color: var(--dark-bg);
    color: var(--text-white);
}

[data-theme="light"] .header {
    background: rgba(248, 250, 252, 0.95);
    border-bottom-color: var(--dark-border);
}

[data-theme="light"] .logo {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .nav a {
    color: var(--text-gray);
}

[data-theme="light"] .nav a:hover {
    color: var(--text-white);
}

[data-theme="light"] .lang-btn {
    color: var(--text-gray);
    border-color: var(--dark-border);
    background: transparent;
}

[data-theme="light"] .lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .mobile-menu-btn span {
    background: var(--text-white);
}

[data-theme="light"] .hero-bg-gradient {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
}

[data-theme="light"] .hero-content h1 {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .hero-form {
    background: var(--dark-card);
    border-color: var(--dark-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-form input {
    background: #f1f5f9;
    border-color: var(--dark-border);
    color: var(--text-white);
}

[data-theme="light"] .hero-form input:focus {
    background: #ffffff;
    border-color: var(--primary-blue);
}

[data-theme="light"] .hero-form input::placeholder {
    color: #94a3b8;
}

[data-theme="light"] .feature-card,
[data-theme="light"] .trader-card,
[data-theme="light"] .mastery-step,
[data-theme="light"] .roadmap-card,
[data-theme="light"] .legal-content,
[data-theme="light"] .office-card,
[data-theme="light"] .cta-form,
[data-theme="light"] .countdown-item {
    background: var(--dark-card);
    border-color: var(--dark-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

[data-theme="light"] .trading-dashboard {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

[data-theme="light"] .dashboard-card {
    background: #f8fafc;
    border: 1px solid var(--dark-border);
}

[data-theme="light"] .certification {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #f1f5f9 100%);
}

[data-theme="light"] .about,
[data-theme="light"] .traders,
[data-theme="light"] .global-presence,
[data-theme="light"] .final-cta {
    background: #f1f5f9;
}

[data-theme="light"] .countdown-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
}

[data-theme="light"] .early-access-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%);
}

[data-theme="light"] .footer {
    background: #f1f5f9;
    border-top-color: var(--dark-border);
}

[data-theme="light"] .nav.active {
    background: rgba(248, 250, 252, 0.98);
}

[data-theme="light"] .map-container {
    background: #f1f5f9;
}

[data-theme="light"] .main-office {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%);
}

/* Light theme scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track {
    background: #f1f5f9;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Light theme FAQ styles */
[data-theme="light"] .faq {
    background: transparent;
}

[data-theme="light"] .faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .faq-item:hover {
    background: #f8fafc;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08);
}

[data-theme="light"] .faq-item.active {
    background: #f8fafc;
    border-color: rgba(59, 130, 246, 0.4);
}

/* =============================
   THEME TOGGLE BUTTON
   ============================= */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-gray);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: var(--primary-blue);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

.iti {
    width: 100% !important;
}

/* =============================
   ITI PLUGIN LIGHT THEME STYLES
   ============================= */
[data-theme="light"] .iti__country-list {
    background-color: #ffffff;
    border-color: var(--dark-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .iti__country:hover,
[data-theme="light"] .iti__country.iti__highlight {
    background-color: #f1f5f9;
}

[data-theme="light"] .iti__country-name {
    color: #0f172a;
}

[data-theme="light"] .iti__dial-code {
    color: #64748b;
}

[data-theme="light"] .iti__selected-flag {
    background-color: transparent;
}

[data-theme="light"] .iti__selected-flag:hover,
[data-theme="light"] .iti__selected-flag:focus {
    background-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .iti__selected-dial-code {
    color: #0f172a !important;
}

[data-theme="light"] .iti__arrow {
    border-top-color: #64748b;
}

[data-theme="light"] .iti__arrow--up {
    border-bottom-color: #64748b;
}

[data-theme="light"] .iti--separate-dial-code .iti__selected-flag {
    background-color: #f1f5f9;
}

[data-theme="light"] .iti__divider {
    border-bottom-color: var(--dark-border);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: background-color 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--text-white);
}

.lang-selector .lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-gray);
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--dark-border);
}

.lang-btn img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.btn-signin {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 16px;
    max-width: 600px;
}

.hero-official {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.hero-official a {
    color: var(--primary-blue);
}

/* Reviews Row */
.reviews-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.review-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

.review-item img {
    height: 20px;
    width: auto;
}

.stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.review-score {
    font-weight: 600;
    color: var(--text-white);
}

.review-source {
    color: #00b67a;
    font-weight: 600;
}

.review-item--trustpilot .review-text,
.review-item--trustpilot .review-source {
    line-height: 1.3;
}

/* Hero Form */
.hero-form {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 14px;
    transition: border-color 0.3s, background 0.3s;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
}

.hero-form input::placeholder {
    color: var(--text-gray);
}

.phone-input {
    display: flex;
    gap: 12px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 14px;
    white-space: nowrap;
}

.country-selector img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.phone-input input {
    flex: 1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--success-green);
    margin-top: 8px;
}

.form-disclaimer {
    font-size: 11px;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.5;
}

/* Stats Row */
.stats-row {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Certification Section */
.certification {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.certification-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.certification-content {
    max-width: 700px;
}

.certification-content .iso-badge {
    width: 100px;
    margin-bottom: 24px;
}

.certification-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.certification-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.certification-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .certification-image img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Legal Content (Expandable) */
.legal-content {
    max-width: 1200px;
    margin: 60px auto 0;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 40px;
    display: none;
}

.legal-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Certificate Display in Legal Content */
.certificate-display {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--dark-border);
}

.certificate-display img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.certificate-display img:hover {
    transform: scale(1.02);
}

[data-theme="light"] .certificate-display img {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.legal-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.legal-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.legal-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
    color: var(--text-gray);
    font-size: 14px;
}

.btn-collapse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--text-gray);
    margin: 24px auto 0;
    font-size: 14px;
}

/* Features Section */
.features {
    padding: 100px 24px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.features-subtitle {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 24px;
    background: var(--dark-card);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content .btn-primary {
    width: auto;
    margin-top: 16px;
}

/* Trading Dashboard */
.trading-dashboard {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 24px;
}

.trading-dashboard h4 {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.dashboard-card {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 24px;
}

.dashboard-header {
    margin-bottom: 12px;
}

.positive-change {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.dashboard-crypto {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.crypto-name {
    font-size: 14px;
    color: var(--text-gray);
}

.crypto-price {
    font-size: 28px;
    font-weight: 700;
}

.crypto-change {
    font-size: 14px;
    color: var(--success-green);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hold-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-yellow);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.chart-placeholder {
    height: 80px;
    overflow: hidden;
}

.chart-line {
    width: 100%;
    height: 100%;
}

.dashboard-note {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 16px;
    line-height: 1.5;
}

/* Mastery Section */
.mastery {
    padding: 100px 24px;
}

.mastery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mastery-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.mastery-subtitle,
.mastery-description {
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 16px;
    text-align: center;
    line-height: 1.7;
}

.mastery-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.mastery-step {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.mastery-step h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 16px;
}

.mastery-step p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.step-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    color: var(--primary-blue);
}

/* Traders Section */
.traders {
    padding: 100px 24px;
    background: var(--dark-card);
}

.traders-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.traders-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.traders-subtitle {
    color: var(--text-gray);
    margin-bottom: 48px;
}

.traders-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.trader-card {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.trader-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.trader-header img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.trader-info h4 {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trader-location {
    font-size: 13px;
    color: var(--text-gray);
    display: block;
}

.trader-date {
    font-size: 12px;
    color: var(--text-gray);
}

.trader-rating {
    margin-left: auto;
    color: #fbbf24;
}

.trader-review {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.trader-earnings {
    margin-bottom: 20px;
}

.earnings-label {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.earnings-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--success-green);
    margin: 4px 0;
}

.earnings-progress {
    height: 6px;
    background: var(--dark-border);
    border-radius: 3px;
    margin: 8px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.earnings-percent {
    font-size: 12px;
    color: var(--text-gray);
}

.trader-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text-gray);
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--dark-border);
}

.view-profile-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary-blue);
    font-size: 13px;
    margin-left: auto;
}

.traders-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.traders-cta span {
    font-size: 18px;
    font-weight: 500;
}

.traders-cta .btn-primary {
    width: auto;
}

/* Countdown Section */
.countdown-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    text-align: center;
}

.countdown-container {
    max-width: 800px;
    margin: 0 auto;
}

.limited-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-yellow);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.countdown-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.countdown-section p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.countdown-item {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px 32px;
    min-width: 100px;
}

.countdown-value {
    display: block;
    font-size: 40px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-gray);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.spots-remaining {
    display: block;
    margin-top: 16px;
    color: var(--warning-yellow);
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 120px 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.faq-badge {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.faq-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-subtitle {
    color: var(--text-gray);
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    text-align: left;
    margin-top: 20px;
}

.faq-item {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 0 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.faq-item.active {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(59, 130, 246, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    background: transparent;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-number {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question span:nth-child(2) {
    flex: 1;
    line-height: 1.5;
}

.faq-question svg {
    color: var(--text-gray);
    transition: all 0.3s ease;
    min-width: 24px;
}

.faq-question:hover svg {
    color: var(--primary-blue);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 8px;
}

.faq-answer p {
    color: var(--text-gray);
    padding: 0 50px 24px 50px;
    line-height: 1.8;
    font-size: 16px;
}

/* Global Presence Section */
.global-presence {
    padding: 100px 24px;
    background: var(--dark-card);
}

.global-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.global-badge {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.global-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.global-subtitle {
    color: var(--text-gray);
    margin-bottom: 48px;
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    text-align: left;
}

.map-container {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    min-height: 500px;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.offices-sidebar {
    max-height: 600px;
    overflow-y: auto;
}

.main-office {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.main-office h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.office-location {
    font-size: 14px;
    margin-bottom: 8px;
}

.office-location strong {
    color: var(--text-white);
}

.office-address {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 12px;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.office-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-card {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.office-card:hover,
.office-card.active {
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
}

.office-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.office-city {
    color: var(--primary-blue);
    font-size: 13px;
}

.office-card p {
    color: var(--text-gray);
    font-size: 12px;
    margin: 8px 0;
}

.office-staff {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-gray);
}

/* Roadmap Section */
.roadmap {
    padding: 100px 24px;
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.roadmap-badge {
    display: inline-block;
    color: var(--primary-purple);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.roadmap-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.roadmap-subtitle {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 48px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.roadmap-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    position: relative;
}

.status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.status-badge.coming-soon {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
}

.roadmap-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-right: 100px;
}

.roadmap-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.roadmap-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.expected {
    font-size: 13px;
    color: var(--text-gray);
}

.dev-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.dev-status.in-dev {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-green);
}

.dev-status.planned {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-blue);
}

.dev-status.coming-soon {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
}

.early-access-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 40px;
}

.early-access-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.early-access-box p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.users-waiting {
    color: var(--success-green);
    font-size: 14px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 24px;
    background: var(--dark-card);
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-yellow);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cta-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-container > p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-form {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
}

.cta-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.cta-form input::placeholder {
    color: var(--text-gray);
}

.cta-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cta-form .form-row input {
    margin-bottom: 0;
}

.cta-form .phone-input {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-form .phone-input input {
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 60px 24px 24px;
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr repeat(3, auto);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form {
        max-width: 500px;
    }
    
    .certification-container {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .global-content {
        grid-template-columns: 1fr;
    }
    
    .offices-sidebar {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .main-office {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--dark-border);
    }
    
    [data-theme="light"] .nav {
        background: rgba(248, 250, 252, 0.98);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 12px 0;
        font-size: 16px;
    }
    
    .lang-selector, .btn-signin, .theme-toggle {
        width: 100%;
    }
    
    .theme-toggle {
        justify-content: center;
    }
    
    .lang-selector .lang-btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-signin {
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mastery-steps {
        grid-template-columns: 1fr;
    }
    
    .traders-carousel {
        grid-template-columns: 1fr;
    }
    
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .stats-row {
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-section {
        padding: 60px 20px;
    }
    
    .countdown-section h2 {
        font-size: 28px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .countdown-item {
        padding: 12px 16px;
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    .countdown-separator {
        font-size: 28px;
    }
    
    .faq {
        padding: 80px 20px;
    }
    
    .faq-container h2 {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .faq-item {
        padding: 0 16px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 0;
        gap: 12px;
    }
    
    .faq-number {
        font-size: 14px;
        min-width: 24px;
    }
    
    .faq-answer p {
        padding: 0 0 20px 36px;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .offices-sidebar {
        grid-template-columns: 1fr;
    }
    
    .main-office {
        grid-column: span 1;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .phone-input {
        flex-direction: column;
    }
    
    .reviews-row {
        flex-direction: column;
        gap: 16px;
    }

    .review-item {
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .review-item--trustpilot {
        align-items: flex-start;
    }

    .review-item--trustpilot .review-text,
    .review-item--trustpilot .review-source {
        flex-basis: 100%;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .traders-cta {
        flex-direction: column;
    }
    
    .countdown-section h2 {
        font-size: 24px;
    }
    
    .countdown-item {
        padding: 10px 12px;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 24px;
    }
    
    .countdown-separator {
        font-size: 24px;
        margin: 0 4px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .faq-container h2 {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 16px 0;
    }
    
    .faq-answer p {
        padding: 0 0 16px 28px;
        font-size: 14px;
    }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-gray);
}
